diff --git a/.gitignore b/.gitignore index d14ffc6..052fd3e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/pcp-5.3.5.src.tar.gz +SOURCES/pcp-5.3.7.src.tar.gz diff --git a/.pcp.metadata b/.pcp.metadata index 68db412..e64a399 100644 --- a/.pcp.metadata +++ b/.pcp.metadata @@ -1 +1 @@ -ee69b4a4e33cb5366d30c4c006ba41ccd6386d87 SOURCES/pcp-5.3.5.src.tar.gz +a0a05bf501b016cb859fb211ae60ce18be2bbd99 SOURCES/pcp-5.3.7.src.tar.gz diff --git a/SOURCES/redhat-bugzilla-1973833.patch b/SOURCES/redhat-bugzilla-1973833.patch deleted file mode 100644 index ef1b249..0000000 --- a/SOURCES/redhat-bugzilla-1973833.patch +++ /dev/null @@ -1,193 +0,0 @@ -commit 6b907e90c74fce82d6b712493d8b362bdd1a1ec1 -Author: Nathan Scott -Date: Tue Dec 14 08:54:14 2021 +1100 - - pmlogconf: switch to the bulk pmLookupDescs(3) interface - - No functional change, all existing regression tests pass. - - Related to Red Hat BZ #1973833. - -diff --git a/src/pmlogconf/pmlogconf.c b/src/pmlogconf/pmlogconf.c -index fa1156859d..ef4fc08bbd 100644 ---- a/src/pmlogconf/pmlogconf.c -+++ b/src/pmlogconf/pmlogconf.c -@@ -473,13 +473,19 @@ fetch_groups(void) - { - static pmResult *result; - const char **names; -+ pmDesc *descs; - pmID *pmids; -- int i, n, sts; -+ int i, n, sts, count; - -- /* prepare arrays of names and identifiers for PMAPI metric lookup */ -+ /* prepare arrays of names, descriptors and IDs for PMAPI metric lookup */ - if ((names = calloc(ngroups, sizeof(char *))) == NULL) - return -ENOMEM; -+ if ((descs = calloc(ngroups, sizeof(pmDesc))) == NULL) { -+ free(names); -+ return -ENOMEM; -+ } - if ((pmids = calloc(ngroups, sizeof(pmID))) == NULL) { -+ free(descs); - free(names); - return -ENOMEM; - } -@@ -490,15 +496,16 @@ fetch_groups(void) - continue; - names[n++] = (const char *)groups[i].metric; - } -+ count = n; - -- if ((sts = pmLookupName(n, names, pmids)) < 0) { -- if (n == 1) -+ if ((sts = pmLookupName(count, names, pmids)) < 0) { -+ if (count == 1) - groups[0].pmid = PM_ID_NULL; - else - fprintf(stderr, "%s: cannot lookup metric names: %s\n", - pmGetProgname(), pmErrStr(sts)); - } -- else if ((sts = pmFetch(n, pmids, &result)) < 0) { -+ else if ((sts = pmFetch(count, pmids, &result)) < 0) { - fprintf(stderr, "%s: cannot fetch metric values: %s\n", - pmGetProgname(), pmErrStr(sts)); - } -@@ -510,6 +517,13 @@ fetch_groups(void) - else - groups[i].pmid = pmids[n++]; - } -+ /* descriptor lookup, descs_hash handles failure here */ -+ (void) pmLookupDescs(count, pmids, descs); -+ -+ /* create a hash over the descs for quick PMID lookup */ -+ if ((sts = descs_hash(count, descs)) < 0) -+ fprintf(stderr, "%s: cannot hash metric descs: %s\n", -+ pmGetProgname(), pmErrStr(sts)); - /* create a hash over the result for quick PMID lookup */ - if ((sts = values_hash(result)) < 0) - fprintf(stderr, "%s: cannot hash metric values: %s\n", -@@ -806,14 +820,16 @@ evaluate_string_regexp(group_t *group, regex_cmp_t compare) - int i, found; - pmValueSet *vsp; - pmValue *vp; -+ pmDesc *dp; - pmAtomValue atom; - regex_t regex; - int sts, type; - -- if ((vsp = metric_values(group->pmid)) == NULL) -+ if ((vsp = metric_values(group->pmid)) == NULL || -+ (dp = metric_desc(group->pmid)) == NULL) - return 0; - -- type = metric_type(group->pmid); -+ type = dp->type; - if (type < 0 || type > PM_TYPE_STRING) { - fprintf(stderr, "%s: %s uses regular expression on non-scalar metric\n", - pmGetProgname(), group->tag); -@@ -849,11 +865,14 @@ evaluate_string_regexp(group_t *group, regex_cmp_t compare) - static int - evaluate_values(group_t *group, numeric_cmp_t ncmp, string_cmp_t scmp) - { -- int type = metric_type(group->pmid); -+ pmDesc *dp; -+ -+ if ((dp = metric_desc(group->pmid)) == NULL) -+ return 0; - -- if (type == PM_TYPE_STRING) -+ if (dp->type == PM_TYPE_STRING) - return evaluate_string_values(group, scmp); -- return evaluate_number_values(group, type, ncmp); -+ return evaluate_number_values(group, dp->type, ncmp); - } - - int -diff --git a/src/pmlogconf/util.c b/src/pmlogconf/util.c -index d44c2e529a..293eb2eca3 100644 ---- a/src/pmlogconf/util.c -+++ b/src/pmlogconf/util.c -@@ -1,5 +1,5 @@ - /* -- * Copyright (c) 2020 Red Hat. All Rights Reserved. -+ * Copyright (c) 2020-2021 Red Hat. All Rights Reserved. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the -@@ -14,7 +14,7 @@ - #include "util.h" - - static __pmHashCtl valuesctl; /* pointers to values in pmResult */ --static __pmHashCtl typesctl; /* metric types from pmLookupDesc */ -+static __pmHashCtl descsctl; /* metric descs from pmLookupDesc */ - - int - values_hash(pmResult *result) -@@ -47,27 +47,33 @@ metric_values(pmID pmid) - } - - int --metric_type(pmID pmid) -+descs_hash(int numpmid, pmDesc *descs) - { -- __pmHashNode *node; -- pmDesc desc; -- int sts, *data; -+ unsigned int i; -+ pmDesc *dp; -+ int sts; - -- if (pmid == PM_IN_NULL) -- return PM_TYPE_UNKNOWN; -- if ((node = __pmHashSearch(pmid, &typesctl)) == NULL) { -- if ((sts = pmLookupDesc(pmid, &desc)) < 0) -- return sts; -- if ((data = malloc(sizeof(int))) == NULL) -- return sts; -- *data = desc.type; -- if ((sts = __pmHashAdd(pmid, data, &typesctl)) < 0) { -- free(data); -+ if ((sts = __pmHashPreAlloc(numpmid, &descsctl)) < 0) -+ return sts; -+ -+ for (i = 0; i < numpmid; i++) { -+ dp = &descs[i]; -+ if ((sts = __pmHashAdd(dp->pmid, dp, &descsctl)) < 0) - return sts; -- } -- return *data; - } -- return *(int *)node->data; -+ return numpmid; -+} -+ -+pmDesc * -+metric_desc(pmID pmid) -+{ -+ __pmHashNode *node; -+ -+ if (pmid == PM_IN_NULL) -+ return NULL; -+ if ((node = __pmHashSearch(pmid, &descsctl)) == NULL) -+ return NULL; -+ return (pmDesc *)node->data; - } - - int -diff --git a/src/pmlogconf/util.h b/src/pmlogconf/util.h -index 17d856a0d7..a11350d899 100644 ---- a/src/pmlogconf/util.h -+++ b/src/pmlogconf/util.h -@@ -34,7 +34,9 @@ extern void fmt(const char *, char *, size_t, int, int, fmt_t, void *); - - extern int values_hash(pmResult *); - extern pmValueSet *metric_values(pmID); --extern int metric_type(pmID); -+ -+extern int descs_hash(int, pmDesc *); -+extern pmDesc *metric_desc(pmID); - - typedef int (*numeric_cmp_t)(double, double); - extern int number_equal(double, double); diff --git a/SOURCES/redhat-bugzilla-1981886-pmdasockets-backporting.patch b/SOURCES/redhat-bugzilla-1981886-pmdasockets-backporting.patch new file mode 100644 index 0000000..bdcc5d4 --- /dev/null +++ b/SOURCES/redhat-bugzilla-1981886-pmdasockets-backporting.patch @@ -0,0 +1,459 @@ +diff --git a/qa/1927 b/qa/1927 +new file mode 100755 +index 000000000..46afa9509 +--- /dev/null ++++ b/qa/1927 +@@ -0,0 +1,88 @@ ++#!/bin/sh ++# PCP QA Test No. 1927 ++# Exercise the sockets PMDA Install/Remove and string metric bug. ++# ++# Copyright (c) 2022 Red Hat. All Rights Reserved. ++# ++ ++seq=`basename $0` ++echo "QA output created by $seq" ++ ++# get standard environment, filters and checks ++. ./common.product ++. ./common.filter ++. ./common.check ++ ++[ -f $PCP_PMDAS_DIR/sockets/pmdasockets ] || _notrun "sockets pmda not installed" ++ ++_cleanup() ++{ ++ cd $here ++ $sudo rm -rf $tmp $tmp.* ++} ++ ++status=0 # success is the default! ++$sudo rm -rf $tmp $tmp.* $seq.full ++ ++_filter_sockets() ++{ ++ grep -v 'No value(s) available' ++} ++ ++pmdasockets_remove() ++{ ++ echo ++ echo "=== remove sockets agent ===" ++ $sudo ./Remove >$tmp.out 2>&1 ++ _filter_pmda_remove <$tmp.out ++} ++ ++pmdasockets_install() ++{ ++ # start from known starting points ++ cd $PCP_PMDAS_DIR/sockets ++ $sudo ./Remove >/dev/null 2>&1 ++ ++ echo ++ echo "=== sockets agent installation ===" ++ $sudo ./Install $tmp.out 2>&1 ++ cat $tmp.out >>$here/$seq.full ++ # Check sockets metrics have appeared ... X metrics and Y values ++ _filter_pmda_install <$tmp.out \ ++ | sed \ ++ -e 's/[0-9][0-9]* warnings, //' \ ++ | $PCP_AWK_PROG ' ++/Check network.persocket metrics have appeared/ { ++ if ($7 >= 50 && $7 <= 99) $7 = "X" ++ if ($10 >= 0) $10 = "Y" ++ } ++ { print }' ++} ++ ++_prepare_pmda sockets ++# note: _restore_auto_restart pmcd done in _cleanup_pmda() ++trap "_cleanup_pmda sockets; exit \$status" 0 1 2 3 15 ++ ++_stop_auto_restart pmcd ++ ++# real QA test starts here ++pmdasockets_install ++ ++# pmcd should have been started by the Install process - check ++if pminfo -v network.persocket > $tmp.info 2> $tmp.err ++then ++ : ++else ++ echo "... failed! ... here is the Install log ..." ++ cat $tmp.out ++fi ++cat $tmp.info $tmp.err | _filter_sockets ++ ++echo "Check the values for v6only metric are 0 or 1 ..." ++pminfo -f network.persocket.v6only | egrep -v 'value [01]$' | sed -e '/^$/d' ++ ++pmdasockets_remove ++status=0 ++ ++# success, all done ++exit +diff --git a/qa/1927.out b/qa/1927.out +new file mode 100644 +index 000000000..2ae4385fd +--- /dev/null ++++ b/qa/1927.out +@@ -0,0 +1,17 @@ ++QA output created by 1927 ++ ++=== sockets agent installation === ++Updating the Performance Metrics Name Space (PMNS) ... ++Terminate PMDA if already installed ... ++[...install files, make output...] ++Updating the PMCD control file, and notifying PMCD ... ++Check network.persocket metrics have appeared ... X metrics and Y values ++Check the values for v6only metric are 0 or 1 ... ++network.persocket.v6only ++ ++=== remove sockets agent === ++Culling the Performance Metrics Name Space ... ++network.persocket ... done ++Updating the PMCD control file, and notifying PMCD ... ++[...removing files...] ++Check network.persocket metrics have gone away ... OK +diff --git a/qa/group b/qa/group +index acfc5d208..846c0c4bd 100644 +--- a/qa/group ++++ b/qa/group +@@ -1967,6 +1967,7 @@ x11 + 1901 pmlogger local + 1902 help local + 1914 atop local ++1927 pmda.sockets local + 1937 pmlogrewrite pmda.xfs local + 1955 libpcp pmda pmda.pmcd local + 1956 pmda.linux pmcd local +diff --git a/src/pmdas/linux_sockets/pmda.c b/src/pmdas/linux_sockets/pmda.c +index d10eacf29..5a3018d8a 100644 +--- a/src/pmdas/linux_sockets/pmda.c ++++ b/src/pmdas/linux_sockets/pmda.c +@@ -1,7 +1,7 @@ + /* + * Sockets PMDA + * +- * Copyright (c) 2021 Red Hat. ++ * Copyright (c) 2021-2022 Red Hat. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the +@@ -14,6 +14,7 @@ + * for more details. + */ + ++#include + #include "pmapi.h" + #include "pmda.h" + +@@ -147,6 +148,31 @@ sockets_fetchCallBack(pmdaMetric *metric, unsigned int inst, pmAtomValue *atom) + return PMDA_FETCH_STATIC; + } + ++/* ++ * Restrict the allowed filter strings to only limited special ++ * characters (open and close brackets - everthing else can be ++ * done with alphanumerics) to limit any attack surface here. ++ * The ss filtering language is more complex than we ever want ++ * to be attempting to parse ourself, so we leave that side of ++ * things to the ss command itself. ++ */ ++int ++sockets_check_filter(const char *string) ++{ ++ const char *p; ++ ++ for (p = string; *p; p++) { ++ if (isspace(*p)) ++ continue; ++ if (isalnum(*p)) ++ continue; ++ if (*p == '(' || *p == ')') ++ continue; ++ return 0; /* disallow */ ++ } ++ return 1; ++} ++ + static int + sockets_store(pmResult *result, pmdaExt *pmda) + { +@@ -165,9 +191,14 @@ sockets_store(pmResult *result, pmdaExt *pmda) + case 0: /* network.persocket.filter */ + if ((sts = pmExtractValue(vsp->valfmt, &vsp->vlist[0], + PM_TYPE_STRING, &av, PM_TYPE_STRING)) >= 0) { ++ if (sockets_check_filter(av.cp)) { ++ sts = PM_ERR_BADSTORE; ++ free(av.cp); ++ break; ++ } + if (ss_filter) + free(ss_filter); +- ss_filter = av.cp; /* TODO filter syntax check */ ++ ss_filter = av.cp; + } + break; + default: +diff --git a/src/pmdas/linux_sockets/ss_parse.c b/src/pmdas/linux_sockets/ss_parse.c +index 94c5e16e9..9f3afc691 100644 +--- a/src/pmdas/linux_sockets/ss_parse.c ++++ b/src/pmdas/linux_sockets/ss_parse.c +@@ -1,5 +1,5 @@ + /* +- * Copyright (c) 2021 Red Hat. ++ * Copyright (c) 2021-2022 Red Hat. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the +@@ -21,65 +21,70 @@ static ss_stats_t ss_p; + /* boolean value with no separate value, default 0 */ + #define PM_TYPE_BOOL (PM_TYPE_UNKNOWN-1) + ++/* helper macros to extract field address and size */ ++#define SSFIELD(str,type,f) {(str), (sizeof(str)-1), type, (&(f)), (sizeof(f))} ++#define SSNULLFIELD(str) {(str), (sizeof(str)-1), PM_TYPE_UNKNOWN, NULL} ++ + static struct { + char *field; + int len; + int type; + void *addr; ++ int size; + int found; + } parse_table[] = { +- { "timer:", 6, PM_TYPE_STRING, &ss_p.timer_str }, +- { "uid:", 4, PM_TYPE_U32, &ss_p.uid }, +- { "ino:", 4, PM_TYPE_64, &ss_p.inode }, +- { "sk:", 3, PM_TYPE_U64, &ss_p.sk }, +- { "cgroup:", 7, PM_TYPE_STRING, &ss_p.cgroup }, +- { "v6only:", 7, PM_TYPE_32, &ss_p.v6only }, +- { "--- ", 4, PM_TYPE_UNKNOWN, NULL }, +- { "<-> ", 4, PM_TYPE_UNKNOWN, NULL }, +- { "--> ", 4, PM_TYPE_UNKNOWN, NULL }, +- { "skmem:", 6, PM_TYPE_STRING, &ss_p.skmem_str, }, +- { "ts ", 3, PM_TYPE_BOOL, &ss_p.ts }, +- { "sack ", 5, PM_TYPE_BOOL, &ss_p.sack }, +- { "cubic ", 6, PM_TYPE_BOOL, &ss_p.cubic }, +- { "wscale:", 7, PM_TYPE_STRING, &ss_p.wscale_str }, +- { "rto:", 4, PM_TYPE_DOUBLE, &ss_p.rto }, +- { "rtt:", 4, PM_TYPE_STRING, &ss_p.round_trip_str }, +- { "ato:", 4, PM_TYPE_DOUBLE, &ss_p.ato }, +- { "backoff:", 8, PM_TYPE_32, &ss_p.backoff }, +- { "mss:", 4, PM_TYPE_U32, &ss_p.mss }, +- { "pmtu:", 5, PM_TYPE_U32, &ss_p.pmtu }, +- { "rcvmss:", 7, PM_TYPE_U32, &ss_p.rcvmss }, +- { "advmss:", 7, PM_TYPE_U32, &ss_p.advmss }, +- { "cwnd:", 5, PM_TYPE_U32, &ss_p.cwnd }, +- { "lost:", 5, PM_TYPE_32, &ss_p.lost }, +- { "ssthresh:", 9, PM_TYPE_U32, &ss_p.ssthresh }, +- { "bytes_sent:", 11, PM_TYPE_U64, &ss_p.bytes_sent }, +- { "bytes_retrans:", 14, PM_TYPE_U64, &ss_p.bytes_retrans }, +- { "bytes_acked:", 12, PM_TYPE_U64, &ss_p.bytes_acked }, +- { "bytes_received:", 15, PM_TYPE_U64, &ss_p.bytes_received }, +- { "segs_out:", 9, PM_TYPE_U32, &ss_p.segs_out }, +- { "segs_in:", 8, PM_TYPE_U32, &ss_p.segs_in }, +- { "data_segs_out:", 14, PM_TYPE_U32, &ss_p.data_segs_out }, +- { "data_segs_in:", 13, PM_TYPE_U32, &ss_p.data_segs_in }, +- { "send ", 5, PM_TYPE_DOUBLE, &ss_p.send }, /* no ':' */ +- { "lastsnd:", 8, PM_TYPE_U32, &ss_p.lastsnd }, +- { "lastrcv:", 8, PM_TYPE_U32, &ss_p.lastrcv }, +- { "lastack:", 8, PM_TYPE_U32, &ss_p.lastack }, +- { "pacing_rate ", 12, PM_TYPE_DOUBLE, &ss_p.pacing_rate }, /* no ':' */ +- { "delivery_rate ", 14, PM_TYPE_DOUBLE, &ss_p.delivery_rate }, /* no ':' */ +- { "delivered:", 10, PM_TYPE_U32, &ss_p.delivered }, +- { "app_limited ", 12, PM_TYPE_BOOL, &ss_p.app_limited }, +- { "reord_seen:", 11, PM_TYPE_32, &ss_p.reord_seen }, +- { "busy:", 5, PM_TYPE_U64, &ss_p.busy }, +- { "unacked:", 8, PM_TYPE_32, &ss_p.unacked }, +- { "rwnd_limited:", 13, PM_TYPE_U64, &ss_p.rwnd_limited }, +- { "retrans:", 8, PM_TYPE_STRING, &ss_p.retrans_str }, +- { "dsack_dups:", 11, PM_TYPE_U32, &ss_p.dsack_dups }, +- { "rcv_rtt:", 8, PM_TYPE_DOUBLE, &ss_p.rcv_rtt }, +- { "rcv_space:", 10, PM_TYPE_32, &ss_p.rcv_space }, +- { "rcv_ssthresh:", 13, PM_TYPE_32, &ss_p.rcv_ssthresh }, +- { "minrtt:", 7, PM_TYPE_DOUBLE, &ss_p.minrtt }, +- { "notsent:", 8, PM_TYPE_U32, &ss_p.notsent }, ++ SSFIELD("timer:", PM_TYPE_STRING, ss_p.timer_str), ++ SSFIELD("uid:", PM_TYPE_U32, ss_p.uid), ++ SSFIELD("ino:", PM_TYPE_64, ss_p.inode), ++ SSFIELD("sk:", PM_TYPE_U64, ss_p.sk), ++ SSFIELD("cgroup:", PM_TYPE_STRING, ss_p.cgroup), ++ SSFIELD("v6only:", PM_TYPE_32, ss_p.v6only), ++ SSNULLFIELD("--- "), ++ SSNULLFIELD("<-> "), ++ SSNULLFIELD("--> "), ++ SSFIELD("skmem:", PM_TYPE_STRING, ss_p.skmem_str), ++ SSFIELD("ts ", PM_TYPE_BOOL, ss_p.ts), ++ SSFIELD("sack ", PM_TYPE_BOOL, ss_p.sack), ++ SSFIELD("cubic ", PM_TYPE_BOOL, ss_p.cubic), ++ SSFIELD("wscale:", PM_TYPE_STRING, ss_p.wscale_str), ++ SSFIELD("rto:", PM_TYPE_DOUBLE, ss_p.rto), ++ SSFIELD("rtt:", PM_TYPE_STRING, ss_p.round_trip_str), ++ SSFIELD("ato:", PM_TYPE_DOUBLE, ss_p.ato), ++ SSFIELD("backoff:", PM_TYPE_32, ss_p.backoff), ++ SSFIELD("mss:", PM_TYPE_U32, ss_p.mss), ++ SSFIELD("pmtu:", PM_TYPE_U32, ss_p.pmtu), ++ SSFIELD("rcvmss:", PM_TYPE_U32, ss_p.rcvmss), ++ SSFIELD("advmss:", PM_TYPE_U32, ss_p.advmss), ++ SSFIELD("cwnd:", PM_TYPE_U32, ss_p.cwnd), ++ SSFIELD("lost:", PM_TYPE_32, ss_p.lost), ++ SSFIELD("ssthresh:", PM_TYPE_U32, ss_p.ssthresh), ++ SSFIELD("bytes_sent:", PM_TYPE_U64, ss_p.bytes_sent), ++ SSFIELD("bytes_retrans:", PM_TYPE_U64, ss_p.bytes_retrans), ++ SSFIELD("bytes_acked:", PM_TYPE_U64, ss_p.bytes_acked), ++ SSFIELD("bytes_received:", PM_TYPE_U64, ss_p.bytes_received), ++ SSFIELD("segs_out:", PM_TYPE_U32, ss_p.segs_out), ++ SSFIELD("segs_in:", PM_TYPE_U32, ss_p.segs_in), ++ SSFIELD("data_segs_out:", PM_TYPE_U32, ss_p.data_segs_out), ++ SSFIELD("data_segs_in:", PM_TYPE_U32, ss_p.data_segs_in), ++ SSFIELD("send ", PM_TYPE_DOUBLE, ss_p.send), /* no ':' */ ++ SSFIELD("lastsnd:", PM_TYPE_U32, ss_p.lastsnd), ++ SSFIELD("lastrcv:", PM_TYPE_U32, ss_p.lastrcv), ++ SSFIELD("lastack:", PM_TYPE_U32, ss_p.lastack), ++ SSFIELD("pacing_rate ", PM_TYPE_DOUBLE, ss_p.pacing_rate), /* no ':' */ ++ SSFIELD("delivery_rate ", PM_TYPE_DOUBLE, ss_p.delivery_rate), /* no ':' */ ++ SSFIELD("delivered:", PM_TYPE_U32, ss_p.delivered), ++ SSFIELD("app_limited ", PM_TYPE_BOOL, ss_p.app_limited), ++ SSFIELD("reord_seen:", PM_TYPE_32, ss_p.reord_seen), ++ SSFIELD("busy:", PM_TYPE_U64, ss_p.busy), ++ SSFIELD("unacked:", PM_TYPE_32, ss_p.unacked), ++ SSFIELD("rwnd_limited:", PM_TYPE_U64, ss_p.rwnd_limited), ++ SSFIELD("retrans:", PM_TYPE_STRING, ss_p.retrans_str), ++ SSFIELD("dsack_dups:", PM_TYPE_U32, ss_p.dsack_dups), ++ SSFIELD("rcv_rtt:", PM_TYPE_DOUBLE, ss_p.rcv_rtt), ++ SSFIELD("rcv_space:", PM_TYPE_32, ss_p.rcv_space), ++ SSFIELD("rcv_ssthresh:", PM_TYPE_32, ss_p.rcv_ssthresh), ++ SSFIELD("minrtt:", PM_TYPE_DOUBLE, ss_p.minrtt), ++ SSFIELD("notsent:", PM_TYPE_U32, ss_p.notsent), + + { NULL } + }; +@@ -225,8 +230,11 @@ ss_parse(char *line, int has_state_field, ss_stats_t *ss) + if (*p == '(') + p++; + r = (char *)parse_table[i].addr; +- for (s=p; *s && *s != ' ' && *s != '\n' && *s != ')'; s++) +- *r++ = *s; /* TODO check r len */ ++ for (s=p; *s && *s != ' ' && *s != '\n' && *s != ')'; s++) { ++ *r++ = *s; ++ if (r - (char *)parse_table[i].addr >= parse_table[i].size - 1) ++ break; ++ } + *r = '\0'; + break; + case PM_TYPE_32: +diff --git a/src/pmdas/linux_sockets/ss_stats.h b/src/pmdas/linux_sockets/ss_stats.h +index 183db5afa..009a00cd9 100644 +--- a/src/pmdas/linux_sockets/ss_stats.h ++++ b/src/pmdas/linux_sockets/ss_stats.h +@@ -1,11 +1,11 @@ + /* +- * Copyright (c) 2021 Red Hat. +- * ++ * Copyright (c) 2021-2022 Red Hat. ++ * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. +- * ++ * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +@@ -26,7 +26,7 @@ typedef struct ss_stats { + __int32_t timer_retrans; + __uint32_t uid; + __uint64_t sk; +- char cgroup[64]; ++ char cgroup[128]; + __int32_t v6only; + char skmem_str[64]; + __int32_t skmem_rmem_alloc; +commit 77ba20d5e76ada83283a262dd2083b2fc284b5f8 +Author: Nathan Scott +Date: Thu May 5 09:33:46 2022 +1000 + + selinux: policy updates needed for the pmdasockets metrics + + Thanks to Jan Kurík and Miloš Malík we have the additional + selinux policy requirements - without these we see QE test + failures for this agent with pcp-ss(1) on RHEL. + + Related to Red Hat BZ #1981886. + +diff --git a/qa/917.out.in b/qa/917.out.in +index 3bd1dc15e..6a4356a12 100644 +--- a/qa/917.out.in ++++ b/qa/917.out.in +@@ -154,9 +154,9 @@ Checking policies. + # -- end logging_watch_journal_dirs(pcp_domain) expansion + allow [pcp_pmcd_t] [cluster_tmpfs_t] : [file] { write }; + allow [pcp_pmcd_t] [drbd_exec_t] : [file] { execute execute_no_trans }; +- allow [pcp_pmcd_t] self : [netlink_generic_socket] { bind create getattr setopt write read }; +- allow [pcp_pmcd_t] [sbd_exec_t] : [file] { execute execute_no_trans }; +- allow [pcp_pmcd_t] self : [netlink_tcpdiag_socket] { bind create getattr nlmsg_read setopt }; ++! allow [pcp_pmcd_t] self : [netlink_generic_socket] { bind create getattr setopt write read }; ++! allow [pcp_pmcd_t] [sbd_exec_t] : [file] { execute execute_no_trans }; ++! allow [pcp_pmcd_t] self : [netlink_tcpdiag_socket] { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write }; + allow [syslogd_t] [pcp_log_t] : [fifo_file] { open read write }; + allow [pcp_pmcd_t] [etc_t] : [dir] { open read search getattr lock ioctl }; + allow [pcp_pmcd_t] [shadow_t] : [file] { getattr ioctl lock open read }; +diff --git a/src/selinux/GNUlocaldefs b/src/selinux/GNUlocaldefs +index 1a1b1428c..1462c5ccb 100644 +--- a/src/selinux/GNUlocaldefs ++++ b/src/selinux/GNUlocaldefs +@@ -138,8 +138,8 @@ PCP_NETLINK_GENERIC_SOCKET_RULE="allow pcp_pmcd_t self:netlink_generic_socket { + endif + + ifeq "$(PCP_SELINUX_NETLINK_TCPDIAG_SOCKET_CLASS)" "true" +-PCP_NETLINK_TCPDIAG_SOCKET_CLASS="class netlink_tcpdiag_socket { bind create getattr nlmsg_read setopt };" +-PCP_NETLINK_TCPDIAG_SOCKET_RULE="allow pcp_pmcd_t self:netlink_tcpdiag_socket { bind create getattr nlmsg_read setopt };" ++PCP_NETLINK_TCPDIAG_SOCKET_CLASS="class netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write };" ++PCP_NETLINK_TCPDIAG_SOCKET_RULE="allow pcp_pmcd_t self:netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write };" + endif + + ifeq "$(PCP_SELINUX_LOCKDOWN_CLASS)" "true" +commit a6222992fe5f97f94bdddd928ce9557be1918bfd +Author: Jan Kurik +Date: Fri May 6 08:04:46 2022 +1000 + + selinux: fine-tune netlink_tcpdiag_socket policy for all platforms + + Previous policy set did not apply correctly on ppc64le and aarch64 + architectures. After some tweaking the following set of permissions + was found to work on all the supported architectures and fixes the + behavior of the sockets PMDA. + + Related to Red Hat BZ #1981886. + +diff --git a/qa/917.out.in b/qa/917.out.in +index 6a4356a12..723193aa2 100644 +--- a/qa/917.out.in ++++ b/qa/917.out.in +@@ -156,7 +156,7 @@ Checking policies. + allow [pcp_pmcd_t] [drbd_exec_t] : [file] { execute execute_no_trans }; + ! allow [pcp_pmcd_t] self : [netlink_generic_socket] { bind create getattr setopt write read }; + ! allow [pcp_pmcd_t] [sbd_exec_t] : [file] { execute execute_no_trans }; +-! allow [pcp_pmcd_t] self : [netlink_tcpdiag_socket] { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write }; ++! allow [pcp_pmcd_t] self : [netlink_tcpdiag_socket] { append bind connect create getattr getopt ioctl lock nlmsg_read nlmsg_write read setattr setopt shutdown write }; + allow [syslogd_t] [pcp_log_t] : [fifo_file] { open read write }; + allow [pcp_pmcd_t] [etc_t] : [dir] { open read search getattr lock ioctl }; + allow [pcp_pmcd_t] [shadow_t] : [file] { getattr ioctl lock open read }; +diff --git a/src/selinux/GNUlocaldefs b/src/selinux/GNUlocaldefs +index 1462c5ccb..9733aead9 100644 +--- a/src/selinux/GNUlocaldefs ++++ b/src/selinux/GNUlocaldefs +@@ -138,8 +138,8 @@ PCP_NETLINK_GENERIC_SOCKET_RULE="allow pcp_pmcd_t self:netlink_generic_socket { + endif + + ifeq "$(PCP_SELINUX_NETLINK_TCPDIAG_SOCKET_CLASS)" "true" +-PCP_NETLINK_TCPDIAG_SOCKET_CLASS="class netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write };" +-PCP_NETLINK_TCPDIAG_SOCKET_RULE="allow pcp_pmcd_t self:netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock read setattr setopt shutdown write };" ++PCP_NETLINK_TCPDIAG_SOCKET_CLASS="class netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock nlmsg_read nlmsg_write read setattr setopt shutdown write };" ++PCP_NETLINK_TCPDIAG_SOCKET_RULE="allow pcp_pmcd_t self:netlink_tcpdiag_socket { append bind connect create getattr getopt ioctl lock nlmsg_read nlmsg_write read setattr setopt shutdown write };" + endif + + ifeq "$(PCP_SELINUX_LOCKDOWN_CLASS)" "true" diff --git a/SOURCES/redhat-bugzilla-1991764.patch b/SOURCES/redhat-bugzilla-1991764.patch deleted file mode 100644 index 4d9dc7b..0000000 --- a/SOURCES/redhat-bugzilla-1991764.patch +++ /dev/null @@ -1,83 +0,0 @@ -commit 69c7d9bf5ac24bda51f8c876dc258bfe054b7cf8 -Author: Sunil Mohan Adapa -Date: Tue Feb 1 09:55:23 2022 -0800 - - pmlogger: zeroconf: Prioritize user configuration over zeroconf - - In 2c17ba0cc16f58de511dff1e3122096d60c50bb0, zeroconf provided - defaults (/usr/share/pcp/zeroconf/pmlogger, which was actually - /etc/sysconf/pmlogger_zeroconf at the time of the change) were prioritized over - user configuration (/etc/sysconf/pmlogger). This lead to regression in clients - which edited the user configuration and expected the changes to be given - priority over zeroconf configuration. This was identified at least in - ansible-pcp[1]. - - Undo the changes in this commit so that the final priority is as follows: - - User configuration (/etc/sysconfig/pmlogger) - (priority over) - Zeroconf defaults (/usr/share/pcp/zeroconf/pmlogger) - (priority over) - Code defaults (pmlogger.c) - - Links: - - 1) https://github.com/performancecopilot/pcp/pull/1462#issuecomment-1022714960 - - Tests: - - - Install pcp. Ensure pmlogger is running. Notice that there is no - PMLOGGER_INTERVAL set in the pmlogger daemon's environment. - - - Install pcp-zeroconf. Restart pmlogger. Notice that PMLOGGER_INTERVAL - environment is set in the pmlogger daemon's environment. The value is 10. - - - Edit /etc/sysconfig/pmlogger and set the value of PMLOGGER_INTERVAL to 15. - Restart pmlogger and notice that PMLOGGER_INTERVAL is set to 15 in pmlogger - daemon's environment. - - Signed-off-by: Sunil Mohan Adapa - Tested-by: Sunil Mohan Adapa - -diff --git a/src/pmlogger/pmlogger.defaults b/src/pmlogger/pmlogger.defaults -index 1765760b5..1e96cd6ff 100644 ---- a/src/pmlogger/pmlogger.defaults -+++ b/src/pmlogger/pmlogger.defaults -@@ -1,7 +1,7 @@ - # Environment variables for the primary pmlogger daemon. See also - # the pmlogger control file and pmlogconf(1) for additional details. --# Settings defined in this file will be overridden by any settings --# in the pmlogger zeroconf file (if present). -+# Settings defined in this file will override any settings in the -+# pmlogger zeroconf file (if present). - - # Behaviour regarding listening on external-facing interfaces; - # unset PMLOGGER_LOCAL to allow connections from remote hosts. -diff --git a/src/pmlogger/pmlogger.zeroconf b/src/pmlogger/pmlogger.zeroconf -index 9defc6e3d..fe86dedcc 100644 ---- a/src/pmlogger/pmlogger.zeroconf -+++ b/src/pmlogger/pmlogger.zeroconf -@@ -1,6 +1,6 @@ - # --# PMLOGGER environment variables defined in this file take precedence over --# the same variables defined in the standard pmlogger config file. -+# PMLOGGER environment variables defined in the standard pmlogger config file -+# take precedence over the same variables defined in this file. - # - # The PMLOGGER_INTERVAL setting affects the default primary pmlogger recording - # frequency. This only affects the *default* interval setting when specified -diff --git a/src/pmlogger/pmlogger_check.sh b/src/pmlogger/pmlogger_check.sh -index 6cc2a8ed7..64750cb5f 100755 ---- a/src/pmlogger/pmlogger_check.sh -+++ b/src/pmlogger/pmlogger_check.sh -@@ -983,8 +983,8 @@ END { print m }'` - then - if [ "X$primary" = Xy ] - then -- # pcp-zeroconf environment variables (if present) take precedence -- envs=`grep -h ^PMLOGGER "$PMLOGGERENVS" "$PMLOGGERZEROCONFENVS" 2>/dev/null` -+ # User configuration takes precedence over pcp-zeroconf -+ envs=`grep -h ^PMLOGGER "$PMLOGGERZEROCONFENVS" "$PMLOGGERENVS" 2>/dev/null` - args="-P $args" - iam=" primary" - # clean up port-map, just in case diff --git a/SOURCES/redhat-bugzilla-2006430.patch b/SOURCES/redhat-bugzilla-2006430.patch deleted file mode 100644 index af483b7..0000000 --- a/SOURCES/redhat-bugzilla-2006430.patch +++ /dev/null @@ -1,32 +0,0 @@ -commit 22ee6c04115e8a26f319be3549cd50ad81b5024a -Author: Nathan Scott -Date: Fri Jan 21 13:08:05 2022 +1100 - - selinux: additional debugfs policy requirement for pmdakvm - - Related to Red Hat BZ #2006430 - -diff --git a/qa/917.out.in b/qa/917.out.in -index 9339f7436..0723565d6 100644 ---- a/qa/917.out.in -+++ b/qa/917.out.in -@@ -25,6 +25,7 @@ Checking policies. - ! allow [pcp_pmcd_t] [container_var_run_t] : [sock_file] { getattr write }; - allow [pcp_pmcd_t] [var_run_t] : [sock_file] { getattr write }; - allow [pcp_pmcd_t] [debugfs_t] : [file] { append getattr ioctl open read write }; -+ allow [pcp_pmcd_t] [debugfs_t] : [dir] { read }; - ! allow [pcp_pmcd_t] [pcp_pmie_exec_t] : [file] { execute execute_no_trans open read map }; - allow [pcp_pmcd_t] [pcp_var_lib_t] : [fifo_file] { getattr read open unlink }; - allow [pcp_pmcd_t] [proc_kcore_t] : [file] { getattr }; -diff --git a/src/selinux/pcpupstream.te.in b/src/selinux/pcpupstream.te.in -index 4a51b804e..20a6705d5 100644 ---- a/src/selinux/pcpupstream.te.in -+++ b/src/selinux/pcpupstream.te.in -@@ -144,6 +144,7 @@ allow pcp_pmcd_t var_run_t:sock_file { getattr write }; - - #type=AVC msg=audit(XXX.6): avc: denied { append getattr ioctl open read write } for pid=YYYY comm="pmdaX" name="/" dev="tracefs" ino=1 scontext=system_u:system_r:pcp_pmcd_t:s0 tcontext=system_u:object_r:debugfs_t:s0 tclass=file permissive=0 - allow pcp_pmcd_t debugfs_t:file { append getattr ioctl open read write }; -+allow pcp_pmcd_t debugfs_t:dir read; - - #type=AVC msg=audit(XXX.7): avc: denied { execute execute_no_trans open read } for pid=YYYY comm="pmdaX" name="/" dev="tracefs" ino=1 scontext=system_u:system_r:pcp_pmcd_t:s0 tcontext=system_u:object_r:pcp_pmie_exec_t:s0 tclass=file permissive=0 - #type=AVC msg=audit(XXX.68): avc: denied { map } for pid=28290 comm="pmie" path="/usr/bin/pmie" dev="dm-0" ino=5443 scontext=system_u:system_r:pcp_pmcd_t:s0 tcontext=system_u:object_r:pcp_pmie_exec_t:s0 tclass=file permissive=0 diff --git a/SOURCES/redhat-bugzilla-2017632.patch b/SOURCES/redhat-bugzilla-2017632.patch deleted file mode 100644 index 3918da7..0000000 --- a/SOURCES/redhat-bugzilla-2017632.patch +++ /dev/null @@ -1,126 +0,0 @@ -commit 343aef25472baa74c3a4669cf86b670d93d41dcb -Author: Nathan Scott -Date: Tue Nov 23 16:11:24 2021 +1100 - - pmlogconf: fix reprobing with interactive changes - - In testing an earlier persistance fix it was discovered - that reprobe was inadvertently overwriting user requests - for changes interactively. - - Related to Red Hat BZ #2017632 - -diff --git a/qa/368.out b/qa/368.out -index 829162f859..179a1142cf 100644 ---- a/qa/368.out -+++ b/qa/368.out -@@ -80,44 +80,10 @@ Differences ... - Keep changes? [y] - Group: qa group one - Log this group? [y] ... --Differences ... --*** TMP.orig ... ----- TMP.conf.new ... --*************** --*** 22,35 **** -- sample.long.million -- } -- #---- --! #+ 02:x:: --! #---- --! #+ 03:y:default: --! ## qa group three -- log advisory on default { --! sample.longlong.ten -- } -- #---- -- #+ 04:n:default: -- ## qa group four -- #---- ----- 22,36 ---- -- sample.long.million -- } -- #---- --! #+ 02:y:default: --! ## qa group two -- log advisory on default { --! sample.ulong.ten -- } -- #---- --+ #+ 03:n:default: --+ ## qa group three --+ #---- -- #+ 04:n:default: -- ## qa group four -- #---- --Keep changes? [y] -+No changes -+ - Group: qa group one --Log this group? [y] ...... -+Log this group? [y] ..... - Differences ... - *** TMP.orig ... - --- TMP.conf.new ... -@@ -132,18 +98,8 @@ Differences ... - #---- - --- 18,23 ---- - *************** --*** 26,31 **** ----- 25,31 ---- -- ## qa group two -- log advisory on default { -- sample.ulong.ten --+ sample.ulong.million -- } -- #---- -- #+ 03:n:default: --*************** --*** 37,42 **** ----- 37,53 ---- -+*** 36,41 **** -+--- 35,51 ---- - #+ 05:n:default: - ## qa group five - #---- -@@ -185,15 +141,13 @@ log advisory on default { - sample.long.million - } - #---- --#+ 02:y:default: --## qa group two --log advisory on default { -- sample.ulong.ten -- sample.ulong.million --} -+#+ 02:x:: - #---- --#+ 03:n:default: -+#+ 03:y:default: - ## qa group three -+log advisory on default { -+ sample.longlong.ten -+} - #---- - #+ 04:n:default: - ## qa group four -diff --git a/src/pmlogconf/pmlogconf.c b/src/pmlogconf/pmlogconf.c -index c03c61e797..fa1156859d 100644 ---- a/src/pmlogconf/pmlogconf.c -+++ b/src/pmlogconf/pmlogconf.c -@@ -913,13 +913,13 @@ evaluate_state(group_t *group) - if ((group->pmlogger || group->pmrep) && !group->pmlogconf) { - state = group->saved_state; - } else if (evaluate_group(group)) { /* probe */ -- if (reprobe == 0 && group->saved_state != 0) -+ if (group->saved_state != 0) - state = group->saved_state; - else - state = group->true_state; - group->success = 1; - } else { -- if (reprobe == 0 && group->saved_state != 0) -+ if (group->saved_state != 0) - state = group->saved_state; - else - state = group->false_state; diff --git a/SOURCES/redhat-bugzilla-2024980.patch b/SOURCES/redhat-bugzilla-2024980.patch deleted file mode 100644 index 8a05c1c..0000000 --- a/SOURCES/redhat-bugzilla-2024980.patch +++ /dev/null @@ -1,331856 +0,0 @@ -commit fa0d698d8c69c873cc5338dde35829be11cc8fb8 -Author: Andreas Gerstmayr -Date: Fri Nov 19 15:53:40 2021 +0100 - - pmdabpf: support x86, arm and powerpc - - This commit vendors vmlinux.h from kernel 5.14.0-22 on CentOS 9 Stream - for x86, arm and powerpc (for build environments without BTF or older - kernel versions), and adds a new configure option --with-pmdabpf-btf to - specify a BTF location. If this option is specified, a vmlinux.h will - be generated from this location, and this file will be used instead of - the vendored vmlinux.h file. - -diff --git a/build/rpm/redhat.spec b/build/rpm/redhat.spec -index 8aebec797..8d7660c62 100644 ---- a/build/rpm/redhat.spec -+++ b/build/rpm/redhat.spec -@@ -90,9 +90,9 @@ Source0: %{artifactory}/pcp-source-release/pcp-%{version}.src.tar.gz - %global disable_bcc 1 - %endif - --# support for pmdabpf, check bpf.spec for supported architectures of bpf -+# support for pmdabpf, check bcc.spec for supported architectures of libbpf-tools - %if 0%{?fedora} >= 33 || 0%{?rhel} > 8 --%ifarch x86_64 %{power64} aarch64 s390x -+%ifarch x86_64 ppc64 ppc64le aarch64 - %global disable_bpf 0 - %else - %global disable_bpf 1 -diff --git a/configure b/configure -index 4cd02bc84..b9832e571 100755 ---- a/configure -+++ b/configure -@@ -862,6 +862,8 @@ pcp_perl_prog - PERL - PMDA_BPFTRACE - PMDA_BPF -+pmdabpf_vmlinuxh -+pmdabpf_arch - pmdabpf_bpftool - PMDABPF_BPFTOOL - pmdabpf_llvm_strip -@@ -1057,6 +1059,7 @@ with_pmdabpf - with_pmdabpf_clang - with_pmdabpf_llvm_strip - with_pmdabpf_bpftool -+with_pmdabpf_btf - with_pmdabpftrace - with_pmdajson - with_pmdanutcracker -@@ -1804,6 +1807,8 @@ Optional Packages: - discovery) - --with-pmdabpf-bpftool path to bpftool (default is empty for auto - discovery) -+ --with-pmdabpf-btf path to kernel BTF sources (default is empty to use -+ vendored kernel type information) - --with-pmdabpftrace enable bpftrace pmda (default is on) - --with-pmdajson enable JSON pmda (default is on) - --with-pmdanutcracker enable nutcracker pmda (default is on) -@@ -3010,6 +3015,15 @@ fi - - - -+# Check whether --with-pmdabpf-btf was given. -+if test "${with_pmdabpf_btf+set}" = set; then : -+ withval=$with_pmdabpf_btf; PMDABPF_BTF=$withval; PACKAGE_CONFIGURE="$PACKAGE_CONFIGURE --with-pmdabpf-btf=$withval" -+else -+ PMDABPF_BTF='' -+fi -+ -+ -+ - # Check whether --with-pmdabpftrace was given. - if test "${with_pmdabpftrace+set}" = set; then : - withval=$with_pmdabpftrace; do_pmdabpftrace=$withval; PACKAGE_CONFIGURE="$PACKAGE_CONFIGURE --with-pmdabpftrace=$withval" -@@ -8414,6 +8428,35 @@ fi - pmdabpf_bpftool=$PMDABPF_BPFTOOL - - -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking BPF CO-RE architecture identifier" >&5 -+$as_echo_n "checking BPF CO-RE architecture identifier... " >&6; } -+pmdabpf_arch=`uname -m | sed 's/x86_64/x86/' | sed 's/aarch64/arm64/' | sed 's/ppc64le/powerpc/' | sed 's/mips.*/mips/'` -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pmdabpf_arch" >&5 -+$as_echo "$pmdabpf_arch" >&6; } -+ -+pmdabpf_vmlinuxh="" -+if test -n "$PMDABPF_BTF"; then -+ pmdabpf_vmlinuxh="`pwd`/src/pmdas/bpf/vmlinux.h" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: generating $pmdabpf_vmlinuxh from $PMDABPF_BTF" >&5 -+$as_echo "$as_me: generating $pmdabpf_vmlinuxh from $PMDABPF_BTF" >&6;} -+ $PMDABPF_BPFTOOL btf dump file "$PMDABPF_BTF" format c > $pmdabpf_vmlinuxh -+else -+ pmdabpf_arch_vmlinux="`pwd`/src/pmdas/bpf/vendor/vmlinux/$pmdabpf_arch/vmlinux.h" -+ if test -f "$pmdabpf_arch_vmlinux"; then -+ pmdabpf_vmlinuxh="$pmdabpf_arch_vmlinux" -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: vmlinux.h for architecture $pmdabpf_arch is not vendored, please use --with-pmdabpf-btf to generate a vmlinux.h for $pmdabpf_arch" >&5 -+$as_echo "$as_me: vmlinux.h for architecture $pmdabpf_arch is not vendored, please use --with-pmdabpf-btf to generate a vmlinux.h for $pmdabpf_arch" >&6;} -+ fi -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for vmlinux.h" >&5 -+$as_echo_n "checking for vmlinux.h... " >&6; } -+if test -f "$pmdabpf_vmlinuxh"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pmdabpf_vmlinuxh" >&5 -+$as_echo "$pmdabpf_vmlinuxh" >&6; }; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -+$as_echo "not found" >&6; }; fi -+ - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the bpf PMDA should be included" >&5 - $as_echo_n "checking if the bpf PMDA should be included... " >&6; } - pmda_bpf=false -@@ -8422,11 +8465,11 @@ if test "x$do_pmdabpf" = "xyes"; then : - fi - if test "x$do_pmdabpf" = "xcheck"; then : - -- if test $clang_major_version -ge 10; then -- $have_libbpf && $have_libelf && test -n "$pmdabpf_bpftool" && pmda_bpf=true -- else -- pmda_bpf=false -- fi -+ $have_libbpf && $have_libelf && \ -+ test $clang_major_version -ge 10 && \ -+ test -x "$pmdabpf_bpftool" && \ -+ test -f "$pmdabpf_vmlinuxh" && \ -+ pmda_bpf=true - - fi - PMDA_BPF=$pmda_bpf -diff --git a/configure.ac b/configure.ac -index 0056ace71..4e38a7805 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -177,6 +177,12 @@ AC_ARG_WITH([pmdabpf-bpftool], - [PMDABPF_BPFTOOL=$withval; PACKAGE_CONFIGURE="$PACKAGE_CONFIGURE --with-pmdabpf-bpftool=$withval"], - [PMDABPF_BPFTOOL='']) - -+AC_ARG_WITH([pmdabpf-btf], -+ [AC_HELP_STRING([--with-pmdabpf-btf], -+ [path to kernel BTF sources (default is empty to use vendored kernel type information)])], -+ [PMDABPF_BTF=$withval; PACKAGE_CONFIGURE="$PACKAGE_CONFIGURE --with-pmdabpf-btf=$withval"], -+ [PMDABPF_BTF='']) -+ - AC_ARG_WITH([pmdabpftrace], - [AC_HELP_STRING([--with-pmdabpftrace], - [enable bpftrace pmda (default is on)])], -@@ -1181,35 +1187,62 @@ AC_SUBST(HAVE_LIBBPF, [$have_libbpf]) - PKG_CHECK_MODULES([libelf], [libelf], [have_libelf=true], [have_libelf=false]) - AC_SUBST(HAVE_LIBELF, [$have_libelf]) - --dnl Auto-discover clang, llvm-strip and bpftool if not provided by the user -+dnl Auto-discover clang if not provided by the user - if test -z "$PMDABPF_CLANG"; then - AC_PATH_PROG(PMDABPF_CLANG, clang) - fi - pmdabpf_clang=$PMDABPF_CLANG - AC_SUBST(pmdabpf_clang) - -+dnl Auto-discover llvm-strip if not provided by the user - if test -z "$PMDABPF_LLVM_STRIP"; then - AC_PATH_PROG(PMDABPF_LLVM_STRIP, llvm-strip) - fi - pmdabpf_llvm_strip=$PMDABPF_LLVM_STRIP - AC_SUBST(pmdabpf_llvm_strip) - -+dnl Auto-discover bpftool if not provided by the user - if test -z "$PMDABPF_BPFTOOL"; then - AC_PATH_PROG(PMDABPF_BPFTOOL, bpftool) - fi - pmdabpf_bpftool=$PMDABPF_BPFTOOL - AC_SUBST(pmdabpf_bpftool) - -+dnl Get BPF CO-RE arch identifier -+AC_MSG_CHECKING([BPF CO-RE architecture identifier]) -+pmdabpf_arch=`uname -m | sed 's/x86_64/x86/' | sed 's/aarch64/arm64/' | sed 's/ppc64le/powerpc/' | sed 's/mips.*/mips/'` -+AC_SUBST(pmdabpf_arch) -+AC_MSG_RESULT($pmdabpf_arch) -+ -+dnl Generate vmlinux.h if PMDABPF_BTF is provided by the user, -+dnl otherwise fall back to vendored vmlinux.h -+pmdabpf_vmlinuxh="" -+if test -n "$PMDABPF_BTF"; then -+ pmdabpf_vmlinuxh="`pwd`/src/pmdas/bpf/vmlinux.h" -+ AC_MSG_NOTICE([generating $pmdabpf_vmlinuxh from $PMDABPF_BTF]) -+ $PMDABPF_BPFTOOL btf dump file "$PMDABPF_BTF" format c > $pmdabpf_vmlinuxh -+else -+ pmdabpf_arch_vmlinux="`pwd`/src/pmdas/bpf/vendor/vmlinux/$pmdabpf_arch/vmlinux.h" -+ if test -f "$pmdabpf_arch_vmlinux"; then -+ pmdabpf_vmlinuxh="$pmdabpf_arch_vmlinux" -+ else -+ AC_MSG_NOTICE([vmlinux.h for architecture $pmdabpf_arch is not vendored, please use --with-pmdabpf-btf to generate a vmlinux.h for $pmdabpf_arch]) -+ fi -+fi -+AC_SUBST(pmdabpf_vmlinuxh) -+AC_MSG_CHECKING([for vmlinux.h]) -+if test -f "$pmdabpf_vmlinuxh"; then AC_MSG_RESULT($pmdabpf_vmlinuxh); else AC_MSG_RESULT(not found); fi -+ - AC_MSG_CHECKING([if the bpf PMDA should be included]) - pmda_bpf=false - AS_IF([test "x$do_pmdabpf" = "xyes"], [pmda_bpf=true]) - AS_IF([test "x$do_pmdabpf" = "xcheck"], [ - dnl pmdabpf requires libbpf, libelf and bpftool -- if test $clang_major_version -ge 10; then -- $have_libbpf && $have_libelf && test -n "$pmdabpf_bpftool" && pmda_bpf=true -- else -- pmda_bpf=false -- fi -+ $have_libbpf && $have_libelf && \ -+ test $clang_major_version -ge 10 && \ -+ test -x "$pmdabpf_bpftool" && \ -+ test -f "$pmdabpf_vmlinuxh" && \ -+ pmda_bpf=true - ]) - AC_SUBST(PMDA_BPF, $pmda_bpf) - if $pmda_bpf; then AC_MSG_RESULT(yes); else AC_MSG_RESULT(no); fi -diff --git a/src/include/builddefs.in b/src/include/builddefs.in -index cc89ad4d2..7249f4b29 100644 ---- a/src/include/builddefs.in -+++ b/src/include/builddefs.in -@@ -233,6 +233,8 @@ INKSCAPE = @inkscape@ - PMDABPF_CLANG = @pmdabpf_clang@ - PMDABPF_LLVM_STRIP = @pmdabpf_llvm_strip@ - PMDABPF_BPFTOOL = @pmdabpf_bpftool@ -+PMDABPF_ARCH = @pmdabpf_arch@ -+PMDABPF_VMLINUXH = @pmdabpf_vmlinuxh@ - - HAVE_MANPAGES = @have_manpages@ - HAVE_GZIPPED_MANPAGES = @have_gzipped_manpages@ -diff --git a/src/pmdas/bpf/.gitignore b/src/pmdas/bpf/.gitignore -index 01802552e..702b3133b 100644 ---- a/src/pmdas/bpf/.gitignore -+++ b/src/pmdas/bpf/.gitignore -@@ -3,6 +3,7 @@ exports - pmdabpf - pmda_bpf.so - modules/*.so -+modules/vmlinux.h - - dict.c - dict.h -diff --git a/src/pmdas/bpf/modules/GNUmakefile b/src/pmdas/bpf/modules/GNUmakefile -index 0bc4f49c5..b019df8eb 100644 ---- a/src/pmdas/bpf/modules/GNUmakefile -+++ b/src/pmdas/bpf/modules/GNUmakefile -@@ -25,8 +25,11 @@ install_pcp install: default - # - # clang-12 special notes: https://www.spinics.net/lists/netdev/msg689901.html - --%.bpf.o: %.bpf.c -- $(PMDABPF_CLANG) -Wall -g -O2 -target bpf -D__TARGET_ARCH_x86 -c $< -o $@ -+vmlinux.h: $(PMDABPF_VMLINUXH) -+ ln -s $< $@ -+ -+%.bpf.o: %.bpf.c vmlinux.h -+ $(PMDABPF_CLANG) -Wall -g -O2 -target bpf -D__TARGET_ARCH_$(PMDABPF_ARCH) -c $< -o $@ - $(PMDABPF_LLVM_STRIP) -g $@ - - %.skel.h: %.bpf.o -@@ -51,4 +54,4 @@ install_pcp install: default - $(LINK.c) -lbpf -shared $^ -o $@ - - clean:: -- rm -f $(MODULES) *.o *.skel.h -+ rm -f $(MODULES) *.o *.skel.h vmlinux.h -diff --git a/src/pmdas/bpf/modules/README.md b/src/pmdas/bpf/modules/README.md -index b28a79962..0d43e40be 100644 ---- a/src/pmdas/bpf/modules/README.md -+++ b/src/pmdas/bpf/modules/README.md -@@ -1,8 +1,21 @@ - BPF modules here. - -+# `vmlinux.h` - --Generating `vmlinux_cut.h` --========================== -+`vmlinux.h` contains architecture specific type information from the kernel. -+Ideally it is generated during the build, in order to catch any compilation -+errors beforehand (e.g. rename of a struct member in the kernel). When the -+`vmlinux.h` doesn't match the kernel types, and the eBPF program is accessing -+a (for example) renamed struct member, the eBPF verifier will block the program -+at runtime. -+ -+However, some build environments don't have BTF enabled or are running with an -+old kernel, therefore we're vendoring `vmlinux.h` files generated on different -+architectures. -+ -+If `--with-pmdabpf-btf` is passed to the `./configure` script, `btftool` will -+generate a `vmlinux.h` on-the-fly, otherwise we fall back to the vendored -+`vmlinux.h` files. - - Generally speaking, this header will only need to be regenerated if new type structs - are used from the kernel, that are not currently used in modules. In order to do this, -@@ -12,8 +25,4 @@ we run the following commands: - $ bpftool btf dump file /sys/kernel/btf/vmlinux format c > vmlinux.h - ``` - --This generates a complete vmlinux.h, which is 2-3MB in size. Rather than carry around --the full header in the repo, we only carry the pieces we need. So, the easiest way to --do this is to copy the required definitions from `vmlinux.h` into `vmlinux_cut.h`. --Once you have done this, your build using new kernel-side types should succeed. -- -+This generates a complete vmlinux.h, which is 2-3MB in size. -diff --git a/src/pmdas/bpf/modules/common.h b/src/pmdas/bpf/modules/common.h -index c73fc386c..1144423cb 100644 ---- a/src/pmdas/bpf/modules/common.h -+++ b/src/pmdas/bpf/modules/common.h -@@ -6,7 +6,7 @@ - #define __KERNEL__ - - /* represents all of the kernel structs; generated via bpftool */ --#include "vmlinux_cut.h" -+#include "vmlinux.h" - - /* bpf kernel-side functions */ - #include -diff --git a/src/pmdas/bpf/modules/vmlinux_cut.h b/src/pmdas/bpf/modules/vmlinux_cut.h -deleted file mode 100644 -index ffd50c34e..000000000 ---- a/src/pmdas/bpf/modules/vmlinux_cut.h -+++ /dev/null -@@ -1,373 +0,0 @@ --/** -- * kernel-side typedef and structs to allow compilation of BPF programs -- * -- * These structs should match the kernel definitions and are best created by copying them -- * from existing kernel type information. You can regenerate a complete vmlinux.h file -- * in which you find these values. To do this, use a BTF enabled kernel and run: -- * $ bpftool btf dump file /sys/kernel/btf/vmlinux format c > vmlinux.h -- * -- * From this file you can extract the needed values. -- */ -- --typedef signed char __s8; -- --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 __s8 s8; -- --typedef __u8 u8; -- --typedef __s16 s16; -- --typedef __u16 u16; -- --typedef __s32 s32; -- --typedef __u32 u32; -- --typedef __s64 s64; -- --typedef __u64 u64; -- --enum { -- false = 0, -- true = 1, --}; -- --typedef __u16 __le16; -- --typedef __u16 __be16; -- --typedef __u32 __be32; -- --typedef __u64 __be64; -- --typedef __u32 __wsum; -- --typedef _Bool bool; -- --typedef u32 __kernel_dev_t; -- --typedef __kernel_dev_t dev_t; -- --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, --}; -- --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; -- long unsigned int cs; -- long unsigned int flags; -- long unsigned int sp; -- long unsigned int ss; --}; -- --struct rq; -- --typedef int __kernel_pid_t; --typedef __kernel_pid_t pid_t; --struct task_struct { -- // struct thread_info thread_info; -- volatile long int state; -- void *stack; -- // refcount_t usage; -- unsigned int flags; -- unsigned int ptrace; -- int on_cpu; -- // struct __call_single_node wake_entry; -- unsigned int cpu; -- 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; -- const struct sched_class *sched_class; -- // struct sched_entity se; -- // struct sched_rt_entity rt; -- // struct task_group *sched_task_group; -- // struct sched_dl_entity dl; -- // struct uclamp_se uclamp_req[2]; -- // struct uclamp_se uclamp[2]; -- // struct hlist_head preempt_notifiers; -- unsigned int btrace_seq; -- unsigned int policy; -- int nr_cpus_allowed; -- // const cpumask_t *cpus_ptr; -- // cpumask_t cpus_mask; -- long unsigned int rcu_tasks_nvcsw; -- u8 rcu_tasks_holdout; -- u8 rcu_tasks_idx; -- int rcu_tasks_idle_cpu; -- // struct list_head rcu_tasks_holdout_list; -- int trc_reader_nesting; -- int trc_ipi_to_cpu; -- // union rcu_special trc_reader_special; -- bool trc_reader_checked; -- // struct list_head trc_holdout_list; -- // 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 vmacache vmacache; -- // struct task_rss_stat rss_stat; -- 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_psi_wake_requeue: 1; -- int: 28; -- unsigned int sched_remote_wakeup: 1; -- unsigned int in_execve: 1; -- unsigned int in_iowait: 1; -- unsigned int restore_sigmask: 1; -- unsigned int in_user_fault: 1; -- unsigned int no_cgroup_migration: 1; -- unsigned int frozen: 1; -- unsigned int use_memdelay: 1; -- unsigned int in_memstall: 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_group; -- // struct list_head thread_node; -- struct completion *vfork_done; -- int *set_child_tid; -- int *clear_child_tid; -- 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; -- 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; -- 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 backing_dev_info *backing_dev_info; -- 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_t mems_allowed_seq; -- int cpuset_mem_spread_rotor; -- int cpuset_slab_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; -- struct perf_event_context *perf_event_ctxp[2]; -- // struct mutex perf_event_mutex; -- // struct list_head perf_event_list; -- struct mempolicy *mempolicy; -- short int il_prev; -- 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_sig; -- long unsigned int rseq_event_mask; -- // struct tlbflush_unmap_batch tlb_ubc; -- // union { -- // refcount_t rcu_users; -- // struct callback_head rcu; -- // }; -- 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; -- int curr_ret_stack; -- int curr_ret_depth; -- struct ftrace_ret_stack *ret_stack; -- long long unsigned int ftrace_timestamp; -- // atomic_t trace_overrun; -- // atomic_t tracing_graph_pause; -- long unsigned int trace; -- long unsigned int trace_recursion; -- struct mem_cgroup *memcg_in_oom; -- // gfp_t memcg_oom_gfp_mask; -- int memcg_oom_order; -- unsigned int memcg_nr_pages_over_high; -- struct mem_cgroup *active_memcg; -- struct request_queue *throttle_queue; -- struct uprobe_task *utask; -- unsigned int sequential_io; -- unsigned int sequential_io_avg; -- int pagefault_disabled; -- struct task_struct *oom_reaper_list; -- struct vm_struct *stack_vm_area; -- // refcount_t stack_refcount; -- int patch_state; -- void *security; -- u64 mce_addr; -- __u64 mce_ripv: 1; -- __u64 mce_whole_page: 1; -- __u64 __mce_reserved: 62; -- // struct callback_head mce_kill_me; -- // struct thread_struct thread; --}; -- --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, --}; -diff --git a/src/pmdas/bpf/vendor/vmlinux/arm64/vmlinux.h b/src/pmdas/bpf/vendor/vmlinux/arm64/vmlinux.h -new file mode 100644 -index 000000000..d2f57a14e ---- /dev/null -+++ b/src/pmdas/bpf/vendor/vmlinux/arm64/vmlinux.h -@@ -0,0 +1,102918 @@ -+#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 signed char __s8; -+ -+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 __s8 s8; -+ -+typedef __u8 u8; -+ -+typedef __s16 s16; -+ -+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 unsigned int __kernel_gid32_t; -+ -+typedef __kernel_ulong_t __kernel_size_t; -+ -+typedef __kernel_long_t __kernel_ssize_t; -+ -+typedef long long int __kernel_loff_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 __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_pid_t pid_t; -+ -+typedef __kernel_clockid_t clockid_t; -+ -+typedef _Bool bool; -+ -+typedef __kernel_uid32_t uid_t; -+ -+typedef __kernel_gid32_t gid_t; -+ -+typedef __kernel_loff_t loff_t; -+ -+typedef __kernel_size_t size_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; -+ -+typedef u64 phys_addr_t; -+ -+typedef long unsigned int irq_hw_number_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 kernel_symbol { -+ int value_offset; -+ int name_offset; -+ int namespace_offset; -+}; -+ -+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; -+}; -+ -+typedef int (*initcall_t)(); -+ -+typedef int initcall_entry_t; -+ -+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 i_mutex_dir_key; -+}; -+ -+struct obs_kernel_param { -+ const char *str; -+ int (*setup_func)(char *); -+ int early; -+}; -+ -+typedef atomic64_t atomic_long_t; -+ -+struct qspinlock { -+ union { -+ atomic_t val; -+ struct { -+ u8 locked; -+ u8 pending; -+ }; -+ struct { -+ u16 locked_pending; -+ u16 tail; -+ }; -+ }; -+}; -+ -+typedef struct qspinlock arch_spinlock_t; -+ -+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 raw_spinlock { -+ arch_spinlock_t raw_lock; -+}; -+ -+typedef struct raw_spinlock raw_spinlock_t; -+ -+struct spinlock { -+ union { -+ struct raw_spinlock rlock; -+ }; -+}; -+ -+typedef struct spinlock spinlock_t; -+ -+typedef struct { -+ arch_rwlock_t raw_lock; -+} rwlock_t; -+ -+struct ratelimit_state { -+ raw_spinlock_t lock; -+ int interval; -+ int burst; -+ int printed; -+ int missed; -+ long unsigned int begin; -+ long unsigned int flags; -+}; -+ -+struct _ddebug { -+ const char *modname; -+ const char *function; -+ const char *filename; -+ const char *format; -+ unsigned int lineno: 18; -+ unsigned int flags: 8; -+ union { -+ struct static_key_true dd_key_true; -+ struct static_key_false dd_key_false; -+ } key; -+}; -+ -+typedef void *fl_owner_t; -+ -+struct file; -+ -+struct kiocb; -+ -+struct iov_iter; -+ -+struct dir_context; -+ -+struct poll_table_struct; -+ -+struct vm_area_struct; -+ -+struct inode; -+ -+struct file_lock; -+ -+struct page; -+ -+struct pipe_inode_info; -+ -+struct seq_file; -+ -+struct file_operations { -+ struct module *owner; -+ 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 *, bool); -+ int (*iterate)(struct file *, struct dir_context *); -+ 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 *); -+ long unsigned int mmap_supported_flags; -+ 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 *); -+ ssize_t (*sendpage)(struct file *, struct page *, int, size_t, loff_t *, int); -+ 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); -+ int (*setlease)(struct file *, long int, struct file_lock **, 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); -+}; -+ -+struct static_call_key { -+ void *func; -+}; -+ -+enum system_states { -+ SYSTEM_BOOTING = 0, -+ SYSTEM_SCHEDULING = 1, -+ SYSTEM_RUNNING = 2, -+ SYSTEM_HALT = 3, -+ SYSTEM_POWER_OFF = 4, -+ SYSTEM_RESTART = 5, -+ SYSTEM_SUSPEND = 6, -+}; -+ -+typedef __s64 time64_t; -+ -+struct __kernel_timespec { -+ __kernel_time64_t tv_sec; -+ long long int tv_nsec; -+}; -+ -+struct timespec64 { -+ time64_t tv_sec; -+ long int tv_nsec; -+}; -+ -+struct bug_entry { -+ int bug_addr_disp; -+ int file_disp; -+ short unsigned int line; -+ short unsigned int flags; -+}; -+ -+struct cpumask { -+ long unsigned int bits[64]; -+}; -+ -+typedef struct cpumask cpumask_t; -+ -+typedef struct cpumask cpumask_var_t[1]; -+ -+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; -+}; -+ -+typedef void (*smp_call_func_t)(void *); -+ -+struct __call_single_data { -+ struct __call_single_node node; -+ smp_call_func_t func; -+ void *info; -+}; -+ -+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 { -+ int fd; -+ short int events; -+ short int revents; -+}; -+ -+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; -+ }; -+}; -+ -+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_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; -+ u64 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; -+}; -+ -+struct util_est { -+ unsigned int enqueued; -+ unsigned int ewma; -+}; -+ -+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; -+ struct util_est util_est; -+}; -+ -+struct cfs_rq; -+ -+struct sched_entity { -+ struct load_weight load; -+ struct rb_node run_node; -+ struct list_head group_node; -+ unsigned int on_rq; -+ u64 exec_start; -+ u64 sum_exec_runtime; -+ u64 vruntime; -+ u64 prev_sum_exec_runtime; -+ u64 nr_migrations; -+ struct sched_statistics statistics; -+ int depth; -+ struct sched_entity *parent; -+ struct cfs_rq *cfs_rq; -+ struct cfs_rq *my_q; -+ long unsigned int runnable_weight; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+typedef s64 ktime_t; -+ -+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 { -+ 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; -+ struct hrtimer dl_timer; -+ struct hrtimer inactive_timer; -+ struct sched_dl_entity *pi_se; -+}; -+ -+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 vmacache { -+ u64 seqnum; -+ struct vm_area_struct *vmas[4]; -+}; -+ -+struct task_rss_stat { -+ int events; -+ int count[4]; -+}; -+ -+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 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 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_spinlock { -+ seqcount_t seqcount; -+}; -+ -+typedef struct seqcount_spinlock seqcount_spinlock_t; -+ -+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 tlbflush_unmap_batch {}; -+ -+struct page_frag { -+ struct page *page; -+ __u32 offset; -+ __u32 size; -+}; -+ -+struct kmap_ctrl {}; -+ -+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]; -+}; -+ -+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; -+ struct user_fpsimd_state fpsimd_state; -+ } uw; -+ unsigned int fpsimd_cpu; -+ void *sve_state; -+ unsigned int sve_vl; -+ unsigned int sve_vl_onexec; -+ long unsigned int fault_address; -+ long unsigned int fault_code; -+ struct debug_info debug; -+ struct ptrauth_keys_user keys_user; -+ struct ptrauth_keys_kernel keys_kernel; -+ u64 gcr_user_excl; -+ u64 sctlr_user; -+ long: 64; -+}; -+ -+struct sched_class; -+ -+struct task_group; -+ -+struct mm_struct; -+ -+struct pid; -+ -+struct completion; -+ -+struct cred; -+ -+struct key; -+ -+struct nameidata; -+ -+struct fs_struct; -+ -+struct files_struct; -+ -+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 backing_dev_info; -+ -+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 mempolicy; -+ -+struct numa_group; -+ -+struct rseq; -+ -+struct task_delay_info; -+ -+struct ftrace_ret_stack; -+ -+struct mem_cgroup; -+ -+struct request_queue; -+ -+struct uprobe_task; -+ -+struct vm_struct; -+ -+struct bpf_local_storage; -+ -+struct task_struct { -+ struct thread_info thread_info; -+ unsigned int __state; -+ void *stack; -+ refcount_t usage; -+ unsigned int flags; -+ unsigned int ptrace; -+ int on_cpu; -+ struct __call_single_node wake_entry; -+ unsigned int cpu; -+ 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; -+ const struct sched_class *sched_class; -+ struct sched_entity se; -+ struct sched_rt_entity rt; -+ struct sched_dl_entity dl; -+ struct rb_node core_node; -+ long unsigned int core_cookie; -+ unsigned int core_occupation; -+ struct task_group *sched_task_group; -+ struct hlist_head preempt_notifiers; -+ unsigned int btrace_seq; -+ unsigned int policy; -+ 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; -+ long unsigned int rcu_tasks_nvcsw; -+ u8 rcu_tasks_holdout; -+ u8 rcu_tasks_idx; -+ int rcu_tasks_idle_cpu; -+ struct list_head rcu_tasks_holdout_list; -+ int trc_reader_nesting; -+ int trc_ipi_to_cpu; -+ union rcu_special trc_reader_special; -+ bool trc_reader_checked; -+ struct list_head trc_holdout_list; -+ 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 vmacache vmacache; -+ struct task_rss_stat rss_stat; -+ 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_psi_wake_requeue: 1; -+ int: 28; -+ unsigned int sched_remote_wakeup: 1; -+ unsigned int in_execve: 1; -+ unsigned int in_iowait: 1; -+ unsigned int in_user_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_page_owner: 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_group; -+ struct list_head thread_node; -+ struct completion *vfork_done; -+ int *set_child_tid; -+ int *clear_child_tid; -+ void *pf_io_worker; -+ 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; -+ 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 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 backing_dev_info *backing_dev_info; -+ 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; -+ int cpuset_slab_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; -+ struct perf_event_context *perf_event_ctxp[2]; -+ struct mutex perf_event_mutex; -+ struct list_head perf_event_list; -+ struct mempolicy *mempolicy; -+ short int il_prev; -+ 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_sig; -+ long unsigned int rseq_event_mask; -+ struct tlbflush_unmap_batch tlb_ubc; -+ union { -+ refcount_t rcu_users; -+ struct callback_head rcu; -+ }; -+ 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; -+ int curr_ret_stack; -+ int curr_ret_depth; -+ struct ftrace_ret_stack *ret_stack; -+ long long unsigned int ftrace_timestamp; -+ atomic_t trace_overrun; -+ atomic_t tracing_graph_pause; -+ long unsigned int trace; -+ long unsigned int trace_recursion; -+ struct mem_cgroup *memcg_in_oom; -+ gfp_t memcg_oom_gfp_mask; -+ int memcg_oom_order; -+ unsigned int memcg_nr_pages_over_high; -+ struct mem_cgroup *active_memcg; -+ struct request_queue *throttle_queue; -+ struct uprobe_task *utask; -+ struct kmap_ctrl kmap_ctrl; -+ int pagefault_disabled; -+ struct task_struct *oom_reaper_list; -+ struct vm_struct *stack_vm_area; -+ refcount_t stack_refcount; -+ void *security; -+ struct bpf_local_storage *bpf_storage; -+ struct llist_head kretprobe_instances; -+ struct thread_struct thread; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct uid_gid_extent { -+ u32 first; -+ u32 lower_first; -+ u32 count; -+}; -+ -+struct uid_gid_map { -+ u32 nr_extents; -+ union { -+ struct uid_gid_extent extent[5]; -+ struct { -+ struct uid_gid_extent *forward; -+ struct uid_gid_extent *reverse; -+ }; -+ }; -+}; -+ -+typedef struct { -+ gid_t val; -+} kgid_t; -+ -+struct proc_ns_operations; -+ -+struct ns_common { -+ atomic_long_t stashed; -+ const struct proc_ns_operations *ops; -+ unsigned int inum; -+ refcount_t count; -+}; -+ -+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 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 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 used; -+ int count; -+ int nreg; -+ }; -+ struct callback_head rcu; -+ }; -+ struct completion *unregistering; -+ 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; -+}; -+ -+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 ucounts; -+ -+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[16]; -+}; -+ -+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; -+}; -+ -+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; -+ -+typedef struct page *pgtable_t; -+ -+struct address_space; -+ -+struct page_pool; -+ -+struct kmem_cache; -+ -+struct dev_pagemap; -+ -+struct page { -+ long unsigned int flags; -+ union { -+ struct { -+ struct list_head lru; -+ struct address_space *mapping; -+ long unsigned int index; -+ 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[2]; -+ }; -+ struct { -+ union { -+ struct list_head slab_list; -+ struct { -+ struct page *next; -+ int pages; -+ int pobjects; -+ }; -+ }; -+ struct kmem_cache *slab_cache; -+ void *freelist; -+ union { -+ void *s_mem; -+ long unsigned int counters; -+ struct { -+ unsigned int inuse: 16; -+ unsigned int objects: 15; -+ unsigned int frozen: 1; -+ }; -+ }; -+ }; -+ struct { -+ long unsigned int compound_head; -+ unsigned char compound_dtor; -+ unsigned char compound_order; -+ atomic_t compound_mapcount; -+ unsigned int compound_nr; -+ }; -+ struct { -+ long unsigned int _compound_pad_1; -+ atomic_t hpage_pinned_refcount; -+ struct list_head deferred_list; -+ }; -+ struct { -+ long unsigned int _pt_pad_1; -+ pgtable_t pmd_huge_pte; -+ long unsigned int _pt_pad_2; -+ union { -+ struct mm_struct *pt_mm; -+ atomic_t pt_frag_refcount; -+ }; -+ spinlock_t ptl; -+ }; -+ struct { -+ struct dev_pagemap *pgmap; -+ void *zone_device_data; -+ }; -+ struct callback_head callback_head; -+ }; -+ union { -+ atomic_t _mapcount; -+ unsigned int page_type; -+ unsigned int active; -+ int units; -+ }; -+ atomic_t _refcount; -+ long unsigned int memcg_data; -+}; -+ -+struct userfaultfd_ctx; -+ -+struct vm_userfaultfd_ctx { -+ struct userfaultfd_ctx *ctx; -+}; -+ -+struct anon_vma; -+ -+struct vm_operations_struct; -+ -+struct vm_area_struct { -+ long unsigned int vm_start; -+ long unsigned int vm_end; -+ struct vm_area_struct *vm_next; -+ struct vm_area_struct *vm_prev; -+ struct rb_node vm_rb; -+ long unsigned int rb_subtree_gap; -+ struct mm_struct *vm_mm; -+ pgprot_t vm_page_prot; -+ long unsigned int vm_flags; -+ 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 mempolicy *vm_policy; -+ struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -+}; -+ -+struct mm_rss_stat { -+ atomic_long_t count[4]; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+ 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_layout { -+ void *base; -+ unsigned int size; -+ unsigned int text_size; -+ unsigned int ro_size; -+ unsigned int ro_after_init_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 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_param; -+ -+struct exception_table_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 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; -+ const char *rhelversion; -+ 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 sig_ok; -+ bool async_probe_requested; -+ unsigned int num_exentries; -+ struct exception_table_entry *extable; -+ int (*init)(); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct module_layout core_layout; -+ struct module_layout init_layout; -+ 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; -+ void *btf_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 list_head source_list; -+ struct list_head target_list; -+ void (*exit)(); -+ atomic_t refcnt; -+ struct error_injection_entry *ei_funcs; -+ unsigned int num_ei_funcs; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum perf_event_state { -+ PERF_EVENT_STATE_DEAD = 4294967292, -+ PERF_EVENT_STATE_EXIT = 4294967293, -+ PERF_EVENT_STATE_ERROR = 4294967294, -+ PERF_EVENT_STATE_OFF = 4294967295, -+ 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; -+ __u32 __reserved_3; -+ __u64 sig_data; -+}; -+ -+struct hw_perf_event_extra { -+ u64 config; -+ unsigned int reg; -+ int alloc; -+ int idx; -+}; -+ -+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 { -+ struct hrtimer hrtimer; -+ }; -+ struct { -+ struct list_head tp_list; -+ }; -+ struct { -+ u64 pwr_acc; -+ u64 ptsc; -+ }; -+ struct { -+ struct arch_hw_breakpoint info; -+ struct list_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 irq_work { -+ struct __call_single_node node; -+ void (*func)(struct irq_work *); -+}; -+ -+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; -+}; -+ -+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 pmu; -+ -+struct perf_buffer; -+ -+struct fasync_struct; -+ -+struct perf_addr_filter_range; -+ -+struct pid_namespace; -+ -+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; -+ 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; -+ u64 shadow_ctx_time; -+ 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; -+ 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; -+ int pending_wakeup; -+ int pending_kill; -+ int pending_disable; -+ long unsigned int pending_addr; -+ struct irq_work pending; -+ 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; -+ u64 (*clock)(); -+ perf_overflow_handler_t overflow_handler; -+ void *overflow_handler_context; -+ perf_overflow_handler_t orig_overflow_handler; -+ struct bpf_prog *prog; -+ 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 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 swait_queue_head { -+ raw_spinlock_t lock; -+ struct list_head task_list; -+}; -+ -+struct completion { -+ unsigned int done; -+ struct swait_queue_head wait; -+}; -+ -+typedef struct { -+ atomic64_t id; -+ refcount_t pinned; -+ void *vdso; -+ long unsigned int flags; -+} mm_context_t; -+ -+struct xol_area; -+ -+struct uprobes_state { -+ struct xol_area *xol_area; -+}; -+ -+struct linux_binfmt; -+ -+struct core_state; -+ -+struct kioctx_table; -+ -+struct mmu_notifier_subscriptions; -+ -+struct mm_struct { -+ struct { -+ struct vm_area_struct *mmap; -+ struct rb_root mm_rb; -+ u64 vmacache_seqnum; -+ long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ long unsigned int mmap_base; -+ long unsigned int mmap_legacy_base; -+ long unsigned int task_size; -+ long unsigned int highest_vm_end; -+ pgd_t *pgd; -+ atomic_t membarrier_state; -+ atomic_t mm_users; -+ atomic_t mm_count; -+ atomic_long_t pgtables_bytes; -+ int map_count; -+ spinlock_t page_table_lock; -+ struct rw_semaphore mmap_lock; -+ struct list_head mmlist; -+ 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[46]; -+ struct mm_rss_stat rss_stat; -+ struct linux_binfmt *binfmt; -+ mm_context_t context; -+ long unsigned int flags; -+ struct core_state *core_state; -+ 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; -+ struct uprobes_state uprobes_state; -+ atomic_long_t hugetlb_usage; -+ struct work_struct async_put_work; -+ u32 pasid; -+ }; -+ long unsigned int cpu_bitmap[0]; -+}; -+ -+struct arch_uprobe_task {}; -+ -+enum uprobe_task_state { -+ UTASK_RUNNING = 0, -+ UTASK_SSTEP = 1, -+ UTASK_SSTEP_ACK = 2, -+ UTASK_SSTEP_TRAPPED = 3, -+}; -+ -+struct 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 return_instance *return_instances; -+ unsigned int depth; -+}; -+ -+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 timer_list { -+ struct hlist_node entry; -+ long unsigned int expires; -+ void (*function)(struct timer_list *); -+ u32 flags; -+}; -+ -+struct workqueue_struct; -+ -+struct delayed_work { -+ struct work_struct work; -+ struct timer_list timer; -+ struct workqueue_struct *wq; -+ int cpu; -+}; -+ -+struct rcu_work { -+ struct work_struct work; -+ struct callback_head rcu; -+ struct workqueue_struct *wq; -+}; -+ -+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; -+ -+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 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; -+ gfp_t gfp_mask; -+ atomic_t i_mmap_writable; -+ struct rb_root_cached i_mmap; -+ struct rw_semaphore i_mmap_rwsem; -+ 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 private_lock; -+ struct list_head private_list; -+ void *private_data; -+}; -+ -+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; -+}; -+ -+struct percpu_ref_data; -+ -+struct percpu_ref { -+ long unsigned int percpu_count_ptr; -+ struct percpu_ref_data *data; -+}; -+ -+enum memory_type { -+ MEMORY_DEVICE_PRIVATE = 1, -+ MEMORY_DEVICE_FS_DAX = 2, -+ MEMORY_DEVICE_GENERIC = 3, -+ MEMORY_DEVICE_PCI_P2PDMA = 4, -+}; -+ -+struct range { -+ u64 start; -+ u64 end; -+}; -+ -+struct dev_pagemap_ops; -+ -+struct dev_pagemap { -+ struct vmem_altmap altmap; -+ struct percpu_ref *ref; -+ struct percpu_ref internal_ref; -+ struct completion done; -+ enum memory_type type; -+ unsigned int flags; -+ const struct dev_pagemap_ops *ops; -+ void *owner; -+ int nr_range; -+ union { -+ struct range range; -+ struct range ranges[0]; -+ }; -+}; -+ -+struct vfsmount; -+ -+struct path { -+ struct vfsmount *mnt; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+enum pid_type { -+ PIDTYPE_PID = 0, -+ PIDTYPE_TGID = 1, -+ PIDTYPE_PGID = 2, -+ PIDTYPE_SID = 3, -+ PIDTYPE_MAX = 4, -+}; -+ -+struct fown_struct { -+ rwlock_t lock; -+ struct pid *pid; -+ enum pid_type pid_type; -+ kuid_t uid; -+ kuid_t euid; -+ int signum; -+}; -+ -+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; -+}; -+ -+struct file { -+ union { -+ struct llist_node fu_llist; -+ struct callback_head fu_rcuhead; -+ } f_u; -+ struct path f_path; -+ struct inode *f_inode; -+ const struct file_operations *f_op; -+ spinlock_t f_lock; -+ enum rw_hint f_write_hint; -+ atomic_long_t f_count; -+ unsigned int f_flags; -+ fmode_t f_mode; -+ struct mutex f_pos_lock; -+ loff_t f_pos; -+ struct fown_struct f_owner; -+ const struct cred *f_cred; -+ struct file_ra_state f_ra; -+ u64 f_version; -+ void *f_security; -+ void *private_data; -+ struct hlist_head *f_ep; -+ struct address_space *f_mapping; -+ errseq_t f_wb_err; -+ errseq_t f_sb_err; -+}; -+ -+struct anon_vma { -+ struct anon_vma *root; -+ struct rw_semaphore rwsem; -+ atomic_t refcount; -+ unsigned int degree; -+ struct anon_vma *parent; -+ struct rb_root_cached rb_root; -+}; -+ -+typedef unsigned int vm_fault_t; -+ -+enum page_entry_size { -+ PE_SIZE_PTE = 0, -+ PE_SIZE_PMD = 1, -+ PE_SIZE_PUD = 2, -+}; -+ -+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 *, enum page_entry_size); -+ 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); -+ struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -+}; -+ -+struct mempolicy { -+ atomic_t refcnt; -+ short unsigned int mode; -+ short unsigned int flags; -+ nodemask_t nodes; -+ union { -+ nodemask_t cpuset_mems_allowed; -+ nodemask_t user_nodemask; -+ } w; -+}; -+ -+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 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; -+}; -+ -+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, -+}; -+ -+struct vm_fault { -+ const struct { -+ struct vm_area_struct *vma; -+ gfp_t gfp_mask; -+ long unsigned int pgoff; -+ long unsigned int 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; -+}; -+ -+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 free_area { -+ struct list_head free_list[5]; -+ long unsigned int nr_free; -+}; -+ -+struct zone_padding { -+ char x[0]; -+}; -+ -+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_KERNEL_MISC_RECLAIMABLE = 33, -+ NR_FOLL_PIN_ACQUIRED = 34, -+ NR_FOLL_PIN_RELEASED = 35, -+ NR_KERNEL_STACK_KB = 36, -+ NR_PAGETABLE = 37, -+ NR_SWAPCACHE = 38, -+ NR_VM_NODE_STAT_ITEMS = 39, -+}; -+ -+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, -+}; -+ -+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 pglist_data *pgdat; -+}; -+ -+struct per_cpu_pages; -+ -+struct per_cpu_zonestat; -+ -+struct zone { -+ long unsigned int _watermark[3]; -+ long unsigned int watermark_boost; -+ long unsigned int nr_reserved_highatomic; -+ long int lowmem_reserve[4]; -+ int node; -+ struct pglist_data *zone_pgdat; -+ struct per_cpu_pages *per_cpu_pageset; -+ struct per_cpu_zonestat *per_cpu_zonestats; -+ int pageset_high; -+ 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; -+ long unsigned int nr_isolate_pageblock; -+ seqlock_t span_seqlock; -+ int initialized; -+ long: 32; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct free_area free_area[13]; -+ long unsigned int flags; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_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; -+ short: 16; -+ struct zone_padding _pad3_; -+ atomic_long_t vm_stat[11]; -+ atomic_long_t vm_numa_event[6]; -+ long: 64; -+ 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[257]; -+}; -+ -+enum zone_type { -+ ZONE_DMA = 0, -+ ZONE_DMA32 = 1, -+ ZONE_NORMAL = 2, -+ ZONE_MOVABLE = 3, -+ __MAX_NR_ZONES = 4, -+}; -+ -+struct deferred_split { -+ spinlock_t split_queue_lock; -+ struct list_head split_queue; -+ long unsigned int split_queue_len; -+}; -+ -+struct per_cpu_nodestat; -+ -+struct pglist_data { -+ struct zone node_zones[4]; -+ 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; -+ 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; -+ long unsigned int totalreserve_pages; -+ long unsigned int min_unmapped_pages; -+ long unsigned int min_slab_pages; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct deferred_split deferred_split_queue; -+ struct lruvec __lruvec; -+ long unsigned int flags; -+ long: 64; -+ struct zone_padding _pad2_; -+ struct per_cpu_nodestat *per_cpu_nodestats; -+ atomic_long_t vm_stat[39]; -+}; -+ -+typedef unsigned int isolate_mode_t; -+ -+struct per_cpu_pages { -+ int count; -+ int high; -+ int batch; -+ short int free_factor; -+ short int expire; -+ struct list_head lists[15]; -+}; -+ -+struct per_cpu_zonestat { -+ s8 vm_stat_diff[11]; -+ s8 stat_threshold; -+ long unsigned int vm_numa_event[6]; -+}; -+ -+struct per_cpu_nodestat { -+ s8 stat_threshold; -+ s8 vm_node_stat_diff[39]; -+}; -+ -+typedef struct pglist_data pg_data_t; -+ -+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_data { -+ long unsigned int srcu_lock_count[2]; -+ long unsigned int srcu_unlock_count[2]; -+ long: 64; -+ 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_struct { -+ struct srcu_node node[261]; -+ struct srcu_node *level[4]; -+ struct mutex srcu_cb_mutex; -+ spinlock_t lock; -+ struct mutex srcu_gp_mutex; -+ unsigned int srcu_idx; -+ 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_last_gp_end; -+ struct srcu_data *sda; -+ long unsigned int srcu_barrier_seq; -+ struct mutex srcu_barrier_mutex; -+ struct completion srcu_barrier_completion; -+ atomic_t srcu_barrier_cpu_cnt; -+ struct delayed_work work; -+ struct lockdep_map dep_map; -+}; -+ -+typedef int proc_handler(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; -+ struct ctl_table *child; -+ 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 *, struct ctl_table *, kuid_t *, kgid_t *); -+ int (*permissions)(struct ctl_table_header *, struct ctl_table *); -+}; -+ -+struct kernel_cap_struct { -+ __u32 cap[2]; -+}; -+ -+typedef struct kernel_cap_struct kernel_cap_t; -+ -+struct user_struct; -+ -+struct group_info; -+ -+struct cred { -+ atomic_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 umh_disable_depth { -+ UMH_ENABLED = 0, -+ UMH_FREEZING = 1, -+ UMH_DISABLED = 2, -+}; -+ -+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 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 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[32]; -+ struct lockref d_lockref; -+ const struct dentry_operations *d_op; -+ struct super_block *d_sb; -+ long unsigned int d_time; -+ void *d_fsdata; -+ union { -+ struct list_head d_lru; -+ wait_queue_head_t *d_wait; -+ }; -+ struct list_head d_child; -+ struct list_head d_subdirs; -+ union { -+ struct hlist_node d_alias; -+ struct hlist_bl_node d_in_lookup_hash; -+ struct callback_head d_rcu; -+ } d_u; -+}; -+ -+struct posix_acl; -+ -+struct inode_operations; -+ -+struct bdi_writeback; -+ -+struct file_lock_context; -+ -+struct cdev; -+ -+struct fsnotify_mark_connector; -+ -+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; -+ struct timespec64 i_atime; -+ struct timespec64 i_mtime; -+ struct timespec64 i_ctime; -+ spinlock_t i_lock; -+ short unsigned int i_bytes; -+ u8 i_blkbits; -+ u8 i_write_hint; -+ blkcnt_t i_blocks; -+ long unsigned int 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_generation; -+ __u32 i_fsnotify_mask; -+ struct fsnotify_mark_connector *i_fsnotify_marks; -+ void *i_private; -+}; -+ -+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 *, const struct inode *); -+ 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 rcuwait { -+ struct task_struct *task; -+}; -+ -+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 { -+ int frozen; -+ wait_queue_head_t wait_unfrozen; -+ struct percpu_rw_semaphore rw_sem[3]; -+}; -+ -+typedef struct { -+ __u8 b[16]; -+} uuid_t; -+ -+struct shrink_control; -+ -+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; -+ struct list_head list; -+ int id; -+ atomic_long_t *nr_deferred; -+}; -+ -+struct list_lru_node; -+ -+struct list_lru { -+ struct list_lru_node *node; -+ struct list_head list; -+ int shrinker_id; -+ bool memcg_aware; -+}; -+ -+struct super_operations; -+ -+struct dquot_operations; -+ -+struct quotactl_ops; -+ -+struct export_operations; -+ -+struct xattr_handler; -+ -+struct block_device; -+ -+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 **s_xattr; -+ struct hlist_bl_head s_roots; -+ struct list_head s_mounts; -+ struct block_device *s_bdev; -+ 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_mark_connector *s_fsnotify_marks; -+ char s_id[32]; -+ uuid_t s_uuid; -+ unsigned int s_max_links; -+ fmode_t s_mode; -+ struct mutex s_vfs_rename_mutex; -+ const char *s_subtype; -+ const struct dentry_operations *s_d_op; -+ int cleancache_poolid; -+ struct shrinker s_shrink; -+ atomic_long_t s_remove_count; -+ atomic_long_t s_fsnotify_inode_refs; -+ 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: 32; -+ long: 64; -+ 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 vfsmount { -+ struct dentry *mnt_root; -+ struct super_block *mnt_sb; -+ int mnt_flags; -+ struct user_namespace *mnt_userns; -+}; -+ -+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 cgroup; -+ -+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; -+}; -+ -+struct mem_cgroup_id { -+ int id; -+ refcount_t ref; -+}; -+ -+struct page_counter { -+ atomic_long_t usage; -+ long unsigned int min; -+ long unsigned int low; -+ long unsigned int high; -+ long unsigned int max; -+ 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 failcnt; -+ struct page_counter *parent; -+}; -+ -+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 cgroup_file { -+ struct kernfs_node *kn; -+ long unsigned int notified_at; -+ struct timer_list notify_timer; -+}; -+ -+struct mem_cgroup_threshold_ary; -+ -+struct mem_cgroup_thresholds { -+ struct mem_cgroup_threshold_ary *primary; -+ struct mem_cgroup_threshold_ary *spare; -+}; -+ -+struct memcg_padding { -+ char x[0]; -+}; -+ -+struct memcg_vmstats { -+ long int state[42]; -+ long unsigned int events[95]; -+ long int state_pending[42]; -+ long unsigned int events_pending[95]; -+}; -+ -+enum memcg_kmem_state { -+ KMEM_NONE = 0, -+ KMEM_ALLOCATED = 1, -+ KMEM_ONLINE = 2, -+}; -+ -+struct percpu_counter { -+ raw_spinlock_t lock; -+ s64 count; -+ struct list_head list; -+ s32 *counters; -+}; -+ -+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 obj_cgroup; -+ -+struct memcg_vmstats_percpu; -+ -+struct mem_cgroup_per_node; -+ -+struct mem_cgroup { -+ struct cgroup_subsys_state css; -+ struct mem_cgroup_id id; -+ struct page_counter memory; -+ union { -+ struct page_counter swap; -+ struct page_counter memsw; -+ }; -+ struct page_counter kmem; -+ struct page_counter tcpmem; -+ struct work_struct high_work; -+ long unsigned int soft_limit; -+ struct vmpressure vmpressure; -+ bool oom_group; -+ bool oom_lock; -+ int under_oom; -+ int swappiness; -+ int oom_kill_disable; -+ struct cgroup_file events_file; -+ struct cgroup_file events_local_file; -+ struct cgroup_file swap_events_file; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad1_; -+ struct memcg_vmstats vmstats; -+ atomic_long_t memory_events[8]; -+ atomic_long_t memory_events_local[8]; -+ long unsigned int socket_pressure; -+ bool tcpmem_active; -+ int tcpmem_pressure; -+ int kmemcg_id; -+ enum memcg_kmem_state kmem_state; -+ struct obj_cgroup *objcg; -+ struct list_head objcg_list; -+ struct memcg_padding _pad2_; -+ atomic_t moving_account; -+ struct task_struct *move_lock_task; -+ struct memcg_vmstats_percpu *vmstats_percpu; -+ struct list_head cgwb_list; -+ struct wb_domain cgwb_domain; -+ struct memcg_cgwb_frn cgwb_frn[4]; -+ struct list_head event_list; -+ spinlock_t event_list_lock; -+ struct deferred_split deferred_split_queue; -+ struct mem_cgroup_per_node *nodeinfo[0]; -+ long: 64; -+}; -+ -+struct list_lru_one { -+ struct list_head list; -+ long int nr_items; -+}; -+ -+struct list_lru_memcg { -+ struct callback_head rcu; -+ struct list_lru_one *lru[0]; -+}; -+ -+struct list_lru_node { -+ spinlock_t lock; -+ struct list_lru_one lru; -+ struct list_lru_memcg *memcg_lrus; -+ long int nr_items; -+ long: 64; -+ long: 64; -+}; -+ -+struct upid { -+ int nr; -+ struct pid_namespace *ns; -+}; -+ -+struct idr { -+ struct xarray idr_rt; -+ unsigned int idr_base; -+ unsigned int idr_next; -+}; -+ -+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; -+}; -+ -+struct pid { -+ refcount_t count; -+ unsigned int level; -+ spinlock_t lock; -+ struct hlist_head tasks[4]; -+ struct hlist_head inodes; -+ wait_queue_head_t wait_pidfd; -+ struct callback_head rcu; -+ struct upid numbers[1]; -+}; -+ -+enum migrate_mode { -+ MIGRATE_ASYNC = 0, -+ MIGRATE_SYNC_LIGHT = 1, -+ MIGRATE_SYNC = 2, -+ MIGRATE_SYNC_NO_COPY = 3, -+}; -+ -+typedef void __signalfn_t(int); -+ -+typedef __signalfn_t *__sighandler_t; -+ -+typedef void __restorefn_t(); -+ -+typedef __restorefn_t *__sigrestore_t; -+ -+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; -+ } _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 ucounts { -+ struct hlist_node node; -+ struct user_namespace *ns; -+ kuid_t uid; -+ atomic_t count; -+ atomic_long_t ucount[16]; -+}; -+ -+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; -+}; -+ -+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)(); -+ ktime_t offset; -+}; -+ -+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 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]; -+}; -+ -+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; -+}; -+ -+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 tty_struct; -+ -+struct autogroup; -+ -+struct taskstats; -+ -+struct tty_audit_buf; -+ -+struct signal_struct { -+ refcount_t sigcnt; -+ atomic_t live; -+ int nr_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_exit_task; -+ int group_stop_count; -+ unsigned int flags; -+ unsigned int is_child_subreaper: 1; -+ unsigned int has_child_subreaper: 1; -+ int posix_timer_id; -+ struct list_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]; -+ 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 rseq { -+ __u32 cpu_id_start; -+ __u32 cpu_id; -+ union { -+ __u64 ptr64; -+ __u64 ptr; -+ } rseq_cs; -+ __u32 flags; -+ long: 32; -+ long: 64; -+}; -+ -+struct rq; -+ -+struct rq_flags; -+ -+struct sched_class { -+ void (*enqueue_task)(struct rq *, struct task_struct *, int); -+ void (*dequeue_task)(struct rq *, struct task_struct *, int); -+ void (*yield_task)(struct rq *); -+ bool (*yield_to_task)(struct rq *, struct task_struct *); -+ void (*check_preempt_curr)(struct rq *, struct task_struct *, int); -+ struct task_struct * (*pick_next_task)(struct rq *); -+ void (*put_prev_task)(struct rq *, struct task_struct *); -+ void (*set_next_task)(struct rq *, struct task_struct *, bool); -+ int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); -+ int (*select_task_rq)(struct task_struct *, int, int); -+ struct task_struct * (*pick_task)(struct rq *); -+ void (*migrate_task_rq)(struct task_struct *, int); -+ void (*task_woken)(struct rq *, struct task_struct *); -+ void (*set_cpus_allowed)(struct task_struct *, const struct cpumask *, u32); -+ 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 (*switched_from)(struct rq *, struct task_struct *); -+ void (*switched_to)(struct rq *, struct task_struct *); -+ 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); -+}; -+ -+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 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 uts_namespace; -+ -+struct ipc_namespace; -+ -+struct mnt_namespace; -+ -+struct net; -+ -+struct time_namespace; -+ -+struct cgroup_namespace; -+ -+struct nsproxy { -+ atomic_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 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 blk_plug { -+ struct list_head mq_list; -+ struct list_head cb_list; -+ short unsigned int rq_count; -+ bool multiple_queues; -+ bool nowait; -+}; -+ -+struct reclaim_state { -+ long unsigned int reclaimed_slab; -+}; -+ -+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; -+ struct percpu_counter stat[4]; -+ long unsigned int congested; -+ 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; -+ long unsigned int dirty_sleep; -+ 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 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; -+ 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; -+}; -+ -+struct io_cq; -+ -+struct io_context { -+ atomic_long_t refcount; -+ atomic_t active_ref; -+ atomic_t nr_tasks; -+ spinlock_t lock; -+ short unsigned int ioprio; -+ 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[14]; -+ 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[14]; -+ struct list_head threaded_csets; -+ struct list_head threaded_csets_node; -+ struct hlist_node hlist; -+ struct list_head cgrp_links; -+ struct list_head mg_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 { -+ struct pmu *pmu; -+ raw_spinlock_t lock; -+ struct mutex mutex; -+ struct list_head active_ctx_list; -+ struct perf_event_groups pinned_groups; -+ struct perf_event_groups flexible_groups; -+ struct list_head event_list; -+ struct list_head pinned_active; -+ struct list_head flexible_active; -+ int nr_events; -+ int nr_active; -+ int is_active; -+ int nr_stat; -+ int nr_freq; -+ int rotate_disable; -+ int rotate_necessary; -+ refcount_t refcount; -+ struct task_struct *task; -+ u64 time; -+ u64 timestamp; -+ struct perf_event_context *parent_ctx; -+ u64 parent_gen; -+ u64 generation; -+ int pin_count; -+ int nr_cgroups; -+ void *task_ctx_data; -+ struct callback_head callback_head; -+}; -+ -+struct task_delay_info { -+ raw_spinlock_t lock; -+ unsigned int flags; -+ u64 blkio_start; -+ u64 blkio_delay; -+ u64 swapin_delay; -+ u32 blkio_count; -+ u32 swapin_count; -+ u64 freepages_start; -+ u64 freepages_delay; -+ u64 thrashing_start; -+ u64 thrashing_delay; -+ u32 freepages_count; -+ u32 thrashing_count; -+}; -+ -+struct ftrace_ret_stack { -+ long unsigned int ret; -+ long unsigned int func; -+ long long unsigned int calltime; -+ long unsigned int fp; -+}; -+ -+struct blk_integrity_profile; -+ -+struct blk_integrity { -+ const struct blk_integrity_profile *profile; -+ unsigned char flags; -+ unsigned char tuple_size; -+ unsigned char interval_exp; -+ unsigned char tag_size; -+}; -+ -+enum rpm_status { -+ RPM_ACTIVE = 0, -+ RPM_RESUMING = 1, -+ RPM_SUSPENDED = 2, -+ RPM_SUSPENDING = 3, -+}; -+ -+struct blk_rq_stat { -+ u64 mean; -+ u64 min; -+ u64 max; -+ u32 nr_samples; -+ u64 batch; -+}; -+ -+struct sbitmap_word; -+ -+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; -+ -+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; -+}; -+ -+enum blk_bounce { -+ BLK_BOUNCE_NONE = 0, -+ BLK_BOUNCE_HIGH = 1, -+}; -+ -+enum blk_zoned_model { -+ BLK_ZONED_NONE = 0, -+ BLK_ZONED_HA = 1, -+ BLK_ZONED_HM = 2, -+}; -+ -+struct queue_limits { -+ enum blk_bounce bounce; -+ 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_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_write_same_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; -+ short unsigned int max_segments; -+ short unsigned int max_integrity_segments; -+ short unsigned int max_discard_segments; -+ unsigned char misaligned; -+ unsigned char discard_misaligned; -+ unsigned char raid_partial_stripes_expensive; -+ enum blk_zoned_model zoned; -+}; -+ -+struct bsg_ops; -+ -+struct bsg_class_device { -+ struct device *class_dev; -+ int minor; -+ struct request_queue *queue; -+ const struct bsg_ops *ops; -+}; -+ -+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_set { -+ struct kmem_cache *bio_slab; -+ unsigned int front_pad; -+ mempool_t bio_pool; -+ mempool_t bvec_pool; -+ mempool_t bio_integrity_pool; -+ mempool_t bvec_integrity_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 request; -+ -+struct elevator_queue; -+ -+struct blk_queue_stats; -+ -+struct rq_qos; -+ -+struct blk_mq_ops; -+ -+struct blk_mq_ctx; -+ -+struct blk_mq_hw_ctx; -+ -+struct blk_stat_callback; -+ -+struct blkcg_gq; -+ -+struct blk_trace; -+ -+struct blk_flush_queue; -+ -+struct throtl_data; -+ -+struct blk_mq_tag_set; -+ -+struct request_queue { -+ struct request *last_merge; -+ struct elevator_queue *elevator; -+ struct percpu_ref q_usage_counter; -+ struct blk_queue_stats *stats; -+ struct rq_qos *rq_qos; -+ const struct blk_mq_ops *mq_ops; -+ struct blk_mq_ctx *queue_ctx; -+ unsigned int queue_depth; -+ struct blk_mq_hw_ctx **queue_hw_ctx; -+ unsigned int nr_hw_queues; -+ struct backing_dev_info *backing_dev_info; -+ void *queuedata; -+ long unsigned int queue_flags; -+ atomic_t pm_only; -+ int id; -+ spinlock_t queue_lock; -+ struct kobject kobj; -+ struct kobject *mq_kobj; -+ struct blk_integrity integrity; -+ struct device *dev; -+ enum rpm_status rpm_status; -+ long unsigned int nr_requests; -+ unsigned int dma_pad_mask; -+ unsigned int dma_alignment; -+ unsigned int rq_timeout; -+ int poll_nsec; -+ struct blk_stat_callback *poll_cb; -+ struct blk_rq_stat poll_stat[16]; -+ struct timer_list timeout; -+ struct work_struct timeout_work; -+ atomic_t nr_active_requests_shared_sbitmap; -+ struct sbitmap_queue sched_bitmap_tags; -+ struct sbitmap_queue sched_breserved_tags; -+ struct list_head icq_list; -+ long unsigned int blkcg_pols[1]; -+ struct blkcg_gq *root_blkg; -+ struct list_head blkg_list; -+ struct queue_limits limits; -+ unsigned int required_elevator_features; -+ unsigned int nr_zones; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int max_open_zones; -+ unsigned int max_active_zones; -+ unsigned int sg_timeout; -+ unsigned int sg_reserved_size; -+ int node; -+ struct mutex debugfs_mutex; -+ struct blk_trace *blk_trace; -+ struct blk_flush_queue *fq; -+ struct list_head requeue_list; -+ spinlock_t requeue_lock; -+ struct delayed_work requeue_work; -+ struct mutex sysfs_lock; -+ struct mutex sysfs_dir_lock; -+ struct list_head unused_hctx_list; -+ spinlock_t unused_hctx_lock; -+ int mq_freeze_depth; -+ struct bsg_class_device bsg_dev; -+ 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 bio_set bio_split; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct dentry *rqos_debugfs_dir; -+ bool mq_sysfs_init_done; -+ size_t cmd_size; -+ u64 write_hints[5]; -+}; -+ -+struct vm_struct { -+ struct vm_struct *next; -+ void *addr; -+ long unsigned int size; -+ long unsigned int flags; -+ struct page **pages; -+ unsigned int nr_pages; -+ phys_addr_t phys_addr; -+ const void *caller; -+}; -+ -+struct exception_table_entry { -+ int insn; -+ int fixup; -+}; -+ -+struct cgroup_base_stat { -+ struct task_cputime cputime; -+}; -+ -+struct psi_group_cpu; -+ -+struct psi_group { -+ 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; -+ u64 total[12]; -+ long unsigned int avg[18]; -+ struct task_struct *poll_task; -+ struct timer_list poll_timer; -+ wait_queue_head_t poll_wait; -+ atomic_t poll_wakeup; -+ struct mutex trigger_lock; -+ struct list_head triggers; -+ u32 nr_triggers[6]; -+ u32 poll_states; -+ u64 poll_min_period; -+ u64 polling_total[6]; -+ u64 polling_next_update; -+ u64 polling_until; -+}; -+ -+struct bpf_prog_array; -+ -+struct cgroup_bpf { -+ struct bpf_prog_array *effective[41]; -+ struct list_head progs[41]; -+ u32 flags[41]; -+ 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 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; -+ struct kernfs_node *kn; -+ struct cgroup_file procs_file; -+ struct cgroup_file events_file; -+ u16 subtree_control; -+ u16 subtree_ss_mask; -+ u16 old_subtree_control; -+ u16 old_subtree_ss_mask; -+ struct cgroup_subsys_state *subsys[14]; -+ struct cgroup_root *root; -+ struct list_head cset_links; -+ struct list_head e_csets[14]; -+ struct cgroup *dom_cgrp; -+ struct cgroup *old_dom_cgrp; -+ struct cgroup_rstat_cpu *rstat_cpu; -+ struct list_head rstat_css_list; -+ 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; -+ atomic_t congestion_count; -+ struct cgroup_freezer_state freezer; -+ u64 ancestor_ids[0]; -+}; -+ -+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; -+ atomic_long_t 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 { -+ atomic_t usage; -+ int ngroups; -+ kgid_t gid[0]; -+}; -+ -+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]; -+ int: 32; -+ __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; -+}; -+ -+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; -+}; -+ -+struct wait_page_queue; -+ -+struct kiocb { -+ struct file *ki_filp; -+ loff_t ki_pos; -+ void (*ki_complete)(struct kiocb *, long int, long int); -+ void *private; -+ int ki_flags; -+ u16 ki_hint; -+ u16 ki_ioprio; -+ union { -+ unsigned int ki_cookie; -+ struct wait_page_queue *ki_waitq; -+ }; -+}; -+ -+struct iattr { -+ unsigned int ia_valid; -+ umode_t ia_mode; -+ kuid_t ia_uid; -+ kgid_t ia_gid; -+ 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 wait_page_queue { -+ struct page *page; -+ int bit_nr; -+ wait_queue_entry_t wait; -+}; -+ -+struct writeback_control; -+ -+struct readahead_control; -+ -+struct swap_info_struct; -+ -+struct address_space_operations { -+ int (*writepage)(struct page *, struct writeback_control *); -+ int (*readpage)(struct file *, struct page *); -+ int (*writepages)(struct address_space *, struct writeback_control *); -+ int (*set_page_dirty)(struct page *); -+ int (*readpages)(struct file *, struct address_space *, struct list_head *, unsigned int); -+ void (*readahead)(struct readahead_control *); -+ int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page **, void **); -+ int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page *, void *); -+ sector_t (*bmap)(struct address_space *, sector_t); -+ void (*invalidatepage)(struct page *, unsigned int, unsigned int); -+ int (*releasepage)(struct page *, gfp_t); -+ void (*freepage)(struct page *); -+ ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); -+ int (*migratepage)(struct address_space *, struct page *, struct page *, enum migrate_mode); -+ bool (*isolate_page)(struct page *, isolate_mode_t); -+ void (*putback_page)(struct page *); -+ int (*launder_page)(struct page *); -+ int (*is_partially_uptodate)(struct page *, long unsigned int, long unsigned int); -+ void (*is_dirty_writeback)(struct page *, bool *, bool *); -+ int (*error_remove_page)(struct address_space *, struct page *); -+ int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); -+ void (*swap_deactivate)(struct file *); -+}; -+ -+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 for_reclaim: 1; -+ unsigned int range_cyclic: 1; -+ unsigned int for_sync: 1; -+ unsigned int no_cgroup_owner: 1; -+ unsigned int punt_to_cgroup: 1; -+ 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 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; -+}; -+ -+struct iovec; -+ -+struct kvec; -+ -+struct bio_vec; -+ -+struct iov_iter { -+ u8 iter_type; -+ bool data_source; -+ size_t iov_offset; -+ size_t count; -+ union { -+ const struct iovec *iov; -+ const struct kvec *kvec; -+ const struct bio_vec *bvec; -+ struct xarray *xarray; -+ struct pipe_inode_info *pipe; -+ }; -+ union { -+ long unsigned int nr_segs; -+ struct { -+ unsigned int head; -+ unsigned int start_head; -+ }; -+ loff_t xarray_start; -+ }; -+}; -+ -+struct swap_cluster_info { -+ spinlock_t lock; -+ unsigned int data: 24; -+ unsigned int flags: 8; -+}; -+ -+struct swap_cluster_list { -+ struct swap_cluster_info head; -+ struct swap_cluster_info tail; -+}; -+ -+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; -+ struct swap_cluster_info *cluster_info; -+ struct swap_cluster_list free_clusters; -+ 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; -+ unsigned int old_block_size; -+ struct completion comp; -+ long unsigned int *frontswap_map; -+ atomic_t frontswap_pages; -+ spinlock_t lock; -+ spinlock_t cont_lock; -+ struct work_struct discard_work; -+ struct swap_cluster_list discard_clusters; -+ struct plist_node avail_lists[0]; -+}; -+ -+struct cdev { -+ struct kobject kobj; -+ struct module *owner; -+ const struct file_operations *ops; -+ struct list_head list; -+ dev_t dev; -+ unsigned int count; -+}; -+ -+struct fiemap_extent_info; -+ -+struct fileattr; -+ -+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 user_namespace *, struct inode *, int); -+ struct posix_acl * (*get_acl)(struct inode *, int); -+ int (*readlink)(struct dentry *, char *, int); -+ int (*create)(struct user_namespace *, struct inode *, struct dentry *, umode_t, bool); -+ int (*link)(struct dentry *, struct inode *, struct dentry *); -+ int (*unlink)(struct inode *, struct dentry *); -+ int (*symlink)(struct user_namespace *, struct inode *, struct dentry *, const char *); -+ int (*mkdir)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*rmdir)(struct inode *, struct dentry *); -+ int (*mknod)(struct user_namespace *, struct inode *, struct dentry *, umode_t, dev_t); -+ int (*rename)(struct user_namespace *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); -+ int (*setattr)(struct user_namespace *, struct dentry *, struct iattr *); -+ int (*getattr)(struct user_namespace *, 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 *, struct timespec64 *, int); -+ int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); -+ int (*tmpfile)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*set_acl)(struct user_namespace *, struct inode *, struct posix_acl *, int); -+ int (*fileattr_set)(struct user_namespace *, struct dentry *, struct fileattr *); -+ int (*fileattr_get)(struct dentry *, struct fileattr *); -+ long: 64; -+}; -+ -+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_operations { -+ void (*fl_copy_lock)(struct file_lock *, struct file_lock *); -+ void (*fl_release_private)(struct file_lock *); -+}; -+ -+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 lock_manager_operations; -+ -+struct file_lock { -+ struct file_lock *fl_blocker; -+ struct list_head fl_list; -+ struct hlist_node fl_link; -+ struct list_head fl_blocked_requests; -+ struct list_head fl_blocked_member; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ unsigned int fl_pid; -+ int fl_link_cpu; -+ wait_queue_head_t fl_wait; -+ struct file *fl_file; -+ loff_t fl_start; -+ loff_t fl_end; -+ struct fasync_struct *fl_fasync; -+ long unsigned int fl_break_time; -+ long unsigned int fl_downgrade_time; -+ 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; -+ } fl_u; -+}; -+ -+struct lock_manager_operations { -+ 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_break)(struct file_lock *); -+ int (*lm_change)(struct file_lock *, int, struct list_head *); -+ void (*lm_setup)(struct file_lock *, void **); -+ bool (*lm_breaker_owns_lease)(struct file_lock *); -+}; -+ -+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; -+}; -+ -+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 *); -+ int (*freeze_fs)(struct super_block *); -+ int (*thaw_super)(struct super_block *); -+ 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 *); -+}; -+ -+struct iomap; -+ -+struct fid; -+ -+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 *); -+ u64 (*fetch_iversion)(struct inode *); -+ 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 user_namespace *, struct dentry *, struct inode *, const char *, const void *, size_t, 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; -+ -+enum rpm_request { -+ RPM_REQ_NONE = 0, -+ RPM_REQ_IDLE = 1, -+ RPM_REQ_SUSPEND = 2, -+ RPM_REQ_AUTOSUSPEND = 3, -+ RPM_REQ_RESUME = 4, -+}; -+ -+struct wakeup_source; -+ -+struct wake_irq; -+ -+struct pm_subsys_data; -+ -+struct dev_pm_qos; -+ -+struct dev_pm_info { -+ pm_message_t power_state; -+ unsigned int can_wakeup: 1; -+ unsigned int 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; -+ unsigned int must_resume: 1; -+ unsigned int may_skip_resume: 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; -+ unsigned int idle_notification: 1; -+ unsigned int request_pending: 1; -+ unsigned int deferred_resume: 1; -+ unsigned int needs_force_resume: 1; -+ unsigned int runtime_auto: 1; -+ bool ignore_children: 1; -+ unsigned int no_callbacks: 1; -+ unsigned int irq_safe: 1; -+ unsigned int use_autosuspend: 1; -+ unsigned int timer_autosuspends: 1; -+ unsigned int memalloc_noio: 1; -+ unsigned int links_count; -+ enum rpm_request request; -+ enum rpm_status runtime_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; -+}; -+ -+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 em_perf_domain; -+ -+struct irq_domain; -+ -+struct dev_pin_info; -+ -+struct dma_map_ops; -+ -+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 dev_iommu; -+ -+struct device { -+ struct kobject kobj; -+ struct device *parent; -+ struct device_private *p; -+ const char *init_name; -+ const struct device_type *type; -+ 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 irq_domain *msi_domain; -+ struct dev_pin_info *pins; -+ raw_spinlock_t msi_lock; -+ struct list_head msi_list; -+ 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 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; -+ int numa_node; -+ dev_t devt; -+ u32 id; -+ spinlock_t devres_lock; -+ struct list_head devres_head; -+ struct class *class; -+ const struct attribute_group **groups; -+ void (*release)(struct device *); -+ struct iommu_group *iommu_group; -+ struct dev_iommu *iommu; -+ 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; -+}; -+ -+struct disk_stats; -+ -+struct gendisk; -+ -+struct partition_meta_info; -+ -+struct block_device { -+ sector_t bd_start_sect; -+ struct disk_stats *bd_stats; -+ long unsigned int bd_stamp; -+ bool bd_read_only; -+ dev_t bd_dev; -+ int bd_openers; -+ struct inode *bd_inode; -+ struct super_block *bd_super; -+ void *bd_claiming; -+ struct device bd_device; -+ void *bd_holder; -+ int bd_holders; -+ bool bd_write_holder; -+ struct list_head bd_holder_disks; -+ struct kobject *bd_holder_dir; -+ u8 bd_partno; -+ spinlock_t bd_size_lock; -+ struct gendisk *bd_disk; -+ struct backing_dev_info *bd_bdi; -+ int bd_fsfreeze_count; -+ struct mutex bd_fsfreeze_mutex; -+ struct super_block *bd_fsfreeze_sb; -+ struct partition_meta_info *bd_meta_info; -+}; -+ -+typedef int (*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 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; -+ unsigned int lsm_flags; -+ enum fs_context_purpose purpose: 8; -+ enum fs_context_phase phase: 8; -+ bool need_free: 1; -+ bool global: 1; -+ bool oldapi: 1; -+}; -+ -+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; -+}; -+ -+struct audit_names; -+ -+struct filename { -+ const char *name; -+ const char *uptr; -+ int refcnt; -+ struct audit_names *aname; -+ const char iname[0]; -+}; -+ -+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; -+}; -+ -+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 bio_integrity_payload; -+ -+struct bio { -+ struct bio *bi_next; -+ struct block_device *bi_bdev; -+ unsigned int bi_opf; -+ short unsigned int bi_flags; -+ short unsigned int bi_ioprio; -+ short unsigned int bi_write_hint; -+ blk_status_t bi_status; -+ atomic_t __bi_remaining; -+ struct bvec_iter bi_iter; -+ bio_end_io_t *bi_end_io; -+ void *bi_private; -+ struct blkcg_gq *bi_blkg; -+ struct bio_issue bi_issue; -+ union { -+ 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]; -+}; -+ -+struct kernfs_root; -+ -+struct kernfs_elem_dir { -+ long unsigned int subdirs; -+ struct rb_root children; -+ struct kernfs_root *root; -+}; -+ -+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 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; -+ union { -+ struct kernfs_elem_dir dir; -+ struct kernfs_elem_symlink symlink; -+ struct kernfs_elem_attr attr; -+ }; -+ void *priv; -+ u64 id; -+ short unsigned int flags; -+ umode_t mode; -+ struct kernfs_iattrs *iattr; -+}; -+ -+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 *); -+}; -+ -+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_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 * (*grab_current_ns)(); -+ const void * (*netlink_ns)(struct sock *); -+ const void * (*initial_ns)(); -+ 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 *mapping; -+ 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); -+ 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; -+ struct attribute **default_attrs; -+ const struct attribute_group **default_groups; -+ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject *); -+ const void * (*namespace)(struct kobject *); -+ void (*get_ownership)(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)(struct kset *, struct kobject *); -+ const char * (* const name)(struct kset *, struct kobject *); -+ int (* const uevent)(struct kset *, struct kobject *, struct kobj_uevent_env *); -+}; -+ -+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; -+}; -+ -+struct error_injection_entry { -+ long unsigned int addr; -+ int etype; -+}; -+ -+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; -+ int (*regfunc)(); -+ void (*unregfunc)(); -+ struct tracepoint_func *funcs; -+}; -+ -+struct bpf_raw_event_map { -+ struct tracepoint *tp; -+ void *bpf_func; -+ u32 num_args; -+ u32 writable_size; -+ long: 64; -+}; -+ -+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 trace_event_functions; -+ -+struct trace_event { -+ struct hlist_node node; -+ struct list_head list; -+ 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 { -+ char *name; -+ struct tracepoint *tp; -+ }; -+ struct trace_event event; -+ char *print_fmt; -+ struct event_filter *filter; -+ void *mod; -+ 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 linux_binprm { -+ struct vm_area_struct *vma; -+ long unsigned int vma_pages; -+ struct mm_struct *mm; -+ long unsigned int p; -+ long unsigned int argmin; -+ unsigned int have_execfd: 1; -+ unsigned int execfd_creds: 1; -+ unsigned int secureexec: 1; -+ unsigned int point_of_no_return: 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]; -+}; -+ -+struct coredump_params { -+ const kernel_siginfo_t *siginfo; -+ struct pt_regs *regs; -+ struct file *file; -+ long unsigned int limit; -+ long unsigned int mm_flags; -+ loff_t written; -+ loff_t pos; -+ loff_t to_skip; -+}; -+ -+struct em_perf_state { -+ long unsigned int frequency; -+ long unsigned int power; -+ long unsigned int cost; -+}; -+ -+struct em_perf_domain { -+ struct em_perf_state *table; -+ int nr_perf_states; -+ int milliwatts; -+ long unsigned int cpus[0]; -+}; -+ -+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 *); -+}; -+ -+struct iommu_ops; -+ -+struct subsys_private; -+ -+struct bus_type { -+ const char *name; -+ const char *dev_name; -+ struct device *dev_root; -+ const struct attribute_group **bus_groups; -+ const struct attribute_group **dev_groups; -+ const struct attribute_group **drv_groups; -+ int (*match)(struct device *, struct device_driver *); -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ int (*probe)(struct device *); -+ void (*sync_state)(struct device *); -+ int (*remove)(struct device *); -+ void (*shutdown)(struct device *); -+ 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 *); -+ const struct dev_pm_ops *pm; -+ const struct iommu_ops *iommu_ops; -+ struct subsys_private *p; -+ struct lock_class_key lock_key; -+ 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; -+ 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; -+}; -+ -+enum iommu_cap { -+ IOMMU_CAP_CACHE_COHERENCY = 0, -+ IOMMU_CAP_INTR_REMAP = 1, -+ IOMMU_CAP_NOEXEC = 2, -+}; -+ -+typedef u64 dma_addr_t; -+ -+enum iommu_dev_features { -+ IOMMU_DEV_FEAT_AUX = 0, -+ IOMMU_DEV_FEAT_SVA = 1, -+ IOMMU_DEV_FEAT_IOPF = 2, -+}; -+ -+struct iommu_domain; -+ -+struct iommu_iotlb_gather; -+ -+struct iommu_device; -+ -+struct iommu_resv_region; -+ -+struct of_phandle_args; -+ -+struct iommu_sva; -+ -+struct iommu_fault_event; -+ -+struct iommu_page_response; -+ -+struct iommu_cache_invalidate_info; -+ -+struct iommu_gpasid_bind_data; -+ -+struct iommu_ops { -+ bool (*capable)(enum iommu_cap); -+ struct iommu_domain * (*domain_alloc)(unsigned int); -+ void (*domain_free)(struct iommu_domain *); -+ int (*attach_dev)(struct iommu_domain *, struct device *); -+ void (*detach_dev)(struct iommu_domain *, struct device *); -+ int (*map)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, int, gfp_t); -+ int (*map_pages)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); -+ size_t (*unmap)(struct iommu_domain *, long unsigned int, size_t, struct iommu_iotlb_gather *); -+ 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 *); -+ void (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); -+ void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); -+ phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); -+ struct iommu_device * (*probe_device)(struct device *); -+ void (*release_device)(struct device *); -+ void (*probe_finalize)(struct device *); -+ struct iommu_group * (*device_group)(struct device *); -+ int (*enable_nesting)(struct iommu_domain *); -+ int (*set_pgtable_quirks)(struct iommu_domain *, long unsigned int); -+ void (*get_resv_regions)(struct device *, struct list_head *); -+ void (*put_resv_regions)(struct device *, struct list_head *); -+ void (*apply_resv_region)(struct device *, struct iommu_domain *, struct iommu_resv_region *); -+ int (*of_xlate)(struct device *, struct of_phandle_args *); -+ bool (*is_attach_deferred)(struct iommu_domain *, struct device *); -+ bool (*dev_has_feat)(struct device *, enum iommu_dev_features); -+ bool (*dev_feat_enabled)(struct device *, enum iommu_dev_features); -+ int (*dev_enable_feat)(struct device *, enum iommu_dev_features); -+ int (*dev_disable_feat)(struct device *, enum iommu_dev_features); -+ int (*aux_attach_dev)(struct iommu_domain *, struct device *); -+ void (*aux_detach_dev)(struct iommu_domain *, struct device *); -+ int (*aux_get_pasid)(struct iommu_domain *, struct device *); -+ struct iommu_sva * (*sva_bind)(struct device *, struct mm_struct *, void *); -+ void (*sva_unbind)(struct iommu_sva *); -+ u32 (*sva_get_pasid)(struct iommu_sva *); -+ int (*page_response)(struct device *, struct iommu_fault_event *, struct iommu_page_response *); -+ int (*cache_invalidate)(struct iommu_domain *, struct device *, struct iommu_cache_invalidate_info *); -+ int (*sva_bind_gpasid)(struct iommu_domain *, struct device *, struct iommu_gpasid_bind_data *); -+ int (*sva_unbind_gpasid)(struct device *, u32); -+ int (*def_domain_type)(struct device *); -+ long unsigned int pgsize_bitmap; -+ struct module *owner; -+}; -+ -+struct device_type { -+ const char *name; -+ const struct attribute_group **groups; -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *, kuid_t *, kgid_t *); -+ void (*release)(struct device *); -+ const struct dev_pm_ops *pm; -+}; -+ -+struct class { -+ const char *name; -+ struct module *owner; -+ const struct attribute_group **class_groups; -+ const struct attribute_group **dev_groups; -+ struct kobject *dev_kobj; -+ int (*dev_uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *); -+ void (*class_release)(struct class *); -+ void (*dev_release)(struct device *); -+ int (*shutdown_pre)(struct device *); -+ const struct kobj_ns_type_operations *ns_type; -+ const void * (*namespace)(struct device *); -+ void (*get_ownership)(struct device *, kuid_t *, kgid_t *); -+ const struct dev_pm_ops *pm; -+ struct subsys_private *p; -+}; -+ -+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[9]; -+ 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 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, -+}; -+ -+struct irq_domain_ops; -+ -+struct irq_domain_chip_generic; -+ -+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 fwnode_handle *fwnode; -+ enum irq_domain_bus_token bus_token; -+ struct irq_domain_chip_generic *gc; -+ struct irq_domain *parent; -+ irq_hw_number_t hwirq_max; -+ unsigned int revmap_size; -+ struct xarray revmap_tree; -+ struct mutex revmap_mutex; -+ struct irq_data *revmap[0]; -+}; -+ -+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)(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); -+ struct sg_table * (*alloc_noncontiguous)(struct device *, size_t, enum dma_data_direction, gfp_t, long unsigned int); -+ void (*free_noncontiguous)(struct device *, size_t, struct sg_table *, 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 *); -+ long unsigned int (*get_merge_boundary)(struct device *); -+}; -+ -+struct bus_dma_region { -+ phys_addr_t cpu_start; -+ dma_addr_t dma_start; -+ u64 size; -+ u64 offset; -+}; -+ -+typedef u32 phandle; -+ -+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 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; -+}; -+ -+enum cpuhp_state { -+ CPUHP_INVALID = 4294967295, -+ 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_APB_DEAD = 8, -+ CPUHP_X86_MCE_DEAD = 9, -+ CPUHP_VIRT_NET_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_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_PCI_XGENE_DEAD = 32, -+ CPUHP_IOMMU_IOVA_DEAD = 33, -+ CPUHP_LUSTRE_CFS_DEAD = 34, -+ CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 35, -+ CPUHP_PADATA_DEAD = 36, -+ CPUHP_WORKQUEUE_PREP = 37, -+ CPUHP_POWER_NUMA_PREPARE = 38, -+ CPUHP_HRTIMERS_PREPARE = 39, -+ CPUHP_PROFILE_PREPARE = 40, -+ CPUHP_X2APIC_PREPARE = 41, -+ CPUHP_SMPCFD_PREPARE = 42, -+ CPUHP_RELAY_PREPARE = 43, -+ CPUHP_SLAB_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_NET_FLOW_PREPARE = 54, -+ CPUHP_TOPOLOGY_PREPARE = 55, -+ CPUHP_NET_IUCV_PREPARE = 56, -+ CPUHP_ARM_BL_PREPARE = 57, -+ CPUHP_TRACE_RB_PREPARE = 58, -+ CPUHP_MM_ZS_PREPARE = 59, -+ CPUHP_MM_ZSWP_MEM_PREPARE = 60, -+ CPUHP_MM_ZSWP_POOL_PREPARE = 61, -+ CPUHP_KVM_PPC_BOOK3S_PREPARE = 62, -+ CPUHP_ZCOMP_PREPARE = 63, -+ CPUHP_TIMERS_PREPARE = 64, -+ CPUHP_MIPS_SOC_PREPARE = 65, -+ CPUHP_BP_PREPARE_DYN = 66, -+ CPUHP_BP_PREPARE_DYN_END = 86, -+ CPUHP_BRINGUP_CPU = 87, -+ CPUHP_AP_IDLE_DEAD = 88, -+ CPUHP_AP_OFFLINE = 89, -+ CPUHP_AP_SCHED_STARTING = 90, -+ CPUHP_AP_RCUTREE_DYING = 91, -+ CPUHP_AP_CPU_PM_STARTING = 92, -+ CPUHP_AP_IRQ_GIC_STARTING = 93, -+ CPUHP_AP_IRQ_HIP04_STARTING = 94, -+ CPUHP_AP_IRQ_APPLE_AIC_STARTING = 95, -+ CPUHP_AP_IRQ_ARMADA_XP_STARTING = 96, -+ CPUHP_AP_IRQ_BCM2836_STARTING = 97, -+ CPUHP_AP_IRQ_MIPS_GIC_STARTING = 98, -+ CPUHP_AP_IRQ_RISCV_STARTING = 99, -+ CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 100, -+ CPUHP_AP_ARM_MVEBU_COHERENCY = 101, -+ CPUHP_AP_MICROCODE_LOADER = 102, -+ CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 103, -+ CPUHP_AP_PERF_X86_STARTING = 104, -+ CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 105, -+ CPUHP_AP_PERF_X86_CQM_STARTING = 106, -+ CPUHP_AP_PERF_X86_CSTATE_STARTING = 107, -+ CPUHP_AP_PERF_XTENSA_STARTING = 108, -+ CPUHP_AP_MIPS_OP_LOONGSON3_STARTING = 109, -+ CPUHP_AP_ARM_SDEI_STARTING = 110, -+ CPUHP_AP_ARM_VFP_STARTING = 111, -+ CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 112, -+ CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 113, -+ CPUHP_AP_PERF_ARM_ACPI_STARTING = 114, -+ CPUHP_AP_PERF_ARM_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_GLOBAL_TIMER_STARTING = 119, -+ CPUHP_AP_JCORE_TIMER_STARTING = 120, -+ CPUHP_AP_ARM_TWD_STARTING = 121, -+ CPUHP_AP_QCOM_TIMER_STARTING = 122, -+ CPUHP_AP_TEGRA_TIMER_STARTING = 123, -+ CPUHP_AP_ARMADA_TIMER_STARTING = 124, -+ CPUHP_AP_MARCO_TIMER_STARTING = 125, -+ CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, -+ CPUHP_AP_ARC_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_KVM_STARTING = 133, -+ CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING = 134, -+ CPUHP_AP_KVM_ARM_VGIC_STARTING = 135, -+ CPUHP_AP_KVM_ARM_TIMER_STARTING = 136, -+ CPUHP_AP_DUMMY_TIMER_STARTING = 137, -+ CPUHP_AP_ARM_XEN_STARTING = 138, -+ CPUHP_AP_ARM_CORESIGHT_STARTING = 139, -+ CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 140, -+ CPUHP_AP_ARM64_ISNDEP_STARTING = 141, -+ CPUHP_AP_SMPCFD_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_SCHED_WAIT_EMPTY = 148, -+ CPUHP_AP_SMPBOOT_THREADS = 149, -+ CPUHP_AP_X86_VDSO_VMA_ONLINE = 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_X86_RAPL_ONLINE = 160, -+ CPUHP_AP_PERF_X86_CQM_ONLINE = 161, -+ CPUHP_AP_PERF_X86_CSTATE_ONLINE = 162, -+ CPUHP_AP_PERF_X86_IDXD_ONLINE = 163, -+ CPUHP_AP_PERF_S390_CF_ONLINE = 164, -+ CPUHP_AP_PERF_S390_SF_ONLINE = 165, -+ CPUHP_AP_PERF_ARM_CCI_ONLINE = 166, -+ CPUHP_AP_PERF_ARM_CCN_ONLINE = 167, -+ CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 168, -+ CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 169, -+ CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 170, -+ CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 171, -+ CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 172, -+ CPUHP_AP_PERF_ARM_L2X0_ONLINE = 173, -+ CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 174, -+ CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 175, -+ CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 176, -+ CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 177, -+ CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 178, -+ CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 179, -+ CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 180, -+ CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 181, -+ CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 182, -+ CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 183, -+ CPUHP_AP_PERF_CSKY_ONLINE = 184, -+ CPUHP_AP_WATCHDOG_ONLINE = 185, -+ CPUHP_AP_WORKQUEUE_ONLINE = 186, -+ CPUHP_AP_RCUTREE_ONLINE = 187, -+ CPUHP_AP_BASE_CACHEINFO_ONLINE = 188, -+ CPUHP_AP_ONLINE_DYN = 189, -+ CPUHP_AP_ONLINE_DYN_END = 219, -+ CPUHP_AP_X86_HPET_ONLINE = 220, -+ CPUHP_AP_X86_KVM_CLK_ONLINE = 221, -+ CPUHP_AP_DTPM_CPU_ONLINE = 222, -+ CPUHP_AP_ACTIVE = 223, -+ CPUHP_ONLINE = 224, -+}; -+ -+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 dev_pagemap_ops { -+ void (*page_free)(struct page *); -+ void (*kill)(struct dev_pagemap *); -+ void (*cleanup)(struct dev_pagemap *); -+ vm_fault_t (*migrate_to_ram)(struct vm_fault *); -+}; -+ -+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, -+ PGSCAN_KSWAPD = 27, -+ PGSCAN_DIRECT = 28, -+ PGSCAN_DIRECT_THROTTLE = 29, -+ PGSCAN_ANON = 30, -+ PGSCAN_FILE = 31, -+ PGSTEAL_ANON = 32, -+ PGSTEAL_FILE = 33, -+ PGSCAN_ZONE_RECLAIM_FAILED = 34, -+ PGINODESTEAL = 35, -+ SLABS_SCANNED = 36, -+ KSWAPD_INODESTEAL = 37, -+ KSWAPD_LOW_WMARK_HIT_QUICKLY = 38, -+ KSWAPD_HIGH_WMARK_HIT_QUICKLY = 39, -+ PAGEOUTRUN = 40, -+ PGROTATED = 41, -+ DROP_PAGECACHE = 42, -+ DROP_SLAB = 43, -+ OOM_KILL = 44, -+ NUMA_PTE_UPDATES = 45, -+ NUMA_HUGE_PTE_UPDATES = 46, -+ NUMA_HINT_FAULTS = 47, -+ NUMA_HINT_FAULTS_LOCAL = 48, -+ NUMA_PAGE_MIGRATE = 49, -+ PGMIGRATE_SUCCESS = 50, -+ PGMIGRATE_FAIL = 51, -+ THP_MIGRATION_SUCCESS = 52, -+ THP_MIGRATION_FAIL = 53, -+ THP_MIGRATION_SPLIT = 54, -+ COMPACTMIGRATE_SCANNED = 55, -+ COMPACTFREE_SCANNED = 56, -+ COMPACTISOLATED = 57, -+ COMPACTSTALL = 58, -+ COMPACTFAIL = 59, -+ COMPACTSUCCESS = 60, -+ KCOMPACTD_WAKE = 61, -+ KCOMPACTD_MIGRATE_SCANNED = 62, -+ KCOMPACTD_FREE_SCANNED = 63, -+ HTLB_BUDDY_PGALLOC = 64, -+ HTLB_BUDDY_PGALLOC_FAIL = 65, -+ UNEVICTABLE_PGCULLED = 66, -+ UNEVICTABLE_PGSCANNED = 67, -+ UNEVICTABLE_PGRESCUED = 68, -+ UNEVICTABLE_PGMLOCKED = 69, -+ UNEVICTABLE_PGMUNLOCKED = 70, -+ UNEVICTABLE_PGCLEARED = 71, -+ UNEVICTABLE_PGSTRANDED = 72, -+ THP_FAULT_ALLOC = 73, -+ THP_FAULT_FALLBACK = 74, -+ THP_FAULT_FALLBACK_CHARGE = 75, -+ THP_COLLAPSE_ALLOC = 76, -+ THP_COLLAPSE_ALLOC_FAILED = 77, -+ THP_FILE_ALLOC = 78, -+ THP_FILE_FALLBACK = 79, -+ THP_FILE_FALLBACK_CHARGE = 80, -+ THP_FILE_MAPPED = 81, -+ THP_SPLIT_PAGE = 82, -+ THP_SPLIT_PAGE_FAILED = 83, -+ THP_DEFERRED_SPLIT_PAGE = 84, -+ THP_SPLIT_PMD = 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, -+ NR_VM_EVENT_ITEMS = 95, -+}; -+ -+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 ring_buffer_event { -+ u32 type_len: 5; -+ u32 time_delta: 27; -+ u32 array[0]; -+}; -+ -+struct seq_buf { -+ char *buffer; -+ size_t size; -+ size_t len; -+ loff_t readpos; -+}; -+ -+struct trace_seq { -+ char buffer[4096]; -+ struct seq_buf seq; -+ int full; -+}; -+ -+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; -+ unsigned int ipi_offset; -+}; -+ -+struct irq_chip; -+ -+struct irq_data { -+ u32 mask; -+ unsigned int irq; -+ long unsigned int hwirq; -+ struct irq_common_data *common; -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ struct irq_data *parent_data; -+ void *chip_data; -+}; -+ -+struct irqaction; -+ -+struct irq_affinity_notify; -+ -+struct proc_dir_entry; -+ -+struct irq_desc { -+ struct irq_common_data irq_common_data; -+ struct irq_data irq_data; -+ unsigned int *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; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum irqreturn { -+ IRQ_NONE = 0, -+ IRQ_HANDLED = 1, -+ IRQ_WAKE_THREAD = 2, -+}; -+ -+typedef enum irqreturn irqreturn_t; -+ -+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 (*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 *); -+ 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[8]; -+}; -+ -+enum kmalloc_cache_type { -+ KMALLOC_NORMAL = 0, -+ KMALLOC_CGROUP = 1, -+ KMALLOC_RECLAIM = 2, -+ KMALLOC_DMA = 3, -+ NR_KMALLOC_TYPES = 4, -+}; -+ -+enum irqchip_irq_state { -+ IRQCHIP_STATE_PENDING = 0, -+ IRQCHIP_STATE_ACTIVE = 1, -+ IRQCHIP_STATE_MASKED = 2, -+ IRQCHIP_STATE_LINE_LEVEL = 3, -+}; -+ -+struct msi_msg; -+ -+struct irq_chip { -+ struct device *parent_device; -+ 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_cpu_online)(struct irq_data *); -+ void (*irq_cpu_offline)(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; -+}; -+ -+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; -+ long unsigned int polarity; -+}; -+ -+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 type_cache; -+ u32 polarity_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; -+ struct irq_chip_generic *gc[0]; -+}; -+ -+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_rsvd: 21; -+ }; -+}; -+ -+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 reserved: 40; -+}; -+ -+union perf_sample_weight { -+ __u64 full; -+ struct { -+ __u32 var1_dw; -+ __u16 var2_w; -+ __u16 var3_w; -+ }; -+}; -+ -+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 cgroup_namespace { -+ struct ns_common ns; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct css_set *root_cset; -+}; -+ -+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 *); -+}; -+ -+struct iovec { -+ void *iov_base; -+ __kernel_size_t iov_len; -+}; -+ -+struct kvec { -+ void *iov_base; -+ size_t iov_len; -+}; -+ -+struct ftrace_regs { -+ struct pt_regs regs; -+}; -+ -+struct perf_regs { -+ __u64 abi; -+ struct pt_regs *regs; -+}; -+ -+struct u64_stats_sync {}; -+ -+struct bpf_cgroup_storage_key { -+ __u64 cgroup_inode_id; -+ __u32 attach_type; -+}; -+ -+struct bpf_cgroup_storage; -+ -+struct bpf_prog_array_item { -+ struct bpf_prog *prog; -+ struct bpf_cgroup_storage *cgroup_storage[2]; -+}; -+ -+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_prog_array { -+ struct callback_head rcu; -+ struct bpf_prog_array_item items[0]; -+}; -+ -+struct bpf_storage_buffer { -+ struct callback_head rcu; -+ char data[0]; -+}; -+ -+struct psi_group_cpu { -+ seqcount_t seq; -+ unsigned int tasks[4]; -+ u32 state_mask; -+ u32 times[7]; -+ u64 state_start; -+ u32 times_prev[14]; -+ long: 64; -+}; -+ -+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_rstat_flush)(struct cgroup_subsys_state *, int); -+ int (*css_extra_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)(); -+ 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 *updated_children; -+ struct cgroup *updated_next; -+}; -+ -+struct cgroup_root { -+ struct kernfs_root *kf_root; -+ unsigned int subsys_mask; -+ int hierarchy_id; -+ struct cgroup cgrp; -+ u64 cgrp_ancestor_id_storage; -+ atomic_t nr_cgrps; -+ struct list_head root_list; -+ unsigned int flags; -+ char release_agent_path[4096]; -+ char name[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 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_context; -+ -+struct perf_output_handle; -+ -+struct pmu { -+ struct list_head entry; -+ struct module *module; -+ struct device *dev; -+ const struct attribute_group **attr_groups; -+ const struct attribute_group **attr_update; -+ const char *name; -+ int type; -+ int capabilities; -+ int *pmu_disable_count; -+ struct perf_cpu_context *pmu_cpu_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_context *, bool); -+ struct kmem_cache *task_ctx_cache; -+ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_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 *); -+ int (*filter_match)(struct perf_event *); -+ int (*check_period)(struct perf_event *, u64); -+}; -+ -+struct perf_cpu_context { -+ struct perf_event_context ctx; -+ struct perf_event_context *task_ctx; -+ int active_oncpu; -+ int exclusive; -+ raw_spinlock_t hrtimer_lock; -+ struct hrtimer hrtimer; -+ ktime_t hrtimer_interval; -+ unsigned int hrtimer_active; -+ struct perf_cgroup *cgrp; -+ struct list_head cgrp_cpuctx_entry; -+ struct list_head sched_cb_entry; -+ int sched_cb_usage; -+ int online; -+ int heap_size; -+ struct perf_event **heap; -+ struct perf_event *heap_default[2]; -+}; -+ -+struct perf_output_handle { -+ struct perf_event *event; -+ struct perf_buffer *rb; -+ long unsigned int wakeup; -+ long unsigned int size; -+ u64 aux_flags; -+ 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 addr; -+ struct perf_raw_record *raw; -+ struct perf_branch_stack *br_stack; -+ u64 period; -+ union perf_sample_weight weight; -+ u64 txn; -+ union perf_mem_data_src data_src; -+ u64 type; -+ u64 ip; -+ struct { -+ u32 pid; -+ u32 tid; -+ } tid_entry; -+ u64 time; -+ u64 id; -+ u64 stream_id; -+ struct { -+ u32 cpu; -+ u32 reserved; -+ } cpu_entry; -+ struct perf_callchain_entry *callchain; -+ u64 aux_size; -+ struct perf_regs regs_user; -+ struct perf_regs regs_intr; -+ u64 stack_user_size; -+ u64 phys_addr; -+ u64 cgroup; -+ u64 data_page_size; -+ u64 code_page_size; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+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; -+ struct trace_seq tmp_seq; -+ cpumask_var_t started; -+ 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 int is_signed; -+ const int filter_type; -+ }; -+ 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 *); -+}; -+ -+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 trace_subsystem_dir; -+ -+struct trace_event_file { -+ struct list_head list; -+ struct trace_event_call *event_call; -+ struct event_filter *filter; -+ struct dentry *dir; -+ struct trace_array *tr; -+ struct trace_subsystem_dir *system; -+ struct list_head triggers; -+ long unsigned int flags; -+ atomic_t sm_ref; -+ atomic_t tm_ref; -+}; -+ -+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_KPROBE_BIT = 5, -+ TRACE_EVENT_FL_UPROBE_BIT = 6, -+}; -+ -+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_KPROBE = 32, -+ TRACE_EVENT_FL_UPROBE = 64, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ FILTER_OTHER = 0, -+ FILTER_STATIC_STRING = 1, -+ FILTER_DYN_STRING = 2, -+ FILTER_PTR_STRING = 3, -+ FILTER_TRACE_FN = 4, -+ FILTER_COMM = 5, -+ FILTER_CPU = 6, -+}; -+ -+struct property { -+ char *name; -+ int length; -+ void *value; -+ struct property *next; -+ struct bin_attribute attr; -+}; -+ -+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 xbc_node { -+ u16 next; -+ u16 child; -+ u16 parent; -+ u16 data; -+}; -+ -+enum wb_stat_item { -+ WB_RECLAIMABLE = 0, -+ WB_WRITEBACK = 1, -+ WB_DIRTIED = 2, -+ WB_WRITTEN = 3, -+ NR_WB_STAT_ITEMS = 4, -+}; -+ -+struct block_device_operations; -+ -+struct timer_rand_state; -+ -+struct disk_events; -+ -+struct cdrom_device_info; -+ -+struct badblocks; -+ -+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; -+ int flags; -+ long unsigned int state; -+ struct mutex open_mutex; -+ unsigned int open_partitions; -+ struct kobject *slave_dir; -+ struct timer_rand_state *random; -+ atomic_t sync_io; -+ struct disk_events *ev; -+ struct kobject integrity_kobj; -+ struct cdrom_device_info *cdi; -+ int node_id; -+ struct badblocks *bb; -+ struct lockdep_map lockdep_map; -+}; -+ -+struct partition_meta_info { -+ char uuid[37]; -+ u8 volname[64]; -+}; -+ -+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; -+ struct bvec_iter bio_iter; -+ struct work_struct bip_work; -+ struct bio_vec *bip_vec; -+ struct bio_vec bip_inline_vecs[0]; -+}; -+ -+struct blkg_iostat { -+ u64 bytes[3]; -+ u64 ios[3]; -+}; -+ -+struct blkg_iostat_set { -+ struct u64_stats_sync sync; -+ 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; -+ struct work_struct async_bio_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 unsigned int blk_qc_t; -+ -+struct blk_integrity_iter; -+ -+typedef blk_status_t integrity_processing_fn(struct blk_integrity_iter *); -+ -+typedef void integrity_prepare_fn(struct request *); -+ -+typedef void integrity_complete_fn(struct request *, unsigned int); -+ -+struct blk_integrity_profile { -+ integrity_processing_fn *generate_fn; -+ integrity_processing_fn *verify_fn; -+ integrity_prepare_fn *prepare_fn; -+ integrity_complete_fn *complete_fn; -+ const char *name; -+}; -+ -+struct blk_zone; -+ -+typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); -+ -+struct hd_geometry; -+ -+struct pr_ops; -+ -+struct block_device_operations { -+ blk_qc_t (*submit_bio)(struct bio *); -+ int (*open)(struct block_device *, fmode_t); -+ void (*release)(struct gendisk *, fmode_t); -+ int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); -+ int (*ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct block_device *, fmode_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 (*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 *); -+ struct module *owner; -+ const struct pr_ops *pr_ops; -+}; -+ -+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; -+}; -+ -+struct bsg_ops { -+ int (*check_proto)(struct sg_io_v4 *); -+ int (*fill_hdr)(struct request *, struct sg_io_v4 *, fmode_t); -+ int (*complete_rq)(struct request *, struct sg_io_v4 *); -+ void (*free_rq)(struct request *); -+}; -+ -+typedef __u32 req_flags_t; -+ -+typedef void rq_end_io_fn(struct request *, blk_status_t); -+ -+enum mq_rq_state { -+ MQ_RQ_IDLE = 0, -+ MQ_RQ_IN_FLIGHT = 1, -+ MQ_RQ_COMPLETE = 2, -+}; -+ -+struct request { -+ struct request_queue *q; -+ struct blk_mq_ctx *mq_ctx; -+ struct blk_mq_hw_ctx *mq_hctx; -+ unsigned int cmd_flags; -+ req_flags_t rq_flags; -+ int tag; -+ int internal_tag; -+ unsigned int __data_len; -+ sector_t __sector; -+ struct bio *bio; -+ struct bio *biotail; -+ struct list_head queuelist; -+ union { -+ struct hlist_node hash; -+ struct llist_node ipi_list; -+ }; -+ union { -+ struct rb_node rb_node; -+ struct bio_vec special_vec; -+ void *completion_data; -+ int error_count; -+ }; -+ union { -+ struct { -+ struct io_cq *icq; -+ void *priv[2]; -+ } elv; -+ struct { -+ unsigned int seq; -+ struct list_head list; -+ rq_end_io_fn *saved_end_io; -+ } flush; -+ }; -+ struct gendisk *rq_disk; -+ struct block_device *part; -+ 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; -+ short unsigned int write_hint; -+ short unsigned int ioprio; -+ enum mq_rq_state state; -+ refcount_t ref; -+ unsigned int timeout; -+ long unsigned int deadline; -+ union { -+ struct __call_single_data csd; -+ u64 fifo_time; -+ }; -+ rq_end_io_fn *end_io; -+ void *end_io_data; -+}; -+ -+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]; -+}; -+ -+struct sbitmap_word { -+ long unsigned int depth; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int word; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int cleared; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct sbq_wait_state { -+ atomic_t wait_cnt; -+ wait_queue_head_t wait; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum elv_merge { -+ ELEVATOR_NO_MERGE = 0, -+ ELEVATOR_FRONT_MERGE = 1, -+ ELEVATOR_BACK_MERGE = 2, -+ ELEVATOR_DISCARD_MERGE = 3, -+}; -+ -+struct elevator_type; -+ -+struct blk_mq_alloc_data; -+ -+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)(unsigned int, 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 *, bool); -+ 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 blk_mq_debugfs_attr; -+ -+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; -+ const unsigned int elevator_features; -+ 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 elevator_queue { -+ struct elevator_type *type; -+ void *elevator_data; -+ struct kobject kobj; -+ struct mutex sysfs_lock; -+ unsigned int registered: 1; -+ struct hlist_head hash[64]; -+}; -+ -+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 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 blk_eh_timer_return { -+ BLK_EH_DONE = 0, -+ BLK_EH_RESET_TIMER = 1, -+}; -+ -+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 *); -+ 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 *, bool); -+ int (*poll)(struct blk_mq_hw_ctx *); -+ 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 (*initialize_rq_fn)(struct request *); -+ void (*cleanup_rq)(struct request *); -+ bool (*busy)(struct request_queue *); -+ int (*map_queues)(struct blk_mq_tag_set *); -+ void (*show_rq)(struct seq_file *, struct request *); -+}; -+ -+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; -+}; -+ -+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_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); -+}; -+ -+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; -+ 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; -+ char fc_app_id[129]; -+ struct list_head cgwb_list; -+}; -+ -+struct blkcg_policy_data { -+ struct blkcg *blkcg; -+ int plid; -+}; -+ -+struct blkg_policy_data { -+ struct blkcg_gq *blkg; -+ int plid; -+}; -+ -+enum memcg_stat_item { -+ MEMCG_SWAP = 39, -+ MEMCG_SOCK = 40, -+ MEMCG_PERCPU_B = 41, -+ MEMCG_NR_STAT = 42, -+}; -+ -+enum memcg_memory_event { -+ MEMCG_LOW = 0, -+ MEMCG_HIGH = 1, -+ MEMCG_MAX = 2, -+ MEMCG_OOM = 3, -+ MEMCG_OOM_KILL = 4, -+ MEMCG_SWAP_HIGH = 5, -+ MEMCG_SWAP_MAX = 6, -+ MEMCG_SWAP_FAIL = 7, -+ MEMCG_NR_MEMORY_EVENTS = 8, -+}; -+ -+enum mem_cgroup_events_target { -+ MEM_CGROUP_TARGET_THRESH = 0, -+ MEM_CGROUP_TARGET_SOFTLIMIT = 1, -+ MEM_CGROUP_NTARGETS = 2, -+}; -+ -+struct memcg_vmstats_percpu { -+ long int state[42]; -+ long unsigned int events[95]; -+ long int state_prev[42]; -+ long unsigned int events_prev[95]; -+ long unsigned int nr_page_events; -+ long unsigned int targets[2]; -+}; -+ -+struct mem_cgroup_reclaim_iter { -+ struct mem_cgroup *position; -+ unsigned int generation; -+}; -+ -+struct lruvec_stat { -+ long int count[39]; -+}; -+ -+struct batched_lruvec_stat { -+ s32 count[39]; -+}; -+ -+struct shrinker_info { -+ struct callback_head rcu; -+ atomic_long_t *nr_deferred; -+ long unsigned int *map; -+}; -+ -+struct mem_cgroup_per_node { -+ struct lruvec lruvec; -+ struct lruvec_stat *lruvec_stat_local; -+ struct batched_lruvec_stat *lruvec_stat_cpu; -+ atomic_long_t lruvec_stat[39]; -+ long unsigned int lru_zone_size[20]; -+ struct mem_cgroup_reclaim_iter iter; -+ struct shrinker_info *shrinker_info; -+ struct rb_node tree_node; -+ long unsigned int usage_in_excess; -+ bool on_tree; -+ struct mem_cgroup *memcg; -+}; -+ -+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]; -+}; -+ -+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; -+ }; -+}; -+ -+struct percpu_cluster { -+ struct swap_cluster_info index; -+ unsigned int next; -+}; -+ -+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; -+ }; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef __u32 Elf32_Word; -+ -+struct elf32_note { -+ Elf32_Word n_namesz; -+ Elf32_Word n_descsz; -+ Elf32_Word n_type; -+}; -+ -+enum pcpu_fc { -+ PCPU_FC_AUTO = 0, -+ PCPU_FC_EMBED = 1, -+ PCPU_FC_PAGE = 2, -+ PCPU_FC_NR = 3, -+}; -+ -+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 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 { -+ MM_FILEPAGES = 0, -+ MM_ANONPAGES = 1, -+ MM_SWAPENTS = 2, -+ MM_SHMEMPAGES = 3, -+ NR_MM_COUNTERS = 4, -+}; -+ -+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 perf_event_task_context { -+ perf_invalid_context = 4294967295, -+ perf_hw_context = 0, -+ perf_sw_context = 1, -+ perf_nr_task_contexts = 2, -+}; -+ -+enum rseq_event_mask_bits { -+ RSEQ_EVENT_PREEMPT_BIT = 0, -+ RSEQ_EVENT_SIGNAL_BIT = 1, -+ RSEQ_EVENT_MIGRATE_BIT = 2, -+}; -+ -+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, -+}; -+ -+typedef __u16 __le16; -+ -+typedef __u16 __be16; -+ -+typedef __u32 __be32; -+ -+typedef __u64 __be64; -+ -+typedef __u32 __wsum; -+ -+typedef unsigned int slab_flags_t; -+ -+struct page_pool_params { -+ unsigned int flags; -+ unsigned int order; -+ unsigned int pool_size; -+ int nid; -+ struct device *dev; -+ enum dma_data_direction dma_dir; -+ unsigned int max_len; -+ unsigned int offset; -+}; -+ -+struct pp_alloc_cache { -+ u32 count; -+ struct page *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: 32; -+ 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 { -+ struct page_pool_params p; -+ struct delayed_work release_dw; -+ void (*disconnect)(void *); -+ long unsigned int defer_start; -+ long unsigned int defer_warn; -+ u32 pages_state_hold_cnt; -+ long: 32; -+ 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; -+ atomic_t pages_state_release_cnt; -+ refcount_t user_cnt; -+ u64 destroy_cnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+struct raw_notifier_head { -+ struct notifier_block *head; -+}; -+ -+struct rhash_head { -+ struct rhash_head *next; -+}; -+ -+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; -+}; -+ -+struct fs_struct { -+ int users; -+ spinlock_t lock; -+ seqcount_spinlock_t seq; -+ int umask; -+ int in_exec; -+ struct path root; -+ struct path pwd; -+}; -+ -+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; -+ unsigned int head; -+ unsigned int tail; -+ unsigned int max_usage; -+ unsigned int ring_size; -+ bool note_loss; -+ unsigned int nr_accounted; -+ unsigned int readers; -+ unsigned int writers; -+ unsigned int files; -+ unsigned int r_counter; -+ unsigned int w_counter; -+ unsigned int 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 watch_queue *watch_queue; -+}; -+ -+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_operations; -+ -+struct tty_ldisc; -+ -+struct tty_port; -+ -+struct tty_struct { -+ int magic; -+ struct kref kref; -+ struct device *dev; -+ struct tty_driver *driver; -+ const struct tty_operations *ops; -+ int index; -+ struct ld_semaphore ldisc_sem; -+ struct tty_ldisc *ldisc; -+ 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; -+ struct winsize winsize; -+ struct { -+ spinlock_t lock; -+ bool stopped; -+ bool tco_stopped; -+ long unsigned int unused[0]; -+ } flow; -+ struct { -+ spinlock_t lock; -+ struct pid *pgrp; -+ struct pid *session; -+ unsigned char pktstatus; -+ bool packet; -+ long unsigned int unused[0]; -+ } ctrl; -+ int hw_stopped; -+ unsigned int receive_room; -+ 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; -+ struct list_head tty_files; -+ int closing; -+ unsigned char *write_buf; -+ int write_cnt; -+ struct work_struct SAK_work; -+ struct tty_port *port; -+}; -+ -+typedef struct { -+ size_t written; -+ size_t count; -+ union { -+ char *buf; -+ void *data; -+ } arg; -+ int error; -+} read_descriptor_t; -+ -+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 in6_addr { -+ union { -+ __u8 u6_addr8[16]; -+ __be16 u6_addr16[8]; -+ __be32 u6_addr32[4]; -+ } in6_u; -+}; -+ -+struct hlist_nulls_node { -+ struct hlist_nulls_node *next; -+ struct hlist_nulls_node **pprev; -+}; -+ -+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; -+ }; -+}; -+ -+typedef struct { -+ spinlock_t slock; -+ int owned; -+ wait_queue_head_t wq; -+} socket_lock_t; -+ -+struct sk_buff; -+ -+struct sk_buff_head { -+ struct sk_buff *next; -+ struct sk_buff *prev; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+typedef u64 netdev_features_t; -+ -+struct sock_cgroup_data { -+ union { -+ struct { -+ u8 is_data: 1; -+ u8 no_refcnt: 1; -+ u8 unused: 6; -+ u8 padding; -+ u16 prioidx; -+ u32 classid; -+ }; -+ u64 val; -+ }; -+}; -+ -+struct sk_filter; -+ -+struct socket_wq; -+ -+struct xfrm_policy; -+ -+struct dst_entry; -+ -+struct socket; -+ -+struct net_device; -+ -+struct sock_reuseport; -+ -+struct sock { -+ struct sock_common __sk_common; -+ socket_lock_t sk_lock; -+ atomic_t sk_drops; -+ int sk_rcvlowat; -+ struct sk_buff_head sk_error_queue; -+ struct sk_buff *sk_rx_skb_cache; -+ struct sk_buff_head sk_receive_queue; -+ struct { -+ atomic_t rmem_alloc; -+ int len; -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ } sk_backlog; -+ int sk_forward_alloc; -+ unsigned int sk_ll_usec; -+ unsigned int sk_napi_id; -+ int sk_rcvbuf; -+ struct sk_filter *sk_filter; -+ union { -+ struct socket_wq *sk_wq; -+ struct socket_wq *sk_wq_raw; -+ }; -+ struct xfrm_policy *sk_policy[2]; -+ struct dst_entry *sk_rx_dst; -+ struct dst_entry *sk_dst_cache; -+ 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 *sk_tx_skb_cache; -+ struct sk_buff_head sk_write_queue; -+ __s32 sk_peek_off; -+ int sk_write_pending; -+ __u32 sk_dst_pending_confirm; -+ u32 sk_pacing_status; -+ long int sk_sndtimeo; -+ struct timer_list sk_timer; -+ __u32 sk_priority; -+ __u32 sk_mark; -+ long unsigned int sk_pacing_rate; -+ long unsigned int sk_max_pacing_rate; -+ struct page_frag sk_frag; -+ netdev_features_t sk_route_caps; -+ netdev_features_t sk_route_nocaps; -+ netdev_features_t sk_route_forced_caps; -+ int sk_gso_type; -+ unsigned int sk_gso_max_size; -+ gfp_t sk_allocation; -+ __u32 sk_txhash; -+ u8 sk_padding: 1; -+ u8 sk_kern_sock: 1; -+ u8 sk_no_check_tx: 1; -+ u8 sk_no_check_rx: 1; -+ u8 sk_userlocks: 4; -+ u8 sk_pacing_shift; -+ u16 sk_type; -+ u16 sk_protocol; -+ u16 sk_gso_max_segs; -+ long unsigned int sk_lingertime; -+ struct proto *sk_prot_creator; -+ rwlock_t sk_callback_lock; -+ int sk_err; -+ int sk_err_soft; -+ u32 sk_ack_backlog; -+ u32 sk_max_ack_backlog; -+ kuid_t sk_uid; -+ u8 sk_prefer_busy_poll; -+ u16 sk_busy_poll_budget; -+ struct pid *sk_peer_pid; -+ const struct cred *sk_peer_cred; -+ long int sk_rcvtimeo; -+ ktime_t sk_stamp; -+ u16 sk_tsflags; -+ int sk_bind_phc; -+ u8 sk_shutdown; -+ u32 sk_tskey; -+ atomic_t sk_zckey; -+ u8 sk_clockid; -+ u8 sk_txtime_deadline_mode: 1; -+ u8 sk_txtime_report_errors: 1; -+ u8 sk_txtime_unused: 6; -+ struct socket *sk_socket; -+ void *sk_user_data; -+ void *sk_security; -+ struct sock_cgroup_data sk_cgrp_data; -+ struct mem_cgroup *sk_memcg; -+ void (*sk_state_change)(struct sock *); -+ void (*sk_data_ready)(struct sock *); -+ void (*sk_write_space)(struct sock *); -+ void (*sk_error_report)(struct sock *); -+ int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); -+ struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, 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; -+}; -+ -+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 *); -+ int (*write)(struct tty_struct *, const unsigned char *, int); -+ int (*put_char)(struct tty_struct *, unsigned char); -+ 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 *, 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 *); -+ void (*set_ldisc)(struct tty_struct *); -+ void (*wait_until_sent)(struct tty_struct *, int); -+ void (*send_xchar)(struct tty_struct *, char); -+ 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 { -+ int magic; -+ 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; -+ }; -+ int used; -+ int size; -+ int commit; -+ int read; -+ int flags; -+ long unsigned int 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 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; -+ unsigned char *xmit_buf; -+ 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 flags; -+ int (*open)(struct tty_struct *); -+ void (*close)(struct tty_struct *); -+ void (*flush_buffer)(struct tty_struct *); -+ ssize_t (*read)(struct tty_struct *, struct file *, unsigned char *, size_t, void **, long unsigned int); -+ ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t); -+ int (*ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct ktermios *); -+ __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); -+ int (*hangup)(struct tty_struct *); -+ void (*receive_buf)(struct tty_struct *, const unsigned char *, const char *, int); -+ void (*write_wakeup)(struct tty_struct *); -+ void (*dcd_change)(struct tty_struct *, unsigned int); -+ int (*receive_buf2)(struct tty_struct *, const unsigned char *, const char *, int); -+ struct module *owner; -+}; -+ -+struct tty_ldisc { -+ struct tty_ldisc_ops *ops; -+ struct tty_struct *tty; -+}; -+ -+struct tty_port_operations { -+ int (*carrier_raised)(struct tty_port *); -+ void (*dtr_rts)(struct tty_port *, int); -+ void (*shutdown)(struct tty_port *); -+ int (*activate)(struct tty_port *, struct tty_struct *); -+ void (*destruct)(struct tty_port *); -+}; -+ -+struct tty_port_client_operations { -+ int (*receive_buf)(struct tty_port *, const unsigned char *, const unsigned char *, size_t); -+ void (*write_wakeup)(struct tty_port *); -+}; -+ -+struct prot_inuse; -+ -+struct netns_core { -+ struct ctl_table_header *sysctl_hdr; -+ int sysctl_somaxconn; -+ int *sock_inuse; -+ struct prot_inuse *prot_inuse; -+}; -+ -+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 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 netns_unix { -+ 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 { -+ atomic_t tw_count; -+ char tw_pad[60]; -+ struct inet_hashinfo *hashinfo; -+ int sysctl_max_tw_buckets; -+}; -+ -+struct local_ports { -+ seqlock_t lock; -+ int range[2]; -+ bool warned; -+}; -+ -+struct ping_group_range { -+ seqlock_t lock; -+ kgid_t range[2]; -+}; -+ -+typedef struct { -+ u64 key[2]; -+} siphash_key_t; -+ -+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 { -+ struct inet_timewait_death_row tcp_death_row; -+ 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; -+ int fib_num_tclassid_users; -+ struct hlist_head *fib_table_hash; -+ struct sock *fibnl; -+ struct sock **icmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct inet_peer_base *peers; -+ struct sock **tcp_sk; -+ 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; -+ 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_use_pmtu; -+ u8 sysctl_ip_fwd_update_priority; -+ u8 sysctl_ip_nonlocal_bind; -+ u8 sysctl_ip_autobind_reuse; -+ u8 sysctl_ip_dynaddr; -+ u8 sysctl_ip_early_demux; -+ u8 sysctl_raw_l3mdev_accept; -+ u8 sysctl_tcp_early_demux; -+ 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_min_snd_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; -+ int sysctl_tcp_reordering; -+ u8 sysctl_tcp_retries1; -+ u8 sysctl_tcp_retries2; -+ u8 sysctl_tcp_orphan_retries; -+ u8 sysctl_tcp_tw_reuse; -+ int sysctl_tcp_fin_timeout; -+ unsigned int sysctl_tcp_notsent_lowat; -+ u8 sysctl_tcp_sack; -+ u8 sysctl_tcp_window_scaling; -+ u8 sysctl_tcp_timestamps; -+ u8 sysctl_tcp_early_retrans; -+ 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_moderate_rcvbuf; -+ u8 sysctl_tcp_tso_win_divisor; -+ u8 sysctl_tcp_workaround_signed_windows; -+ int sysctl_tcp_limit_output_bytes; -+ int sysctl_tcp_challenge_ack_limit; -+ int sysctl_tcp_min_rtt_wlen; -+ u8 sysctl_tcp_min_tso_segs; -+ u8 sysctl_tcp_autocorking; -+ u8 sysctl_tcp_reflect_tos; -+ u8 sysctl_tcp_comp_sack_nr; -+ int sysctl_tcp_invalid_ratelimit; -+ int sysctl_tcp_pacing_ss_ratio; -+ int sysctl_tcp_pacing_ca_ratio; -+ int sysctl_tcp_wmem[3]; -+ int sysctl_tcp_rmem[3]; -+ 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; -+ spinlock_t tcp_fastopen_ctx_lock; -+ unsigned int sysctl_tcp_fastopen_blackhole_timeout; -+ atomic_t tfo_active_disable_times; -+ long unsigned int tfo_active_disable_stamp; -+ int sysctl_udp_wmem_min; -+ int sysctl_udp_rmem_min; -+ u8 sysctl_fib_notify_on_flag_change; -+ 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; -+ long unsigned int *sysctl_local_reserved_ports; -+ int sysctl_ip_prot_sock; -+ struct list_head mr_tables; -+ struct fib_rules_ops *mr_rules_ops; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct neighbour; -+ -+struct dst_ops { -+ short unsigned int family; -+ unsigned int gc_thresh; -+ int (*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 *, int); -+ struct dst_entry * (*negative_advice)(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; -+ bool skip_notify_on_dev_down; -+ u8 fib_notify_on_flag_change; -+}; -+ -+struct ipv6_devconf; -+ -+struct fib6_info; -+ -+struct rt6_info; -+ -+struct rt6_statistics; -+ -+struct fib6_table; -+ -+struct seg6_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; -+ unsigned int ip6_rt_gc_expire; -+ long unsigned int ip6_rt_last_gc; -+ unsigned int fib6_rules_require_fldissect; -+ bool fib6_has_custom_rules; -+ 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 **icmp_sk; -+ struct sock *ndisc_sk; -+ struct sock *tcp_sk; -+ struct sock *igmp_sk; -+ struct sock *mc_autojoin_sk; -+ 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; -+ 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; -+}; -+ -+struct nf_queue_handler; -+ -+struct nf_logger; -+ -+struct nf_hook_entries; -+ -+struct netns_nf { -+ struct proc_dir_entry *proc_netfilter; -+ const struct nf_queue_handler *queue_handler; -+ const struct nf_logger *nf_loggers[13]; -+ struct ctl_table_header *nf_log_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]; -+}; -+ -+struct netns_xt { -+ bool notrack_deprecated_warning; -+ bool clusterip_deprecated_warning; -+}; -+ -+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_dccp_net { -+ u8 dccp_loose; -+ unsigned int dccp_timeout[10]; -+}; -+ -+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_dccp_net dccp; -+ struct nf_sctp_net sctp; -+ struct nf_gre_net gre; -+}; -+ -+struct ct_pcpu; -+ -+struct ip_conntrack_stat; -+ -+struct nf_ct_event_notifier; -+ -+struct nf_exp_event_notifier; -+ -+struct netns_ct { -+ bool ecache_dwork_pending; -+ u8 sysctl_log_invalid; -+ u8 sysctl_events; -+ u8 sysctl_acct; -+ u8 sysctl_auto_assign_helper; -+ u8 sysctl_tstamp; -+ u8 sysctl_checksum; -+ struct ct_pcpu *pcpu_lists; -+ struct ip_conntrack_stat *stat; -+ struct nf_ct_event_notifier *nf_conntrack_event_cb; -+ struct nf_exp_event_notifier *nf_expect_event_cb; -+ struct nf_ip_net nf_ct_proto; -+ unsigned int labels_used; -+}; -+ -+struct netns_nftables { -+ 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; -+ 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; -+ struct hlist_head policy_inexact[3]; -+ 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; -+ struct ctl_table_header *sysctl_hdr; -+ 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; -+ 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 uevent_sock; -+ -+struct net_generic; -+ -+struct net { -+ refcount_t passive; -+ spinlock_t rules_mod_lock; -+ unsigned int dev_unreg_count; -+ unsigned int dev_base_seq; -+ int ifindex; -+ spinlock_t nsid_lock; -+ atomic_t fnhe_genid; -+ struct list_head list; -+ struct list_head exit_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 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 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; -+ struct netns_ipv4 ipv4; -+ struct netns_ipv6 ipv6; -+ struct netns_sctp sctp; -+ struct netns_nf nf; -+ struct netns_xt xt; -+ 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_can can; -+ struct netns_xdp xdp; -+ struct sock *crypto_nlsk; -+ struct sock *diag_nlsk; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct { -+ local64_t v; -+} u64_stats_t; -+ -+struct bpf_insn { -+ __u8 code; -+ __u8 dst_reg: 4; -+ __u8 src_reg: 4; -+ __s16 off; -+ __s32 imm; -+}; -+ -+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, -+ BPF_MAP_TYPE_TASK_STORAGE = 29, -+}; -+ -+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, -+}; -+ -+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, -+ __MAX_BPF_ATTACH_TYPE = 41, -+}; -+ -+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; -+ }; -+ 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; -+ }; -+ __u64 fd_array; -+ }; -+ struct { -+ __u64 pathname; -+ __u32 bpf_fd; -+ __u32 file_flags; -+ }; -+ struct { -+ __u32 target_fd; -+ __u32 attach_bpf_fd; -+ __u32 attach_type; -+ __u32 attach_flags; -+ __u32 replace_bpf_fd; -+ }; -+ 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; -+ } 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 { -+ __u32 target_fd; -+ __u32 attach_type; -+ __u32 query_flags; -+ __u32 attach_flags; -+ __u64 prog_ids; -+ __u32 prog_cnt; -+ } query; -+ struct { -+ __u64 name; -+ __u32 prog_fd; -+ } raw_tracepoint; -+ struct { -+ __u64 btf; -+ __u64 btf_log_buf; -+ __u32 btf_size; -+ __u32 btf_log_size; -+ __u32 btf_log_level; -+ }; -+ 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 { -+ __u32 prog_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; -+ }; -+ }; -+ } link_create; -+ struct { -+ __u32 link_fd; -+ __u32 new_prog_fd; -+ __u32 flags; -+ __u32 old_prog_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 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; -+}; -+ -+typedef struct { -+ union { -+ void *kernel; -+ void *user; -+ }; -+ bool is_kernel: 1; -+} sockptr_t; -+ -+struct bpf_iter_aux_info; -+ -+typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); -+ -+struct bpf_map; -+ -+struct bpf_iter_aux_info { -+ struct bpf_map *map; -+}; -+ -+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 btf; -+ -+struct btf_type; -+ -+struct bpf_prog_aux; -+ -+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 *, 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 *); -+ int (*map_update_elem)(struct bpf_map *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_map *, void *); -+ int (*map_push_elem)(struct bpf_map *, void *, u64); -+ int (*map_pop_elem)(struct bpf_map *, void *); -+ int (*map_peek_elem)(struct bpf_map *, void *); -+ void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); -+ void (*map_fd_put_ptr)(void *); -+ 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 *); -+ 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 *); -+ int (*map_redirect)(struct bpf_map *, u32, 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 *); -+ int (*map_for_each_callback)(struct bpf_map *, void *, void *, u64); -+ const char * const map_btf_name; -+ int *map_btf_id; -+ const struct bpf_iter_seq_info *iter_seq_info; -+}; -+ -+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; -+ u32 map_flags; -+ int spin_lock_off; -+ u32 id; -+ int numa_node; -+ u32 btf_key_type_id; -+ u32 btf_value_type_id; -+ struct btf *btf; -+ struct mem_cgroup *memcg; -+ char name[16]; -+ u32 btf_vmlinux_value_type_id; -+ bool bypass_spec_v1; -+ bool frozen; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic64_t refcnt; -+ atomic64_t usercnt; -+ struct work_struct work; -+ struct mutex freeze_mutex; -+ u64 writecnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 { -+ 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 *base_btf; -+ u32 start_id; -+ u32 start_str_off; -+ char name[56]; -+ bool kernel_btf; -+}; -+ -+struct btf_type { -+ __u32 name_off; -+ __u32 info; -+ union { -+ __u32 size; -+ __u32 type; -+ }; -+}; -+ -+struct bpf_ksym { -+ long unsigned int start; -+ long unsigned int end; -+ char name[128]; -+ struct list_head lnode; -+ struct latch_tree_node tnode; -+ bool prog; -+}; -+ -+struct bpf_ctx_arg_aux; -+ -+struct bpf_trampoline; -+ -+struct bpf_jit_poke_descriptor; -+ -+struct bpf_kfunc_desc_tab; -+ -+struct bpf_prog_ops; -+ -+struct btf_mod_pair; -+ -+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 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 offload_requested; -+ bool attach_btf_trace; -+ bool func_proto_unreliable; -+ bool sleepable; -+ bool tail_call_reachable; -+ struct hlist_node tramp_hlist; -+ 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; -+ 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; -+ struct bpf_map *cgroup_storage[2]; -+ char name[16]; -+ void *security; -+ 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; -+ u32 num_exentries; -+ struct exception_table_entry *extable; -+ union { -+ struct work_struct work; -+ struct callback_head rcu; -+ }; -+}; -+ -+struct sock_filter { -+ __u16 code; -+ __u8 jt; -+ __u8 jf; -+ __u32 k; -+}; -+ -+struct bpf_prog_stats; -+ -+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 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; -+ 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; -+ struct sock_filter insns[0]; -+ struct bpf_insn insnsi[0]; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct net_device_stats { -+ long unsigned int rx_packets; -+ long unsigned int tx_packets; -+ long unsigned int rx_bytes; -+ long unsigned int tx_bytes; -+ long unsigned int rx_errors; -+ long unsigned int tx_errors; -+ long unsigned int rx_dropped; -+ long unsigned int tx_dropped; -+ long unsigned int multicast; -+ long unsigned int collisions; -+ long unsigned int rx_length_errors; -+ long unsigned int rx_over_errors; -+ long unsigned int rx_crc_errors; -+ long unsigned int rx_frame_errors; -+ long unsigned int rx_fifo_errors; -+ long unsigned int rx_missed_errors; -+ long unsigned int tx_aborted_errors; -+ long unsigned int tx_carrier_errors; -+ long unsigned int tx_fifo_errors; -+ long unsigned int tx_heartbeat_errors; -+ long unsigned int tx_window_errors; -+ long unsigned int rx_compressed; -+ long unsigned int tx_compressed; -+}; -+ -+struct netdev_hw_addr_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct tipc_bearer; -+ -+struct wireless_dev; -+ -+struct mpls_dev; -+ -+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 **); -+ -+enum netdev_ml_priv_type { -+ ML_PRIV_NONE = 0, -+ ML_PRIV_CAN = 1, -+}; -+ -+struct pcpu_dstats; -+ -+struct garp_port; -+ -+struct mrp_port; -+ -+struct netdev_tc_txq { -+ u16 count; -+ u16 offset; -+}; -+ -+struct sfp_bus; -+ -+struct macsec_ops; -+ -+struct udp_tunnel_nic; -+ -+struct bpf_xdp_link; -+ -+struct bpf_xdp_entity { -+ struct bpf_prog *prog; -+ struct bpf_xdp_link *link; -+}; -+ -+struct netdev_name_node; -+ -+struct dev_ifalias; -+ -+struct net_device_ops; -+ -+struct ethtool_ops; -+ -+struct l3mdev_ops; -+ -+struct ndisc_ops; -+ -+struct xfrmdev_ops; -+ -+struct tlsdev_ops; -+ -+struct header_ops; -+ -+struct vlan_info; -+ -+struct in_device; -+ -+struct inet6_dev; -+ -+struct wpan_dev; -+ -+struct netdev_rx_queue; -+ -+struct mini_Qdisc; -+ -+struct netdev_queue; -+ -+struct cpu_rmap; -+ -+struct Qdisc; -+ -+struct xdp_dev_bulk_queue; -+ -+struct xps_dev_maps; -+ -+struct netpoll_info; -+ -+struct pcpu_lstats; -+ -+struct pcpu_sw_netstats; -+ -+struct rtnl_link_ops; -+ -+struct dcbnl_rtnl_ops; -+ -+struct netprio_map; -+ -+struct phy_device; -+ -+struct udp_tunnel_nic_info; -+ -+struct net_device { -+ 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; -+ long unsigned int state; -+ 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 list_head ptype_specific; -+ struct { -+ struct list_head upper; -+ struct list_head lower; -+ } adj_list; -+ unsigned int flags; -+ unsigned int priv_flags; -+ const struct net_device_ops *netdev_ops; -+ int ifindex; -+ short unsigned int gflags; -+ short unsigned int hard_header_len; -+ unsigned int mtu; -+ short unsigned int needed_headroom; -+ short unsigned int needed_tailroom; -+ netdev_features_t features; -+ 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; -+ netdev_features_t gso_partial_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; -+ atomic_long_t rx_dropped; -+ atomic_long_t tx_dropped; -+ atomic_long_t rx_nohandler; -+ 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; -+ const struct header_ops *header_ops; -+ unsigned char 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; -+ short unsigned int padded; -+ spinlock_t addr_list_lock; -+ int irq; -+ 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 vlan_info *vlan_info; -+ struct tipc_bearer *tipc_ptr; -+ struct in_device *ip_ptr; -+ struct inet6_dev *ip6_ptr; -+ struct wireless_dev *ieee80211_ptr; -+ struct wpan_dev *ieee802154_ptr; -+ struct mpls_dev *mpls_ptr; -+ unsigned char *dev_addr; -+ struct netdev_rx_queue *_rx; -+ unsigned int num_rx_queues; -+ unsigned int real_num_rx_queues; -+ struct bpf_prog *xdp_prog; -+ long unsigned int gro_flush_timeout; -+ int napi_defer_hard_irqs; -+ rx_handler_func_t *rx_handler; -+ void *rx_handler_data; -+ struct mini_Qdisc *miniq_ingress; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netdev_queue *_tx; -+ unsigned int num_tx_queues; -+ unsigned int real_num_tx_queues; -+ struct Qdisc *qdisc; -+ unsigned int tx_queue_len; -+ spinlock_t tx_global_lock; -+ struct xdp_dev_bulk_queue *xdp_bulkq; -+ struct xps_dev_maps *xps_maps[2]; -+ struct mini_Qdisc *miniq_egress; -+ 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 list_head link_watch_list; -+ enum { -+ NETREG_UNINITIALIZED = 0, -+ NETREG_REGISTERED = 1, -+ NETREG_UNREGISTERING = 2, -+ NETREG_UNREGISTERED = 3, -+ NETREG_RELEASED = 4, -+ NETREG_DUMMY = 5, -+ } reg_state: 8; -+ 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 *); -+ struct netpoll_info *npinfo; -+ possible_net_t nd_net; -+ void *ml_priv; -+ enum netdev_ml_priv_type ml_priv_type; -+ union { -+ struct pcpu_lstats *lstats; -+ struct pcpu_sw_netstats *tstats; -+ struct pcpu_dstats *dstats; -+ }; -+ struct garp_port *garp_port; -+ struct mrp_port *mrp_port; -+ 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; -+ unsigned int gso_max_size; -+ u16 gso_max_segs; -+ const struct dcbnl_rtnl_ops *dcbnl_ops; -+ s16 num_tc; -+ struct netdev_tc_txq tc_to_txq[16]; -+ u8 prio_tc_map[16]; -+ struct netprio_map *priomap; -+ struct phy_device *phydev; -+ struct sfp_bus *sfp_bus; -+ struct lock_class_key *qdisc_tx_busylock; -+ struct lock_class_key *qdisc_running_key; -+ bool proto_down; -+ unsigned int wol_enabled: 1; -+ unsigned int threaded: 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 bpf_xdp_entity xdp_state[3]; -+ long: 64; -+ long: 64; -+}; -+ -+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_VALUE_OR_NULL = 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_SOCKET_OR_NULL = 12, -+ PTR_TO_SOCK_COMMON = 13, -+ PTR_TO_SOCK_COMMON_OR_NULL = 14, -+ PTR_TO_TCP_SOCK = 15, -+ PTR_TO_TCP_SOCK_OR_NULL = 16, -+ PTR_TO_TP_BUFFER = 17, -+ PTR_TO_XDP_SOCK = 18, -+ PTR_TO_BTF_ID = 19, -+ PTR_TO_BTF_ID_OR_NULL = 20, -+ PTR_TO_MEM = 21, -+ PTR_TO_MEM_OR_NULL = 22, -+ PTR_TO_RDONLY_BUF = 23, -+ PTR_TO_RDONLY_BUF_OR_NULL = 24, -+ PTR_TO_RDWR_BUF = 25, -+ PTR_TO_RDWR_BUF_OR_NULL = 26, -+ PTR_TO_PERCPU_BTF_ID = 27, -+ PTR_TO_FUNC = 28, -+ PTR_TO_MAP_KEY = 29, -+ __BPF_REG_TYPE_MAX = 30, -+}; -+ -+struct bpf_prog_ops { -+ int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -+}; -+ -+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 nr_args; -+ u8 arg_size[12]; -+}; -+ -+struct bpf_tramp_image { -+ void *image; -+ 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 mutex mutex; -+ refcount_t refcnt; -+ 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; -+ u64 selector; -+ struct module *mod; -+}; -+ -+struct bpf_func_info_aux { -+ u16 linkage; -+ bool unreliable; -+}; -+ -+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; -+ u32 btf_id; -+}; -+ -+struct btf_mod_pair { -+ struct btf *btf; -+ struct module *module; -+}; -+ -+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; -+ }; -+ union { -+ struct sock *sk; -+ int ip_defrag_offset; -+ }; -+ 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; -+ __u32 headers_start[0]; -+ __u8 __pkt_type_offset[0]; -+ __u8 pkt_type: 3; -+ __u8 ignore_df: 1; -+ __u8 nf_trace: 1; -+ __u8 ip_summed: 2; -+ __u8 ooo_okay: 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 __pkt_vlan_present_offset[0]; -+ __u8 vlan_present: 1; -+ __u8 csum_complete_sw: 1; -+ __u8 csum_level: 2; -+ __u8 csum_not_inet: 1; -+ __u8 dst_pending_confirm: 1; -+ __u8 ndisc_nodetype: 2; -+ __u8 ipvs_property: 1; -+ __u8 inner_protocol_type: 1; -+ __u8 remcsum_offload: 1; -+ __u8 offload_fwd_mark: 1; -+ __u8 offload_l3_fwd_mark: 1; -+ __u8 tc_skip_classify: 1; -+ __u8 tc_at_ingress: 1; -+ __u8 redirected: 1; -+ __u8 from_ingress: 1; -+ __u8 decrypted: 1; -+ __u16 tc_index; -+ union { -+ __wsum csum; -+ struct { -+ __u16 csum_start; -+ __u16 csum_offset; -+ }; -+ }; -+ __u32 priority; -+ int skb_iif; -+ __u32 hash; -+ __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; -+ __u32 headers_end[0]; -+ 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 short unsigned int __kernel_sa_family_t; -+ -+typedef __kernel_sa_family_t sa_family_t; -+ -+struct sockaddr { -+ sa_family_t sa_family; -+ char sa_data[14]; -+}; -+ -+struct msghdr { -+ void *msg_name; -+ int msg_namelen; -+ struct iov_iter msg_iter; -+ union { -+ void *msg_control; -+ void *msg_control_user; -+ }; -+ bool msg_control_is_user: 1; -+ __kernel_size_t msg_controllen; -+ unsigned int msg_flags; -+ struct kiocb *msg_iocb; -+}; -+ -+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; -+}; -+ -+enum { -+ Root_NFS = 255, -+ Root_CIFS = 254, -+ Root_RAM0 = 1048576, -+ Root_RAM1 = 1048577, -+ Root_FD0 = 2097152, -+ Root_HDA1 = 3145729, -+ Root_HDA2 = 3145730, -+ Root_SDA1 = 8388609, -+ Root_SDA2 = 8388610, -+ Root_HDC1 = 23068673, -+ Root_SR0 = 11534336, -+}; -+ -+struct flowi_tunnel { -+ __be64 tun_id; -+}; -+ -+struct flowi_common { -+ int flowic_oif; -+ int flowic_iif; -+ __u32 flowic_mark; -+ __u8 flowic_tos; -+ __u8 flowic_scope; -+ __u8 flowic_proto; -+ __u8 flowic_flags; -+ __u32 flowic_secid; -+ kuid_t flowic_uid; -+ struct flowi_tunnel flowic_tun_key; -+ __u32 flowic_multipath_hash; -+}; -+ -+union flowi_uli { -+ struct { -+ __be16 dport; -+ __be16 sport; -+ } ports; -+ struct { -+ __u8 type; -+ __u8 code; -+ } icmpt; -+ struct { -+ __le16 dport; -+ __le16 sport; -+ } dnports; -+ __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 flowidn { -+ struct flowi_common __fl_common; -+ __le16 daddr; -+ __le16 saddr; -+ union flowi_uli uli; -+}; -+ -+struct flowi { -+ union { -+ struct flowi_common __fl_common; -+ struct flowi4 ip4; -+ struct flowi6 ip6; -+ struct flowidn dn; -+ } u; -+}; -+ -+struct ipstats_mib { -+ u64 mibs[37]; -+ struct u64_stats_sync syncp; -+}; -+ -+struct icmp_mib { -+ long unsigned int mibs[28]; -+}; -+ -+struct icmpmsg_mib { -+ atomic_long_t mibs[512]; -+}; -+ -+struct icmpv6_mib { -+ long unsigned int mibs[6]; -+}; -+ -+struct icmpv6_mib_device { -+ atomic_long_t mibs[6]; -+}; -+ -+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[126]; -+}; -+ -+struct linux_xfrm_mib { -+ long unsigned int mibs[29]; -+}; -+ -+struct linux_tls_mib { -+ long unsigned int mibs[11]; -+}; -+ -+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: 56; -+ 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 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 nla_policy; -+ -+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 *, 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; -+ const struct nla_policy *policy; -+ 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 *, 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 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; -+ atomic_t __refcnt; -+ int __use; -+ long unsigned int lastuse; -+ struct lwtunnel_state *lwtstate; -+ struct callback_head callback_head; -+ short int error; -+ short int __pad; -+ __u32 tclassid; -+}; -+ -+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 flags; -+ __u8 nud_state; -+ __u8 type; -+ __u8 dead; -+ u8 protocol; -+ seqlock_t ha_lock; -+ int: 32; -+ 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 callback_head rcu; -+ struct net_device *dev; -+ u8 primary_key[0]; -+}; -+ -+struct ipv6_stable_secret { -+ bool initialized; -+ struct in6_addr secret; -+}; -+ -+struct ipv6_devconf { -+ __s32 forwarding; -+ __s32 hop_limit; -+ __s32 mtu6; -+ __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_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_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 proxy_ndp; -+ __s32 accept_source_route; -+ __s32 accept_ra_from_local; -+ __s32 optimistic_dad; -+ __s32 use_optimistic; -+ __s32 mc_forwarding; -+ __s32 disable_ipv6; -+ __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; -+ 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 disable_policy; -+ __s32 ndisc_tclass; -+ __s32 rpl_seg_enabled; -+ struct ctl_table_header *sysctl_header; -+}; -+ -+struct nf_queue_entry; -+ -+struct nf_queue_handler { -+ int (*outfn)(struct nf_queue_entry *, unsigned int); -+ void (*nf_hook_drop)(struct net *); -+}; -+ -+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 hlist_nulls_head { -+ struct hlist_nulls_node *first; -+}; -+ -+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; -+}; -+ -+struct ct_pcpu { -+ spinlock_t lock; -+ struct hlist_nulls_head unconfirmed; -+ struct hlist_nulls_head dying; -+}; -+ -+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 int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); -+ -+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 *, int, bool); -+ 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 (*sendpage)(struct socket *, struct page *, int, size_t, int); -+ ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); -+ 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 (*sendpage_locked)(struct sock *, struct page *, int, size_t, int); -+ int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); -+ int (*set_rcvlowat)(struct sock *, int); -+}; -+ -+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 skb_ext { -+ refcount_t refcnt; -+ u8 offset[4]; -+ u8 chunks; -+ long: 56; -+ char data[0]; -+}; -+ -+struct dql { -+ unsigned int num_queued; -+ unsigned int adj_limit; -+ unsigned int last_obj_cnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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 *); -+}; -+ -+struct netprio_map { -+ struct callback_head rcu; -+ u32 priomap_len; -+ u32 priomap[0]; -+}; -+ -+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; -+ unsigned int napi_id; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_frame { -+ void *data; -+ u16 len; -+ u16 headroom; -+ u32 metasize: 8; -+ u32 frame_sz: 24; -+ struct xdp_mem_info mem; -+ struct net_device *dev_rx; -+}; -+ -+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 netlink_ext_ack { -+ const char *_msg; -+ const struct nlattr *bad_attr; -+ const struct nla_policy *policy; -+ u8 cookie[20]; -+ u8 cookie_len; -+}; -+ -+struct netlink_range_validation; -+ -+struct netlink_range_validation_signed; -+ -+struct nla_policy { -+ u8 type; -+ u8 validation_type; -+ u16 len; -+ union { -+ const u32 bitfield32_valid; -+ const u32 mask; -+ const char *reject_message; -+ const struct nla_policy *nested_policy; -+ struct netlink_range_validation *range; -+ struct netlink_range_validation_signed *range_signed; -+ struct { -+ s16 min; -+ s16 max; -+ }; -+ int (*validate)(const struct nlattr *, struct netlink_ext_ack *); -+ u16 strict_start_type; -+ }; -+}; -+ -+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; -+ 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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum netdev_tx { -+ __NETDEV_TX_MIN = 2147483648, -+ NETDEV_TX_OK = 0, -+ NETDEV_TX_BUSY = 16, -+}; -+ -+typedef enum netdev_tx netdev_tx_t; -+ -+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 xsk_buff_pool; -+ -+struct netdev_queue { -+ struct net_device *dev; -+ struct Qdisc *qdisc; -+ struct Qdisc *qdisc_sleeping; -+ struct kobject kobj; -+ int numa_node; -+ long unsigned int tx_maxrate; -+ long unsigned int trans_timeout; -+ struct net_device *sb_dev; -+ struct xsk_buff_pool *pool; -+ spinlock_t _xmit_lock; -+ int xmit_lock_owner; -+ long unsigned int trans_start; -+ long unsigned int state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dql dql; -+}; -+ -+struct qdisc_skb_head { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+struct gnet_stats_basic_packed { -+ __u64 bytes; -+ __u64 packets; -+}; -+ -+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 gnet_stats_basic_cpu; -+ -+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_cpu *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_packed bstats; -+ seqcount_t running; -+ struct gnet_stats_queue qstats; -+ long unsigned int state; -+ struct Qdisc *next_sched; -+ struct sk_buff_head skb_bad_txq; -+ spinlock_t busylock; -+ spinlock_t seqlock; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long int privdata[0]; -+}; -+ -+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]; -+}; -+ -+struct netdev_rx_queue { -+ struct rps_map *rps_map; -+ struct rps_dev_flow_table *rps_flow_table; -+ struct kobject kobj; -+ struct net_device *dev; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xdp_rxq_info xdp_rxq; -+ struct xsk_buff_pool *pool; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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, -+}; -+ -+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 net_device_path_ctx { -+ const struct net_device *dev; -+ const u8 *daddr; -+ int num_vlans; -+ struct { -+ u16 id; -+ __be16 proto; -+ } vlan[2]; -+}; -+ -+enum tc_setup_type { -+ TC_SETUP_QDISC_MQPRIO = 0, -+ TC_SETUP_CLSU32 = 1, -+ TC_SETUP_CLSFLOWER = 2, -+ TC_SETUP_CLSMATCHALL = 3, -+ TC_SETUP_CLSBPF = 4, -+ TC_SETUP_BLOCK = 5, -+ TC_SETUP_QDISC_CBS = 6, -+ TC_SETUP_QDISC_RED = 7, -+ TC_SETUP_QDISC_PRIO = 8, -+ TC_SETUP_QDISC_MQ = 9, -+ TC_SETUP_QDISC_ETF = 10, -+ TC_SETUP_ROOT_QDISC = 11, -+ TC_SETUP_QDISC_GRED = 12, -+ TC_SETUP_QDISC_TAPRIO = 13, -+ TC_SETUP_FT = 14, -+ TC_SETUP_QDISC_ETS = 15, -+ TC_SETUP_QDISC_TBF = 16, -+ TC_SETUP_QDISC_FIFO = 17, -+ TC_SETUP_QDISC_HTB = 18, -+}; -+ -+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 xfrmdev_ops { -+ int (*xdo_dev_state_add)(struct xfrm_state *); -+ void (*xdo_dev_state_delete)(struct xfrm_state *); -+ void (*xdo_dev_state_free)(struct xfrm_state *); -+ bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); -+ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); -+}; -+ -+struct dev_ifalias { -+ struct callback_head rcuhead; -+ char ifalias[0]; -+}; -+ -+struct netdev_name_node { -+ struct hlist_node hlist; -+ struct list_head list; -+ struct net_device *dev; -+ const char *name; -+}; -+ -+struct devlink_port; -+ -+struct ip_tunnel_parm; -+ -+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 *, struct netpoll_info *); -+ 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_fcoe_get_wwn)(struct net_device *, u64 *, int); -+ 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); -+ 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_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_change_proto_down)(struct net_device *, bool); -+ 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); -+ int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); -+ struct devlink_port * (*ndo_get_devlink_port)(struct net_device *); -+ int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm *, 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 *); -+}; -+ -+struct neigh_parms { -+ possible_net_t net; -+ struct net_device *dev; -+ 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; -+ int data[13]; -+ long unsigned int data_state[1]; -+}; -+ -+struct pcpu_lstats { -+ u64_stats_t packets; -+ u64_stats_t bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+struct pcpu_sw_netstats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+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_eeprom; -+ -+struct ethtool_coalesce; -+ -+struct ethtool_ringparam; -+ -+struct ethtool_pause_stats; -+ -+struct ethtool_pauseparam; -+ -+struct ethtool_test; -+ -+struct ethtool_stats; -+ -+struct ethtool_rxnfc; -+ -+struct ethtool_flash; -+ -+struct ethtool_channels; -+ -+struct ethtool_dump; -+ -+struct ethtool_ts_info; -+ -+struct ethtool_modinfo; -+ -+struct ethtool_eee; -+ -+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_ops { -+ u32 cap_link_lanes_supported: 1; -+ u32 supported_coalesce_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 *); -+ 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 *); -+ int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *); -+ void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ 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 *, u32 *, u8 *, u8 *); -+ int (*set_rxfh)(struct net_device *, const u32 *, const u8 *, const u8); -+ int (*get_rxfh_context)(struct net_device *, u32 *, u8 *, u8 *, u32); -+ int (*set_rxfh_context)(struct net_device *, const u32 *, const u8 *, const u8, u32 *, bool); -+ 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 ethtool_ts_info *); -+ 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_eee *); -+ int (*set_eee)(struct net_device *, struct ethtool_eee *); -+ 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 *); -+ 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 **); -+}; -+ -+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 (*is_useropt)(u8); -+ 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 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; -+ 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; -+}; -+ -+struct tcf_proto; -+ -+struct tcf_block; -+ -+struct mini_Qdisc { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ struct callback_head rcu; -+}; -+ -+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)(); -+ unsigned int (*get_num_rx_queues)(); -+ 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 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_stats_basic_cpu { -+ struct gnet_stats_basic_packed bstats; -+ struct u64_stats_sync syncp; -+}; -+ -+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); -+ 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 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 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 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; -+ 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 { -+ bool ingress; -+ struct gnet_stats_queue *qstats; -+ }; -+ }; -+}; -+ -+struct tcf_walker; -+ -+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 **, bool, bool, 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 *); -+ 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 sock_fprog_kern { -+ u16 len; -+ struct sock_filter *filter; -+}; -+ -+struct bpf_prog_stats { -+ u64 cnt; -+ u64 nsecs; -+ u64 misses; -+ struct u64_stats_sync syncp; -+ long: 64; -+}; -+ -+struct sk_filter { -+ refcount_t refcnt; -+ struct callback_head rcu; -+ struct bpf_prog *prog; -+}; -+ -+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_GC_STALETIME = 7, -+ NEIGH_VAR_QUEUE_LEN_BYTES = 8, -+ NEIGH_VAR_PROXY_QLEN = 9, -+ NEIGH_VAR_ANYCAST_DELAY = 10, -+ NEIGH_VAR_PROXY_DELAY = 11, -+ NEIGH_VAR_LOCKTIME = 12, -+ NEIGH_VAR_QUEUE_LEN = 13, -+ NEIGH_VAR_RETRANS_TIME_MS = 14, -+ NEIGH_VAR_BASE_REACHABLE_TIME_MS = 15, -+ NEIGH_VAR_GC_INTERVAL = 16, -+ NEIGH_VAR_GC_THRESH1 = 17, -+ NEIGH_VAR_GC_THRESH2 = 18, -+ NEIGH_VAR_GC_THRESH3 = 19, -+ NEIGH_VAR_MAX = 20, -+}; -+ -+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 timer_list proxy_timer; -+ struct sk_buff_head proxy_queue; -+ atomic_t entries; -+ atomic_t gc_entries; -+ struct list_head gc_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; -+ u8 flags; -+ u8 protocol; -+ u8 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_MAX_STATES = 13, -+}; -+ -+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 udp_table; -+ -+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 *, int, int *, bool); -+ int (*ioctl)(struct sock *, int, long unsigned 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, int *); -+ int (*sendpage)(struct sock *, struct page *, int, size_t, int); -+ 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); -+ int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); -+ unsigned int inuse_idx; -+ bool (*stream_memory_free)(const struct sock *, int); -+ bool (*stream_memory_read)(const struct sock *); -+ void (*enter_memory_pressure)(struct sock *); -+ void (*leave_memory_pressure)(struct sock *); -+ atomic_long_t *memory_allocated; -+ 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; -+ slab_flags_t slab_flags; -+ unsigned int useroffset; -+ unsigned int usersize; -+ struct percpu_counter *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 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 *); -+ 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; -+ int (*twsk_unique)(struct sock *, struct sock *, void *); -+ 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; -+}; -+ -+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, -+}; -+ -+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 prefix_info { -+ __u8 type; -+ __u8 length; -+ __u8 prefix_len; -+ __u8 reserved: 6; -+ __u8 autoconf: 1; -+ __u8 onlink: 1; -+ __be32 valid; -+ __be32 prefered; -+ __be32 reserved2; -+ struct in6_addr prefix; -+}; -+ -+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 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_MAX_SHIFT = 18, -+}; -+ -+struct uuidcmp { -+ const char *uuid; -+ 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 phys_addr_t resource_size_t; -+ -+struct __va_list { -+ void *__stack; -+ void *__gr_top; -+ void *__vr_top; -+ int __gr_offs; -+ int __vr_offs; -+}; -+ -+typedef struct __va_list __gnuc_va_list; -+ -+typedef __gnuc_va_list va_list; -+ -+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; -+}; -+ -+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 hash { -+ int ino; -+ int minor; -+ int major; -+ umode_t mode; -+ struct hash *next; -+ char name[4098]; -+}; -+ -+struct dir_entry { -+ struct list_head list; -+ char *name; -+ time64_t mtime; -+}; -+ -+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 *)); -+ -+enum migratetype { -+ MIGRATE_UNMOVABLE = 0, -+ MIGRATE_MOVABLE = 1, -+ MIGRATE_RECLAIMABLE = 2, -+ MIGRATE_PCPTYPES = 3, -+ MIGRATE_HIGHATOMIC = 3, -+ MIGRATE_ISOLATE = 4, -+ MIGRATE_TYPES = 5, -+}; -+ -+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_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 zone_watermarks { -+ WMARK_MIN = 0, -+ WMARK_LOW = 1, -+ WMARK_HIGH = 2, -+ NR_WMARK = 3, -+}; -+ -+enum { -+ ZONELIST_FALLBACK = 0, -+ ZONELIST_NOFALLBACK = 1, -+ MAX_ZONELISTS = 2, -+}; -+ -+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 { -+ 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, -+}; -+ -+enum compound_dtor_id { -+ NULL_COMPOUND_DTOR = 0, -+ COMPOUND_PAGE_DTOR = 1, -+ HUGETLB_PAGE_DTOR = 2, -+ TRANSHUGE_PAGE_DTOR = 3, -+ NR_COMPOUND_DTORS = 4, -+}; -+ -+enum { -+ TSK_TRACE_FL_TRACE_BIT = 0, -+ TSK_TRACE_FL_GRAPH_BIT = 1, -+}; -+ -+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_RLIMIT_NPROC = 12, -+ UCOUNT_RLIMIT_MSGQUEUE = 13, -+ UCOUNT_RLIMIT_SIGPENDING = 14, -+ UCOUNT_RLIMIT_MEMLOCK = 15, -+ UCOUNT_COUNTS = 16, -+}; -+ -+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_MAX = 28, -+}; -+ -+enum { -+ IPSTATS_MIB_NUM = 0, -+ IPSTATS_MIB_INPKTS = 1, -+ IPSTATS_MIB_INOCTETS = 2, -+ IPSTATS_MIB_INDELIVERS = 3, -+ IPSTATS_MIB_OUTFORWDATAGRAMS = 4, -+ IPSTATS_MIB_OUTPKTS = 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_MAX = 37, -+}; -+ -+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_MAX = 28, -+}; -+ -+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_MAX = 6, -+}; -+ -+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_MAX = 126, -+}; -+ -+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_XFRMMAX = 29, -+}; -+ -+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_TLSMAX = 11, -+}; -+ -+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_DECNET = 12, -+ NFPROTO_NUMPROTO = 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 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 = 4294967295, -+ NETNS_BPF_FLOW_DISSECTOR = 0, -+ NETNS_BPF_SK_LOOKUP = 1, -+ MAX_NETNS_BPF_ATTACH_TYPE = 2, -+}; -+ -+enum cpu_idle_type { -+ CPU_IDLE = 0, -+ CPU_NOT_IDLE = 1, -+ CPU_NEWLY_IDLE = 2, -+ CPU_MAX_IDLE_TYPES = 3, -+}; -+ -+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_SHARE_PKG_RESOURCES = 8, -+ __SD_SERIALIZE = 9, -+ __SD_ASYM_PACKING = 10, -+ __SD_PREFER_SIBLING = 11, -+ __SD_OVERLAP = 12, -+ __SD_NUMA = 13, -+ __SD_FLAG_CNT = 14, -+}; -+ -+enum skb_ext_id { -+ SKB_EXT_BRIDGE_NF = 0, -+ SKB_EXT_SEC_PATH = 1, -+ TC_SKB_EXT = 2, -+ SKB_EXT_MPTCP = 3, -+ SKB_EXT_NUM = 4, -+}; -+ -+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, -+}; -+ -+typedef long unsigned int uintptr_t; -+ -+struct step_hook { -+ struct list_head node; -+ int (*fn)(struct pt_regs *, unsigned int); -+}; -+ -+struct break_hook { -+ struct list_head node; -+ int (*fn)(struct pt_regs *, unsigned int); -+ u16 imm; -+ u16 mask; -+}; -+ -+enum dbg_active_el { -+ DBG_ACTIVE_EL0 = 0, -+ DBG_ACTIVE_EL1 = 1, -+}; -+ -+struct nmi_ctx { -+ u64 hcr; -+ unsigned int cnt; -+}; -+ -+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 min_field_value; -+ u8 hwcap_type; -+ bool sign; -+ long unsigned int hwcap; -+ }; -+ }; -+ const struct arm64_cpu_capabilities *match_list; -+}; -+ -+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, -+}; -+ -+struct fpsimd_last_state_struct { -+ struct user_fpsimd_state *st; -+ void *sve_state; -+ unsigned int sve_vl; -+}; -+ -+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)(); -+ -+struct bp_hardening_data { -+ enum arm64_hyp_spectre_vector slot; -+ bp_hardening_cb_t fn; -+}; -+ -+enum ctx_state { -+ CONTEXT_DISABLED = 4294967295, -+ CONTEXT_KERNEL = 0, -+ CONTEXT_USER = 1, -+ CONTEXT_GUEST = 2, -+}; -+ -+struct context_tracking { -+ bool active; -+ int recursion; -+ enum ctx_state state; -+}; -+ -+enum stack_type { -+ STACK_TYPE_UNKNOWN = 0, -+ STACK_TYPE_TASK = 1, -+ STACK_TYPE_IRQ = 2, -+ STACK_TYPE_OVERFLOW = 3, -+ STACK_TYPE_SDEI_NORMAL = 4, -+ STACK_TYPE_SDEI_CRITICAL = 5, -+ __NR_STACK_TYPES = 6, -+}; -+ -+struct stack_info { -+ long unsigned int low; -+ long unsigned int high; -+ enum stack_type type; -+}; -+ -+struct sdei_registered_event; -+ -+struct plist_head { -+ struct list_head node_list; -+}; -+ -+typedef struct { -+ __u8 b[16]; -+} guid_t; -+ -+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; -+}; -+ -+enum reboot_mode { -+ REBOOT_UNDEFINED = 4294967295, -+ REBOOT_COLD = 0, -+ REBOOT_WARM = 1, -+ REBOOT_HARD = 2, -+ REBOOT_SOFT = 3, -+ REBOOT_GPIO = 4, -+}; -+ -+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_set_virtual_address_map_t(long unsigned int, long unsigned int, u32, efi_memory_desc_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_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_set_virtual_address_map_t *set_virtual_address_map; -+ void *convert_pointer; -+ efi_get_variable_t *get_variable; -+ efi_get_next_variable_t *get_next_variable; -+ efi_set_variable_t *set_variable; -+ efi_get_next_high_mono_count_t *get_next_high_mono_count; -+ efi_reset_system_t *reset_system; -+ efi_update_capsule_t *update_capsule; -+ efi_query_capsule_caps_t *query_capsule_caps; -+ efi_query_variable_info_t *query_variable_info; -+ }; -+ 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 mokvar_table; -+ 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 arch_elf_state { -+ int flags; -+}; -+ -+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; -+}; -+ -+struct stackframe { -+ long unsigned int fp; -+ long unsigned int pc; -+ long unsigned int stacks_done[1]; -+ long unsigned int prev_fp; -+ enum stack_type prev_type; -+ int graph; -+}; -+ -+struct user_sve_header { -+ __u32 size; -+ __u32 max_size; -+ __u16 vl; -+ __u16 max_vl; -+ __u16 flags; -+ __u16 __reserved; -+}; -+ -+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 seccomp_data { -+ int nr; -+ __u32 arch; -+ __u64 instruction_pointer; -+ __u64 args[6]; -+}; -+ -+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 { -+ TASKSTATS_CMD_UNSPEC = 0, -+ TASKSTATS_CMD_GET = 1, -+ TASKSTATS_CMD_NEW = 2, -+ __TASKSTATS_CMD_MAX = 3, -+}; -+ -+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, -+}; -+ -+enum bpf_cgroup_storage_type { -+ BPF_CGROUP_STORAGE_SHARED = 0, -+ BPF_CGROUP_STORAGE_PERCPU = 1, -+ __BPF_CGROUP_STORAGE_MAX = 2, -+}; -+ -+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 psi_task_count { -+ NR_IOWAIT = 0, -+ NR_MEMSTALL = 1, -+ NR_RUNNING = 2, -+ NR_ONCPU = 3, -+ NR_PSI_TASK_COUNTS = 4, -+}; -+ -+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, -+ CGROUP_SUBSYS_COUNT = 14, -+}; -+ -+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, -+}; -+ -+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 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_SYSTEM_CALL = 5, -+ REGSET_SVE = 6, -+ REGSET_PAC_MASK = 7, -+ REGSET_PAC_ENABLED_KEYS = 8, -+ REGSET_PACA_KEYS = 9, -+ REGSET_PACG_KEYS = 10, -+ REGSET_TAGGED_ADDR_CTRL = 11, -+}; -+ -+enum ptrace_syscall_dir { -+ PTRACE_SYSCALL_ENTER = 0, -+ PTRACE_SYSCALL_EXIT = 1, -+}; -+ -+struct atomic_notifier_head { -+ spinlock_t lock; -+ struct notifier_block *head; -+}; -+ -+enum meminit_context { -+ MEMINIT_EARLY = 0, -+ MEMINIT_HOTPLUG = 1, -+}; -+ -+enum memblock_flags { -+ MEMBLOCK_NONE = 0, -+ MEMBLOCK_HOTPLUG = 1, -+ MEMBLOCK_MIRROR = 2, -+ MEMBLOCK_NOMAP = 4, -+}; -+ -+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; -+}; -+ -+struct mpidr_hash { -+ u64 mask; -+ u32 shift_aff[4]; -+ u32 bits; -+}; -+ -+struct cpu { -+ int node_id; -+ int hotpluggable; -+ struct device dev; -+}; -+ -+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 cpu cpu; -+ struct kobject kobj; -+ u64 reg_ctr; -+ u64 reg_cntfrq; -+ u64 reg_dczid; -+ u64 reg_midr; -+ u64 reg_revidr; -+ u64 reg_gmid; -+ u64 reg_id_aa64dfr0; -+ u64 reg_id_aa64dfr1; -+ u64 reg_id_aa64isar0; -+ u64 reg_id_aa64isar1; -+ u64 reg_id_aa64mmfr0; -+ u64 reg_id_aa64mmfr1; -+ u64 reg_id_aa64mmfr2; -+ u64 reg_id_aa64pfr0; -+ u64 reg_id_aa64pfr1; -+ u64 reg_id_aa64zfr0; -+ struct cpuinfo_32bit aarch32; -+ u64 reg_zcr; -+}; -+ -+struct cpu_operations { -+ const char *name; -+ int (*cpu_init)(unsigned int); -+ int (*cpu_prepare)(unsigned int); -+ int (*cpu_boot)(unsigned int); -+ void (*cpu_postboot)(); -+ bool (*cpu_can_disable)(unsigned int); -+ int (*cpu_disable)(unsigned int); -+ void (*cpu_die)(unsigned int); -+ int (*cpu_kill)(unsigned int); -+ int (*cpu_init_idle)(unsigned int); -+ int (*cpu_suspend)(long unsigned int); -+}; -+ -+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 extra_context { -+ struct _aarch64_ctx head; -+ __u64 datap; -+ __u32 size; -+ __u32 __reserved[3]; -+}; -+ -+struct sve_context { -+ struct _aarch64_ctx head; -+ __u16 vl; -+ __u16 __reserved[3]; -+}; -+ -+struct sigaltstack { -+ void *ss_sp; -+ int ss_flags; -+ size_t ss_size; -+}; -+ -+typedef struct sigaltstack stack_t; -+ -+struct siginfo { -+ union { -+ struct { -+ int si_signo; -+ int si_errno; -+ int si_code; -+ union __sifields _sifields; -+ }; -+ int _si_pad[32]; -+ }; -+}; -+ -+typedef struct siginfo siginfo_t; -+ -+struct ksignal { -+ struct k_sigaction ka; -+ kernel_siginfo_t info; -+ int sig; -+}; -+ -+enum { -+ EI_ETYPE_NONE = 0, -+ EI_ETYPE_NULL = 1, -+ EI_ETYPE_ERRNO = 2, -+ EI_ETYPE_ERRNO_NULL = 3, -+ EI_ETYPE_TRUE = 4, -+}; -+ -+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 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 extra_offset; -+ long unsigned int end_offset; -+}; -+ -+struct user_ctxs { -+ struct fpsimd_context *fpsimd; -+ struct sve_context *sve; -+}; -+ -+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 long int (*syscall_fn_t)(const struct pt_regs *); -+ -+typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); -+ -+enum lockdep_ok { -+ LOCKDEP_STILL_OK = 0, -+ LOCKDEP_NOW_UNRELIABLE = 1, -+}; -+ -+typedef bool pstate_check_t(long unsigned int); -+ -+enum bug_trap_type { -+ BUG_TRAP_TYPE_NONE = 0, -+ BUG_TRAP_TYPE_WARN = 1, -+ BUG_TRAP_TYPE_BUG = 2, -+}; -+ -+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; -+}; -+ -+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_PERF_EVENT = 8, -+ SIL_CHLD = 9, -+ SIL_RT = 10, -+ SIL_SYS = 11, -+}; -+ -+enum die_val { -+ DIE_UNUSED = 0, -+ DIE_OOPS = 1, -+}; -+ -+struct undef_hook { -+ struct list_head node; -+ u32 instr_mask; -+ u32 instr_val; -+ u64 pstate_mask; -+ u64 pstate_val; -+ int (*fn)(struct pt_regs *, u32); -+}; -+ -+struct sys64_hook { -+ unsigned int esr_mask; -+ unsigned int esr_val; -+ void (*handler)(unsigned int, struct pt_regs *); -+}; -+ -+struct timens_offset { -+ s64 sec; -+ u64 nsec; -+}; -+ -+enum vm_fault_reason { -+ VM_FAULT_OOM = 1, -+ VM_FAULT_SIGBUS = 2, -+ VM_FAULT_MAJOR = 4, -+ VM_FAULT_WRITE = 8, -+ 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_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 *); -+}; -+ -+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 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 vdso_abi { -+ VDSO_ABI_AA64 = 0, -+ VDSO_ABI_AA32 = 1, -+}; -+ -+enum vvar_pages { -+ VVAR_DATA_PAGE_OFFSET = 0, -+ VVAR_TIMENS_PAGE_OFFSET = 1, -+ VVAR_NR_PAGES = 2, -+}; -+ -+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, -+}; -+ -+struct psci_operations { -+ u32 (*get_version)(); -+ 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)(); -+}; -+ -+struct return_address_data { -+ unsigned int level; -+ void *addr; -+}; -+ -+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); -+}; -+ -+typedef int (*cmp_func_t)(const void *, const void *); -+ -+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_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 { -+ CAP_HWCAP = 1, -+}; -+ -+struct secondary_data { -+ struct task_struct *task; -+ long int status; -+}; -+ -+enum mitigation_state { -+ SPECTRE_UNAFFECTED = 0, -+ SPECTRE_MITIGATED = 1, -+ SPECTRE_VULNERABLE = 2, -+}; -+ -+enum pageflags { -+ PG_locked = 0, -+ PG_referenced = 1, -+ PG_uptodate = 2, -+ PG_dirty = 3, -+ PG_lru = 4, -+ PG_active = 5, -+ PG_workingset = 6, -+ PG_waiters = 7, -+ PG_error = 8, -+ PG_slab = 9, -+ PG_owner_priv_1 = 10, -+ PG_arch_1 = 11, -+ PG_reserved = 12, -+ PG_private = 13, -+ PG_private_2 = 14, -+ PG_writeback = 15, -+ PG_head = 16, -+ PG_mappedtodisk = 17, -+ PG_reclaim = 18, -+ PG_swapbacked = 19, -+ PG_unevictable = 20, -+ PG_mlocked = 21, -+ PG_hwpoison = 22, -+ PG_young = 23, -+ PG_idle = 24, -+ PG_arch_2 = 25, -+ __NR_PAGEFLAGS = 26, -+ PG_checked = 10, -+ PG_swapcache = 10, -+ PG_fscache = 14, -+ PG_pinned = 10, -+ PG_savepinned = 3, -+ PG_foreign = 10, -+ PG_xen_remapped = 10, -+ PG_slob_free = 13, -+ PG_double_map = 6, -+ PG_isolated = 18, -+ PG_reported = 2, -+}; -+ -+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); -+}; -+ -+typedef int (*cpu_stop_fn_t)(void *); -+ -+enum kvm_mode { -+ KVM_MODE_DEFAULT = 0, -+ KVM_MODE_PROTECTED = 1, -+}; -+ -+enum vcpu_sysreg { -+ __INVALID_SYSREG__ = 0, -+ MPIDR_EL1 = 1, -+ CSSELR_EL1 = 2, -+ SCTLR_EL1 = 3, -+ ACTLR_EL1 = 4, -+ CPACR_EL1 = 5, -+ ZCR_EL1 = 6, -+ TTBR0_EL1 = 7, -+ TTBR1_EL1 = 8, -+ TCR_EL1 = 9, -+ ESR_EL1 = 10, -+ AFSR0_EL1 = 11, -+ AFSR1_EL1 = 12, -+ FAR_EL1 = 13, -+ MAIR_EL1 = 14, -+ VBAR_EL1 = 15, -+ CONTEXTIDR_EL1 = 16, -+ TPIDR_EL0 = 17, -+ TPIDRRO_EL0 = 18, -+ TPIDR_EL1 = 19, -+ AMAIR_EL1 = 20, -+ CNTKCTL_EL1 = 21, -+ PAR_EL1 = 22, -+ MDSCR_EL1 = 23, -+ MDCCINT_EL1 = 24, -+ DISR_EL1 = 25, -+ PMCR_EL0 = 26, -+ PMSELR_EL0 = 27, -+ PMEVCNTR0_EL0 = 28, -+ PMEVCNTR30_EL0 = 58, -+ PMCCNTR_EL0 = 59, -+ PMEVTYPER0_EL0 = 60, -+ PMEVTYPER30_EL0 = 90, -+ PMCCFILTR_EL0 = 91, -+ PMCNTENSET_EL0 = 92, -+ PMINTENSET_EL1 = 93, -+ PMOVSSET_EL0 = 94, -+ PMSWINC_EL0 = 95, -+ PMUSERENR_EL0 = 96, -+ APIAKEYLO_EL1 = 97, -+ APIAKEYHI_EL1 = 98, -+ APIBKEYLO_EL1 = 99, -+ APIBKEYHI_EL1 = 100, -+ APDAKEYLO_EL1 = 101, -+ APDAKEYHI_EL1 = 102, -+ APDBKEYLO_EL1 = 103, -+ APDBKEYHI_EL1 = 104, -+ APGAKEYLO_EL1 = 105, -+ APGAKEYHI_EL1 = 106, -+ ELR_EL1 = 107, -+ SP_EL1 = 108, -+ SPSR_EL1 = 109, -+ CNTVOFF_EL2 = 110, -+ CNTV_CVAL_EL0 = 111, -+ CNTV_CTL_EL0 = 112, -+ CNTP_CVAL_EL0 = 113, -+ CNTP_CTL_EL0 = 114, -+ RGSR_EL1 = 115, -+ GCR_EL1 = 116, -+ TFSR_EL1 = 117, -+ TFSRE0_EL1 = 118, -+ DACR32_EL2 = 119, -+ IFSR32_EL2 = 120, -+ FPEXC32_EL2 = 121, -+ DBGVCR32_EL2 = 122, -+ NR_SYS_REGS = 123, -+}; -+ -+struct __ftr_reg_entry { -+ u32 sys_id; -+ struct arm64_ftr_reg *reg; -+}; -+ -+typedef void kpti_remap_fn(int, int, phys_addr_t); -+ -+typedef void ttbr_replace_func(phys_addr_t); -+ -+struct alt_instr { -+ s32 orig_offset; -+ s32 alt_offset; -+ u16 cpufeature; -+ u8 orig_len; -+ u8 alt_len; -+}; -+ -+typedef void (*alternative_cb_t)(struct alt_instr *, __le32 *, __le32 *, int); -+ -+struct alt_region { -+ struct alt_instr *begin; -+ struct alt_instr *end; -+}; -+ -+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 num_levels; -+ unsigned int num_leaves; -+ bool cpu_map_populated; -+}; -+ -+struct acpi_subtable_header { -+ u8 type; -+ u8 length; -+}; -+ -+struct acpi_hmat_structure { -+ u16 type; -+ u16 reserved; -+ u32 length; -+}; -+ -+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_RESERVED = 17, -+}; -+ -+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; -+} __attribute__((packed)); -+ -+struct acpi_prmt_module_header { -+ u16 revision; -+ u16 length; -+}; -+ -+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 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 platform_msi_priv_data; -+ -+struct platform_msi_desc { -+ struct platform_msi_priv_data *msi_priv_data; -+ u16 msi_index; -+}; -+ -+struct fsl_mc_msi_desc { -+ u16 msi_index; -+}; -+ -+struct ti_sci_inta_msi_desc { -+ u16 dev_index; -+}; -+ -+struct irq_affinity_desc; -+ -+struct msi_desc { -+ struct list_head list; -+ unsigned int irq; -+ unsigned int nvec_used; -+ struct device *dev; -+ struct msi_msg msg; -+ struct irq_affinity_desc *affinity; -+ const void *iommu_cookie; -+ void (*write_msi_msg)(struct msi_desc *, void *); -+ void *write_msi_msg_data; -+ union { -+ struct { -+ u32 masked; -+ struct { -+ u8 is_msix: 1; -+ u8 multiple: 3; -+ u8 multi_cap: 3; -+ u8 maskbit: 1; -+ u8 is_64: 1; -+ u8 is_virtual: 1; -+ u16 entry_nr; -+ unsigned int default_irq; -+ } msi_attrib; -+ union { -+ u8 mask_pos; -+ void *mask_base; -+ }; -+ }; -+ struct platform_msi_desc platform; -+ struct fsl_mc_msi_desc fsl_mc; -+ struct ti_sci_inta_msi_desc inta; -+ }; -+}; -+ -+struct irq_affinity_desc { -+ struct cpumask mask; -+ unsigned int is_managed: 1; -+}; -+ -+union acpi_subtable_headers { -+ struct acpi_subtable_header common; -+ struct acpi_hmat_structure hmat; -+ struct acpi_prmt_module_header prmt; -+}; -+ -+typedef int (*acpi_tbl_entry_handler)(union acpi_subtable_headers *, const long unsigned int); -+ -+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, -+}; -+ -+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_handler { -+ struct trace_entry ent; -+ const char *reason; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ipi_raise { -+ u32 target_cpus; -+}; -+ -+struct trace_event_data_offsets_ipi_handler {}; -+ -+typedef void (*btf_trace_ipi_raise)(void *, const struct cpumask *, const char *); -+ -+typedef void (*btf_trace_ipi_entry)(void *, const char *); -+ -+typedef void (*btf_trace_ipi_exit)(void *, const char *); -+ -+enum ipi_msg_type { -+ IPI_RESCHEDULE = 0, -+ IPI_CALL_FUNC = 1, -+ IPI_CPU_STOP = 2, -+ IPI_CPU_CRASH_STOP = 3, -+ IPI_TIMER = 4, -+ IPI_IRQ_WORK = 5, -+ IPI_WAKEUP = 6, -+ NR_IPI = 7, -+}; -+ -+typedef __u64 __le64; -+ -+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)(); -+}; -+ -+struct cpu_topology { -+ int thread_id; -+ int core_id; -+ int package_id; -+ int llc_id; -+ cpumask_t thread_sibling; -+ cpumask_t core_sibling; -+ cpumask_t llc_sibling; -+}; -+ -+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; -+ unsigned int transition_delay_us; -+ bool dvfs_possible_from_any_cpu; -+ 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 thermal_cooling_device_ops; -+ -+struct thermal_cooling_device { -+ int id; -+ char *type; -+ 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; -+}; -+ -+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 cpc_reg { -+ u8 descriptor; -+ u16 length; -+ u8 space_id; -+ u8 bit_width; -+ u8 bit_offset; -+ u8 access_width; -+ u64 address; -+} __attribute__((packed)); -+ -+enum arm_smccc_conduit { -+ SMCCC_CONDUIT_NONE = 0, -+ SMCCC_CONDUIT_SMC = 1, -+ SMCCC_CONDUIT_HVC = 2, -+}; -+ -+struct arm_smccc_res { -+ long unsigned int a0; -+ long unsigned int a1; -+ long unsigned int a2; -+ long unsigned int a3; -+}; -+ -+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; -+}; -+ -+struct ftr_set_desc { -+ char name[20]; -+ struct arm64_ftr_override *override; -+ struct { -+ char name[10]; -+ u8 shift; -+ bool (*filter)(u64); -+ } fields[0]; -+}; -+ -+struct arm_cpuidle_irq_context { -+ long unsigned int pmr; -+ long unsigned int daif_bits; -+}; -+ -+enum fixed_addresses { -+ FIX_HOLE = 0, -+ FIX_FDT_END = 1, -+ FIX_FDT = 1024, -+ FIX_EARLYCON_MEM_BASE = 1025, -+ FIX_TEXT_POKE0 = 1026, -+ FIX_APEI_GHES_IRQ = 1027, -+ FIX_APEI_GHES_SEA = 1028, -+ FIX_APEI_GHES_SDEI_NORMAL = 1029, -+ FIX_APEI_GHES_SDEI_CRITICAL = 1030, -+ FIX_ENTRY_TRAMP_DATA = 1031, -+ FIX_ENTRY_TRAMP_TEXT = 1032, -+ __end_of_permanent_fixed_addresses = 1033, -+ FIX_BTMAP_END = 1033, -+ FIX_BTMAP_BEGIN = 1480, -+ FIX_PTE = 1481, -+ FIX_PMD = 1482, -+ FIX_PUD = 1483, -+ FIX_PGD = 1484, -+ __end_of_fixed_addresses = 1485, -+}; -+ -+struct aarch64_insn_patch { -+ void **text_addrs; -+ u32 *new_insns; -+ int insn_cnt; -+ atomic_t cpu_count; -+}; -+ -+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_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, -+}; -+ -+struct dyn_arch_ftrace {}; -+ -+struct dyn_ftrace { -+ long unsigned int ip; -+ long unsigned int flags; -+ struct dyn_arch_ftrace arch; -+}; -+ -+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, -+}; -+ -+typedef __u64 Elf64_Off; -+ -+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 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; -+ -+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, -+}; -+ -+typedef void (*swap_func_t)(void *, void *, int); -+ -+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_adr_type { -+ AARCH64_INSN_ADR_TYPE_ADRP = 0, -+ AARCH64_INSN_ADR_TYPE_ADR = 1, -+}; -+ -+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_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, -+}; -+ -+struct perf_guest_info_callbacks { -+ int (*is_in_guest)(); -+ int (*is_user_mode)(); -+ long unsigned int (*get_guest_ip)(); -+ void (*handle_intel_pt_intr)(); -+}; -+ -+struct perf_callchain_entry_ctx { -+ struct perf_callchain_entry *entry; -+ u32 max_stack; -+ u32 nr; -+ short int contexts; -+ bool contexts_maxed; -+}; -+ -+struct frame_tail { -+ struct frame_tail *fp; -+ long unsigned int lr; -+}; -+ -+struct platform_device_id { -+ char name[20]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct pdev_archdata {}; -+ -+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, -+}; -+ -+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_pmu_events_attr { -+ struct device_attribute attr; -+ u64 id; -+ const char *event_str; -+}; -+ -+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; -+ char *driver_override; -+ struct mfd_cell *mfd_cell; -+ struct pdev_archdata archdata; -+}; -+ -+struct platform_driver { -+ int (*probe)(struct platform_device *); -+ int (*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; -+}; -+ -+struct arm_pmu; -+ -+struct pmu_hw_events { -+ struct perf_event *events[32]; -+ long unsigned int used_mask[1]; -+ raw_spinlock_t pmu_lock; -+ 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 *); -+ int (*filter_match)(struct perf_event *); -+ int num_events; -+ 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; -+}; -+ -+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, -+}; -+ -+typedef int (*armpmu_init_fn)(struct arm_pmu *); -+ -+struct pmu_probe_info { -+ unsigned int cpuid; -+ unsigned int mask; -+ armpmu_init_fn init; -+}; -+ -+struct clock_read_data { -+ u64 epoch_ns; -+ u64 epoch_cyc; -+ u64 sched_clock_mask; -+ u64 (*read_sched_clock)(); -+ u32 mult; -+ u32 shift; -+}; -+ -+struct armv8pmu_probe_info { -+ struct arm_pmu *pmu; -+ bool present; -+}; -+ -+enum hw_breakpoint_ops { -+ HW_BREAKPOINT_INSTALL = 0, -+ HW_BREAKPOINT_UNINSTALL = 1, -+ HW_BREAKPOINT_RESTORE = 2, -+}; -+ -+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]; -+}; -+ -+typedef void *acpi_handle; -+ -+typedef u64 phys_cpuid_t; -+ -+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; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ struct acpi_processor_px *states; -+ struct acpi_psd_package domain_info; -+ cpumask_var_t shared_cpu_map; -+ unsigned int shared_type; -+ int: 32; -+} __attribute__((packed)); -+ -+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; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ 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; -+ char: 8; -+ unsigned int shared_type; -+ struct acpi_processor_tx states[16]; -+ int: 32; -+} __attribute__((packed)); -+ -+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 need_hotplug_init: 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; -+}; -+ -+enum jump_label_type { -+ JUMP_LABEL_NOP = 0, -+ JUMP_LABEL_JMP = 1, -+}; -+ -+struct die_args { -+ struct pt_regs *regs; -+ const char *str; -+ long int err; -+ int trapnr; -+ int signr; -+}; -+ -+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, -+}; -+ -+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[4]; -+ enum kgdb_bptype type; -+ enum kgdb_bpstate state; -+}; -+ -+struct dbg_reg_def_t { -+ char *name; -+ int size; -+ int offset; -+}; -+ -+struct kgdb_arch { -+ unsigned char gdb_bpt_instr[4]; -+ 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 (*correct_hw_break)(); -+ void (*enable_nmi)(bool); -+}; -+ -+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)); -+ -+typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); -+ -+struct pci_device_id { -+ __u32 vendor; -+ __u32 device; -+ __u32 subvendor; -+ __u32 subdevice; -+ __u32 class; -+ __u32 class_mask; -+ kernel_ulong_t driver_data; -+}; -+ -+struct resource_entry { -+ struct list_head node; -+ struct resource *res; -+ resource_size_t offset; -+ struct resource __res; -+}; -+ -+typedef u64 acpi_io_address; -+ -+typedef u32 acpi_object_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; -+}; -+ -+struct acpi_device; -+ -+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 reserved: 19; -+}; -+ -+typedef char acpi_bus_id[8]; -+ -+struct acpi_pnp_type { -+ u32 hardware_id: 1; -+ u32 bus_address: 1; -+ u32 platform_id: 1; -+ u32 reserved: 29; -+}; -+ -+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; -+ union acpi_object *str_obj; -+}; -+ -+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 { -+ u8 valid: 1; -+ u8 explicit_set: 1; -+ u8 reserved: 6; -+ } flags; -+ int power; -+ int latency; -+ struct list_head resources; -+}; -+ -+struct acpi_device_power { -+ int state; -+ struct acpi_device_power_flags flags; -+ struct acpi_device_power_state states[5]; -+}; -+ -+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_driver; -+ -+struct acpi_gpio_mapping; -+ -+struct acpi_device { -+ int device_type; -+ acpi_handle handle; -+ struct fwnode_handle fwnode; -+ struct acpi_device *parent; -+ struct list_head children; -+ struct list_head node; -+ 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_driver *driver; -+ 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 { -+ const struct acpi_device_id *ids; -+ struct list_head list_node; -+ 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 (*bind)(struct device *); -+ void (*unbind)(struct device *); -+ struct acpi_hotplug_profile hotplug; -+}; -+ -+struct acpi_hotplug_context { -+ struct acpi_device *self; -+ int (*notify)(struct acpi_device *, u32); -+ void (*uevent)(struct acpi_device *, u32); -+ void (*fixup)(struct acpi_device *); -+}; -+ -+typedef int (*acpi_op_add)(struct acpi_device *); -+ -+typedef int (*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 module *owner; -+}; -+ -+struct acpi_device_perf_state { -+ struct { -+ u8 valid: 1; -+ u8 reserved: 7; -+ } flags; -+ u8 power; -+ u8 performance; -+ int latency; -+}; -+ -+struct acpi_gpio_params; -+ -+struct acpi_gpio_mapping { -+ const char *name; -+ const struct acpi_gpio_params *data; -+ unsigned int size; -+ unsigned int quirks; -+}; -+ -+struct pci_bus; -+ -+struct acpi_pci_root { -+ struct acpi_device *device; -+ struct pci_bus *bus; -+ u16 segment; -+ struct resource secondary; -+ u32 osc_support_set; -+ u32 osc_control_set; -+ phys_addr_t mcfg_addr; -+}; -+ -+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; -+}; -+ -+struct acpi_gpio_params { -+ unsigned int crs_entry_index; -+ unsigned int line_index; -+ bool active_low; -+}; -+ -+struct hotplug_slot; -+ -+struct pci_slot { -+ struct pci_bus *bus; -+ struct list_head list; -+ struct hotplug_slot *hotplug; -+ unsigned char number; -+ struct kobject kobj; -+}; -+ -+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, -+}; -+ -+typedef int pci_power_t; -+ -+typedef unsigned int pci_channel_state_t; -+ -+typedef unsigned int pcie_reset_state_t; -+ -+typedef short unsigned int pci_dev_flags_t; -+ -+struct aer_stats; -+ -+struct rcec_ea; -+ -+struct pci_driver; -+ -+struct pcie_link_state; -+ -+struct pci_vpd; -+ -+struct pci_sriov; -+ -+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_stats *aer_stats; -+ struct rcec_ea *rcec_ea; -+ struct pci_dev *rcec; -+ 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; -+ unsigned int imm_ready: 1; -+ u8 pm_cap; -+ unsigned int pme_support: 5; -+ unsigned int pme_poll: 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 runtime_d3cold: 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; -+ struct pcie_link_state *link_state; -+ unsigned int ltr_path: 1; -+ u16 l1ss; -+ unsigned int eetlp_prefix_path: 1; -+ pci_channel_state_t error_state; -+ struct device dev; -+ int cfg_size; -+ unsigned int irq; -+ struct resource resource[17]; -+ 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 needs_freset: 1; -+ unsigned int state_saved: 1; -+ unsigned int is_physfn: 1; -+ unsigned int is_virtfn: 1; -+ unsigned int reset_fn: 1; -+ unsigned int is_hotplug_bridge: 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; -+ pci_dev_flags_t dev_flags; -+ atomic_t enable_cnt; -+ u32 saved_config_space[16]; -+ struct hlist_head saved_cap_space; -+ int rom_attr_enabled; -+ struct bin_attribute *res_attr[17]; -+ struct bin_attribute *res_attr_wc[17]; -+ unsigned int broken_cmd_compl: 1; -+ const struct attribute_group **msi_irq_groups; -+ struct pci_vpd *vpd; -+ u16 dpc_cap; -+ unsigned int dpc_rp_extensions: 1; -+ u8 dpc_rp_log_size; -+ 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; -+ u16 acs_cap; -+ phys_addr_t rom; -+ size_t romlen; -+ char *driver_override; -+ long unsigned int priv_flags; -+}; -+ -+struct pci_dynids { -+ spinlock_t lock; -+ struct list_head list; -+}; -+ -+struct pci_error_handlers; -+ -+struct pci_driver { -+ struct list_head node; -+ 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; -+}; -+ -+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 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 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 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 *); -+}; -+ -+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_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 acpi_pci_generic_root_info { -+ struct acpi_pci_root_info common; -+ struct pci_config_window *cfg; -+}; -+ -+typedef u64 acpi_size; -+ -+typedef u64 acpi_physical_address; -+ -+typedef u32 acpi_status; -+ -+typedef char *acpi_string; -+ -+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)); -+ -+typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *); -+ -+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 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_RESERVED = 6, -+}; -+ -+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 parking_protocol_mailbox { -+ __le32 cpu_id; -+ __le32 reserved; -+ __le64 entry_point; -+}; -+ -+struct cpu_mailbox_entry { -+ struct parking_protocol_mailbox *mailbox; -+ phys_addr_t mailbox_addr; -+ u8 version; -+ u8 gic_cpu_id; -+}; -+ -+enum { -+ MEMREMAP_WB = 1, -+ MEMREMAP_WT = 2, -+ MEMREMAP_WC = 4, -+ MEMREMAP_ENC = 8, -+ MEMREMAP_DEC = 16, -+}; -+ -+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; -+}; -+ -+typedef __be64 fdt64_t; -+ -+enum kaslr_status { -+ KASLR_ENABLED = 0, -+ KASLR_DISABLED_CMDLINE = 1, -+ KASLR_DISABLED_NO_SEED = 2, -+ KASLR_DISABLED_FDT_REMAP = 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 pbe { -+ void *address; -+ void *orig_address; -+ struct pbe *next; -+}; -+ -+struct trans_pgd_info { -+ void * (*trans_alloc_page)(void *); -+ void *trans_alloc_arg; -+}; -+ -+struct arch_hibernate_hdr_invariants { -+ char uts_version[65]; -+}; -+ -+struct arch_hibernate_hdr { -+ struct arch_hibernate_hdr_invariants invariants; -+ phys_addr_t ttbr1_el1; -+ void (*reenter_kernel)(); -+ phys_addr_t __hyp_stub_vectors; -+ u64 sleep_cpu_mpidr; -+}; -+ -+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_MSI_NOMASK_QUIRK = 134217728, -+ IRQD_HANDLE_ENFORCE_IRQCTX = 268435456, -+ IRQD_AFFINITY_ON_ACTIVATE = 536870912, -+ IRQD_IRQ_ENABLED_ON_SUSPEND = 1073741824, -+}; -+ -+struct kimage_arch { -+ void *dtb; -+ phys_addr_t dtb_mem; -+ phys_addr_t kern_reloc; -+}; -+ -+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); -+ -+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; -+}; -+ -+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; -+}; -+ -+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 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; -+ 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; -+ void *ima_buffer; -+ phys_addr_t ima_buffer_addr; -+ size_t ima_buffer_size; -+ void *elf_headers; -+ long unsigned int elf_headers_sz; -+ long unsigned int elf_load_addr; -+}; -+ -+typedef u8 uint8_t; -+ -+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; -+ bool top_down; -+}; -+ -+struct crash_mem_range { -+ u64 start; -+ u64 end; -+}; -+ -+struct crash_mem { -+ unsigned int max_nr_ranges; -+ unsigned int nr_ranges; -+ struct crash_mem_range ranges[0]; -+}; -+ -+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 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 arm64_image_header { -+ __le32 code0; -+ __le32 code1; -+ __le64 text_offset; -+ __le64 image_size; -+ __le64 flags; -+ __le64 res2; -+ __le64 res3; -+ __le64 res4; -+ __le32 magic; -+ __le32 res5; -+}; -+ -+typedef int sdei_event_callback(u32, struct pt_regs *, void *); -+ -+struct sdei_registered_event___2 { -+ struct pt_regs interrupted_regs; -+ sdei_event_callback *callback; -+ void *callback_arg; -+ u32 event_num; -+ u8 priority; -+}; -+ -+typedef struct { -+ long unsigned int val; -+} swp_entry_t; -+ -+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; -+}; -+ -+typedef u32 kprobe_opcode_t; -+ -+struct arch_specific_insn { -+ struct arch_probe_insn api; -+}; -+ -+struct freelist_node { -+ atomic_t refs; -+ struct freelist_node *next; -+}; -+ -+struct freelist_head { -+ struct freelist_node *head; -+}; -+ -+struct kprobe; -+ -+struct prev_kprobe { -+ struct kprobe *kp; -+ unsigned int status; -+}; -+ -+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 kprobe_ctlblk { -+ unsigned int kprobe_status; -+ long unsigned int saved_irqflag; -+ struct prev_kprobe prev_kprobe; -+}; -+ -+struct kretprobe_instance; -+ -+typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); -+ -+struct kretprobe_holder; -+ -+struct kretprobe_instance { -+ union { -+ struct freelist_node freelist; -+ 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; -+ refcount_t ref; -+}; -+ -+struct kretprobe { -+ struct kprobe kp; -+ kretprobe_handler_t handler; -+ kretprobe_handler_t entry_handler; -+ int maxactive; -+ int nmissed; -+ size_t data_size; -+ struct freelist_head freelist; -+ struct kretprobe_holder *rph; -+}; -+ -+struct kprobe_insn_cache { -+ struct mutex mutex; -+ void * (*alloc)(); -+ void (*free)(void *); -+ const char *sym; -+ struct list_head pages; -+ size_t insn_size; -+ int nr_garbage; -+}; -+ -+enum probe_insn { -+ INSN_REJECTED = 0, -+ INSN_GOOD_NO_SLOT = 1, -+ INSN_GOOD = 2, -+}; -+ -+enum aarch64_insn_encoding_class { -+ AARCH64_INSN_CLS_UNKNOWN = 0, -+ AARCH64_INSN_CLS_SVE = 1, -+ AARCH64_INSN_CLS_DP_IMM = 2, -+ AARCH64_INSN_CLS_DP_REG = 3, -+ AARCH64_INSN_CLS_DP_FPSIMD = 4, -+ AARCH64_INSN_CLS_LDST = 5, -+ AARCH64_INSN_CLS_BR_SYS = 6, -+}; -+ -+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, -+}; -+ -+struct arch_uprobe { -+ union { -+ u8 insn[4]; -+ u8 ixol[4]; -+ }; -+ struct arch_probe_insn api; -+ bool simulate; -+}; -+ -+enum rp_check { -+ RP_CHECK_CALL = 0, -+ RP_CHECK_CHAIN_CALL = 1, -+ RP_CHECK_RET = 2, -+}; -+ -+struct io_tlb_slot; -+ -+struct io_tlb_mem { -+ phys_addr_t start; -+ phys_addr_t end; -+ long unsigned int nslabs; -+ long unsigned int used; -+ unsigned int index; -+ spinlock_t lock; -+ struct dentry *debugfs; -+ bool late_alloc; -+ bool force_bounce; -+ bool for_alloc; -+ struct io_tlb_slot *slots; -+}; -+ -+struct iommu_fault_param; -+ -+struct iopf_device_param; -+ -+struct iommu_fwspec; -+ -+struct dev_iommu { -+ struct mutex lock; -+ struct iommu_fault_param *fault_param; -+ struct iopf_device_param *iopf_param; -+ struct iommu_fwspec *fwspec; -+ struct iommu_device *iommu_dev; -+ void *priv; -+}; -+ -+struct scatterlist { -+ long unsigned int page_link; -+ unsigned int offset; -+ unsigned int length; -+ dma_addr_t dma_address; -+ unsigned int dma_length; -+}; -+ -+struct sg_table { -+ struct scatterlist *sgl; -+ unsigned int nents; -+ unsigned int orig_nents; -+}; -+ -+struct of_phandle_args { -+ struct device_node *np; -+ int args_count; -+ uint32_t args[16]; -+}; -+ -+struct iommu_fault_unrecoverable { -+ __u32 reason; -+ __u32 flags; -+ __u32 pasid; -+ __u32 perm; -+ __u64 addr; -+ __u64 fetch_addr; -+}; -+ -+struct iommu_fault_page_request { -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 perm; -+ __u64 addr; -+ __u64 private_data[2]; -+}; -+ -+struct iommu_fault { -+ __u32 type; -+ __u32 padding; -+ union { -+ struct iommu_fault_unrecoverable event; -+ struct iommu_fault_page_request prm; -+ __u8 padding2[56]; -+ }; -+}; -+ -+struct iommu_page_response { -+ __u32 argsz; -+ __u32 version; -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 code; -+}; -+ -+struct iommu_inv_addr_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+ __u64 addr; -+ __u64 granule_size; -+ __u64 nb_granules; -+}; -+ -+struct iommu_inv_pasid_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+}; -+ -+struct iommu_cache_invalidate_info { -+ __u32 argsz; -+ __u32 version; -+ __u8 cache; -+ __u8 granularity; -+ __u8 padding[6]; -+ union { -+ struct iommu_inv_pasid_info pasid_info; -+ struct iommu_inv_addr_info addr_info; -+ } granu; -+}; -+ -+struct iommu_gpasid_bind_data_vtd { -+ __u64 flags; -+ __u32 pat; -+ __u32 emt; -+}; -+ -+struct iommu_gpasid_bind_data { -+ __u32 argsz; -+ __u32 version; -+ __u32 format; -+ __u32 addr_width; -+ __u64 flags; -+ __u64 gpgd; -+ __u64 hpasid; -+ __u64 gpasid; -+ __u8 padding[8]; -+ union { -+ struct iommu_gpasid_bind_data_vtd vtd; -+ } vendor; -+}; -+ -+typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); -+ -+struct iommu_domain_geometry { -+ dma_addr_t aperture_start; -+ dma_addr_t aperture_end; -+ bool force_aperture; -+}; -+ -+struct iommu_dma_cookie; -+ -+struct iommu_domain { -+ unsigned int type; -+ const struct iommu_ops *ops; -+ long unsigned int pgsize_bitmap; -+ iommu_fault_handler_t handler; -+ void *handler_token; -+ struct iommu_domain_geometry geometry; -+ struct iommu_dma_cookie *iova_cookie; -+}; -+ -+typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault *, void *); -+ -+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; -+}; -+ -+struct iommu_iotlb_gather { -+ long unsigned int start; -+ long unsigned int end; -+ size_t pgsize; -+ struct page *freelist; -+ bool queued; -+}; -+ -+struct iommu_device { -+ struct list_head list; -+ const struct iommu_ops *ops; -+ struct fwnode_handle *fwnode; -+ struct device *dev; -+}; -+ -+struct iommu_sva { -+ struct device *dev; -+}; -+ -+struct iommu_fault_event { -+ struct iommu_fault fault; -+ struct list_head list; -+}; -+ -+struct iommu_fault_param { -+ iommu_dev_fault_handler_t handler; -+ void *data; -+ struct list_head faults; -+ struct mutex lock; -+}; -+ -+struct iommu_fwspec { -+ const struct iommu_ops *ops; -+ struct fwnode_handle *iommu_fwnode; -+ u32 flags; -+ unsigned int num_ids; -+ u32 ids[0]; -+}; -+ -+struct io_tlb_slot { -+ phys_addr_t orig_addr; -+ size_t alloc_size; -+ unsigned int list; -+}; -+ -+typedef struct { -+ pgd_t pgd; -+} p4d_t; -+ -+struct hstate { -+ struct mutex resize_lock; -+ int next_nid_to_alloc; -+ int next_nid_to_free; -+ unsigned int 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[64]; -+ unsigned int nr_huge_pages_node[64]; -+ unsigned int free_huge_pages_node[64]; -+ unsigned int surplus_huge_pages_node[64]; -+ struct cftype cgroup_files_dfl[7]; -+ struct cftype cgroup_files_legacy[9]; -+ char name[32]; -+}; -+ -+struct fault_info { -+ int (*fn)(long unsigned int, unsigned int, struct pt_regs *); -+ int sig; -+ int code; -+ const char *name; -+}; -+ -+struct mem_section_usage { -+ long unsigned int subsection_map[1]; -+ long unsigned int pageblock_flags[0]; -+}; -+ -+struct page_ext; -+ -+struct mem_section { -+ long unsigned int section_mem_map; -+ struct mem_section_usage *usage; -+ struct page_ext *page_ext; -+ long unsigned int pad; -+}; -+ -+struct page_ext { -+ long unsigned int flags; -+}; -+ -+enum swiotlb_force { -+ SWIOTLB_NORMAL = 0, -+ SWIOTLB_FORCE = 1, -+ SWIOTLB_NO_FORCE = 2, -+}; -+ -+enum xen_domain_type { -+ XEN_NATIVE = 0, -+ XEN_PV_DOMAIN = 1, -+ XEN_HVM_DOMAIN = 2, -+}; -+ -+typedef u64 p4dval_t; -+ -+struct mhp_params { -+ struct vmem_altmap *altmap; -+ pgprot_t pgprot; -+}; -+ -+struct page_change_data { -+ pgprot_t set_mask; -+ pgprot_t clear_mask; -+}; -+ -+typedef long unsigned int vm_flags_t; -+ -+struct ptdump_range { -+ long unsigned int start; -+ long unsigned int end; -+}; -+ -+struct ptdump_state { -+ void (*note_page)(struct ptdump_state *, long unsigned int, int, u64); -+ void (*effective_prot)(struct ptdump_state *, int, u64); -+ const struct ptdump_range *range; -+}; -+ -+struct addr_marker { -+ long unsigned int start_address; -+ char *name; -+}; -+ -+struct ptdump_info { -+ struct mm_struct *mm; -+ const struct addr_marker *markers; -+ long unsigned int base_addr; -+}; -+ -+enum address_markers_idx { -+ PAGE_OFFSET_NR = 0, -+ PAGE_END_NR = 1, -+}; -+ -+struct pg_state { -+ struct ptdump_state ptdump; -+ struct seq_file *seq; -+ const struct addr_marker *marker; -+ long unsigned int start_address; -+ int level; -+ u64 current_prot; -+ bool check_wx; -+ long unsigned int wx_pages; -+ long unsigned int uxn_pages; -+}; -+ -+struct prot_bits { -+ u64 mask; -+ u64 val; -+ const char *set; -+ const char *clear; -+}; -+ -+struct pg_level { -+ const struct prot_bits *bits; -+ const char *name; -+ size_t num; -+ u64 mask; -+}; -+ -+typedef __kernel_long_t __kernel_off_t; -+ -+typedef __kernel_off_t off_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, -+}; -+ -+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_BTI = 1024, -+ AARCH64_INSN_HINT_BTIC = 1088, -+ AARCH64_INSN_HINT_BTIJ = 1152, -+ AARCH64_INSN_HINT_BTIJC = 1216, -+}; -+ -+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_PAIR_PRE_INDEX = 2, -+ AARCH64_INSN_LDST_STORE_PAIR_PRE_INDEX = 3, -+ AARCH64_INSN_LDST_LOAD_PAIR_POST_INDEX = 4, -+ AARCH64_INSN_LDST_STORE_PAIR_POST_INDEX = 5, -+ AARCH64_INSN_LDST_LOAD_EX = 6, -+ AARCH64_INSN_LDST_STORE_EX = 7, -+}; -+ -+enum aarch64_insn_movewide_type { -+ AARCH64_INSN_MOVEWIDE_ZERO = 0, -+ AARCH64_INSN_MOVEWIDE_KEEP = 1, -+ AARCH64_INSN_MOVEWIDE_INVERSE = 2, -+}; -+ -+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_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, -+}; -+ -+enum { -+ DUMP_PREFIX_NONE = 0, -+ DUMP_PREFIX_ADDRESS = 1, -+ DUMP_PREFIX_OFFSET = 2, -+}; -+ -+struct bpf_binary_header { -+ u32 pages; -+ int: 32; -+ 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; -+ __le32 *image; -+ u32 stack_size; -+}; -+ -+struct arm64_jit_data { -+ struct bpf_binary_header *header; -+ u8 *image; -+ struct jit_ctx ctx; -+}; -+ -+typedef u64 gpa_t; -+ -+typedef u64 gfn_t; -+ -+typedef long unsigned int hva_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_arch_memory_slot {}; -+ -+struct kvm_memory_slot { -+ 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 gfn_to_pfn_cache { -+ u64 generation; -+ gfn_t gfn; -+ kvm_pfn_t pfn; -+ bool dirty; -+}; -+ -+struct kvm_mmu_memory_cache { -+ int nobjs; -+ gfp_t gfp_zero; -+ struct kmem_cache *kmem_cache; -+ void *objects[40]; -+}; -+ -+struct kvm_vm_stat_generic { -+ u64 remote_tlb_flush; -+}; -+ -+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; -+}; -+ -+struct kvm_vcpu; -+ -+struct kvm_io_device; -+ -+struct kvm_io_device_ops { -+ int (*read)(struct kvm_vcpu *, struct kvm_io_device *, gpa_t, int, void *); -+ int (*write)(struct kvm_vcpu *, struct kvm_io_device *, gpa_t, int, const void *); -+ void (*destructor)(struct kvm_io_device *); -+}; -+ -+struct preempt_ops; -+ -+struct preempt_notifier { -+ struct hlist_node link; -+ struct preempt_ops *ops; -+}; -+ -+struct kvm_mmio_fragment { -+ gpa_t gpa; -+ void *data; -+ unsigned int len; -+}; -+ -+struct kvm_cpu_context { -+ struct user_pt_regs regs; -+ u64 spsr_abt; -+ u64 spsr_und; -+ u64 spsr_irq; -+ u64 spsr_fiq; -+ struct user_fpsimd_state fp_regs; -+ u64 sys_regs[123]; -+ struct kvm_vcpu *__hyp_running_vcpu; -+}; -+ -+struct kvm_vcpu_fault_info { -+ u32 esr_el2; -+ u64 far_el2; -+ u64 hpfar_el2; -+ u64 disr_el1; -+}; -+ -+struct kvm_guest_debug_arch { -+ __u64 dbg_bcr[16]; -+ __u64 dbg_bvr[16]; -+ __u64 dbg_wcr[16]; -+ __u64 dbg_wvr[16]; -+}; -+ -+struct vgic_v2_cpu_if { -+ u32 vgic_hcr; -+ u32 vgic_vmcr; -+ u32 vgic_apr; -+ u32 vgic_lr[64]; -+ unsigned int used_lrs; -+}; -+ -+struct its_vm; -+ -+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 vgic_v3_cpu_if { -+ u32 vgic_hcr; -+ u32 vgic_vmcr; -+ u32 vgic_sre; -+ u32 vgic_ap0r[4]; -+ u32 vgic_ap1r[4]; -+ u64 vgic_lr[16]; -+ struct its_vpe its_vpe; -+ unsigned int used_lrs; -+}; -+ -+enum vgic_irq_config { -+ VGIC_CONFIG_EDGE = 0, -+ VGIC_CONFIG_LEVEL = 1, -+}; -+ -+struct irq_ops; -+ -+struct vgic_irq { -+ raw_spinlock_t irq_lock; -+ struct list_head lpi_list; -+ struct list_head ap_list; -+ struct kvm_vcpu *vcpu; -+ struct kvm_vcpu *target_vcpu; -+ u32 intid; -+ bool line_level; -+ bool pending_latch; -+ bool active; -+ bool enabled; -+ bool hw; -+ struct kref refcount; -+ u32 hwintid; -+ unsigned int host_irq; -+ union { -+ u8 targets; -+ u32 mpidr; -+ }; -+ u8 source; -+ u8 active_source; -+ u8 priority; -+ u8 group; -+ enum vgic_irq_config config; -+ struct irq_ops *ops; -+ void *owner; -+}; -+ -+enum iodev_type { -+ IODEV_CPUIF = 0, -+ IODEV_DIST = 1, -+ IODEV_REDIST = 2, -+ IODEV_ITS = 3, -+}; -+ -+struct kvm_io_device { -+ const struct kvm_io_device_ops *ops; -+}; -+ -+struct vgic_its; -+ -+struct vgic_register_region; -+ -+struct vgic_io_device { -+ gpa_t base_addr; -+ union { -+ struct kvm_vcpu *redist_vcpu; -+ struct vgic_its *its; -+ }; -+ const struct vgic_register_region *regions; -+ enum iodev_type iodev_type; -+ int nr_regions; -+ struct kvm_io_device dev; -+}; -+ -+struct vgic_redist_region; -+ -+struct vgic_cpu { -+ union { -+ struct vgic_v2_cpu_if vgic_v2; -+ struct vgic_v3_cpu_if vgic_v3; -+ }; -+ struct vgic_irq private_irqs[32]; -+ raw_spinlock_t ap_list_lock; -+ struct list_head ap_list_head; -+ struct vgic_io_device rd_iodev; -+ struct vgic_redist_region *rdreg; -+ u32 rdreg_index; -+ u64 pendbaser; -+ bool lpis_enabled; -+ u32 num_pri_bits; -+ u32 num_id_bits; -+}; -+ -+struct kvm_irq_level { -+ union { -+ __u32 irq; -+ __s32 status; -+ }; -+ __u32 level; -+}; -+ -+struct arch_timer_context { -+ struct kvm_vcpu *vcpu; -+ struct kvm_irq_level irq; -+ struct hrtimer hrtimer; -+ bool loaded; -+ u32 host_timer_irq; -+ u32 host_timer_irq_flags; -+}; -+ -+struct arch_timer_cpu { -+ struct arch_timer_context timers[2]; -+ struct hrtimer bg_timer; -+ bool enabled; -+}; -+ -+struct kvm_pmc { -+ u8 idx; -+ struct perf_event *perf_event; -+}; -+ -+struct kvm_pmu { -+ int irq_num; -+ struct kvm_pmc pmc[32]; -+ long unsigned int chained[1]; -+ bool created; -+ bool irq_level; -+ struct irq_work overflow_work; -+}; -+ -+struct vcpu_reset_state { -+ long unsigned int pc; -+ long unsigned int r0; -+ bool be; -+ bool reset; -+}; -+ -+struct kvm_s2_mmu; -+ -+struct kvm_vcpu_arch { -+ struct kvm_cpu_context ctxt; -+ void *sve_state; -+ unsigned int sve_max_vl; -+ struct kvm_s2_mmu *hw_mmu; -+ u64 hcr_el2; -+ u32 mdcr_el2; -+ struct kvm_vcpu_fault_info fault; -+ u64 workaround_flags; -+ u64 flags; -+ struct kvm_guest_debug_arch *debug_ptr; -+ struct kvm_guest_debug_arch vcpu_debug_state; -+ struct kvm_guest_debug_arch external_debug_state; -+ struct thread_info *host_thread_info; -+ struct user_fpsimd_state *host_fpsimd_state; -+ struct { -+ struct kvm_guest_debug_arch regs; -+ u64 pmscr_el1; -+ u64 trfcr_el1; -+ } host_debug_state; -+ struct vgic_cpu vgic_cpu; -+ struct arch_timer_cpu timer_cpu; -+ struct kvm_pmu pmu; -+ struct { -+ u32 mdscr_el1; -+ } guest_debug_preserved; -+ bool power_off; -+ bool pause; -+ struct kvm_mmu_memory_cache mmu_page_cache; -+ int target; -+ long unsigned int features[1]; -+ bool has_run_once; -+ u64 vsesr_el2; -+ struct vcpu_reset_state reset_state; -+ bool sysregs_loaded_on_cpu; -+ struct { -+ u64 last_steal; -+ gpa_t base; -+ } steal; -+}; -+ -+struct kvm_vcpu_stat { -+ struct kvm_vcpu_stat_generic generic; -+ u64 hvc_exit_stat; -+ u64 wfe_exit_stat; -+ u64 wfi_exit_stat; -+ u64 mmio_exit_user; -+ u64 mmio_exit_kernel; -+ u64 exits; -+}; -+ -+struct kvm_dirty_gfn; -+ -+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; -+ -+struct kvm_run; -+ -+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; -+ int pre_pcpu; -+ struct list_head blocked_vcpu_list; -+ struct mutex mutex; -+ struct kvm_run *run; -+ struct rcuwait wait; -+ struct pid *pid; -+ 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 { -+ bool in_spin_loop; -+ bool dy_eligible; -+ } spin_loop; -+ bool preempted; -+ bool ready; -+ struct kvm_vcpu_arch arch; -+ struct kvm_vcpu_stat stat; -+ char stats_id[48]; -+ struct kvm_dirty_ring dirty_ring; -+}; -+ -+struct preempt_ops { -+ void (*sched_in)(struct preempt_notifier *, int); -+ void (*sched_out)(struct preempt_notifier *, struct task_struct *); -+}; -+ -+typedef bool (*smp_cond_func_t)(int, void *); -+ -+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 trace_print_flags { -+ long unsigned int mask; -+ const char *name; -+}; -+ -+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; -+ -+struct mmu_notifier_range; -+ -+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); -+ void (*change_pte)(struct mmu_notifier *, struct mm_struct *, long unsigned int, pte_t); -+ 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 (*invalidate_range)(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_notifier_range { -+ struct vm_area_struct *vma; -+ struct mm_struct *mm; -+ long unsigned int start; -+ long unsigned int end; -+ unsigned int flags; -+ enum mmu_notifier_event event; -+ void *owner; -+}; -+ -+struct kvm_regs { -+ struct user_pt_regs regs; -+ __u64 sp_el1; -+ __u64 elr_el1; -+ __u64 spsr[5]; -+ long: 64; -+ struct user_fpsimd_state fp_regs; -+}; -+ -+struct kvm_sregs {}; -+ -+struct kvm_fpu {}; -+ -+struct kvm_debug_exit_arch { -+ __u32 hsr; -+ __u64 far; -+}; -+ -+struct kvm_sync_regs { -+ __u64 device_irq_level; -+}; -+ -+struct kvm_userspace_memory_region { -+ __u32 slot; -+ __u32 flags; -+ __u64 guest_phys_addr; -+ __u64 memory_size; -+ __u64 userspace_addr; -+}; -+ -+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; -+ __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 nr; -+ __u64 args[6]; -+ __u64 ret; -+ __u32 longmode; -+ __u32 pad; -+ } 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; -+ __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; -+ __u64 flags; -+ } 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; -+ 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_zone { -+ __u64 addr; -+ __u32 size; -+ union { -+ __u32 pad; -+ __u32 pio; -+ }; -+}; -+ -+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_translation { -+ __u64 linear_address; -+ __u64 physical_address; -+ __u8 valid; -+ __u8 writeable; -+ __u8 usermode; -+ __u8 pad[5]; -+}; -+ -+struct kvm_dirty_log { -+ __u32 slot; -+ __u32 padding1; -+ union { -+ void *dirty_bitmap; -+ __u64 padding2; -+ }; -+}; -+ -+struct kvm_clear_dirty_log { -+ __u32 slot; -+ __u32 num_pages; -+ __u64 first_page; -+ union { -+ void *dirty_bitmap; -+ __u64 padding2; -+ }; -+}; -+ -+struct kvm_signal_mask { -+ __u32 len; -+ __u8 sigset[0]; -+}; -+ -+struct kvm_mp_state { -+ __u32 mp_state; -+}; -+ -+struct kvm_guest_debug { -+ __u32 control; -+ __u32 pad; -+ struct kvm_guest_debug_arch arch; -+}; -+ -+struct kvm_ioeventfd { -+ __u64 datamatch; -+ __u64 addr; -+ __u32 len; -+ __s32 fd; -+ __u32 flags; -+ __u8 pad[36]; -+}; -+ -+struct kvm_enable_cap { -+ __u32 cap; -+ __u32 flags; -+ __u64 args[4]; -+ __u8 pad[64]; -+}; -+ -+struct kvm_irq_routing_irqchip { -+ __u32 irqchip; -+ __u32 pin; -+}; -+ -+struct kvm_irq_routing_msi { -+ __u32 address_lo; -+ __u32 address_hi; -+ __u32 data; -+ union { -+ __u32 pad; -+ __u32 devid; -+ }; -+}; -+ -+struct kvm_irq_routing_s390_adapter { -+ __u64 ind_addr; -+ __u64 summary_addr; -+ __u64 ind_offset; -+ __u32 summary_offset; -+ __u32 adapter_id; -+}; -+ -+struct kvm_irq_routing_hv_sint { -+ __u32 vcpu; -+ __u32 sint; -+}; -+ -+struct kvm_irq_routing_entry { -+ __u32 gsi; -+ __u32 type; -+ __u32 flags; -+ __u32 pad; -+ union { -+ struct kvm_irq_routing_irqchip irqchip; -+ struct kvm_irq_routing_msi msi; -+ struct kvm_irq_routing_s390_adapter adapter; -+ struct kvm_irq_routing_hv_sint hv_sint; -+ __u32 pad[8]; -+ } u; -+}; -+ -+struct kvm_irq_routing { -+ __u32 nr; -+ __u32 flags; -+ struct kvm_irq_routing_entry entries[0]; -+}; -+ -+struct kvm_irqfd { -+ __u32 fd; -+ __u32 gsi; -+ __u32 flags; -+ __u32 resamplefd; -+ __u8 pad[16]; -+}; -+ -+struct kvm_msi { -+ __u32 address_lo; -+ __u32 address_hi; -+ __u32 data; -+ __u32 flags; -+ __u32 devid; -+ __u8 pad[12]; -+}; -+ -+struct kvm_create_device { -+ __u32 type; -+ __u32 fd; -+ __u32 flags; -+}; -+ -+struct kvm_device_attr { -+ __u32 flags; -+ __u32 group; -+ __u64 attr; -+ __u64 addr; -+}; -+ -+enum kvm_device_type { -+ KVM_DEV_TYPE_FSL_MPIC_20 = 1, -+ KVM_DEV_TYPE_FSL_MPIC_42 = 2, -+ KVM_DEV_TYPE_XICS = 3, -+ KVM_DEV_TYPE_VFIO = 4, -+ KVM_DEV_TYPE_ARM_VGIC_V2 = 5, -+ KVM_DEV_TYPE_FLIC = 6, -+ KVM_DEV_TYPE_ARM_VGIC_V3 = 7, -+ KVM_DEV_TYPE_ARM_VGIC_ITS = 8, -+ KVM_DEV_TYPE_XIVE = 9, -+ KVM_DEV_TYPE_ARM_PV_TIME = 10, -+ KVM_DEV_TYPE_MAX = 11, -+}; -+ -+struct kvm_dirty_gfn { -+ __u32 flags; -+ __u32 slot; -+ __u64 offset; -+}; -+ -+struct kvm_stats_header { -+ __u32 flags; -+ __u32 name_size; -+ __u32 num_desc; -+ __u32 id_offset; -+ __u32 desc_offset; -+ __u32 data_offset; -+}; -+ -+struct kvm_stats_desc { -+ __u32 flags; -+ __s16 exponent; -+ __u16 size; -+ __u32 offset; -+ __u32 unused; -+ char name[0]; -+}; -+ -+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; -+ u32 vlpi_count[16]; -+}; -+ -+struct irq_ops { -+ long unsigned int flags; -+ bool (*get_input_level)(int); -+}; -+ -+struct kvm_device; -+ -+struct vgic_its { -+ gpa_t vgic_its_base; -+ bool enabled; -+ struct vgic_io_device iodev; -+ struct kvm_device *dev; -+ u64 baser_device_table; -+ u64 baser_coll_table; -+ struct mutex cmd_lock; -+ u64 cbaser; -+ u32 creadr; -+ u32 cwriter; -+ u32 abi_rev; -+ struct mutex its_lock; -+ struct list_head device_list; -+ struct list_head collection_list; -+}; -+ -+struct vgic_register_region { -+ unsigned int reg_offset; -+ unsigned int len; -+ unsigned int bits_per_irq; -+ unsigned int access_flags; -+ union { -+ long unsigned int (*read)(struct kvm_vcpu *, gpa_t, unsigned int); -+ long unsigned int (*its_read)(struct kvm *, struct vgic_its *, gpa_t, unsigned int); -+ }; -+ union { -+ void (*write)(struct kvm_vcpu *, gpa_t, unsigned int, long unsigned int); -+ void (*its_write)(struct kvm *, struct vgic_its *, gpa_t, unsigned int, long unsigned int); -+ }; -+ long unsigned int (*uaccess_read)(struct kvm_vcpu *, gpa_t, unsigned int); -+ union { -+ int (*uaccess_write)(struct kvm_vcpu *, gpa_t, unsigned int, long unsigned int); -+ int (*uaccess_its_write)(struct kvm *, struct vgic_its *, gpa_t, unsigned int, long unsigned int); -+ }; -+}; -+ -+struct kvm_device_ops; -+ -+struct kvm_device { -+ const struct kvm_device_ops *ops; -+ struct kvm *kvm; -+ void *private; -+ struct list_head vm_node; -+}; -+ -+struct vgic_redist_region { -+ u32 index; -+ gpa_t base; -+ u32 count; -+ u32 free_index; -+ struct list_head list; -+}; -+ -+struct vgic_state_iter; -+ -+struct vgic_dist { -+ bool in_kernel; -+ bool ready; -+ bool initialized; -+ u32 vgic_model; -+ u32 implementation_rev; -+ bool v2_groups_user_writable; -+ bool msis_require_devid; -+ int nr_spis; -+ gpa_t vgic_dist_base; -+ union { -+ gpa_t vgic_cpu_base; -+ struct list_head rd_regions; -+ }; -+ bool enabled; -+ bool nassgireq; -+ struct vgic_irq *spis; -+ struct vgic_io_device dist_iodev; -+ bool has_its; -+ u64 propbaser; -+ raw_spinlock_t lpi_list_lock; -+ struct list_head lpi_list_head; -+ int lpi_list_count; -+ struct list_head lpi_translation_cache; -+ struct vgic_state_iter *iter; -+ struct its_vm its_vm; -+}; -+ -+struct kvm_vmid { -+ u64 vmid_gen; -+ u32 vmid; -+}; -+ -+struct kvm_pgtable; -+ -+struct kvm_arch; -+ -+struct kvm_s2_mmu { -+ struct kvm_vmid vmid; -+ phys_addr_t pgd_phys; -+ struct kvm_pgtable *pgt; -+ int *last_vcpu_ran; -+ struct kvm_arch *arch; -+}; -+ -+struct kvm_arch { -+ struct kvm_s2_mmu mmu; -+ u64 vtcr; -+ int max_vcpus; -+ struct vgic_dist vgic; -+ u32 psci_version; -+ bool return_nisv_io_abort_to_user; -+ long unsigned int *pmu_filter; -+ unsigned int pmuver; -+ u8 pfr0_csv2; -+ u8 pfr0_csv3; -+ bool mte_enabled; -+}; -+ -+struct kvm_vm_stat { -+ struct kvm_vm_stat_generic generic; -+}; -+ -+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]; -+}; -+ -+struct kvm_gfn_range { -+ struct kvm_memory_slot *slot; -+ gfn_t start; -+ gfn_t end; -+ pte_t pte; -+ bool may_block; -+}; -+ -+enum { -+ OUTSIDE_GUEST_MODE = 0, -+ IN_GUEST_MODE = 1, -+ EXITING_GUEST_MODE = 2, -+ READING_SHADOW_PAGE_TABLES = 3, -+}; -+ -+struct kvm_host_map { -+ struct page *page; -+ void *hva; -+ kvm_pfn_t pfn; -+ kvm_pfn_t gfn; -+}; -+ -+struct kvm_memslots; -+ -+struct kvm_irq_routing_table; -+ -+struct kvm_stat_data; -+ -+struct kvm { -+ spinlock_t mmu_lock; -+ struct mutex slots_lock; -+ struct mutex slots_arch_lock; -+ struct mm_struct *mm; -+ struct kvm_memslots *memslots[1]; -+ struct kvm_vcpu *vcpus[512]; -+ atomic_t online_vcpus; -+ int created_vcpus; -+ int last_boosted_vcpu; -+ struct list_head vm_list; -+ struct mutex lock; -+ struct kvm_io_bus *buses[4]; -+ 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_notifier_seq; -+ long int mmu_notifier_count; -+ long unsigned int mmu_notifier_range_start; -+ long unsigned int mmu_notifier_range_end; -+ long int tlbs_dirty; -+ 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; -+ unsigned int max_halt_poll_ns; -+ u32 dirty_ring_size; -+ char stats_id[48]; -+}; -+ -+struct kvm_irq_routing_table { -+ int chip[988]; -+ u32 nr_rt_entries; -+ struct hlist_head map[0]; -+}; -+ -+struct kvm_memslots { -+ u64 generation; -+ short int id_to_index[32767]; -+ atomic_t lru_slot; -+ int used_slots; -+ struct kvm_memory_slot memslots[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; -+}; -+ -+enum kvm_mr_change { -+ KVM_MR_CREATE = 0, -+ KVM_MR_DELETE = 1, -+ KVM_MR_MOVE = 2, -+ KVM_MR_FLAGS_ONLY = 3, -+}; -+ -+struct _kvm_stats_desc { -+ struct kvm_stats_desc desc; -+ char name[48]; -+}; -+ -+struct kvm_device_ops { -+ const char *name; -+ int (*create)(struct kvm_device *, u32); -+ void (*init)(struct kvm_device *); -+ void (*destroy)(struct kvm_device *); -+ void (*release)(struct kvm_device *); -+ int (*set_attr)(struct kvm_device *, struct kvm_device_attr *); -+ int (*get_attr)(struct kvm_device *, struct kvm_device_attr *); -+ int (*has_attr)(struct kvm_device *, struct kvm_device_attr *); -+ long int (*ioctl)(struct kvm_device *, unsigned int, long unsigned int); -+ int (*mmap)(struct kvm_device *, struct vm_area_struct *); -+}; -+ -+typedef int (*kvm_vm_thread_fn_t)(struct kvm *, uintptr_t); -+ -+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 syscore_ops { -+ struct list_head node; -+ int (*suspend)(); -+ void (*resume)(); -+ void (*shutdown)(); -+}; -+ -+struct trace_event_raw_kvm_userspace_exit { -+ struct trace_entry ent; -+ __u32 reason; -+ int errno; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_vcpu_wakeup { -+ struct trace_entry ent; -+ __u64 ns; -+ bool waited; -+ bool valid; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_set_irq { -+ struct trace_entry ent; -+ unsigned int gsi; -+ int level; -+ int irq_source_id; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_ack_irq { -+ struct trace_entry ent; -+ unsigned int irqchip; -+ unsigned int pin; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_mmio { -+ struct trace_entry ent; -+ u32 type; -+ u32 len; -+ u64 gpa; -+ u64 val; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_fpu { -+ struct trace_entry ent; -+ u32 load; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_halt_poll_ns { -+ struct trace_entry ent; -+ bool grow; -+ unsigned int vcpu_id; -+ unsigned int new; -+ unsigned int old; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_dirty_ring_push { -+ struct trace_entry ent; -+ int index; -+ u32 dirty_index; -+ u32 reset_index; -+ u32 slot; -+ u64 offset; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_dirty_ring_reset { -+ struct trace_entry ent; -+ int index; -+ u32 dirty_index; -+ u32 reset_index; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_dirty_ring_exit { -+ struct trace_entry ent; -+ int vcpu_id; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_unmap_hva_range { -+ struct trace_entry ent; -+ long unsigned int start; -+ long unsigned int end; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_set_spte_hva { -+ struct trace_entry ent; -+ long unsigned int hva; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_age_hva { -+ struct trace_entry ent; -+ long unsigned int start; -+ long unsigned int end; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_test_age_hva { -+ struct trace_entry ent; -+ long unsigned int hva; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_kvm_userspace_exit {}; -+ -+struct trace_event_data_offsets_kvm_vcpu_wakeup {}; -+ -+struct trace_event_data_offsets_kvm_set_irq {}; -+ -+struct trace_event_data_offsets_kvm_ack_irq {}; -+ -+struct trace_event_data_offsets_kvm_mmio {}; -+ -+struct trace_event_data_offsets_kvm_fpu {}; -+ -+struct trace_event_data_offsets_kvm_halt_poll_ns {}; -+ -+struct trace_event_data_offsets_kvm_dirty_ring_push {}; -+ -+struct trace_event_data_offsets_kvm_dirty_ring_reset {}; -+ -+struct trace_event_data_offsets_kvm_dirty_ring_exit {}; -+ -+struct trace_event_data_offsets_kvm_unmap_hva_range {}; -+ -+struct trace_event_data_offsets_kvm_set_spte_hva {}; -+ -+struct trace_event_data_offsets_kvm_age_hva {}; -+ -+struct trace_event_data_offsets_kvm_test_age_hva {}; -+ -+typedef void (*btf_trace_kvm_userspace_exit)(void *, __u32, int); -+ -+typedef void (*btf_trace_kvm_vcpu_wakeup)(void *, __u64, bool, bool); -+ -+typedef void (*btf_trace_kvm_set_irq)(void *, unsigned int, int, int); -+ -+typedef void (*btf_trace_kvm_ack_irq)(void *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_kvm_mmio)(void *, int, int, u64, void *); -+ -+typedef void (*btf_trace_kvm_fpu)(void *, int); -+ -+typedef void (*btf_trace_kvm_halt_poll_ns)(void *, bool, unsigned int, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_kvm_dirty_ring_push)(void *, struct kvm_dirty_ring *, u32, u64); -+ -+typedef void (*btf_trace_kvm_dirty_ring_reset)(void *, struct kvm_dirty_ring *); -+ -+typedef void (*btf_trace_kvm_dirty_ring_exit)(void *, struct kvm_vcpu *); -+ -+typedef void (*btf_trace_kvm_unmap_hva_range)(void *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_kvm_set_spte_hva)(void *, long unsigned int); -+ -+typedef void (*btf_trace_kvm_age_hva)(void *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_kvm_test_age_hva)(void *, long unsigned int); -+ -+typedef bool (*hva_handler_t)(struct kvm *, struct kvm_gfn_range *); -+ -+typedef void (*on_lock_fn_t)(struct kvm *, long unsigned int, long unsigned int); -+ -+struct kvm_hva_range { -+ long unsigned int start; -+ long unsigned int end; -+ pte_t pte; -+ hva_handler_t handler; -+ on_lock_fn_t on_lock; -+ bool flush_on_ret; -+ bool may_block; -+}; -+ -+struct kvm_cpu_compat_check { -+ void *opaque; -+ int *ret; -+}; -+ -+struct kvm_vm_worker_thread_context { -+ struct kvm *kvm; -+ struct task_struct *parent; -+ struct completion init_done; -+ kvm_vm_thread_fn_t thread_fn; -+ uintptr_t data; -+ int err; -+}; -+ -+struct kvm_coalesced_mmio_dev { -+ struct list_head list; -+ struct kvm_io_device dev; -+ struct kvm *kvm; -+ struct kvm_coalesced_mmio_zone zone; -+}; -+ -+enum { -+ WORK_STRUCT_PENDING_BIT = 0, -+ WORK_STRUCT_DELAYED_BIT = 1, -+ WORK_STRUCT_PWQ_BIT = 2, -+ WORK_STRUCT_LINKED_BIT = 3, -+ WORK_STRUCT_COLOR_SHIFT = 4, -+ WORK_STRUCT_COLOR_BITS = 4, -+ WORK_STRUCT_PENDING = 1, -+ WORK_STRUCT_DELAYED = 2, -+ WORK_STRUCT_PWQ = 4, -+ WORK_STRUCT_LINKED = 8, -+ WORK_STRUCT_STATIC = 0, -+ WORK_NR_COLORS = 15, -+ WORK_NO_COLOR = 15, -+ WORK_CPU_UNBOUND = 4096, -+ WORK_STRUCT_FLAG_BITS = 8, -+ WORK_OFFQ_FLAG_BASE = 4, -+ __WORK_OFFQ_CANCELING = 4, -+ WORK_OFFQ_CANCELING = 16, -+ WORK_OFFQ_FLAG_BITS = 1, -+ WORK_OFFQ_POOL_SHIFT = 5, -+ WORK_OFFQ_LEFT = 59, -+ WORK_OFFQ_POOL_BITS = 31, -+ WORK_OFFQ_POOL_NONE = 2147483647, -+ WORK_STRUCT_FLAG_MASK = 255, -+ WORK_STRUCT_WQ_DATA_MASK = 4294967040, -+ WORK_STRUCT_NO_POOL = 4294967264, -+ WORK_BUSY_PENDING = 1, -+ WORK_BUSY_RUNNING = 2, -+ WORKER_DESC_LEN = 24, -+}; -+ -+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 *); -+}; -+ -+enum { -+ kvm_ioeventfd_flag_nr_datamatch = 0, -+ kvm_ioeventfd_flag_nr_pio = 1, -+ kvm_ioeventfd_flag_nr_deassign = 2, -+ kvm_ioeventfd_flag_nr_virtio_ccw_notify = 3, -+ kvm_ioeventfd_flag_nr_fast_mmio = 4, -+ kvm_ioeventfd_flag_nr_max = 5, -+}; -+ -+struct fd { -+ struct file *file; -+ unsigned int flags; -+}; -+ -+struct kvm_s390_adapter_int { -+ u64 ind_addr; -+ u64 summary_addr; -+ u64 ind_offset; -+ u32 summary_offset; -+ u32 adapter_id; -+}; -+ -+struct kvm_hv_sint { -+ u32 vcpu; -+ u32 sint; -+}; -+ -+struct kvm_kernel_irq_routing_entry { -+ u32 gsi; -+ u32 type; -+ int (*set)(struct kvm_kernel_irq_routing_entry *, struct kvm *, int, int, bool); -+ union { -+ struct { -+ unsigned int irqchip; -+ unsigned int pin; -+ } irqchip; -+ struct { -+ u32 address_lo; -+ u32 address_hi; -+ u32 data; -+ u32 flags; -+ u32 devid; -+ } msi; -+ struct kvm_s390_adapter_int adapter; -+ struct kvm_hv_sint hv_sint; -+ }; -+ struct hlist_node link; -+}; -+ -+struct kvm_irq_ack_notifier { -+ struct hlist_node link; -+ unsigned int gsi; -+ void (*irq_acked)(struct kvm_irq_ack_notifier *); -+}; -+ -+typedef struct poll_table_struct poll_table; -+ -+struct kvm_kernel_irqfd_resampler { -+ struct kvm *kvm; -+ struct list_head list; -+ struct kvm_irq_ack_notifier notifier; -+ struct list_head link; -+}; -+ -+struct kvm_kernel_irqfd { -+ struct kvm *kvm; -+ wait_queue_entry_t wait; -+ struct kvm_kernel_irq_routing_entry irq_entry; -+ seqcount_spinlock_t irq_entry_sc; -+ int gsi; -+ struct work_struct inject; -+ struct kvm_kernel_irqfd_resampler *resampler; -+ struct eventfd_ctx *resamplefd; -+ struct list_head resampler_link; -+ struct eventfd_ctx *eventfd; -+ struct list_head list; -+ poll_table pt; -+ struct work_struct shutdown; -+ struct irq_bypass_consumer consumer; -+ struct irq_bypass_producer *producer; -+}; -+ -+struct _ioeventfd { -+ struct list_head list; -+ u64 addr; -+ int length; -+ struct eventfd_ctx *eventfd; -+ u64 datamatch; -+ struct kvm_io_device dev; -+ u8 bus_idx; -+ bool wildcard; -+}; -+ -+struct vfio_group; -+ -+struct kvm_vfio_group { -+ struct list_head node; -+ struct vfio_group *vfio_group; -+}; -+ -+struct kvm_vfio { -+ struct list_head group_list; -+ struct mutex lock; -+ bool noncoherent; -+}; -+ -+struct psci_0_1_function_ids { -+ u32 cpu_suspend; -+ u32 cpu_on; -+ u32 cpu_off; -+ u32 migrate; -+}; -+ -+struct kvm_vcpu_init { -+ __u32 target; -+ __u32 features[7]; -+}; -+ -+struct kvm_vcpu_events { -+ struct { -+ __u8 serror_pending; -+ __u8 serror_has_esr; -+ __u8 ext_dabt_pending; -+ __u8 pad[5]; -+ __u64 serror_esr; -+ } exception; -+ __u32 reserved[12]; -+}; -+ -+struct kvm_arm_copy_mte_tags { -+ __u64 guest_ipa; -+ __u64 length; -+ void *addr; -+ __u64 flags; -+ __u64 reserved[2]; -+}; -+ -+struct kvm_reg_list { -+ __u64 n; -+ __u64 reg[0]; -+}; -+ -+struct kvm_one_reg { -+ __u64 id; -+ __u64 addr; -+}; -+ -+struct kvm_arm_device_addr { -+ __u64 id; -+ __u64 addr; -+}; -+ -+struct kvm_nvhe_init_params { -+ long unsigned int mair_el2; -+ long unsigned int tcr_el2; -+ long unsigned int tpidr_el2; -+ long unsigned int stack_hyp_va; -+ phys_addr_t pgd_pa; -+ long unsigned int hcr_el2; -+ long unsigned int vttbr; -+ long unsigned int vtcr; -+}; -+ -+enum vgic_type { -+ VGIC_V2 = 0, -+ VGIC_V3 = 1, -+}; -+ -+struct vgic_global { -+ enum vgic_type type; -+ phys_addr_t vcpu_base; -+ void *vcpu_base_va; -+ void *vcpu_hyp_va; -+ void *vctrl_base; -+ void *vctrl_hyp; -+ int nr_lr; -+ unsigned int maint_irq; -+ int max_gic_vcpus; -+ bool can_emulate_gicv2; -+ bool has_gicv4; -+ bool has_gicv4_1; -+ bool no_hw_deactivation; -+ struct static_key_false gicv3_cpuif; -+ u32 ich_vtr_el2; -+}; -+ -+struct timer_map { -+ struct arch_timer_context *direct_vtimer; -+ struct arch_timer_context *direct_ptimer; -+ struct arch_timer_context *emul_ptimer; -+}; -+ -+typedef u64 kvm_pte_t; -+ -+enum kvm_pgtable_stage2_flags { -+ KVM_PGTABLE_S2_NOFWB = 1, -+ KVM_PGTABLE_S2_IDMAP = 2, -+}; -+ -+struct kvm_pgtable_mm_ops; -+ -+struct kvm_pgtable { -+ u32 ia_bits; -+ u32 start_level; -+ kvm_pte_t *pgd; -+ struct kvm_pgtable_mm_ops *mm_ops; -+ struct kvm_s2_mmu *mmu; -+ enum kvm_pgtable_stage2_flags flags; -+}; -+ -+struct kvm_pmu_events { -+ u32 events_host; -+ u32 events_guest; -+}; -+ -+struct kvm_host_data { -+ struct kvm_cpu_context host_ctxt; -+ struct kvm_pmu_events pmu_events; -+ long: 64; -+}; -+ -+struct kvm_host_psci_config { -+ u32 version; -+ struct psci_0_1_function_ids function_ids_0_1; -+ bool psci_0_1_cpu_suspend_implemented; -+ bool psci_0_1_cpu_on_implemented; -+ bool psci_0_1_cpu_off_implemented; -+ bool psci_0_1_migrate_implemented; -+}; -+ -+struct trace_event_raw_kvm_entry { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_exit { -+ struct trace_entry ent; -+ int ret; -+ unsigned int esr_ec; -+ long unsigned int vcpu_pc; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_guest_fault { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ long unsigned int hsr; -+ long unsigned int hxfar; -+ long long unsigned int ipa; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_access_fault { -+ struct trace_entry ent; -+ long unsigned int ipa; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_irq_line { -+ struct trace_entry ent; -+ unsigned int type; -+ int vcpu_idx; -+ int irq_num; -+ int level; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_mmio_emulate { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ long unsigned int instr; -+ long unsigned int cpsr; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_set_way_flush { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ bool cache; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_toggle_cache { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ bool was; -+ bool now; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_timer_update_irq { -+ struct trace_entry ent; -+ long unsigned int vcpu_id; -+ __u32 irq; -+ int level; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_get_timer_map { -+ struct trace_entry ent; -+ long unsigned int vcpu_id; -+ int direct_vtimer; -+ int direct_ptimer; -+ int emul_ptimer; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_timer_save_state { -+ struct trace_entry ent; -+ long unsigned int ctl; -+ long long unsigned int cval; -+ int timer_idx; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_timer_restore_state { -+ struct trace_entry ent; -+ long unsigned int ctl; -+ long long unsigned int cval; -+ int timer_idx; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_timer_hrtimer_expire { -+ struct trace_entry ent; -+ int timer_idx; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_timer_emulate { -+ struct trace_entry ent; -+ int timer_idx; -+ bool should_fire; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_kvm_entry {}; -+ -+struct trace_event_data_offsets_kvm_exit {}; -+ -+struct trace_event_data_offsets_kvm_guest_fault {}; -+ -+struct trace_event_data_offsets_kvm_access_fault {}; -+ -+struct trace_event_data_offsets_kvm_irq_line {}; -+ -+struct trace_event_data_offsets_kvm_mmio_emulate {}; -+ -+struct trace_event_data_offsets_kvm_set_way_flush {}; -+ -+struct trace_event_data_offsets_kvm_toggle_cache {}; -+ -+struct trace_event_data_offsets_kvm_timer_update_irq {}; -+ -+struct trace_event_data_offsets_kvm_get_timer_map {}; -+ -+struct trace_event_data_offsets_kvm_timer_save_state {}; -+ -+struct trace_event_data_offsets_kvm_timer_restore_state {}; -+ -+struct trace_event_data_offsets_kvm_timer_hrtimer_expire {}; -+ -+struct trace_event_data_offsets_kvm_timer_emulate {}; -+ -+typedef void (*btf_trace_kvm_entry)(void *, long unsigned int); -+ -+typedef void (*btf_trace_kvm_exit)(void *, int, unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_kvm_guest_fault)(void *, long unsigned int, long unsigned int, long unsigned int, long long unsigned int); -+ -+typedef void (*btf_trace_kvm_access_fault)(void *, long unsigned int); -+ -+typedef void (*btf_trace_kvm_irq_line)(void *, unsigned int, int, int, int); -+ -+typedef void (*btf_trace_kvm_mmio_emulate)(void *, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_kvm_set_way_flush)(void *, long unsigned int, bool); -+ -+typedef void (*btf_trace_kvm_toggle_cache)(void *, long unsigned int, bool, bool); -+ -+typedef void (*btf_trace_kvm_timer_update_irq)(void *, long unsigned int, __u32, int); -+ -+typedef void (*btf_trace_kvm_get_timer_map)(void *, long unsigned int, struct timer_map *); -+ -+typedef void (*btf_trace_kvm_timer_save_state)(void *, struct arch_timer_context *); -+ -+typedef void (*btf_trace_kvm_timer_restore_state)(void *, struct arch_timer_context *); -+ -+typedef void (*btf_trace_kvm_timer_hrtimer_expire)(void *, struct arch_timer_context *); -+ -+typedef void (*btf_trace_kvm_timer_emulate)(void *, struct arch_timer_context *, bool); -+ -+struct kvm_pgtable_mm_ops { -+ void * (*zalloc_page)(void *); -+ void * (*zalloc_pages_exact)(size_t); -+ void (*free_pages_exact)(void *, size_t); -+ void (*get_page)(void *); -+ void (*put_page)(void *); -+ int (*page_count)(void *); -+ void * (*phys_to_virt)(phys_addr_t); -+ phys_addr_t (*virt_to_phys)(void *); -+ void (*dcache_clean_inval_poc)(void *, size_t); -+ void (*icache_inval_pou)(void *, size_t); -+}; -+ -+enum kvm_pgtable_prot { -+ KVM_PGTABLE_PROT_X = 1, -+ KVM_PGTABLE_PROT_W = 2, -+ KVM_PGTABLE_PROT_R = 4, -+ KVM_PGTABLE_PROT_DEVICE = 8, -+}; -+ -+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 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 kvm_arch_timers { -+ TIMER_PTIMER = 0, -+ TIMER_VTIMER = 1, -+ NR_KVM_TIMERS = 2, -+}; -+ -+enum clocksource_ids { -+ CSID_GENERIC = 0, -+ CSID_ARM_ARCH_COUNTER = 1, -+ CSID_MAX = 2, -+}; -+ -+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 sys_reg_params { -+ u8 Op0; -+ u8 Op1; -+ u8 CRn; -+ u8 CRm; -+ u8 Op2; -+ u64 regval; -+ bool is_write; -+}; -+ -+struct sys_reg_desc { -+ const char *name; -+ enum { -+ AA32_ZEROHIGH = 0, -+ AA32_LO = 1, -+ AA32_HI = 2, -+ } aarch32_map; -+ u8 Op0; -+ u8 Op1; -+ u8 CRn; -+ u8 CRm; -+ u8 Op2; -+ bool (*access)(struct kvm_vcpu *, struct sys_reg_params *, const struct sys_reg_desc *); -+ void (*reset)(struct kvm_vcpu *, const struct sys_reg_desc *); -+ int reg; -+ u64 val; -+ int (*__get_user)(struct kvm_vcpu *, const struct sys_reg_desc *, const struct kvm_one_reg *, void *); -+ int (*set_user)(struct kvm_vcpu *, const struct sys_reg_desc *, const struct kvm_one_reg *, void *); -+ unsigned int (*visibility)(const struct kvm_vcpu *, const struct sys_reg_desc *); -+}; -+ -+struct trace_event_raw_kvm_wfx_arm64 { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ bool is_wfe; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_hvc_arm64 { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ long unsigned int r0; -+ long unsigned int imm; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_arm_setup_debug { -+ struct trace_entry ent; -+ struct kvm_vcpu *vcpu; -+ __u32 guest_debug; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_arm_clear_debug { -+ struct trace_entry ent; -+ __u32 guest_debug; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_arm_set_dreg32 { -+ struct trace_entry ent; -+ const char *name; -+ __u32 value; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_arm_set_regset { -+ struct trace_entry ent; -+ const char *name; -+ int len; -+ u64 ctrls[16]; -+ u64 values[16]; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_trap_reg { -+ struct trace_entry ent; -+ const char *fn; -+ int reg; -+ bool is_write; -+ u64 write_value; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_handle_sys_reg { -+ struct trace_entry ent; -+ long unsigned int hsr; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_sys_access { -+ struct trace_entry ent; -+ long unsigned int vcpu_pc; -+ bool is_write; -+ const char *name; -+ u8 Op0; -+ u8 Op1; -+ u8 CRn; -+ u8 CRm; -+ u8 Op2; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kvm_set_guest_debug { -+ struct trace_entry ent; -+ struct kvm_vcpu *vcpu; -+ __u32 guest_debug; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_kvm_wfx_arm64 {}; -+ -+struct trace_event_data_offsets_kvm_hvc_arm64 {}; -+ -+struct trace_event_data_offsets_kvm_arm_setup_debug {}; -+ -+struct trace_event_data_offsets_kvm_arm_clear_debug {}; -+ -+struct trace_event_data_offsets_kvm_arm_set_dreg32 {}; -+ -+struct trace_event_data_offsets_kvm_arm_set_regset {}; -+ -+struct trace_event_data_offsets_trap_reg {}; -+ -+struct trace_event_data_offsets_kvm_handle_sys_reg {}; -+ -+struct trace_event_data_offsets_kvm_sys_access {}; -+ -+struct trace_event_data_offsets_kvm_set_guest_debug {}; -+ -+typedef void (*btf_trace_kvm_wfx_arm64)(void *, long unsigned int, bool); -+ -+typedef void (*btf_trace_kvm_hvc_arm64)(void *, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_kvm_arm_setup_debug)(void *, struct kvm_vcpu *, __u32); -+ -+typedef void (*btf_trace_kvm_arm_clear_debug)(void *, __u32); -+ -+typedef void (*btf_trace_kvm_arm_set_dreg32)(void *, const char *, __u32); -+ -+typedef void (*btf_trace_kvm_arm_set_regset)(void *, const char *, int, __u64 *, __u64 *); -+ -+typedef void (*btf_trace_trap_reg)(void *, const char *, int, bool, u64); -+ -+typedef void (*btf_trace_kvm_handle_sys_reg)(void *, long unsigned int); -+ -+typedef void (*btf_trace_kvm_sys_access)(void *, long unsigned int, struct sys_reg_params *, const struct sys_reg_desc *); -+ -+typedef void (*btf_trace_kvm_set_guest_debug)(void *, struct kvm_vcpu *, __u32); -+ -+typedef int (*exit_handle_fn)(struct kvm_vcpu *); -+ -+struct sve_state_reg_region { -+ unsigned int koffset; -+ unsigned int klen; -+ unsigned int upad; -+}; -+ -+struct va_format { -+ const char *fmt; -+ va_list *va; -+}; -+ -+enum kvm_arch_timer_regs { -+ TIMER_REG_CNT = 0, -+ TIMER_REG_CVAL = 1, -+ TIMER_REG_TVAL = 2, -+ TIMER_REG_CTL = 3, -+}; -+ -+struct vgic_vmcr { -+ u32 grpen0; -+ u32 grpen1; -+ u32 ackctl; -+ u32 fiqen; -+ u32 cbpr; -+ u32 eoim; -+ u32 abpr; -+ u32 bpr; -+ u32 pmr; -+}; -+ -+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; -+}; -+ -+struct arch_timer_kvm_info { -+ struct timecounter timecounter; -+ int virtual_irq; -+ int physical_irq; -+}; -+ -+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 { -+ IRQCHIP_FWNODE_REAL = 0, -+ IRQCHIP_FWNODE_NAMED = 1, -+ IRQCHIP_FWNODE_NAMED_ID = 2, -+}; -+ -+typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); -+ -+struct trace_event_raw_vgic_update_irq_pending { -+ struct trace_entry ent; -+ long unsigned int vcpu_id; -+ __u32 irq; -+ bool level; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_vgic_update_irq_pending {}; -+ -+typedef void (*btf_trace_vgic_update_irq_pending)(void *, long unsigned int, __u32, bool); -+ -+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; -+}; -+ -+struct its_vlpi_map { -+ struct its_vm *vm; -+ struct its_vpe *vpe; -+ u32 vintid; -+ u8 properties; -+ bool db_enabled; -+}; -+ -+struct vgic_reg_attr { -+ struct kvm_vcpu *vcpu; -+ gpa_t addr; -+}; -+ -+struct its_device { -+ struct list_head dev_list; -+ struct list_head itt_head; -+ u32 num_eventid_bits; -+ gpa_t itt_addr; -+ u32 device_id; -+}; -+ -+struct its_collection { -+ struct list_head coll_list; -+ u32 collection_id; -+ u32 target_addr; -+}; -+ -+struct its_ite { -+ struct list_head ite_list; -+ struct vgic_irq *irq; -+ struct its_collection *collection; -+ u32 event_id; -+}; -+ -+struct vgic_translation_cache_entry { -+ struct list_head entry; -+ phys_addr_t db; -+ u32 devid; -+ u32 eventid; -+ struct vgic_irq *irq; -+}; -+ -+struct vgic_its_abi { -+ int cte_esz; -+ int dte_esz; -+ int ite_esz; -+ int (*save_tables)(struct vgic_its *); -+ int (*restore_tables)(struct vgic_its *); -+ int (*commit)(struct vgic_its *); -+}; -+ -+typedef int (*entry_fn_t)(struct vgic_its *, u32, void *, void *); -+ -+struct vgic_state_iter { -+ int nr_cpus; -+ int nr_spis; -+ int nr_lpis; -+ int dist_id; -+ int vcpu_id; -+ int intid; -+ int lpi_idx; -+ u32 *lpi_array; -+}; -+ -+struct kvm_pmu_event_filter { -+ __u16 base_event; -+ __u16 nevents; -+ __u8 action; -+ __u8 pad[3]; -+}; -+ -+struct tlb_inv_context { -+ long unsigned int flags; -+ u64 tcr; -+ u64 sctlr; -+}; -+ -+enum exception_type { -+ except_type_sync = 0, -+ except_type_irq = 128, -+ except_type_fiq = 256, -+ except_type_serror = 384, -+}; -+ -+union hyp_spinlock { -+ u32 __val; -+ struct { -+ u16 owner; -+ u16 next; -+ }; -+}; -+ -+typedef union hyp_spinlock hyp_spinlock_t; -+ -+struct host_kvm { -+ struct kvm_arch arch; -+ struct kvm_pgtable pgt; -+ struct kvm_pgtable_mm_ops mm_ops; -+ hyp_spinlock_t lock; -+}; -+ -+struct tlb_inv_context___2 { -+ u64 tcr; -+}; -+ -+typedef void (*hcall_t)(struct kvm_cpu_context *); -+ -+struct psci_boot_args { -+ atomic_t lock; -+ long unsigned int pc; -+ long unsigned int r0; -+}; -+ -+struct hyp_page { -+ short unsigned int refcount; -+ short unsigned int order; -+}; -+ -+struct hyp_pool { -+ hyp_spinlock_t lock; -+ struct list_head free_area[13]; -+ phys_addr_t range_start; -+ phys_addr_t range_end; -+ short unsigned int max_order; -+}; -+ -+struct kvm_mem_range { -+ u64 start; -+ u64 end; -+}; -+ -+enum kvm_pgtable_walk_flags { -+ KVM_PGTABLE_WALK_LEAF = 1, -+ KVM_PGTABLE_WALK_TABLE_PRE = 2, -+ KVM_PGTABLE_WALK_TABLE_POST = 4, -+}; -+ -+typedef int (*kvm_pgtable_visitor_fn_t)(u64, u64, u32, kvm_pte_t *, enum kvm_pgtable_walk_flags, void * const); -+ -+struct kvm_pgtable_walker { -+ const kvm_pgtable_visitor_fn_t cb; -+ void * const arg; -+ const enum kvm_pgtable_walk_flags flags; -+}; -+ -+struct kvm_pgtable_walk_data { -+ struct kvm_pgtable *pgt; -+ struct kvm_pgtable_walker *walker; -+ u64 addr; -+ u64 end; -+}; -+ -+struct hyp_map_data { -+ u64 phys; -+ kvm_pte_t attr; -+ struct kvm_pgtable_mm_ops *mm_ops; -+}; -+ -+struct stage2_map_data { -+ u64 phys; -+ kvm_pte_t attr; -+ u8 owner_id; -+ kvm_pte_t *anchor; -+ kvm_pte_t *childp; -+ struct kvm_s2_mmu *mmu; -+ void *memcache; -+ struct kvm_pgtable_mm_ops *mm_ops; -+}; -+ -+struct stage2_attr_data { -+ kvm_pte_t attr_set; -+ kvm_pte_t attr_clr; -+ kvm_pte_t pte; -+ u32 level; -+ struct kvm_pgtable_mm_ops *mm_ops; -+}; -+ -+struct arm_smccc_1_2_regs { -+ long unsigned int a0; -+ long unsigned int a1; -+ long unsigned int a2; -+ long unsigned int a3; -+ long unsigned int a4; -+ long unsigned int a5; -+ long unsigned int a6; -+ long unsigned int a7; -+ long unsigned int a8; -+ long unsigned int a9; -+ long unsigned int a10; -+ long unsigned int a11; -+ long unsigned int a12; -+ long unsigned int a13; -+ long unsigned int a14; -+ long unsigned int a15; -+ long unsigned int a16; -+ long unsigned int a17; -+}; -+ -+struct hv_get_vp_registers_output { -+ union { -+ struct { -+ u32 a; -+ u32 b; -+ u32 c; -+ u32 d; -+ } as32; -+ struct { -+ u64 low; -+ u64 high; -+ } as64; -+ }; -+}; -+ -+struct ms_hyperv_info { -+ u32 features; -+ u32 priv_high; -+ u32 misc_features; -+ u32 hints; -+ u32 nested_features; -+ u32 max_vp_index; -+ u32 max_lp_index; -+ u32 isolation_config_a; -+ u32 isolation_config_b; -+}; -+ -+typedef void (*exitcall_t)(); -+ -+struct crypto_alg; -+ -+struct crypto_tfm { -+ u32 crt_flags; -+ int node; -+ void (*exit)(struct crypto_tfm *); -+ struct crypto_alg *__crt_alg; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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_istat_aead { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_akcipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t verify_cnt; -+ atomic64_t sign_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_cipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_compress { -+ atomic64_t compress_cnt; -+ atomic64_t compress_tlen; -+ atomic64_t decompress_cnt; -+ atomic64_t decompress_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_hash { -+ atomic64_t hash_cnt; -+ atomic64_t hash_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_kpp { -+ atomic64_t setsecret_cnt; -+ atomic64_t generate_public_key_cnt; -+ atomic64_t compute_shared_secret_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_rng { -+ atomic64_t generate_cnt; -+ atomic64_t generate_tlen; -+ atomic64_t seed_cnt; -+ atomic64_t err_cnt; -+}; -+ -+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; -+ union { -+ struct crypto_istat_aead aead; -+ struct crypto_istat_akcipher akcipher; -+ struct crypto_istat_cipher cipher; -+ struct crypto_istat_compress compress; -+ struct crypto_istat_hash hash; -+ struct crypto_istat_rng rng; -+ struct crypto_istat_kpp kpp; -+ } stats; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct crypto_instance; -+ -+struct crypto_type { -+ unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); -+ unsigned int (*extsize)(struct crypto_alg *); -+ int (*init)(struct crypto_tfm *, u32, u32); -+ 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 cpu_feature { -+ __u16 feature; -+}; -+ -+struct aes_block { -+ u8 b[16]; -+}; -+ -+struct crypto_async_request; -+ -+typedef void (*crypto_completion_t)(struct crypto_async_request *, int); -+ -+struct crypto_async_request { -+ struct list_head list; -+ crypto_completion_t complete; -+ void *data; -+ struct crypto_tfm *tfm; -+ u32 flags; -+}; -+ -+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; -+ }; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 scatter_walk { -+ struct scatterlist *sg; -+ unsigned int offset; -+}; -+ -+struct aead_request { -+ struct crypto_async_request base; -+ unsigned int assoclen; -+ unsigned int cryptlen; -+ u8 *iv; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_alg base; -+}; -+ -+struct crypto_aead { -+ unsigned int authsize; -+ unsigned int reqsize; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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 skcipher_request { -+ unsigned int cryptlen; -+ u8 *iv; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ struct crypto_async_request base; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *__ctx[0]; -+}; -+ -+struct crypto_skcipher { -+ unsigned int reqsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 crypto_tfm base; -+}; -+ -+struct skcipher_alg { -+ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct skcipher_request *); -+ int (*decrypt)(struct skcipher_request *); -+ int (*init)(struct crypto_skcipher *); -+ void (*exit)(struct crypto_skcipher *); -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+ unsigned int chunksize; -+ unsigned int walksize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_alg base; -+}; -+ -+struct crypto_shash; -+ -+struct shash_desc { -+ struct crypto_shash *tfm; -+ void *__ctx[0]; -+}; -+ -+struct crypto_shash { -+ unsigned int descsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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 *); -+ unsigned int descsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ unsigned int digestsize; -+ unsigned int statesize; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 crypto_alg base; -+}; -+ -+typedef struct { -+ __be64 a; -+ __be64 b; -+} be128; -+ -+struct crypto_aes_xts_ctx { -+ struct crypto_aes_ctx key1; -+ int: 32; -+ struct crypto_aes_ctx key2; -+ int: 32; -+}; -+ -+struct crypto_aes_essiv_cbc_ctx { -+ struct crypto_aes_ctx key1; -+ int: 32; -+ struct crypto_aes_ctx key2; -+ struct crypto_shash *hash; -+}; -+ -+struct mac_tfm_ctx { -+ struct crypto_aes_ctx key; -+ int: 32; -+ u8 consts[0]; -+}; -+ -+struct mac_desc_ctx { -+ unsigned int len; -+ u8 dg[16]; -+}; -+ -+struct simd_skcipher_alg; -+ -+struct chacha_ctx { -+ u32 key[8]; -+ int nrounds; -+}; -+ -+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 void (*rcu_callback_t)(struct callback_head *); -+ -+enum tk_offsets { -+ TK_OFFS_REAL = 0, -+ TK_OFFS_BOOT = 1, -+ TK_OFFS_TAI = 2, -+ TK_OFFS_MAX = 3, -+}; -+ -+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 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 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 kernel_clone_args { -+ u64 flags; -+ int *pidfd; -+ int *child_tid; -+ int *parent_tid; -+ int exit_signal; -+ 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 io_thread; -+ struct cgroup *cgrp; -+ struct css_set *cset; -+}; -+ -+struct multiprocess_signals { -+ sigset_t signal; -+ struct hlist_node node; -+}; -+ -+typedef int (*proc_visitor)(struct task_struct *, void *); -+ -+enum { -+ IOPRIO_CLASS_NONE = 0, -+ IOPRIO_CLASS_RT = 1, -+ IOPRIO_CLASS_BE = 2, -+ IOPRIO_CLASS_IDLE = 3, -+}; -+ -+enum { -+ FUTEX_STATE_OK = 0, -+ FUTEX_STATE_EXITING = 1, -+ FUTEX_STATE_DEAD = 2, -+}; -+ -+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 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 taint_flag { -+ char c_true; -+ char c_false; -+ bool module; -+}; -+ -+enum ftrace_dump_mode { -+ DUMP_NONE = 0, -+ DUMP_ALL = 1, -+ DUMP_ORIG = 2, -+}; -+ -+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 con_flush_mode { -+ CONSOLE_FLUSH_PENDING = 0, -+ CONSOLE_REPLAY_ALL = 1, -+}; -+ -+struct warn_args { -+ const char *fmt; -+ va_list args; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 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; -+ int cpu; -+ struct hlist_node *node; -+ struct hlist_node *last; -+ enum cpuhp_state cb_state; -+ int result; -+ 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 cpu_mitigations { -+ CPU_MITIGATIONS_OFF = 0, -+ CPU_MITIGATIONS_AUTO = 1, -+ CPU_MITIGATIONS_AUTO_NOSMT = 2, -+}; -+ -+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; -+}; -+ -+typedef struct {} mm_segment_t; -+ -+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; -+}; -+ -+typedef struct { -+ unsigned int __softirq_pending; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+} irq_cpustat_t; -+ -+struct softirq_action { -+ void (*action)(struct softirq_action *); -+}; -+ -+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 kernel_stat { -+ long unsigned int irqs_sum; -+ unsigned int softirqs[10]; -+}; -+ -+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; -+}; -+ -+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_data_offsets_irq_handler_entry { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_irq_handler_exit {}; -+ -+struct trace_event_data_offsets_softirq {}; -+ -+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); -+ -+struct tasklet_head { -+ struct tasklet_struct *head; -+ struct tasklet_struct **tail; -+}; -+ -+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, -+}; -+ -+enum { -+ REGION_INTERSECTS = 0, -+ REGION_DISJOINT = 1, -+ REGION_MIXED = 2, -+}; -+ -+struct pseudo_fs_context { -+ const struct super_operations *ops; -+ const struct xattr_handler **xattr; -+ const struct dentry_operations *dops; -+ long unsigned int magic; -+}; -+ -+typedef void (*dr_release_t)(struct device *, void *); -+ -+typedef int (*dr_match_t)(struct device *, void *, void *); -+ -+struct resource_constraint { -+ resource_size_t min; -+ resource_size_t max; -+ resource_size_t align; -+ resource_size_t (*alignf)(void *, const struct resource *, resource_size_t, resource_size_t); -+ void *alignf_data; -+}; -+ -+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 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 files_stat_struct { -+ long unsigned int nr_files; -+ long unsigned int nr_free_files; -+ long unsigned int max_files; -+}; -+ -+struct inodes_stat_t { -+ long int nr_inodes; -+ long int nr_unused; -+ long int dummy[5]; -+}; -+ -+enum sysctl_writes_mode { -+ SYSCTL_WRITES_LEGACY = 4294967295, -+ 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; -+}; -+ -+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 sigqueue { -+ struct list_head list; -+ int flags; -+ kernel_siginfo_t info; -+ struct ucounts *ucounts; -+}; -+ -+typedef int wait_bit_action_f(struct wait_bit_key *, int); -+ -+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 { -+ 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 *); -+ -+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]; -+}; -+ -+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; -+}; -+ -+enum uts_proc { -+ UTS_PROC_OSTYPE = 0, -+ UTS_PROC_OSRELEASE = 1, -+ UTS_PROC_VERSION = 2, -+ UTS_PROC_HOSTNAME = 3, -+ UTS_PROC_DOMAINNAME = 4, -+}; -+ -+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 wq_flusher; -+ -+struct worker; -+ -+struct workqueue_attrs; -+ -+struct pool_workqueue; -+ -+struct wq_device; -+ -+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 saved_max_active; -+ struct workqueue_attrs *unbound_attrs; -+ struct pool_workqueue *dfl_pwq; -+ struct wq_device *wq_dev; -+ char name[24]; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ unsigned int flags; -+ struct pool_workqueue *cpu_pwqs; -+ struct pool_workqueue *numa_pwq_tbl[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct workqueue_attrs { -+ int nice; -+ cpumask_var_t cpumask; -+ bool no_numa; -+}; -+ -+struct execute_work { -+ struct work_struct work; -+}; -+ -+enum { -+ 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_DRAINING = 65536, -+ __WQ_ORDERED = 131072, -+ __WQ_LEGACY = 262144, -+ __WQ_ORDERED_EXPLICIT = 524288, -+ WQ_MAX_ACTIVE = 512, -+ WQ_MAX_UNBOUND_PER_CPU = 4, -+ WQ_DFL_ACTIVE = 256, -+}; -+ -+typedef unsigned int xa_mark_t; -+ -+enum xa_lock_type { -+ XA_LOCK_IRQ = 1, -+ XA_LOCK_BH = 2, -+}; -+ -+struct ida { -+ struct xarray xa; -+}; -+ -+struct __una_u32 { -+ u32 x; -+}; -+ -+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; -+ 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; -+ int sleeping; -+ char desc[24]; -+ struct workqueue_struct *rescue_wq; -+ work_func_t last_func; -+}; -+ -+struct pool_workqueue { -+ struct worker_pool *pool; -+ struct workqueue_struct *wq; -+ int work_color; -+ int flush_color; -+ int refcnt; -+ int nr_in_flight[15]; -+ int nr_active; -+ int max_active; -+ struct list_head delayed_works; -+ struct list_head pwqs_node; -+ struct list_head mayday_node; -+ struct work_struct unbound_release_work; -+ struct callback_head rcu; -+ 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; -+ struct list_head worklist; -+ int nr_workers; -+ int nr_idle; -+ struct list_head idle_list; -+ struct timer_list idle_timer; -+ struct timer_list mayday_timer; -+ struct hlist_head busy_hash[64]; -+ struct worker *manager; -+ struct list_head workers; -+ struct completion *detach_completion; -+ struct ida worker_ida; -+ struct workqueue_attrs *attrs; -+ struct hlist_node hash_node; -+ int refcnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_t nr_running; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum { -+ POOL_MANAGER_ACTIVE = 1, -+ POOL_DISASSOCIATED = 4, -+ WORKER_DIE = 2, -+ WORKER_IDLE = 4, -+ WORKER_PREP = 8, -+ WORKER_CPU_INTENSIVE = 64, -+ WORKER_UNBOUND = 128, -+ WORKER_REBOUND = 256, -+ WORKER_NOT_RUNNING = 456, -+ NR_STD_WORKER_POOLS = 2, -+ UNBOUND_POOL_HASH_ORDER = 6, -+ BUSY_WORKER_HASH_ORDER = 6, -+ MAX_IDLE_WORKERS_RATIO = 4, -+ IDLE_WORKER_TIMEOUT = 30000, -+ MAYDAY_INITIAL_TIMEOUT = 2, -+ MAYDAY_INTERVAL = 10, -+ CREATE_COOLDOWN = 100, -+ RESCUER_NICE_LEVEL = 4294967276, -+ HIGHPRI_NICE_LEVEL = 4294967276, -+ WQ_NAME_LEN = 24, -+}; -+ -+struct wq_flusher { -+ struct list_head list; -+ int flush_color; -+ struct completion done; -+}; -+ -+struct wq_device { -+ struct workqueue_struct *wq; -+ struct device dev; -+}; -+ -+struct trace_event_raw_workqueue_queue_work { -+ struct trace_entry ent; -+ void *work; -+ void *function; -+ u32 __data_loc_workqueue; -+ unsigned int req_cpu; -+ unsigned int cpu; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_workqueue_activate_work { -+ struct trace_entry ent; -+ void *work; -+ 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; -+}; -+ -+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 *, unsigned 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_barrier { -+ struct work_struct work; -+ struct completion done; -+ struct task_struct *task; -+}; -+ -+struct cwt_wait { -+ wait_queue_entry_t wait; -+ struct work_struct *work; -+}; -+ -+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 work_for_cpu { -+ struct work_struct work; -+ long int (*fn)(void *); -+ void *arg; -+ long int ret; -+}; -+ -+typedef struct {} local_lock_t; -+ -+struct radix_tree_preload { -+ local_lock_t lock; -+ unsigned int nr; -+ struct xa_node *nodes; -+}; -+ -+typedef void (*task_work_func_t)(struct callback_head *); -+ -+enum task_work_notify_mode { -+ TWA_NONE = 0, -+ TWA_RESUME = 1, -+ TWA_SIGNAL = 2, -+}; -+ -+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 module_version_attribute { -+ struct module_attribute mattr; -+ const char *module_name; -+ const char *version; -+}; -+ -+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_PCMCIA_CIS = 10, -+ LOCKDOWN_TIOCSSERIAL = 11, -+ LOCKDOWN_MODULE_PARAMETERS = 12, -+ LOCKDOWN_MMIOTRACE = 13, -+ LOCKDOWN_DEBUGFS = 14, -+ LOCKDOWN_XMON_WR = 15, -+ LOCKDOWN_BPF_WRITE_USER = 16, -+ LOCKDOWN_INTEGRITY_MAX = 17, -+ LOCKDOWN_KCORE = 18, -+ LOCKDOWN_KPROBES = 19, -+ LOCKDOWN_BPF_READ_KERNEL = 20, -+ LOCKDOWN_PERF = 21, -+ LOCKDOWN_TRACEFS = 22, -+ LOCKDOWN_XMON_RW = 23, -+ LOCKDOWN_XFRM_SECRET = 24, -+ LOCKDOWN_CONFIDENTIALITY_MAX = 25, -+}; -+ -+struct kmalloced_param { -+ struct list_head list; -+ char val[0]; -+}; -+ -+struct sched_param { -+ int sched_priority; -+}; -+ -+enum { -+ __PERCPU_REF_ATOMIC = 1, -+ __PERCPU_REF_DEAD = 2, -+ __PERCPU_REF_ATOMIC_DEAD = 3, -+ __PERCPU_REF_FLAG_BITS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ KTW_FREEZABLE = 1, -+}; -+ -+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 kthread_delayed_work { -+ struct kthread_work work; -+ struct timer_list timer; -+}; -+ -+enum { -+ CSS_NO_REF = 1, -+ CSS_ONLINE = 2, -+ CSS_RELEASED = 4, -+ CSS_VISIBLE = 8, -+ CSS_DYING = 16, -+}; -+ -+struct kthread_create_info { -+ 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 (*threadfn)(void *); -+ void *data; -+ mm_segment_t oldfs; -+ struct completion parked; -+ struct completion exited; -+ struct cgroup_subsys_state *blkcg_css; -+}; -+ -+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 pt_regs___2; -+ -+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; -+ atomic_t msg_bytes; -+ atomic_t 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 user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct llist_node mnt_llist; -+ struct ns_common ns; -+}; -+ -+struct srcu_notifier_head { -+ struct mutex mutex; -+ struct srcu_struct srcu; -+ struct notifier_block *head; -+}; -+ -+enum what { -+ 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_COREDUMP = 1073741824, -+ PROC_EVENT_EXIT = 2147483648, -+}; -+ -+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, -+}; -+ -+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 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, -+}; -+ -+typedef u64 uint64_t; -+ -+struct pin_cookie {}; -+ -+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 __call_single_data call_single_data_t; -+ -+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; -+ int overload; -+ int 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; -+ long unsigned int max_cpu_capacity; -+ struct perf_domain *pd; -+}; -+ -+struct cfs_rq { -+ struct load_weight load; -+ unsigned int nr_running; -+ unsigned int h_nr_running; -+ unsigned int idle_h_nr_running; -+ u64 exec_clock; -+ u64 min_vruntime; -+ unsigned int forceidle_seq; -+ u64 min_vruntime_fi; -+ struct rb_root_cached tasks_timeline; -+ struct sched_entity *curr; -+ struct sched_entity *next; -+ struct sched_entity *last; -+ struct sched_entity *skip; -+ unsigned int nr_spread_over; -+ long: 32; -+ 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; -+ 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_clock; -+ u64 throttled_clock_task; -+ u64 throttled_clock_task_time; -+ int throttled; -+ int throttle_count; -+ struct list_head throttled_list; -+ 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; -+ 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; -+ u64 throttled_time; -+}; -+ -+struct task_group { -+ struct cgroup_subsys_state css; -+ struct sched_entity **se; -+ struct cfs_rq **cfs_rq; -+ long unsigned int shares; -+ int idle; -+ long: 32; -+ long: 64; -+ 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; -+}; -+ -+struct sched_domain_attr { -+ int relax_domain_level; -+}; -+ -+struct sched_domain_shared { -+ atomic_t ref; -+ atomic_t nr_busy_cpus; -+ int has_idle_cores; -+}; -+ -+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; -+ 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 next_decay_max_lb_cost; -+ u64 avg_scan_cost; -+ unsigned int lb_count[3]; -+ unsigned int lb_failed[3]; -+ unsigned int lb_balanced[3]; -+ unsigned int lb_imbalance[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; -+ struct sched_group_capacity *sgc; -+ int asym_prefer_cpu; -+ 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]; -+}; -+ -+struct autogroup { -+ struct kref kref; -+ struct task_group *tg; -+ struct rw_semaphore lock; -+ long unsigned int id; -+ int nice; -+}; -+ -+struct kernel_cpustat { -+ u64 cpustat[10]; -+}; -+ -+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 { -+ 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_PRESSURE = 64, -+ __CFTYPE_ONLY_ON_DFL = 65536, -+ __CFTYPE_NOT_ON_DFL = 131072, -+}; -+ -+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_stat_template { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 delay; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_sched_stat_runtime { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 runtime; -+ u64 vruntime; -+ 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_process_hang { -+ struct trace_entry ent; -+ char comm[16]; -+ 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_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; -+}; -+ -+struct trace_event_data_offsets_sched_stat_template {}; -+ -+struct trace_event_data_offsets_sched_stat_runtime {}; -+ -+struct trace_event_data_offsets_sched_pi_setprio {}; -+ -+struct trace_event_data_offsets_sched_process_hang {}; -+ -+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 *); -+ -+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_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, 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_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 *); -+ -+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; -+ unsigned int rt_nr_migratory; -+ unsigned int rt_nr_total; -+ int overloaded; -+ struct plist_head pushable_tasks; -+ int rt_queued; -+ int rt_throttled; -+ u64 rt_time; -+ u64 rt_runtime; -+ raw_spinlock_t rt_runtime_lock; -+}; -+ -+struct dl_rq { -+ struct rb_root_cached root; -+ unsigned int dl_nr_running; -+ struct { -+ u64 curr; -+ u64 next; -+ } earliest_dl; -+ unsigned int dl_nr_migratory; -+ int overloaded; -+ struct rb_root_cached pushable_dl_tasks_root; -+ u64 running_bw; -+ u64 this_bw; -+ u64 extra_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 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: 32; -+ 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 cfs_rq cfs; -+ struct rt_rq rt; -+ struct dl_rq dl; -+ struct list_head leaf_cfs_rq_list; -+ struct list_head *tmp_alone_branch; -+ unsigned int nr_uninterruptible; -+ struct task_struct *curr; -+ 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; -+ u64 clock_task; -+ u64 clock_pelt; -+ long unsigned int lost_idle_time; -+ 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; -+ long unsigned int cpu_capacity_orig; -+ struct callback_head *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; -+ struct sched_avg avg_rt; -+ struct sched_avg avg_dl; -+ struct sched_avg avg_irq; -+ u64 idle_stamp; -+ u64 avg_idle; -+ long unsigned int wake_stamp; -+ u64 wake_avg_idle; -+ u64 max_idle_balance_cost; -+ struct rcuwait hotplug_wait; -+ u64 prev_steal_time; -+ u64 prev_steal_time_rq; -+ long unsigned int calc_load_update; -+ long int calc_load_active; -+ long: 64; -+ 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; -+ 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 char core_forceidle; -+ unsigned int core_forceidle_seq; -+}; -+ -+typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); -+ -+typedef void (*btf_trace_pelt_thermal_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); -+ -+struct wake_q_head { -+ struct wake_q_node *first; -+ struct wake_q_node **lastp; -+}; -+ -+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 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); -+ 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 cpudl_item { -+ u64 dl; -+ int cpu; -+ int idx; -+}; -+ -+struct rt_bandwidth { -+ raw_spinlock_t rt_runtime_lock; -+ ktime_t rt_period; -+ u64 rt_runtime; -+ struct hrtimer rt_period_timer; -+ unsigned int rt_period_active; -+}; -+ -+struct dl_bandwidth { -+ raw_spinlock_t dl_runtime_lock; -+ u64 dl_runtime; -+ u64 dl_period; -+}; -+ -+typedef int (*tg_visitor)(struct task_group *, void *); -+ -+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; -+}; -+ -+enum { -+ __SCHED_FEAT_GENTLE_FAIR_SLEEPERS = 0, -+ __SCHED_FEAT_START_DEBIT = 1, -+ __SCHED_FEAT_NEXT_BUDDY = 2, -+ __SCHED_FEAT_LAST_BUDDY = 3, -+ __SCHED_FEAT_CACHE_HOT_BUDDY = 4, -+ __SCHED_FEAT_WAKEUP_PREEMPTION = 5, -+ __SCHED_FEAT_HRTICK = 6, -+ __SCHED_FEAT_HRTICK_DL = 7, -+ __SCHED_FEAT_DOUBLE_TICK = 8, -+ __SCHED_FEAT_NONTASK_CAPACITY = 9, -+ __SCHED_FEAT_TTWU_QUEUE = 10, -+ __SCHED_FEAT_SIS_PROP = 11, -+ __SCHED_FEAT_WARN_DOUBLE_CLOCK = 12, -+ __SCHED_FEAT_RT_PUSH_IPI = 13, -+ __SCHED_FEAT_RT_RUNTIME_SHARE = 14, -+ __SCHED_FEAT_LB_MIN = 15, -+ __SCHED_FEAT_ATTACH_AGE_LOAD = 16, -+ __SCHED_FEAT_WA_IDLE = 17, -+ __SCHED_FEAT_WA_WEIGHT = 18, -+ __SCHED_FEAT_WA_BIAS = 19, -+ __SCHED_FEAT_UTIL_EST = 20, -+ __SCHED_FEAT_UTIL_EST_FASTUP = 21, -+ __SCHED_FEAT_LATENCY_WARN = 22, -+ __SCHED_FEAT_ALT_PERIOD = 23, -+ __SCHED_FEAT_BASE_SLICE = 24, -+ __SCHED_FEAT_NR = 25, -+}; -+ -+enum cpu_util_type { -+ FREQUENCY_UTIL = 0, -+ ENERGY_UTIL = 1, -+}; -+ -+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; -+}; -+ -+struct cfs_schedulable_data { -+ struct task_group *tg; -+ u64 period; -+ u64 quota; -+}; -+ -+enum { -+ cpuset = 0, -+ possible = 1, -+ fail = 2, -+}; -+ -+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_SHARE_PKG_RESOURCES = 256, -+ SD_SERIALIZE = 512, -+ SD_ASYM_PACKING = 1024, -+ SD_PREFER_SIBLING = 2048, -+ SD_OVERLAP = 4096, -+ SD_NUMA = 8192, -+}; -+ -+enum s2idle_states { -+ S2IDLE_STATE_NONE = 0, -+ S2IDLE_STATE_ENTER = 1, -+ S2IDLE_STATE_WAKE = 2, -+}; -+ -+struct idle_timer { -+ struct hrtimer timer; -+ int done; -+}; -+ -+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_cpu; -+ long unsigned int faults[0]; -+}; -+ -+struct update_util_data { -+ void (*func)(struct update_util_data *, u64, unsigned int); -+}; -+ -+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 sched_tunable_scaling { -+ SCHED_TUNABLESCALING_NONE = 0, -+ SCHED_TUNABLESCALING_LOG = 1, -+ SCHED_TUNABLESCALING_LINEAR = 2, -+ SCHED_TUNABLESCALING_END = 3, -+}; -+ -+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 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; -+ 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; -+}; -+ -+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_asym_packing = 3, -+ group_imbalanced = 4, -+ group_overloaded = 5, -+}; -+ -+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; -+ 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 rt_rq *rt_rq_iter_t; -+ -+struct swait_queue { -+ struct task_struct *task; -+ struct list_head task_list; -+}; -+ -+struct sd_flag_debug { -+ unsigned int meta_flags; -+ char *name; -+}; -+ -+typedef const struct cpumask * (*sched_domain_mask_f)(int); -+ -+typedef int (*sched_domain_flags_f)(); -+ -+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; -+ char *name; -+}; -+ -+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 asym_cap_data { -+ struct list_head link; -+ long unsigned int capacity; -+ long unsigned int cpus[0]; -+}; -+ -+enum cpuacct_stat_index { -+ CPUACCT_STAT_USER = 0, -+ CPUACCT_STAT_SYSTEM = 1, -+ CPUACCT_STAT_NSTATS = 2, -+}; -+ -+struct cpuacct_usage { -+ u64 usages[2]; -+}; -+ -+struct cpuacct { -+ struct cgroup_subsys_state css; -+ struct cpuacct_usage *cpuusage; -+ struct kernel_cpustat *cpustat; -+}; -+ -+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_SHARED = 1, -+}; -+ -+enum membarrier_cmd_flag { -+ MEMBARRIER_CMD_FLAG_CPU = 1, -+}; -+ -+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); -+}; -+ -+enum psi_res { -+ PSI_IO = 0, -+ PSI_MEM = 1, -+ PSI_CPU = 2, -+ NR_PSI_RESOURCES = 3, -+}; -+ -+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; -+ int event; -+ struct psi_window win; -+ u64 last_event_time; -+ struct kref refcount; -+}; -+ -+struct sched_core_cookie { -+ refcount_t refcnt; -+}; -+ -+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 mutex_waiter { -+ struct list_head list; -+ struct task_struct *task; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+struct semaphore { -+ raw_spinlock_t lock; -+ unsigned int count; -+ struct list_head wait_list; -+}; -+ -+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; -+}; -+ -+enum rwsem_wake_type { -+ RWSEM_WAKE_ANY = 0, -+ RWSEM_WAKE_READERS = 1, -+ RWSEM_WAKE_READ_OWNED = 2, -+}; -+ -+enum writer_wait_state { -+ WRITER_NOT_FIRST = 0, -+ WRITER_FIRST = 1, -+ WRITER_HANDOFF = 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 mcs_spinlock { -+ struct mcs_spinlock *next; -+ int locked; -+ int count; -+}; -+ -+struct qnode { -+ struct mcs_spinlock mcs; -+}; -+ -+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 hrtimer_sleeper { -+ struct hrtimer timer; -+ struct task_struct *task; -+}; -+ -+struct rt_mutex_waiter { -+ struct rb_node tree_entry; -+ struct rb_node pi_tree_entry; -+ struct task_struct *task; -+ struct rt_mutex_base *lock; -+ unsigned int wake_state; -+ int prio; -+ u64 deadline; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+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 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, -+}; -+ -+typedef int suspend_state_t; -+ -+enum suspend_stat_step { -+ 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 suspend_stats { -+ int success; -+ int fail; -+ int failed_freeze; -+ int failed_prepare; -+ int failed_suspend; -+ int failed_suspend_late; -+ int failed_suspend_noirq; -+ int failed_resume; -+ int failed_resume_early; -+ int failed_resume_noirq; -+ int last_failed_dev; -+ char failed_devs[80]; -+ int last_failed_errno; -+ int errno[2]; -+ int last_failed_step; -+ enum suspend_stat_step failed_steps[2]; -+}; -+ -+enum { -+ TEST_NONE = 0, -+ TEST_CORE = 1, -+ TEST_CPUS = 2, -+ TEST_PLATFORM = 3, -+ TEST_DEVICES = 4, -+ TEST_FREEZER = 5, -+ __TEST_AFTER_LAST = 6, -+}; -+ -+struct pm_vt_switch { -+ struct list_head head; -+ struct device *dev; -+ bool required; -+}; -+ -+struct platform_suspend_ops { -+ int (*valid)(suspend_state_t); -+ int (*begin)(suspend_state_t); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ int (*enter)(suspend_state_t); -+ void (*wake)(); -+ void (*finish)(); -+ bool (*suspend_again)(); -+ void (*end)(); -+ void (*recover)(); -+}; -+ -+struct platform_s2idle_ops { -+ int (*begin)(); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ bool (*wake)(); -+ void (*restore_early)(); -+ void (*restore)(); -+ void (*end)(); -+}; -+ -+struct platform_hibernation_ops { -+ int (*begin)(pm_message_t); -+ void (*end)(); -+ int (*pre_snapshot)(); -+ void (*finish)(); -+ int (*prepare)(); -+ int (*enter)(); -+ void (*leave)(); -+ int (*pre_restore)(); -+ void (*restore_cleanup)(); -+ void (*recover)(); -+}; -+ -+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 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 snapshot_handle { -+ unsigned int cur; -+ void *buffer; -+ int sync_read; -+}; -+ -+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; -+ 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; -+}; -+ -+enum { -+ BIO_NO_PAGE_REF = 0, -+ BIO_CLONED = 1, -+ BIO_BOUNCED = 2, -+ BIO_WORKINGSET = 3, -+ BIO_QUIET = 4, -+ BIO_CHAIN = 5, -+ BIO_REFFED = 6, -+ BIO_THROTTLED = 7, -+ BIO_TRACE_COMPLETION = 8, -+ BIO_CGROUP_ACCT = 9, -+ BIO_TRACKED = 10, -+ BIO_REMAPPED = 11, -+ BIO_ZONE_WRITE_LOCKED = 12, -+ BIO_FLAG_LAST = 13, -+}; -+ -+enum req_opf { -+ REQ_OP_READ = 0, -+ REQ_OP_WRITE = 1, -+ REQ_OP_FLUSH = 2, -+ REQ_OP_DISCARD = 3, -+ REQ_OP_SECURE_ERASE = 5, -+ REQ_OP_WRITE_SAME = 7, -+ REQ_OP_WRITE_ZEROES = 9, -+ REQ_OP_ZONE_OPEN = 10, -+ REQ_OP_ZONE_CLOSE = 11, -+ REQ_OP_ZONE_FINISH = 12, -+ REQ_OP_ZONE_APPEND = 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, -+}; -+ -+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_CGROUP_PUNT = 22, -+ __REQ_NOUNMAP = 23, -+ __REQ_HIPRI = 24, -+ __REQ_DRV = 25, -+ __REQ_SWAP = 26, -+ __REQ_NR_BITS = 27, -+}; -+ -+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[4060]; -+ 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; -+ 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]; -+ unsigned char wrk[16384]; -+}; -+ -+struct dec_data { -+ struct task_struct *thr; -+ 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]; -+}; -+ -+typedef s64 compat_loff_t; -+ -+struct resume_swap_area { -+ __kernel_loff_t offset; -+ __u32 dev; -+} __attribute__((packed)); -+ -+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)); -+ -+struct sysrq_key_op { -+ void (* const handler)(int); -+ const char * const help_msg; -+ const char * const action_msg; -+ const int enable_mask; -+}; -+ -+struct em_data_callback { -+ int (*active_power)(long unsigned int *, long unsigned int *, struct device *); -+}; -+ -+typedef struct { -+ seqcount_t seqcount; -+} seqcount_latch_t; -+ -+struct dev_printk_info { -+ char subsystem[16]; -+ char device[48]; -+}; -+ -+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)(); -+ int (*setup)(struct console *, char *); -+ int (*exit)(struct console *); -+ int (*match)(struct console *, char *, int, char *); -+ short int flags; -+ short int index; -+ int cflag; -+ void *data; -+ struct console *next; -+}; -+ -+struct kmsg_dump_iter { -+ u64 cur_seq; -+ u64 next_seq; -+}; -+ -+struct kmsg_dumper { -+ struct list_head list; -+ void (*dump)(struct kmsg_dumper *, enum kmsg_dump_reason); -+ 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; -+}; -+ -+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; -+}; -+ -+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 = 4294967295, -+ desc_reserved = 0, -+ desc_committed = 1, -+ desc_finalized = 2, -+ desc_reusable = 3, -+}; -+ -+struct console_cmdline { -+ char name[16]; -+ int index; -+ bool user_specified; -+ char *options; -+}; -+ -+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, -+}; -+ -+enum log_flags { -+ LOG_NEWLINE = 2, -+ LOG_CONT = 8, -+}; -+ -+struct latched_seq { -+ seqcount_latch_t latch; -+ u64 val[2]; -+}; -+ -+struct devkmsg_user { -+ atomic64_t seq; -+ struct ratelimit_state rs; -+ struct mutex lock; -+ char buf[8192]; -+ struct printk_info info; -+ char text_buf[8192]; -+ struct printk_record record; -+}; -+ -+enum kdb_msgsrc { -+ KDB_MSGSRC_INTERNAL = 0, -+ KDB_MSGSRC_PRINTK = 1, -+}; -+ -+struct printk_safe_seq_buf { -+ atomic_t len; -+ atomic_t message_lost; -+ struct irq_work work; -+ unsigned char buffer[8160]; -+}; -+ -+struct dev_printk_info___2; -+ -+struct prb_data_block { -+ long unsigned int id; -+ char data[0]; -+}; -+ -+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, -+}; -+ -+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 { -+ IRQTF_RUNTHREAD = 0, -+ IRQTF_WARNED = 1, -+ IRQTF_AFFINITY = 2, -+ IRQTF_FORCED_THREAD = 3, -+}; -+ -+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, -+}; -+ -+enum { -+ IRQC_IS_HARDIRQ = 0, -+ IRQC_IS_NESTED = 1, -+}; -+ -+enum { -+ IRQ_STARTUP_NORMAL = 0, -+ IRQ_STARTUP_MANAGED = 1, -+ IRQ_STARTUP_ABORT = 2, -+}; -+ -+struct irq_devres { -+ unsigned int irq; -+ void *dev_id; -+}; -+ -+struct irq_desc_devres { -+ unsigned int from; -+ unsigned int cnt; -+}; -+ -+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_MSI_REMAP = 32, -+ IRQ_DOMAIN_MSI_NOMASK_QUIRK = 64, -+ IRQ_DOMAIN_FLAG_NO_MAP = 128, -+ IRQ_DOMAIN_FLAG_NONCORE = 65536, -+}; -+ -+struct irqchip_fwid { -+ struct fwnode_handle fwnode; -+ unsigned int type; -+ char *name; -+ phys_addr_t *pa; -+}; -+ -+enum { -+ AFFINITY = 0, -+ AFFINITY_LIST = 1, -+ EFFECTIVE = 2, -+ EFFECTIVE_LIST = 3, -+}; -+ -+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_info; -+ -+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_check)(struct irq_domain *, struct msi_domain_info *, struct device *); -+ int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); -+ void (*msi_finish)(msi_alloc_info_t *, int); -+ void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); -+ int (*handle_error)(struct irq_domain *, struct msi_desc *, int); -+ int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); -+ void (*domain_free_irqs)(struct irq_domain *, struct device *); -+}; -+ -+struct msi_domain_info { -+ u32 flags; -+ 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 { -+ MSI_FLAG_USE_DEF_DOM_OPS = 1, -+ MSI_FLAG_USE_DEF_CHIP_OPS = 2, -+ MSI_FLAG_MULTI_PCI_MSI = 4, -+ MSI_FLAG_PCI_MSIX = 8, -+ MSI_FLAG_ACTIVATE_EARLY = 16, -+ MSI_FLAG_MUST_REACTIVATE = 32, -+ MSI_FLAG_LEVEL_CAPABLE = 64, -+}; -+ -+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 node_vectors { -+ unsigned int id; -+ union { -+ unsigned int nvectors; -+ unsigned int ncpus; -+ }; -+}; -+ -+typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); -+ -+struct rcu_synchronize { -+ struct callback_head head; -+ struct completion completion; -+}; -+ -+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)(); -+ -+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 { -+ struct callback_head *cbs_head; -+ struct callback_head **cbs_tail; -+ struct wait_queue_head cbs_wq; -+ raw_spinlock_t cbs_lock; -+ int gp_state; -+ int gp_sleep; -+ int init_fract; -+ long unsigned int gp_jiffies; -+ long unsigned int gp_start; -+ long unsigned int n_gps; -+ long unsigned int n_ipis; -+ long unsigned int n_ipis_fails; -+ struct task_struct *kthread_ptr; -+ 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; -+ char *name; -+ char *kname; -+}; -+ -+enum { -+ GP_IDLE = 0, -+ GP_ENTER = 1, -+ GP_PASSED = 2, -+ GP_EXIT = 3, -+ GP_REPLAY = 4, -+}; -+ -+typedef long unsigned int ulong; -+ -+struct rcu_cblist { -+ struct callback_head *head; -+ struct callback_head **tail; -+ long int len; -+}; -+ -+enum rcutorture_type { -+ RCU_FLAVOR = 0, -+ RCU_TASKS_FLAVOR = 1, -+ RCU_TASKS_RUDE_FLAVOR = 2, -+ RCU_TASKS_TRACING_FLAVOR = 3, -+ RCU_TRIVIAL_FLAVOR = 4, -+ SRCU_FLAVOR = 5, -+ INVALID_RCU_FLAVOR = 6, -+}; -+ -+struct rcu_exp_work { -+ long unsigned int rew_s; -+ struct work_struct 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 ofl_seq; -+ long unsigned int expmask; -+ long unsigned int expmaskinit; -+ long unsigned int expmaskinitnext; -+ 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 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; -+ raw_spinlock_t fqslock; -+ long: 32; -+ 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; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+union rcu_noqs { -+ struct { -+ u8 norm; -+ u8 exp; -+ } b; -+ u16 s; -+}; -+ -+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 exp_deferred_qs; -+ bool cpu_started; -+ struct rcu_node *mynode; -+ long unsigned int grpmask; -+ long unsigned int ticks_this_gp; -+ struct irq_work defer_qs_iw; -+ bool 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 dynticks_snap; -+ long int dynticks_nesting; -+ long int dynticks_nmi_nesting; -+ atomic_t dynticks; -+ bool rcu_need_heavy_qs; -+ bool rcu_urgent_qs; -+ bool rcu_forced_tick; -+ bool rcu_forced_tick_exp; -+ struct callback_head barrier_head; -+ int exp_dynticks_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; -+ atomic_t nocb_lock_contended; -+ int nocb_defer_wakeup; -+ struct timer_list nocb_timer; -+ long unsigned int nocb_gp_adv_time; -+ 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: 32; -+ 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 rcu_data *nocb_next_cb_rdp; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ 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_flags; -+ long unsigned int rcu_onl_gp_seq; -+ short int rcu_onl_gp_flags; -+ long unsigned int last_fqs_resched; -+ int cpu; -+ long: 32; -+ long: 64; -+}; -+ -+struct rcu_state { -+ struct rcu_node node[261]; -+ struct rcu_node *level[4]; -+ int ncpus; -+ int n_online_cpus; -+ long: 64; -+ long: 64; -+ long: 64; -+ u8 boost; -+ 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; -+ struct mutex barrier_mutex; -+ atomic_t barrier_cpu_count; -+ struct completion barrier_completion; -+ long unsigned int barrier_sequence; -+ 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; -+ long unsigned int jiffies_resched; -+ long unsigned int n_force_qs_gpstart; -+ const char *name; -+ char abbr; -+ long: 56; -+ long: 64; -+ long: 64; -+ raw_spinlock_t ofl_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct kvfree_rcu_bulk_data { -+ long unsigned int nr_records; -+ struct kvfree_rcu_bulk_data *next; -+ void *records[0]; -+}; -+ -+struct kfree_rcu_cpu; -+ -+struct kfree_rcu_cpu_work { -+ struct rcu_work rcu_work; -+ struct callback_head *head_free; -+ struct kvfree_rcu_bulk_data *bkvhead_free[2]; -+ struct kfree_rcu_cpu *krcp; -+}; -+ -+struct kfree_rcu_cpu { -+ struct callback_head *head; -+ struct kvfree_rcu_bulk_data *bkvhead[2]; -+ struct kfree_rcu_cpu_work krw_arr[2]; -+ raw_spinlock_t lock; -+ struct delayed_work monitor_work; -+ bool monitor_todo; -+ bool initialized; -+ int count; -+ 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; -+}; -+ -+struct dma_sgt_handle { -+ struct sg_table sgt; -+ struct page **pages; -+}; -+ -+struct dma_devres { -+ size_t size; -+ void *vaddr; -+ dma_addr_t dma_handle; -+ long unsigned int attrs; -+}; -+ -+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 reserved_mem_ops; -+ -+struct reserved_mem { -+ const char *name; -+ long unsigned int fdt_node; -+ long unsigned int phandle; -+ 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 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; -+ enum swiotlb_force swiotlb_force; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_swiotlb_bounced { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t, enum swiotlb_force); -+ -+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 cma; -+ -+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; -+}; -+ -+enum profile_type { -+ PROFILE_TASK_EXIT = 0, -+ PROFILE_MUNMAP = 1, -+}; -+ -+struct profile_hit { -+ u32 pc; -+ u32 hits; -+}; -+ -+struct stacktrace_cookie { -+ long unsigned int *store; -+ unsigned int size; -+ unsigned int skip; -+ unsigned int len; -+}; -+ -+typedef __kernel_long_t __kernel_suseconds_t; -+ -+typedef __kernel_suseconds_t suseconds_t; -+ -+typedef __u64 timeu64_t; -+ -+struct __kernel_itimerspec { -+ struct __kernel_timespec it_interval; -+ struct __kernel_timespec it_value; -+}; -+ -+struct timezone { -+ int tz_minuteswest; -+ int tz_dsttime; -+}; -+ -+struct itimerspec64 { -+ struct timespec64 it_interval; -+ struct timespec64 it_value; -+}; -+ -+struct old_timeval32 { -+ old_time32_t tv_sec; -+ s32 tv_usec; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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_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_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, 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_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[8]; -+ struct hlist_head vectors[512]; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct process_timer { -+ struct timer_list timer; -+ struct task_struct *task; -+}; -+ -+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; -+}; -+ -+struct ktime_timestamps { -+ u64 mono; -+ u64 boot; -+ u64 real; -+}; -+ -+struct system_device_crosststamp { -+ ktime_t device; -+ ktime_t sys_realtime; -+ ktime_t sys_monoraw; -+}; -+ -+struct clocksource; -+ -+struct system_counterval_t { -+ u64 cycles; -+ struct clocksource *cs; -+}; -+ -+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 clocksource { -+ u64 (*read)(struct clocksource *); -+ u64 mask; -+ u32 mult; -+ u32 shift; -+ u64 max_idle_ns; -+ u32 maxadj; -+ u32 uncertainty_margin; -+ u64 max_cycles; -+ const char *name; -+ struct list_head list; -+ int rating; -+ enum clocksource_ids id; -+ enum vdso_clock_mode vdso_clock_mode; -+ long unsigned int flags; -+ 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 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 audit_ntp_val { -+ long long int oldval; -+ long long int newval; -+}; -+ -+struct audit_ntp_data { -+ struct audit_ntp_val vals[6]; -+}; -+ -+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 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 rtc_wkalrm { -+ unsigned char enabled; -+ unsigned char pending; -+ struct rtc_time time; -+}; -+ -+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); -+}; -+ -+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; -+ int uie_unsupported; -+ long unsigned int set_offset_nsec; -+ long unsigned int features[1]; -+ time64_t range_min; -+ timeu64_t range_max; -+ time64_t start_secs; -+ time64_t offset_secs; -+ bool set_start_time; -+}; -+ -+enum tick_nohz_mode { -+ NOHZ_MODE_INACTIVE = 0, -+ NOHZ_MODE_LOWRES = 1, -+ NOHZ_MODE_HIGHRES = 2, -+}; -+ -+struct tick_sched { -+ struct hrtimer sched_timer; -+ long unsigned int check_clocks; -+ enum tick_nohz_mode nohz_mode; -+ unsigned int inidle: 1; -+ unsigned int tick_stopped: 1; -+ unsigned int idle_active: 1; -+ unsigned int do_timer_last: 1; -+ unsigned int got_idle_tick: 1; -+ ktime_t last_tick; -+ ktime_t next_tick; -+ long unsigned int idle_jiffies; -+ long unsigned int idle_calls; -+ long unsigned int idle_sleeps; -+ ktime_t idle_entrytime; -+ ktime_t idle_waketime; -+ ktime_t idle_exittime; -+ ktime_t idle_sleeptime; -+ ktime_t iowait_sleeptime; -+ long unsigned int last_jiffies; -+ u64 timer_expires; -+ u64 timer_expires_base; -+ u64 next_timer; -+ ktime_t idle_expires; -+ atomic_t tick_dep_mask; -+}; -+ -+struct timer_list_iter { -+ int cpu; -+ bool second_pass; -+ u64 now; -+}; -+ -+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; -+}; -+ -+typedef __kernel_timer_t timer_t; -+ -+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 k_clock; -+ -+struct k_itimer { -+ struct list_head 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 *); -+}; -+ -+struct class_interface { -+ struct list_head node; -+ struct class *class; -+ int (*add_dev)(struct device *, struct class_interface *); -+ void (*remove_dev)(struct device *, struct class_interface *); -+}; -+ -+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 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 (*get_timespec)(struct timespec64 *); -+ clockid_t base_clockid; -+}; -+ -+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 struct sigevent sigevent_t; -+ -+typedef unsigned int uint; -+ -+struct posix_clock; -+ -+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 *, unsigned int, long unsigned int); -+ int (*open)(struct posix_clock *, fmode_t); -+ __poll_t (*poll)(struct posix_clock *, struct file *, poll_table *); -+ int (*release)(struct posix_clock *); -+ ssize_t (*read)(struct posix_clock *, 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_desc { -+ struct file *fp; -+ struct posix_clock *clk; -+}; -+ -+struct __kernel_old_itimerval { -+ struct __kernel_old_timeval it_interval; -+ struct __kernel_old_timeval it_value; -+}; -+ -+typedef s64 int64_t; -+ -+struct ce_unbind { -+ struct clock_event_device *ce; -+ int res; -+}; -+ -+enum tick_broadcast_state { -+ TICK_BROADCAST_EXIT = 0, -+ TICK_BROADCAST_ENTER = 1, -+}; -+ -+enum tick_broadcast_mode { -+ TICK_BROADCAST_OFF = 0, -+ TICK_BROADCAST_ON = 1, -+ TICK_BROADCAST_FORCE = 2, -+}; -+ -+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)(); -+}; -+ -+struct proc_timens_offset { -+ int clockid; -+ struct timespec64 val; -+}; -+ -+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 futex_q { -+ struct plist_node list; -+ struct task_struct *task; -+ spinlock_t *lock_ptr; -+ 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; -+}; -+ -+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 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, -+}; -+ -+struct cfd_percpu { -+ call_single_data_t csd; -+}; -+ -+struct call_function_data { -+ struct cfd_percpu *pcpu; -+ 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 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 modversion_info { -+ long unsigned int crc; -+ char name[56]; -+}; -+ -+struct module_use { -+ struct list_head source_list; -+ struct list_head target_list; -+ struct module *source; -+ struct module *target; -+}; -+ -+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]; -+}; -+ -+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, -+}; -+ -+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 { -+ PROC_ENTRY_PERMANENT = 1, -+}; -+ -+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; -+ struct _ddebug *debug; -+ unsigned int num_debug; -+ 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; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_module_free { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_refcnt { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_request { -+ u32 name; -+}; -+ -+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 mod_tree_root { -+ struct latch_tree_root root; -+ long unsigned int addr_min; -+ long unsigned int addr_max; -+}; -+ -+enum mod_license { -+ NOT_GPL_ONLY = 0, -+ GPL_ONLY = 1, -+}; -+ -+struct symsearch { -+ const struct kernel_symbol *start; -+ const struct kernel_symbol *stop; -+ const s32 *crcs; -+ enum mod_license license; -+}; -+ -+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; -+}; -+ -+struct mod_initfree { -+ struct llist_node node; -+ void *module_init; -+}; -+ -+struct module_signature { -+ u8 algo; -+ u8 hash; -+ u8 id_type; -+ u8 signer_len; -+ u8 key_id_len; -+ u8 __pad[3]; -+ __be32 sig_len; -+}; -+ -+enum pkey_id_type { -+ PKEY_ID_PGP = 0, -+ PKEY_ID_X509 = 1, -+ PKEY_ID_PKCS7 = 2, -+}; -+ -+struct kallsym_iter { -+ loff_t pos; -+ loff_t pos_arch_end; -+ 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[128]; -+ char module_name[56]; -+ int exported; -+ int show_value; -+}; -+ -+typedef struct { -+ int val[2]; -+} __kernel_fsid_t; -+ -+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]; -+}; -+ -+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 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 bsd_acct_struct { -+ struct fs_pin pin; -+ atomic_long_t count; -+ struct callback_head rcu; -+ struct mutex lock; -+ int active; -+ long unsigned int needcheck; -+ struct file *file; -+ struct pid_namespace *ns; -+ struct work_struct work; -+ struct completion done; -+}; -+ -+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; -+}; -+ -+typedef u32 note_buf_t[106]; -+ -+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 kexec_sha_region { -+ long unsigned int start; -+ long unsigned int len; -+}; -+ -+typedef __kernel_ulong_t ino_t; -+ -+enum kernfs_node_type { -+ KERNFS_DIR = 1, -+ KERNFS_FILE = 2, -+ KERNFS_LINK = 4, -+}; -+ -+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_fs_context { -+ struct kernfs_root *root; -+ void *ns_tag; -+ long unsigned int magic; -+ bool new_sb_created; -+}; -+ -+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, -+ MAX_BPF_LINK_TYPE = 7, -+}; -+ -+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; -+ }; -+ } iter; -+ struct { -+ __u32 netns_ino; -+ __u32 attach_type; -+ } netns; -+ struct { -+ __u32 ifindex; -+ } xdp; -+ }; -+}; -+ -+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; -+ struct work_struct work; -+}; -+ -+struct bpf_link_ops { -+ void (*release)(struct bpf_link *); -+ void (*dealloc)(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 *); -+}; -+ -+struct bpf_cgroup_link { -+ struct bpf_link link; -+ struct cgroup *cgroup; -+ enum bpf_attach_type type; -+}; -+ -+enum { -+ CGRP_NOTIFY_ON_RELEASE = 0, -+ CGRP_CPUSET_CLONE_CHILDREN = 1, -+ CGRP_FREEZE = 2, -+ CGRP_FROZEN = 3, -+ CGRP_KILL = 4, -+}; -+ -+enum { -+ CGRP_ROOT_NOPREFIX = 2, -+ CGRP_ROOT_XATTR = 4, -+ CGRP_ROOT_NS_DELEGATE = 8, -+ CGRP_ROOT_CPUSET_V2_MODE = 16, -+ CGRP_ROOT_MEMORY_LOCAL_EVENTS = 32, -+ CGRP_ROOT_MEMORY_RECURSIVE_PROT = 64, -+}; -+ -+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 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; -+}; -+ -+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 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 id; -+ int level; -+ u32 __data_loc_path; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_cgroup_migrate { -+ struct trace_entry ent; -+ int dst_root; -+ int dst_id; -+ int dst_level; -+ 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 id; -+ int level; -+ u32 __data_loc_path; -+ int val; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_cgroup_root { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cgroup { -+ u32 path; -+}; -+ -+struct trace_event_data_offsets_cgroup_migrate { -+ u32 dst_path; -+ u32 comm; -+}; -+ -+struct trace_event_data_offsets_cgroup_event { -+ u32 path; -+}; -+ -+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); -+ -+enum cgroup_opt_features { -+ OPT_FEATURE_PRESSURE = 0, -+ OPT_FEATURE_COUNT = 1, -+}; -+ -+enum cgroup2_param { -+ Opt_nsdelegate = 0, -+ Opt_memory_localevents = 1, -+ Opt_memory_recursiveprot = 2, -+ nr__cgroup2_params = 3, -+}; -+ -+struct cgroupstats { -+ __u64 nr_sleeping; -+ __u64 nr_running; -+ __u64 nr_stopped; -+ __u64 nr_uninterruptible; -+ __u64 nr_io_wait; -+}; -+ -+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, -+}; -+ -+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 pids_cgroup { -+ struct cgroup_subsys_state css; -+ atomic64_t counter; -+ atomic64_t limit; -+ struct cgroup_file events_file; -+ atomic64_t events_limit; -+}; -+ -+typedef struct { -+ char *from; -+ char *to; -+} substring_t; -+ -+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 root_domain___2; -+ -+struct fmeter { -+ int cnt; -+ int val; -+ time64_t time; -+ spinlock_t lock; -+}; -+ -+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 subparts_cpus; -+ nodemask_t old_mems_allowed; -+ struct fmeter fmeter; -+ int attach_in_progress; -+ int pn; -+ int relax_domain_level; -+ int nr_subparts_cpus; -+ int partition_root_state; -+ int use_parent_ecpus; -+ int child_ecpus_count; -+}; -+ -+struct tmpmasks { -+ cpumask_var_t addmask; -+ cpumask_var_t delmask; -+ cpumask_var_t new_cpus; -+}; -+ -+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; -+ -+enum subparts_cmd { -+ partcmd_enable = 0, -+ partcmd_disable = 1, -+ partcmd_update = 2, -+}; -+ -+struct cpuset_migrate_mm_work { -+ struct work_struct work; -+ struct mm_struct *mm; -+ nodemask_t from; -+ nodemask_t to; -+}; -+ -+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_CPU_EXCLUSIVE = 6, -+ FILE_MEM_EXCLUSIVE = 7, -+ FILE_MEM_HARDWALL = 8, -+ FILE_SCHED_LOAD_BALANCE = 9, -+ FILE_PARTITION_ROOT = 10, -+ FILE_SCHED_RELAX_DOMAIN_LEVEL = 11, -+ FILE_MEMORY_PRESSURE_ENABLED = 12, -+ FILE_MEMORY_PRESSURE = 13, -+ FILE_SPREAD_PAGE = 14, -+ FILE_SPREAD_SLAB = 15, -+} cpuset_filetype_t; -+ -+enum misc_res_type { -+ MISC_CG_RES_TYPES = 0, -+}; -+ -+struct misc_res { -+ long unsigned int max; -+ atomic_long_t usage; -+ bool failed; -+}; -+ -+struct misc_cg { -+ struct cgroup_subsys_state css; -+ struct misc_res res[0]; -+}; -+ -+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; -+}; -+ -+struct ctl_path { -+ const char *procname; -+}; -+ -+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; -+}; -+ -+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_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 audit_proctitle { -+ int len; -+ char *value; -+}; -+ -+struct audit_aux_data; -+ -+struct __kernel_sockaddr_storage; -+ -+struct audit_tree_refs; -+ -+struct audit_context { -+ int dummy; -+ int in_syscall; -+ enum audit_state state; -+ enum audit_state current_state; -+ unsigned int serial; -+ int major; -+ 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 pid; -+ 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 { -+ int argc; -+ } execve; -+ struct { -+ char *name; -+ } module; -+ }; -+ int fds[2]; -+ struct audit_proctitle proctitle; -+}; -+ -+struct __kernel_sockaddr_storage { -+ union { -+ struct { -+ __kernel_sa_family_t ss_family; -+ char __data[126]; -+ }; -+ void *__align; -+ }; -+}; -+ -+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 net_generic { -+ union { -+ struct { -+ unsigned int len; -+ struct callback_head rcu; -+ } s; -+ void *ptr[0]; -+ }; -+}; -+ -+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 *); -+ unsigned int *id; -+ size_t size; -+}; -+ -+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; -+}; -+ -+struct netlink_kernel_cfg { -+ unsigned int groups; -+ unsigned int flags; -+ void (*input)(struct sk_buff *); -+ struct mutex *cb_mutex; -+ int (*bind)(struct net *, int); -+ void (*unbind)(struct net *, int); -+ bool (*compare)(struct net *, struct sock *); -+}; -+ -+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; -+}; -+ -+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_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_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_entry { -+ struct list_head list; -+ struct callback_head rcu; -+ struct audit_krule rule; -+}; -+ -+struct audit_buffer___2; -+ -+typedef int __kernel_key_t; -+ -+typedef __kernel_key_t key_t; -+ -+struct cpu_vfs_cap_data { -+ __u32 magic_etc; -+ kernel_cap_t permitted; -+ kernel_cap_t inheritable; -+ kuid_t rootid; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct fsnotify_mark_connector *fsnotify_connp_t; -+ -+struct fsnotify_mark_connector { -+ spinlock_t lock; -+ short unsigned int type; -+ short unsigned int flags; -+ __kernel_fsid_t fsid; -+ union { -+ fsnotify_connp_t *obj; -+ struct fsnotify_mark_connector *destroy_next; -+ }; -+ struct hlist_head list; -+}; -+ -+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_INVALID = 19, -+}; -+ -+enum fsnotify_obj_type { -+ FSNOTIFY_OBJ_TYPE_INODE = 0, -+ FSNOTIFY_OBJ_TYPE_PARENT = 1, -+ FSNOTIFY_OBJ_TYPE_VFSMOUNT = 2, -+ FSNOTIFY_OBJ_TYPE_SB = 3, -+ FSNOTIFY_OBJ_TYPE_COUNT = 4, -+ FSNOTIFY_OBJ_TYPE_DETACHED = 4, -+}; -+ -+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; -+}; -+ -+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_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; -+}; -+ -+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; -+ unsigned int priority; -+ bool shutdown; -+ 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[4]; -+ 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 ignored_mask; -+ unsigned int flags; -+}; -+ -+struct fsnotify_event { -+ struct list_head list; -+}; -+ -+struct audit_parent { -+ struct list_head watches; -+ struct fsnotify_mark mark; -+}; -+ -+struct audit_fsnotify_mark { -+ dev_t dev; -+ long unsigned int ino; -+ char *path; -+ struct fsnotify_mark mark; -+ struct audit_krule *rule; -+}; -+ -+struct audit_chunk___2; -+ -+struct audit_tree { -+ refcount_t count; -+ int goner; -+ struct audit_chunk___2 *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 node { -+ struct list_head list; -+ struct audit_tree *owner; -+ unsigned int index; -+}; -+ -+struct audit_chunk___2 { -+ 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 node owners[0]; -+}; -+ -+struct audit_tree_mark { -+ struct fsnotify_mark mark; -+ struct audit_chunk___2 *chunk; -+}; -+ -+enum { -+ HASH_SIZE = 128, -+}; -+ -+struct kprobe_blacklist_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+}; -+ -+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, -+}; -+ -+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 kgdb_io { -+ const char *name; -+ int (*read_char)(); -+ void (*write_char)(u8); -+ void (*flush)(); -+ int (*init)(); -+ void (*deinit)(); -+ void (*pre_exception)(); -+ void (*post_exception)(); -+ 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; -+}; -+ -+struct debuggerinfo_struct { -+ void *debuggerinfo; -+ struct task_struct *task; -+ int exception_state; -+ int ret_state; -+ int irq_depth; -+ int enter_kgdb; -+ bool rounding_up; -+}; -+ -+typedef int (*get_char_func)(); -+ -+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 **); -+ -+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; -+ -+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; -+ -+struct _kdbtab { -+ char *cmd_name; -+ kdb_func_t cmd_func; -+ char *cmd_usage; -+ char *cmd_help; -+ short int cmd_minlen; -+ kdb_cmdflags_t cmd_flags; -+ struct list_head list_node; -+ bool is_dynamic; -+}; -+ -+typedef struct _kdbtab kdbtab_t; -+ -+typedef enum { -+ KDB_DB_BPT = 0, -+ KDB_DB_SS = 1, -+ KDB_DB_SSBPT = 2, -+ KDB_DB_NOBPT = 3, -+} kdb_dbtrap_t; -+ -+struct _kdbmsg { -+ int km_diag; -+ char *km_msg; -+}; -+ -+typedef struct _kdbmsg kdbmsg_t; -+ -+struct defcmd_set { -+ int count; -+ bool usable; -+ char *name; -+ char *usage; -+ char *help; -+ char **command; -+}; -+ -+struct debug_alloc_header { -+ u32 next; -+ u32 size; -+ void *caller; -+}; -+ -+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 short unsigned int u_short; -+ -+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; -+}; -+ -+struct action_cache { -+ long unsigned int allow_native[7]; -+}; -+ -+struct notification; -+ -+struct seccomp_filter { -+ refcount_t refs; -+ refcount_t users; -+ bool log; -+ 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 sock_fprog { -+ short unsigned int len; -+ struct sock_filter *filter; -+}; -+ -+typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); -+ -+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 { -+ struct semaphore request; -+ u64 next_id; -+ struct list_head notifications; -+}; -+ -+struct seccomp_log_name { -+ u32 log; -+ const char *name; -+}; -+ -+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: 32; -+ long: 64; -+ 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 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 rchan_percpu_buf_dispatcher { -+ struct rchan_buf *buf; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+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 genlmsghdr { -+ __u8 cmd; -+ __u8 version; -+ __u16 reserved; -+}; -+ -+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_TYPE_MAX = 18, -+}; -+ -+struct genl_multicast_group { -+ char name[16]; -+ u8 flags; -+}; -+ -+struct genl_ops; -+ -+struct genl_info; -+ -+struct genl_small_ops; -+ -+struct genl_family { -+ int id; -+ unsigned int hdrsize; -+ char name[16]; -+ unsigned int version; -+ unsigned int maxattr; -+ unsigned int mcgrp_offset; -+ u8 netnsok: 1; -+ u8 parallel_ops: 1; -+ u8 n_ops; -+ u8 n_small_ops; -+ u8 n_mcgrps; -+ const struct nla_policy *policy; -+ int (*pre_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ void (*post_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ const struct genl_ops *ops; -+ const struct genl_small_ops *small_ops; -+ const struct genl_multicast_group *mcgrps; -+ struct module *module; -+}; -+ -+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_info { -+ u32 snd_seq; -+ u32 snd_portid; -+ struct nlmsghdr *nlhdr; -+ struct genlmsghdr *genlhdr; -+ void *userhdr; -+ struct nlattr **attrs; -+ possible_net_t _net; -+ void *user_ptr[2]; -+ struct netlink_ext_ack *extack; -+}; -+ -+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; -+}; -+ -+enum genl_validate_flags { -+ GENL_DONT_VALIDATE_STRICT = 1, -+ GENL_DONT_VALIDATE_DUMP = 2, -+ GENL_DONT_VALIDATE_DUMP_STRICT = 4, -+}; -+ -+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 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 { -+ TRACE_FTRACE_BIT = 0, -+ TRACE_FTRACE_NMI_BIT = 1, -+ TRACE_FTRACE_IRQ_BIT = 2, -+ TRACE_FTRACE_SIRQ_BIT = 3, -+ TRACE_INTERNAL_BIT = 4, -+ TRACE_INTERNAL_NMI_BIT = 5, -+ TRACE_INTERNAL_IRQ_BIT = 6, -+ TRACE_INTERNAL_SIRQ_BIT = 7, -+ TRACE_BRANCH_BIT = 8, -+ TRACE_IRQ_BIT = 9, -+ TRACE_GRAPH_BIT = 10, -+ TRACE_GRAPH_DEPTH_START_BIT = 11, -+ TRACE_GRAPH_DEPTH_END_BIT = 12, -+ TRACE_GRAPH_NOTRACE_BIT = 13, -+ TRACE_TRANSITION_BIT = 14, -+ TRACE_RECORD_RECURSION_BIT = 15, -+}; -+ -+enum { -+ TRACE_CTX_NMI = 0, -+ TRACE_CTX_IRQ = 1, -+ TRACE_CTX_SOFTIRQ = 2, -+ TRACE_CTX_NORMAL = 3, -+}; -+ -+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, -+}; -+ -+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_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_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, -+}; -+ -+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, -+}; -+ -+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 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; -+ long unsigned int max_latency; -+ struct dentry *d_max_latency; -+ struct work_struct fsnotify_work; -+ struct irq_work fsnotify_irqwork; -+ 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[448]; -+ struct trace_event_file *exit_syscall_files[448]; -+ 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; -+ struct list_head err_log; -+ struct dentry *dir; -+ struct dentry *options; -+ struct dentry *percpu_dir; -+ struct dentry *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; -+ 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 cond_snapshot *cond_snapshot; -+ struct trace_func_repeats *last_func_repeats; -+}; -+ -+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 event_subsystem; -+ -+struct trace_subsystem_dir { -+ struct list_head list; -+ struct event_subsystem *subsystem; -+ struct trace_array *tr; -+ struct dentry *entry; -+ int ref_count; -+ int nr_events; -+}; -+ -+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_pid_list { -+ int pid_max; -+ long unsigned int *pids; -+}; -+ -+enum { -+ TRACE_PIDS = 1, -+ TRACE_NO_PIDS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ TRACE_ARRAY_FL_GLOBAL = 1, -+}; -+ -+struct tracer_opt { -+ const char *name; -+ u32 bit; -+}; -+ -+struct tracer_flags { -+ u32 val; -+ struct tracer_opt *opts; -+ struct tracer *trace; -+}; -+ -+struct ftrace_mod_load { -+ struct list_head list; -+ char *func; -+ char *module; -+ int enable; -+}; -+ -+enum { -+ FTRACE_HASH_FL_MOD = 1, -+}; -+ -+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; -+ char *buffer; -+ unsigned int idx; -+ unsigned int size; -+}; -+ -+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_PRINTK_BIT = 8, -+ TRACE_ITER_ANNOTATE_BIT = 9, -+ TRACE_ITER_USERSTACKTRACE_BIT = 10, -+ TRACE_ITER_SYM_USEROBJ_BIT = 11, -+ TRACE_ITER_PRINTK_MSGONLY_BIT = 12, -+ TRACE_ITER_CONTEXT_INFO_BIT = 13, -+ TRACE_ITER_LATENCY_FMT_BIT = 14, -+ TRACE_ITER_RECORD_CMD_BIT = 15, -+ TRACE_ITER_RECORD_TGID_BIT = 16, -+ TRACE_ITER_OVERWRITE_BIT = 17, -+ TRACE_ITER_STOP_ON_FREE_BIT = 18, -+ TRACE_ITER_IRQ_INFO_BIT = 19, -+ TRACE_ITER_MARKERS_BIT = 20, -+ TRACE_ITER_EVENT_FORK_BIT = 21, -+ TRACE_ITER_PAUSE_ON_TRACE_BIT = 22, -+ TRACE_ITER_HASH_PTR_BIT = 23, -+ TRACE_ITER_FUNCTION_BIT = 24, -+ TRACE_ITER_FUNC_FORK_BIT = 25, -+ TRACE_ITER_DISPLAY_GRAPH_BIT = 26, -+ TRACE_ITER_STACKTRACE_BIT = 27, -+ TRACE_ITER_LAST_BIT = 28, -+}; -+ -+struct event_subsystem { -+ struct list_head list; -+ const char *name; -+ struct event_filter *filter; -+ int ref_count; -+}; -+ -+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 { -+ FTRACE_MODIFY_ENABLE_FL = 1, -+ FTRACE_MODIFY_MAY_SLEEP_FL = 2, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum ring_buffer_flags { -+ RB_FL_OVERWRITE = 1, -+}; -+ -+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; -+ u64 read_stamp; -+ u64 page_stamp; -+ struct ring_buffer_event *event; -+ int missed_events; -+}; -+ -+struct rb_irq_work { -+ struct irq_work work; -+ wait_queue_head_t waiters; -+ wait_queue_head_t full_waiters; -+ bool waiters_pending; -+ bool full_waiters_pending; -+ bool wakeup_full; -+}; -+ -+struct trace_buffer___2 { -+ unsigned int flags; -+ int cpus; -+ atomic_t record_disabled; -+ 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)(); -+ struct rb_irq_work irq_work; -+ bool time_stamp_abs; -+}; -+ -+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_page { -+ struct list_head list; -+ local_t write; -+ unsigned int read; -+ local_t entries; -+ long unsigned int real_end; -+ 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___2 *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; -+ 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_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 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; -+}; -+ -+typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); -+ -+struct trace_export { -+ struct trace_export *next; -+ void (*write)(struct trace_export *, const void *, unsigned int); -+ int flags; -+}; -+ -+enum fsnotify_data_type { -+ FSNOTIFY_EVENT_NONE = 0, -+ FSNOTIFY_EVENT_PATH = 1, -+ FSNOTIFY_EVENT_INODE = 2, -+}; -+ -+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, -+}; -+ -+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 stack_entry { -+ struct trace_entry ent; -+ int size; -+ 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 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_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_PRINTK = 256, -+ TRACE_ITER_ANNOTATE = 512, -+ TRACE_ITER_USERSTACKTRACE = 1024, -+ TRACE_ITER_SYM_USEROBJ = 2048, -+ TRACE_ITER_PRINTK_MSGONLY = 4096, -+ TRACE_ITER_CONTEXT_INFO = 8192, -+ TRACE_ITER_LATENCY_FMT = 16384, -+ TRACE_ITER_RECORD_CMD = 32768, -+ TRACE_ITER_RECORD_TGID = 65536, -+ TRACE_ITER_OVERWRITE = 131072, -+ TRACE_ITER_STOP_ON_FREE = 262144, -+ TRACE_ITER_IRQ_INFO = 524288, -+ TRACE_ITER_MARKERS = 1048576, -+ TRACE_ITER_EVENT_FORK = 2097152, -+ TRACE_ITER_PAUSE_ON_TRACE = 4194304, -+ TRACE_ITER_HASH_PTR = 8388608, -+ TRACE_ITER_FUNCTION = 16777216, -+ TRACE_ITER_FUNC_FORK = 33554432, -+ TRACE_ITER_DISPLAY_GRAPH = 67108864, -+ TRACE_ITER_STACKTRACE = 134217728, -+}; -+ -+struct trace_min_max_param { -+ struct mutex *lock; -+ u64 *val; -+ u64 *min; -+ u64 *max; -+}; -+ -+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; -+}; -+ -+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 read; -+}; -+ -+struct err_info { -+ const char **errs; -+ u8 type; -+ u8 pos; -+ u64 ts; -+}; -+ -+struct tracing_log_err { -+ struct list_head list; -+ struct err_info info; -+ char loc[128]; -+ char cmd[256]; -+}; -+ -+struct buffer_ref { -+ struct trace_buffer *buffer; -+ void *page; -+ int cpu; -+ refcount_t refcount; -+}; -+ -+struct ftrace_func_mapper___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 userstack_entry { -+ struct trace_entry ent; -+ unsigned int tgid; -+ long unsigned int caller[8]; -+}; -+ -+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 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_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; -+}; -+ -+struct trace_bprintk_fmt { -+ struct list_head list; -+ const char *fmt; -+}; -+ -+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 *); -+}; -+ -+enum { -+ TRACE_FUNC_NO_OPTS = 0, -+ TRACE_FUNC_OPT_STACK = 1, -+ TRACE_FUNC_OPT_NO_REPEATS = 2, -+ TRACE_FUNC_OPT_HIGHEST_BIT = 4, -+}; -+ -+struct ftrace_graph_ent { -+ long unsigned int func; -+ int depth; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret { -+ long unsigned int func; -+ int depth; -+ unsigned int overrun; -+ long long unsigned int calltime; -+ long long unsigned int rettime; -+}; -+ -+typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); -+ -+typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); -+ -+struct fgraph_ops { -+ trace_func_graph_ent_t entryfunc; -+ trace_func_graph_ret_t retfunc; -+}; -+ -+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 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_thread_noise {}; -+ -+struct trace_event_data_offsets_softirq_noise {}; -+ -+struct trace_event_data_offsets_irq_noise { -+ u32 desc; -+}; -+ -+struct trace_event_data_offsets_nmi_noise {}; -+ -+struct trace_event_data_offsets_sample_threshold {}; -+ -+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); -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+enum { -+ TRACE_NOP_OPT_ACCEPT = 1, -+ TRACE_NOP_OPT_REFUSE = 2, -+}; -+ -+struct ftrace_graph_ent_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ent graph_ent; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ret ret; -+}; -+ -+struct fgraph_cpu_data { -+ pid_t last_pid; -+ int depth; -+ int depth_irq; -+ int ignore; -+ long unsigned int enter_funcs[50]; -+}; -+ -+struct fgraph_data { -+ struct fgraph_cpu_data *cpu_data; -+ struct ftrace_graph_ent_entry ent; -+ struct ftrace_graph_ret_entry ret; -+ int failed; -+ int cpu; -+ int: 32; -+} __attribute__((packed)); -+ -+enum { -+ FLAGS_FILL_FULL = 268435456, -+ FLAGS_FILL_START = 536870912, -+ FLAGS_FILL_END = 805306368, -+}; -+ -+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]; -+}; -+ -+typedef __u32 blk_mq_req_flags_t; -+ -+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]; -+ long unsigned int rq_dispatched[2]; -+ long unsigned int rq_merged; -+ long unsigned int rq_completed[2]; -+ struct request_queue *queue; -+ struct blk_mq_ctxs *ctxs; -+ struct kobject kobj; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct blk_mq_tags; -+ -+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; -+ long unsigned int queued; -+ long unsigned int run; -+ long unsigned int dispatched[7]; -+ 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; -+ long unsigned int poll_considered; -+ long unsigned int poll_invoked; -+ long unsigned int poll_success; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct list_head hctx_list; -+ struct srcu_struct srcu[0]; -+ long: 64; -+}; -+ -+struct blk_mq_alloc_data { -+ struct request_queue *q; -+ blk_mq_req_flags_t flags; -+ unsigned int shallow_depth; -+ unsigned int cmd_flags; -+ struct blk_mq_ctx *ctx; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+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_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; -+}; -+ -+struct blk_flush_queue { -+ 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]; -+ struct list_head flush_data_in_flight; -+ struct request *flush_rq; -+ spinlock_t mq_flush_lock; -+}; -+ -+struct blk_mq_queue_map { -+ unsigned int *mq_map; -+ unsigned int nr_queues; -+ unsigned int queue_offset; -+}; -+ -+struct blk_mq_tag_set { -+ struct blk_mq_queue_map map[3]; -+ unsigned int nr_maps; -+ const struct blk_mq_ops *ops; -+ 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; -+ atomic_t active_queues_shared_sbitmap; -+ struct sbitmap_queue __bitmap_tags; -+ struct sbitmap_queue __breserved_tags; -+ struct blk_mq_tags **tags; -+ struct mutex tag_list_lock; -+ struct list_head tag_list; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 blk_mq_tags { -+ unsigned int nr_tags; -+ unsigned int nr_reserved_tags; -+ atomic_t active_queues; -+ struct sbitmap_queue *bitmap_tags; -+ struct sbitmap_queue *breserved_tags; -+ 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_mq_queue_data { -+ struct request *rq; -+ bool last; -+}; -+ -+struct blk_mq_ctxs { -+ struct kobject kobj; -+ struct blk_mq_ctx *queue_ctx; -+}; -+ -+typedef void blk_log_action_t(struct trace_iterator *, const char *, bool); -+ -+struct ftrace_event_field { -+ struct list_head link; -+ const char *name; -+ const char *type; -+ int filter_type; -+ int offset; -+ int size; -+ int is_signed; -+}; -+ -+enum { -+ FORMAT_HEADER = 1, -+ FORMAT_FIELD_SEPERATOR = 2, -+ FORMAT_PRINTFMT = 3, -+}; -+ -+struct event_probe_data { -+ struct trace_event_file *file; -+ long unsigned int count; -+ int ref; -+ bool enable; -+}; -+ -+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 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int ret; -+}; -+ -+struct syscall_tp_t___2 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int args[6]; -+}; -+ -+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, -+ __PERF_SAMPLE_CALLCHAIN_EARLY = 0, -+}; -+ -+typedef long unsigned int perf_trace_t[256]; -+ -+struct filter_pred; -+ -+struct prog_entry { -+ int target; -+ int when_to_branch; -+ struct filter_pred *pred; -+}; -+ -+typedef int (*filter_pred_fn_t)(struct filter_pred *, void *); -+ -+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; -+}; -+ -+struct filter_pred { -+ filter_pred_fn_t fn; -+ u64 val; -+ struct regex regex; -+ short unsigned int *ops; -+ struct ftrace_event_field *field; -+ int offset; -+ int not; -+ int op; -+}; -+ -+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 { -+ 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_OPERAND_TOO_LONG = 5, -+ FILT_ERR_EXPECT_STRING = 6, -+ FILT_ERR_EXPECT_DIGIT = 7, -+ FILT_ERR_ILLEGAL_FIELD_OP = 8, -+ FILT_ERR_FIELD_NOT_FOUND = 9, -+ FILT_ERR_ILLEGAL_INTVAL = 10, -+ FILT_ERR_BAD_SUBSYS_FILTER = 11, -+ FILT_ERR_TOO_MANY_PREDS = 12, -+ FILT_ERR_INVALID_FILTER = 13, -+ FILT_ERR_IP_FIELD_ONLY = 14, -+ FILT_ERR_INVALID_VALUE = 15, -+ FILT_ERR_ERRNO = 16, -+ FILT_ERR_NO_FILTER = 17, -+}; -+ -+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, -+}; -+ -+enum { -+ TOO_MANY_CLOSE = 4294967295, -+ TOO_MANY_OPEN = 4294967294, -+ MISSING_QUOTE = 4294967293, -+}; -+ -+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 event_trigger_ops; -+ -+struct event_command; -+ -+struct event_trigger_data { -+ long unsigned int count; -+ int ref; -+ 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 (*func)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); -+ int (*init)(struct event_trigger_ops *, struct event_trigger_data *); -+ void (*free)(struct event_trigger_ops *, struct event_trigger_data *); -+ int (*print)(struct seq_file *, struct event_trigger_ops *, struct event_trigger_data *); -+}; -+ -+struct event_command { -+ struct list_head list; -+ char *name; -+ enum event_trigger_type trigger_type; -+ int flags; -+ int (*func)(struct event_command *, struct trace_event_file *, char *, char *, char *); -+ int (*reg)(char *, struct event_trigger_ops *, struct event_trigger_data *, struct trace_event_file *); -+ void (*unreg)(char *, struct event_trigger_ops *, 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, -+}; -+ -+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 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; -+}; -+ -+struct synth_trace_event { -+ struct trace_entry ent; -+ u64 fields[0]; -+}; -+ -+struct dyn_event_operations; -+ -+struct dyn_event { -+ struct list_head list; -+ struct dyn_event_operations *ops; -+}; -+ -+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; -+}; -+ -+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 *); -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct hist_field; -+ -+typedef u64 (*hist_field_fn_t)(struct hist_field *, struct tracing_map_elt *, struct trace_buffer *, struct ring_buffer_event *, void *); -+ -+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, -+}; -+ -+struct hist_field { -+ struct ftrace_event_field *field; -+ long unsigned int flags; -+ hist_field_fn_t fn; -+ unsigned int ref; -+ unsigned int size; -+ unsigned int offset; -+ unsigned int is_signed; -+ const char *type; -+ struct hist_field *operands[2]; -+ struct hist_trigger_data *hist_data; -+ 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; -+}; -+ -+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[32]; -+ unsigned int n_field_vars; -+ unsigned int n_field_var_str; -+ struct field_var_hist *field_var_hists[32]; -+ unsigned int n_field_var_hists; -+ struct field_var *save_vars[32]; -+ 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, -+}; -+ -+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; -+ 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[32]; -+ unsigned int var_ref_idx[16]; -+ 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[32]; -+}; -+ -+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; -+}; -+ -+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_MAX_ID = 169, -+}; -+ -+enum { -+ BPF_F_INDEX_MASK = 4294967295, -+ BPF_F_CURRENT_CPU = 4294967295, -+ BPF_F_CTXLEN_MASK = 0, -+}; -+ -+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_local_storage_data; -+ -+struct bpf_local_storage { -+ struct bpf_local_storage_data *cache[16]; -+ struct hlist_head list; -+ void *owner; -+ struct callback_head rcu; -+ raw_spinlock_t lock; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_UNINIT_MAP_VALUE = 4, -+ ARG_PTR_TO_MAP_VALUE_OR_NULL = 5, -+ ARG_PTR_TO_MEM = 6, -+ ARG_PTR_TO_MEM_OR_NULL = 7, -+ ARG_PTR_TO_UNINIT_MEM = 8, -+ ARG_CONST_SIZE = 9, -+ ARG_CONST_SIZE_OR_ZERO = 10, -+ ARG_PTR_TO_CTX = 11, -+ ARG_PTR_TO_CTX_OR_NULL = 12, -+ ARG_ANYTHING = 13, -+ ARG_PTR_TO_SPIN_LOCK = 14, -+ ARG_PTR_TO_SOCK_COMMON = 15, -+ ARG_PTR_TO_INT = 16, -+ ARG_PTR_TO_LONG = 17, -+ ARG_PTR_TO_SOCKET = 18, -+ ARG_PTR_TO_SOCKET_OR_NULL = 19, -+ ARG_PTR_TO_BTF_ID = 20, -+ ARG_PTR_TO_ALLOC_MEM = 21, -+ ARG_PTR_TO_ALLOC_MEM_OR_NULL = 22, -+ ARG_CONST_ALLOC_SIZE_OR_ZERO = 23, -+ ARG_PTR_TO_BTF_ID_SOCK_COMMON = 24, -+ ARG_PTR_TO_PERCPU_BTF_ID = 25, -+ ARG_PTR_TO_FUNC = 26, -+ ARG_PTR_TO_STACK_OR_NULL = 27, -+ ARG_PTR_TO_CONST_STR = 28, -+ __BPF_ARG_TYPE_MAX = 29, -+}; -+ -+enum bpf_return_type { -+ RET_INTEGER = 0, -+ RET_VOID = 1, -+ RET_PTR_TO_MAP_VALUE = 2, -+ RET_PTR_TO_MAP_VALUE_OR_NULL = 3, -+ RET_PTR_TO_SOCKET_OR_NULL = 4, -+ RET_PTR_TO_TCP_SOCK_OR_NULL = 5, -+ RET_PTR_TO_SOCK_COMMON_OR_NULL = 6, -+ RET_PTR_TO_ALLOC_MEM_OR_NULL = 7, -+ RET_PTR_TO_BTF_ID_OR_NULL = 8, -+ RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL = 9, -+ RET_PTR_TO_MEM_OR_BTF_ID = 10, -+ RET_PTR_TO_BTF_ID = 11, -+}; -+ -+struct bpf_func_proto { -+ u64 (*func)(u64, u64, u64, u64, u64); -+ bool gpl_only; -+ bool pkt_access; -+ 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]; -+ }; -+ int *ret_btf_id; -+ bool (*allowed)(const struct bpf_prog *); -+}; -+ -+enum bpf_access_type { -+ BPF_READ = 1, -+ BPF_WRITE = 2, -+}; -+ -+struct bpf_verifier_log; -+ -+struct bpf_insn_access_aux { -+ enum bpf_reg_type reg_type; -+ union { -+ int ctx_field_size; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ }; -+ struct bpf_verifier_log *log; -+}; -+ -+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_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 btf *, const struct btf_type *, int, int, enum bpf_access_type, u32 *); -+ bool (*check_kfunc_call)(u32); -+}; -+ -+struct bpf_array_aux { -+ enum bpf_prog_type type; -+ bool jited; -+ 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 { -+ char value[0]; -+ void *ptrs[0]; -+ void *pptrs[0]; -+ }; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 struct user_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 btf_id_set { -+ u32 cnt; -+ u32 ids[0]; -+}; -+ -+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 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; -+}; -+ -+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_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_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)(); -+ -+typedef u64 (*btf_bpf_get_current_task_btf)(); -+ -+typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); -+ -+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_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 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_DEREF = 10, -+ FETCH_OP_UDEREF = 11, -+ FETCH_OP_ST_RAW = 12, -+ FETCH_OP_ST_MEM = 13, -+ FETCH_OP_ST_UMEM = 14, -+ FETCH_OP_ST_STRING = 15, -+ FETCH_OP_ST_USTRING = 16, -+ FETCH_OP_MOD_BF = 17, -+ FETCH_OP_LP_ARRAY = 18, -+ FETCH_OP_END = 19, -+ FETCH_NOP_SYMBOL = 20, -+}; -+ -+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; -+ int is_signed; -+ 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 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_arg args[0]; -+}; -+ -+struct event_file_link { -+ struct trace_event_file *file; -+ struct list_head list; -+}; -+ -+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_MAXACT_NO_KPROBE = 6, -+ TP_ERR_BAD_MAXACT = 7, -+ TP_ERR_MAXACT_TOO_BIG = 8, -+ TP_ERR_BAD_PROBE_ADDR = 9, -+ TP_ERR_BAD_RETPROBE = 10, -+ TP_ERR_BAD_ADDR_SUFFIX = 11, -+ TP_ERR_NO_GROUP_NAME = 12, -+ TP_ERR_GROUP_TOO_LONG = 13, -+ TP_ERR_BAD_GROUP_NAME = 14, -+ TP_ERR_NO_EVENT_NAME = 15, -+ TP_ERR_EVENT_TOO_LONG = 16, -+ TP_ERR_BAD_EVENT_NAME = 17, -+ TP_ERR_RETVAL_ON_PROBE = 18, -+ TP_ERR_BAD_STACK_NUM = 19, -+ TP_ERR_BAD_ARG_NUM = 20, -+ TP_ERR_BAD_VAR = 21, -+ TP_ERR_BAD_REG_NAME = 22, -+ TP_ERR_BAD_MEM_ADDR = 23, -+ TP_ERR_BAD_IMM = 24, -+ TP_ERR_IMMSTR_NO_CLOSE = 25, -+ TP_ERR_FILE_ON_KPROBE = 26, -+ TP_ERR_BAD_FILE_OFFS = 27, -+ TP_ERR_SYM_ON_UPROBE = 28, -+ TP_ERR_TOO_MANY_OPS = 29, -+ TP_ERR_DEREF_NEED_BRACE = 30, -+ TP_ERR_BAD_DEREF_OFFS = 31, -+ TP_ERR_DEREF_OPEN_BRACE = 32, -+ TP_ERR_COMM_CANT_DEREF = 33, -+ TP_ERR_BAD_FETCH_ARG = 34, -+ TP_ERR_ARRAY_NO_CLOSE = 35, -+ TP_ERR_BAD_ARRAY_SUFFIX = 36, -+ TP_ERR_BAD_ARRAY_NUM = 37, -+ TP_ERR_ARRAY_TOO_BIG = 38, -+ TP_ERR_BAD_TYPE = 39, -+ TP_ERR_BAD_STRING = 40, -+ TP_ERR_BAD_BITFIELD = 41, -+ TP_ERR_ARG_NAME_TOO_LONG = 42, -+ TP_ERR_NO_ARG_NAME = 43, -+ TP_ERR_BAD_ARG_NAME = 44, -+ TP_ERR_USED_ARG_NAME = 45, -+ TP_ERR_ARG_TOO_LONG = 46, -+ TP_ERR_NO_ARG_BODY = 47, -+ TP_ERR_BAD_INSN_BNDRY = 48, -+ TP_ERR_FAIL_REG_PROBE = 49, -+ TP_ERR_DIFF_PROBE_TYPE = 50, -+ TP_ERR_DIFF_ARG_TYPE = 51, -+ TP_ERR_SAME_PROBE = 52, -+}; -+ -+struct trace_kprobe { -+ struct dyn_event devent; -+ struct kretprobe rp; -+ long unsigned int *nhit; -+ const char *symbol; -+ struct trace_probe tp; -+}; -+ -+enum error_detector { -+ ERROR_DETECTOR_KFENCE = 0, -+ ERROR_DETECTOR_KASAN = 1, -+}; -+ -+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_event_raw_cpu { -+ struct trace_entry ent; -+ u32 state; -+ u32 cpu_id; -+ 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_data_offsets_cpu {}; -+ -+struct trace_event_data_offsets_powernv_throttle { -+ u32 reason; -+}; -+ -+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; -+ u32 driver; -+ u32 parent; -+ u32 pm_ops; -+}; -+ -+struct trace_event_data_offsets_device_pm_callback_end { -+ u32 device; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_suspend_resume {}; -+ -+struct trace_event_data_offsets_wakeup_source { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clock { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_power_domain { -+ u32 name; -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); -+ -+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); -+ -+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_data_offsets_rpm_internal { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_rpm_return_int { -+ u32 name; -+}; -+ -+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); -+ -+struct trace_probe_log { -+ const char *subsystem; -+ const char **argv; -+ int argc; -+ int index; -+}; -+ -+enum uprobe_filter_ctx { -+ UPROBE_FILTER_REGISTER = 0, -+ UPROBE_FILTER_UNREGISTER = 1, -+ UPROBE_FILTER_MMAP = 2, -+}; -+ -+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 *, enum uprobe_filter_ctx, struct mm_struct *); -+ struct uprobe_consumer *next; -+}; -+ -+struct uprobe_trace_entry_head { -+ struct trace_entry ent; -+ long unsigned int vaddr[0]; -+}; -+ -+struct trace_uprobe { -+ struct dyn_event devent; -+ struct uprobe_consumer consumer; -+ struct path path; -+ struct inode *inode; -+ char *filename; -+ long unsigned int offset; -+ long unsigned int ref_ctr_offset; -+ long unsigned int nhit; -+ struct trace_probe tp; -+}; -+ -+struct uprobe_dispatch_data { -+ struct trace_uprobe *tu; -+ long unsigned int bp_addr; -+}; -+ -+struct uprobe_cpu_buffer { -+ struct mutex mutex; -+ void *buf; -+}; -+ -+typedef bool (*filter_func_t)(struct uprobe_consumer *, enum uprobe_filter_ctx, struct mm_struct *); -+ -+struct rnd_state { -+ __u32 s1; -+ __u32 s2; -+ __u32 s3; -+ __u32 s4; -+}; -+ -+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]; -+}; -+ -+enum xdp_action { -+ XDP_ABORTED = 0, -+ XDP_DROP = 1, -+ XDP_PASS = 2, -+ XDP_TX = 3, -+ XDP_REDIRECT = 4, -+}; -+ -+enum bpf_jit_poke_reason { -+ BPF_POKE_REASON_TAIL_CALL = 0, -+}; -+ -+enum bpf_text_poke_type { -+ BPF_MOD_CALL = 0, -+ BPF_MOD_JUMP = 1, -+}; -+ -+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_cpumap_stats { -+ unsigned int redirect; -+ unsigned int pass; -+ unsigned int drop; -+}; -+ -+struct bpf_prog_dummy { -+ struct bpf_prog prog; -+}; -+ -+typedef u64 (*btf_bpf_user_rnd_u32)(); -+ -+typedef u64 (*btf_bpf_get_raw_cpu_id)(); -+ -+struct _bpf_dtab_netdev { -+ struct net_device *dev; -+}; -+ -+struct rhash_lock_head {}; -+ -+struct zero_copy_allocator; -+ -+struct xdp_mem_allocator { -+ struct xdp_mem_info mem; -+ union { -+ void *allocator; -+ struct page_pool *page_pool; -+ struct zero_copy_allocator *zc_alloc; -+ }; -+ 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_mem_return_failed { -+ struct trace_entry ent; -+ const struct page *page; -+ u32 mem_id; -+ u32 mem_type; -+ 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 {}; -+ -+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 *); -+ -+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, -+}; -+ -+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, -+}; -+ -+enum bpf_stats_type { -+ BPF_STATS_RUN_TIME = 0, -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct bpf_btf_info { -+ __u64 btf; -+ __u32 btf_size; -+ __u32 id; -+ __u64 name; -+ __u32 name_len; -+ __u32 kernel_btf; -+}; -+ -+struct bpf_spin_lock { -+ __u32 val; -+}; -+ -+typedef sockptr_t bpfptr_t; -+ -+struct bpf_verifier_log { -+ u32 level; -+ char kbuf[1024]; -+ char *ubuf; -+ u32 len_used; -+ u32 len_total; -+}; -+ -+struct bpf_subprog_info { -+ u32 start; -+ u32 linfo_idx; -+ u16 stack_depth; -+ bool has_tail_call; -+ bool tail_call_reachable; -+ bool has_ld_abs; -+}; -+ -+struct bpf_id_pair { -+ u32 old; -+ u32 cur; -+}; -+ -+struct bpf_verifier_stack_elem; -+ -+struct bpf_verifier_state; -+ -+struct bpf_verifier_state_list; -+ -+struct bpf_insn_aux_data; -+ -+struct bpf_verifier_env { -+ u32 insn_idx; -+ u32 prev_insn_idx; -+ struct bpf_prog *prog; -+ const struct bpf_verifier_ops *ops; -+ struct bpf_verifier_stack_elem *head; -+ int stack_size; -+ bool strict_alignment; -+ bool test_state_freq; -+ 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; -+ bool explore_alu_limits; -+ bool allow_ptr_leaks; -+ bool allow_uninit_stack; -+ bool allow_ptr_to_map_access; -+ bool bpf_capable; -+ bool bypass_spec_v1; -+ bool bypass_spec_v4; -+ bool seen_direct_write; -+ 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[257]; -+ struct bpf_id_pair idmap_scratch[75]; -+ struct { -+ int *insn_state; -+ int *insn_stack; -+ int cur_stack; -+ } cfg; -+ 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; -+}; -+ -+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 bpf_map *map_ptr; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ u32 mem_size; -+ struct { -+ long unsigned int raw1; -+ long unsigned int raw2; -+ } raw; -+ u32 subprogno; -+ }; -+ u32 id; -+ u32 ref_obj_id; -+ 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; -+ struct bpf_reg_state *parent; -+ u32 frameno; -+ s32 subreg_def; -+ enum bpf_reg_liveness live; -+ bool precise; -+}; -+ -+struct bpf_reference_state; -+ -+struct bpf_stack_state; -+ -+struct bpf_func_state { -+ struct bpf_reg_state regs[11]; -+ int callsite; -+ u32 frameno; -+ u32 subprogno; -+ int acquired_refs; -+ struct bpf_reference_state *refs; -+ int allocated_stack; -+ bool in_callback_fn; -+ struct bpf_stack_state *stack; -+}; -+ -+struct bpf_attach_target_info { -+ struct btf_func_model fmodel; -+ long int tgt_addr; -+ const char *tgt_name; -+ const struct btf_type *tgt_type; -+}; -+ -+struct bpf_link_primer { -+ struct bpf_link *link; -+ struct file *file; -+ int fd; -+ 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; -+}; -+ -+struct bpf_idx_pair { -+ u32 prev_idx; -+ u32 idx; -+}; -+ -+struct bpf_verifier_state { -+ struct bpf_func_state *frame[8]; -+ struct bpf_verifier_state *parent; -+ u32 branches; -+ u32 insn_idx; -+ u32 curframe; -+ u32 active_spin_lock; -+ bool speculative; -+ u32 first_insn_idx; -+ u32 last_insn_idx; -+ struct bpf_idx_pair *jmp_history; -+ u32 jmp_history_cnt; -+}; -+ -+struct bpf_verifier_state_list { -+ struct bpf_verifier_state state; -+ struct bpf_verifier_state_list *next; -+ int miss_cnt; -+ int hit_cnt; -+}; -+ -+struct bpf_insn_aux_data { -+ union { -+ enum bpf_reg_type ptr_type; -+ long unsigned int 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; -+ }; -+ u64 map_key_state; -+ int ctx_field_size; -+ u32 seen; -+ bool sanitize_stack_spill; -+ bool zext_dst; -+ u8 alu_state; -+ unsigned int orig_idx; -+ bool prune_point; -+}; -+ -+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_tracing_link { -+ struct bpf_link link; -+ enum bpf_attach_type attach_type; -+ struct bpf_trampoline *trampoline; -+ struct bpf_prog *tgt_prog; -+}; -+ -+struct bpf_raw_tp_link { -+ struct bpf_link link; -+ struct bpf_raw_event_map *btp; -+}; -+ -+typedef u64 (*btf_bpf_sys_bpf)(int, void *, u32); -+ -+typedef u64 (*btf_bpf_sys_close)(u32); -+ -+struct btf_member { -+ __u32 name_off; -+ __u32 type; -+ __u32 offset; -+}; -+ -+struct btf_param { -+ __u32 name_off; -+ __u32 type; -+}; -+ -+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 sk_action { -+ SK_DROP = 0, -+ SK_PASS = 1, -+}; -+ -+struct bpf_kfunc_desc { -+ struct btf_func_model func_model; -+ u32 func_id; -+ s32 imm; -+}; -+ -+struct bpf_kfunc_desc_tab { -+ struct bpf_kfunc_desc descs[256]; -+ u32 nr_descs; -+}; -+ -+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 *); -+ int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); -+ int (*reg)(void *); -+ void (*unreg)(void *); -+ const struct btf_type *type; -+ const struct btf_type *value_type; -+ const char *name; -+ struct btf_func_model func_models[64]; -+ u32 type_id; -+ u32 value_id; -+}; -+ -+typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); -+ -+enum bpf_stack_slot_type { -+ STACK_INVALID = 0, -+ STACK_SPILL = 1, -+ STACK_MISC = 2, -+ STACK_ZERO = 3, -+}; -+ -+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; -+}; -+ -+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, -+ MAX_BTF_SOCK_TYPE = 13, -+}; -+ -+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_call_arg_meta { -+ struct bpf_map *map_ptr; -+ bool raw_mode; -+ bool pkt_access; -+ int regno; -+ int access_size; -+ int mem_size; -+ u64 msize_max_value; -+ int ref_obj_id; -+ int func_id; -+ struct btf *btf; -+ u32 btf_id; -+ struct btf *ret_btf; -+ u32 ret_btf_id; -+ u32 subprogno; -+}; -+ -+enum reg_arg_type { -+ SRC_OP = 0, -+ DST_OP = 1, -+ DST_OP_NO_MARK = 2, -+}; -+ -+enum stack_access_src { -+ ACCESS_DIRECT = 1, -+ ACCESS_HELPER = 2, -+}; -+ -+struct bpf_reg_types { -+ const enum bpf_reg_type types[10]; -+ u32 *btf_id; -+}; -+ -+enum { -+ AT_PKT_END = 4294967295, -+ BEYOND_PKT_END = 4294967294, -+}; -+ -+typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); -+ -+enum { -+ REASON_BOUNDS = 4294967295, -+ REASON_TYPE = 4294967294, -+ REASON_PATHS = 4294967293, -+ REASON_LIMIT = 4294967292, -+ REASON_STACK = 4294967291, -+}; -+ -+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 tree_descr { -+ const char *name; -+ const struct file_operations *ops; -+ int mode; -+}; -+ -+struct umd_info { -+ const char *driver_name; -+ struct file *pipe_to_umh; -+ struct file *pipe_from_umh; -+ struct path wd; -+ struct pid *tgid; -+}; -+ -+struct bpf_preload_info { -+ char link_name[16]; -+ int link_id; -+}; -+ -+struct bpf_preload_ops { -+ struct umd_info info; -+ int (*preload)(struct bpf_preload_info *); -+ int (*finish)(); -+ 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; -+}; -+ -+enum { -+ OPT_MODE = 0, -+}; -+ -+struct bpf_mount_opts { -+ umode_t mode; -+}; -+ -+struct bpf_pidns_info { -+ __u32 pid; -+ __u32 tgid; -+}; -+ -+struct bpf_cgroup_storage_info { -+ struct task_struct *task; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+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_get_smp_processor_id)(); -+ -+typedef u64 (*btf_bpf_get_numa_node_id)(); -+ -+typedef u64 (*btf_bpf_ktime_get_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_boot_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_coarse_ns)(); -+ -+typedef u64 (*btf_bpf_get_current_pid_tgid)(); -+ -+typedef u64 (*btf_bpf_get_current_uid_gid)(); -+ -+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)(); -+ -+typedef u64 (*btf_bpf_get_current_cgroup_id)(); -+ -+typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); -+ -+typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); -+ -+typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, long int *); -+ -+typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, long unsigned int *); -+ -+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_per_cpu_ptr)(const void *, u32); -+ -+typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); -+ -+struct bpf_bprintf_buffers { -+ char tmp_bufs[1536]; -+}; -+ -+typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); -+ -+union bpf_iter_link_info { -+ struct { -+ __u32 map_fd; -+ } map; -+}; -+ -+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 *); -+ -+enum bpf_iter_feature { -+ BPF_ITER_RESCHED = 1, -+}; -+ -+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; -+ 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_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: 56; -+ u8 target_private[0]; -+}; -+ -+typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, 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 bpf_iter_seq_task_common { -+ struct pid_namespace *ns; -+}; -+ -+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 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; -+ }; -+}; -+ -+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 bpf_iter__bpf_map_elem { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct bpf_map *map; -+ }; -+ union { -+ void *key; -+ }; -+ union { -+ void *value; -+ }; -+}; -+ -+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 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: 32; -+ 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 nr_scans; -+ bool percpu; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bucket { -+ struct hlist_nulls_head head; -+ union { -+ raw_spinlock_t raw_lock; -+ spinlock_t lock; -+ }; -+}; -+ -+struct htab_elem; -+ -+struct bpf_htab { -+ struct bpf_map map; -+ struct bucket *buckets; -+ void *elems; -+ 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; -+ atomic_t count; -+ u32 n_buckets; -+ u32 elem_size; -+ u32 hashrnd; -+ struct lock_class_key lockdep_key; -+ int *map_locked[8]; -+ 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 bpf_htab *htab; -+ struct pcpu_freelist_node fnode; -+ struct htab_elem *batch_flink; -+ }; -+ }; -+ }; -+ union { -+ struct callback_head rcu; -+ struct bpf_lru_node lru_node; -+ }; -+ u32 hash; -+ int: 32; -+ 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_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; -+}; -+ -+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_lpm_trie_key { -+ __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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cgroup_storage_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct rb_root root; -+ struct list_head list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_queue_stack { -+ struct bpf_map map; -+ raw_spinlock_t lock; -+ u32 head; -+ u32 tail; -+ u32 size; -+ char elements[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t spinlock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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); -+ -+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]; -+}; -+ -+enum { -+ BPF_LOCAL_STORAGE_GET_F_CREATE = 1, -+ BPF_SK_STORAGE_GET_F_CREATE = 1, -+}; -+ -+typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64); -+ -+typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); -+ -+struct lsm_blob_sizes { -+ int lbs_cred; -+ int lbs_file; -+ int lbs_inode; -+ int lbs_superblock; -+ int lbs_ipc; -+ int lbs_msg_msg; -+ int lbs_task; -+}; -+ -+struct bpf_storage_blob { -+ struct bpf_local_storage *storage; -+}; -+ -+typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64); -+ -+typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); -+ -+struct bpf_tramp_progs { -+ struct bpf_prog *progs[38]; -+ int nr_progs; -+}; -+ -+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, -+}; -+ -+struct btf_var { -+ __u32 linkage; -+}; -+ -+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; -+ __u32 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; -+}; -+ -+struct xdp_md { -+ __u32 data; -+ __u32 data_end; -+ __u32 data_meta; -+ __u32 ingress_ifindex; -+ __u32 rx_queue_index; -+ __u32 egress_ifindex; -+}; -+ -+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; -+}; -+ -+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_sk_lookup { -+ union { -+ union { -+ struct bpf_sock *sk; -+ }; -+ __u64 cookie; -+ }; -+ __u32 family; -+ __u32 protocol; -+ __u32 remote_ip4; -+ __u32 remote_ip6[4]; -+ __u32 remote_port; -+ __u32 local_ip4; -+ __u32 local_ip6[4]; -+ __u32 local_port; -+}; -+ -+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; -+}; -+ -+struct inet_listen_hashbucket { -+ spinlock_t lock; -+ unsigned int count; -+ union { -+ struct hlist_head head; -+ struct hlist_nulls_head nulls_head; -+ }; -+}; -+ -+struct inet_ehash_bucket; -+ -+struct inet_bind_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; -+ unsigned int bhash_size; -+ unsigned int lhash2_mask; -+ struct inet_listen_hashbucket *lhash2; -+ long: 64; -+ struct inet_listen_hashbucket listening_hash[32]; -+}; -+ -+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 tcp_fastopen_context { -+ siphash_key_t key[2]; -+ int num; -+ struct callback_head rcu; -+}; -+ -+struct xdp_txq_info { -+ struct net_device *dev; -+}; -+ -+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; -+}; -+ -+struct bpf_sock_addr_kern { -+ struct sock *sk; -+ struct sockaddr *uaddr; -+ u64 tmp_reg; -+ void *t_ctx; -+}; -+ -+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 bpf_sysctl_kern { -+ struct ctl_table_header *head; -+ 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; -+ s32 retval; -+}; -+ -+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; -+ bool no_reuseport; -+}; -+ -+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 sock_reuseport { -+ struct callback_head rcu; -+ u16 max_socks; -+ u16 num_socks; -+ u16 num_closed_socks; -+ 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 sk_psock_progs { -+ struct bpf_prog *msg_parser; -+ struct bpf_prog *stream_parser; -+ struct bpf_prog *stream_verdict; -+ struct bpf_prog *skb_verdict; -+}; -+ -+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_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 { -+ struct sk_buff *skb; -+ 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; -+ struct sk_msg *cork; -+ struct sk_psock_progs progs; -+ struct strparser strp; -+ 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_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 work_struct work; -+ struct rcu_work rwork; -+}; -+ -+struct inet_ehash_bucket { -+ struct hlist_nulls_head chain; -+}; -+ -+struct inet_bind_hashbucket { -+ spinlock_t lock; -+ struct hlist_head chain; -+}; -+ -+struct ack_sample { -+ u32 pkts_acked; -+ s32 rtt_us; -+ u32 in_flight; -+}; -+ -+struct rate_sample { -+ u64 prior_mstamp; -+ u32 prior_delivered; -+ s32 delivered; -+ 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; -+ bool is_app_limited; -+ bool is_retrans; -+ bool is_ack_delayed; -+}; -+ -+struct sk_msg_sg { -+ u32 start; -+ u32 curr; -+ u32 end; -+ u32 size; -+ u32 copybreak; -+ long unsigned int copy; -+ 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 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 *); -+}; -+ -+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; -+}; -+ -+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_convert_unused = 30, -+}; -+ -+enum bpf_struct_walk_result { -+ WALK_SCALAR = 0, -+ WALK_PTR = 1, -+ WALK_STRUCT = 2, -+}; -+ -+struct btf_show_snprintf { -+ struct btf_show show; -+ int len_left; -+ int len; -+}; -+ -+struct btf_module { -+ struct list_head list; -+ struct module *module; -+ struct btf *btf; -+ struct bin_attribute *sysfs_attr; -+}; -+ -+typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); -+ -+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; -+ u32 image_off; -+ struct bpf_ksym ksym; -+}; -+ -+enum { -+ BPF_F_BROADCAST = 8, -+ BPF_F_EXCLUDE_INGRESS = 16, -+}; -+ -+struct bpf_devmap_val { -+ __u32 ifindex; -+ 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, -+}; -+ -+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; -+}; -+ -+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_RELEASE = 18, -+ NETDEV_NOTIFY_PEERS = 19, -+ NETDEV_JOIN = 20, -+ NETDEV_CHANGEUPPER = 21, -+ NETDEV_RESEND_IGMP = 22, -+ NETDEV_PRECHANGEMTU = 23, -+ NETDEV_CHANGEINFODATA = 24, -+ NETDEV_BONDING_INFO = 25, -+ NETDEV_PRECHANGEUPPER = 26, -+ NETDEV_CHANGELOWERSTATE = 27, -+ NETDEV_UDP_TUNNEL_PUSH_INFO = 28, -+ NETDEV_UDP_TUNNEL_DROP_INFO = 29, -+ NETDEV_CHANGE_TX_QUEUE_LEN = 30, -+ NETDEV_CVLAN_FILTER_PUSH_INFO = 31, -+ NETDEV_CVLAN_FILTER_DROP_INFO = 32, -+ NETDEV_SVLAN_FILTER_PUSH_INFO = 33, -+ NETDEV_SVLAN_FILTER_DROP_INFO = 34, -+}; -+ -+struct netdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+}; -+ -+struct bpf_nh_params { -+ u32 nh_family; -+ union { -+ u32 ipv4_nh; -+ struct in6_addr ipv6_nh; -+ }; -+}; -+ -+struct bpf_redirect_info { -+ u32 flags; -+ u32 tgt_index; -+ void *tgt_value; -+ struct bpf_map *map; -+ u32 map_id; -+ enum bpf_map_type map_type; -+ u32 kern_flags; -+ struct bpf_nh_params nh; -+}; -+ -+struct bpf_dtab; -+ -+struct bpf_dtab_netdev { -+ struct net_device *dev; -+ struct hlist_node index_hlist; -+ struct bpf_dtab *dtab; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cpumap_val { -+ __u32 qsize; -+ union { -+ int fd; -+ __u32 id; -+ } bpf_prog; -+}; -+ -+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; -+ -+struct bpf_cpu_map_entry { -+ u32 cpu; -+ int map_id; -+ struct xdp_bulk_queue *bulkq; -+ struct bpf_cpu_map *cmap; -+ struct ptr_ring *queue; -+ struct task_struct *kthread; -+ struct bpf_cpumap_val value; -+ struct bpf_prog *prog; -+ atomic_t refcnt; -+ struct callback_head rcu; -+ struct work_struct kthread_stop_wq; -+}; -+ -+struct bpf_cpu_map { -+ struct bpf_map map; -+ struct bpf_cpu_map_entry **cpu_map; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rhlist_head { -+ struct rhash_head rhead; -+ struct rhlist_head *next; -+}; -+ -+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 *); -+ -+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 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; -+}; -+ -+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 = 4294967264, -+ PERF_CONTEXT_KERNEL = 4294967168, -+ PERF_CONTEXT_USER = 4294966784, -+ PERF_CONTEXT_GUEST = 4294965248, -+ PERF_CONTEXT_GUEST_KERNEL = 4294965120, -+ PERF_CONTEXT_GUEST_USER = 4294964736, -+ PERF_CONTEXT_MAX = 4294963201, -+}; -+ -+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]; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct stack_map_irq_work { -+ struct irq_work irq_work; -+ struct mm_struct *mm; -+}; -+ -+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_task_stack)(struct task_struct *, void *, u32, u64); -+ -+typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); -+ -+enum { -+ BPF_F_SYSCTL_BASE_NAME = 1, -+}; -+ -+struct bpf_prog_list { -+ struct list_head node; -+ struct bpf_prog *prog; -+ struct bpf_cgroup_link *link; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+struct qdisc_skb_cb { -+ struct { -+ unsigned int pkt_len; -+ u16 slave_dev_queue_mapping; -+ u16 tc_classid; -+ }; -+ unsigned char data[20]; -+ u16 mru; -+ bool post_ct; -+}; -+ -+struct bpf_skb_data_end { -+ struct qdisc_skb_cb qdisc_cb; -+ void *data_meta; -+ void *data_end; -+}; -+ -+struct bpf_sockopt_buf { -+ u8 data[32]; -+}; -+ -+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, -+}; -+ -+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); -+ -+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_SCTP = 132, -+ IPPROTO_UDPLITE = 136, -+ IPPROTO_MPLS = 137, -+ IPPROTO_ETHERNET = 143, -+ IPPROTO_RAW = 255, -+ IPPROTO_MPTCP = 262, -+ IPPROTO_MAX = 263, -+}; -+ -+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, -+}; -+ -+struct reuseport_array { -+ struct bpf_map map; -+ struct sock *ptrs[0]; -+}; -+ -+enum bpf_struct_ops_state { -+ BPF_STRUCT_OPS_STATE_INIT = 0, -+ BPF_STRUCT_OPS_STATE_INUSE = 1, -+ BPF_STRUCT_OPS_STATE_TOBEFREE = 2, -+}; -+ -+struct bpf_struct_ops_value { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state state; -+ 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 *st_ops; -+ struct mutex lock; -+ struct bpf_prog **progs; -+ void *image; -+ struct bpf_struct_ops_value *uvalue; -+ struct bpf_struct_ops_value kvalue; -+}; -+ -+struct bpf_struct_ops_tcp_congestion_ops { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct tcp_congestion_ops data; -+}; -+ -+struct sembuf { -+ short unsigned int sem_num; -+ short int sem_op; -+ short int sem_flg; -+}; -+ -+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 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; -+}; -+ -+enum { -+ BPF_F_BPRM_SECUREEXEC = 1, -+}; -+ -+struct watch_notification; -+ -+typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); -+ -+typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); -+ -+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_MAX = 262144, -+}; -+ -+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_MAX = 16, -+}; -+ -+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_MAX = 21, -+}; -+ -+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_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; -+ 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; -+ void **aux_pages; -+ void *aux_priv; -+ struct perf_event_mmap_page *user_page; -+ void *data_pages[0]; -+}; -+ -+struct match_token { -+ int token; -+ const char *pattern; -+}; -+ -+enum { -+ MAX_OPT_ARGS = 3, -+}; -+ -+struct min_heap { -+ void *data; -+ int nr; -+ int size; -+}; -+ -+struct min_heap_callbacks { -+ int elem_size; -+ bool (*less)(const void *, const void *); -+ void (*swp)(void *, void *); -+}; -+ -+typedef int (*remote_function_f)(void *); -+ -+struct remote_function_call { -+ struct task_struct *p; -+ remote_function_f func; -+ void *info; -+ int ret; -+}; -+ -+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; -+}; -+ -+enum event_type_t { -+ EVENT_FLEXIBLE = 1, -+ EVENT_PINNED = 2, -+ EVENT_TIME = 4, -+ EVENT_CPU = 8, -+ EVENT_ALL = 3, -+}; -+ -+struct __group_key { -+ int cpu; -+ struct cgroup *cgroup; -+}; -+ -+struct stop_event_data { -+ struct perf_event *event; -+ unsigned int restart; -+}; -+ -+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; -+ int recursion[4]; -+}; -+ -+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 = 4294967295, -+ 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; -+ u32 pid; -+ u32 tid; -+}; -+ -+struct perf_aux_event___2 { -+ struct perf_event_header header; -+ u64 offset; -+ u64 size; -+ u64 flags; -+}; -+ -+struct callchain_cpus_entries { -+ struct callback_head callback_head; -+ struct perf_callchain_entry *cpu_entries[0]; -+}; -+ -+struct bp_cpuinfo { -+ unsigned int cpu_pinned; -+ unsigned int *tsk_pinned; -+ unsigned int flexible; -+}; -+ -+struct bp_busy_slots { -+ unsigned int pinned; -+ unsigned int flexible; -+}; -+ -+typedef u32 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 uprobe_consumer *consumers; -+ struct inode *inode; -+ loff_t offset; -+ loff_t ref_ctr_offset; -+ long unsigned int flags; -+ struct arch_uprobe arch; -+}; -+ -+struct xol_area { -+ wait_queue_head_t wq; -+ atomic_t slot_count; -+ long unsigned int *bitmap; -+ struct vm_special_mapping xol_mapping; -+ struct page *pages[2]; -+ long unsigned int vaddr; -+}; -+ -+struct compact_control; -+ -+struct capture_control { -+ struct compact_control *cc; -+ struct page *page; -+}; -+ -+typedef int filler_t(void *, struct page *); -+ -+struct page_vma_mapped_walk { -+ struct page *page; -+ struct vm_area_struct *vma; -+ long unsigned int address; -+ pmd_t *pmd; -+ pte_t *pte; -+ spinlock_t *ptl; -+ unsigned int flags; -+}; -+ -+struct compact_control { -+ struct list_head freepages; -+ 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 rescan; -+ bool alloc_contig; -+}; -+ -+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 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; -+ atomic_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; -+ long: 64; -+ long: 64; -+ spinlock_t lock; -+ long: 32; -+ 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_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; -+}; -+ -+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 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); -+ -+enum rseq_cpu_id_state { -+ RSEQ_CPU_ID_UNINITIALIZED = 4294967295, -+ RSEQ_CPU_ID_REGISTRATION_FAILED = 4294967294, -+}; -+ -+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; -+ 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 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___2 { -+ __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___2 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[2]; -+ }; -+ 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; -+ bool defunct; -+}; -+ -+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; -+}; -+ -+struct pkcs7_message; -+ -+typedef int __kernel_rwf_t; -+ -+enum positive_aop_returns { -+ AOP_WRITEPAGE_ACTIVATE = 524288, -+ AOP_TRUNCATED_PAGE = 524289, -+}; -+ -+struct vm_event_state { -+ long unsigned int event[95]; -+}; -+ -+enum iter_type { -+ ITER_IOVEC = 0, -+ ITER_KVEC = 1, -+ ITER_BVEC = 2, -+ ITER_PIPE = 3, -+ ITER_XARRAY = 4, -+ ITER_DISCARD = 5, -+}; -+ -+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_THP_SUPPORT = 6, -+}; -+ -+struct wait_page_key { -+ struct page *page; -+ int bit_nr; -+ int page_match; -+}; -+ -+struct pagevec { -+ unsigned char nr; -+ bool percpu_pvec_drained; -+ struct page *pages[15]; -+}; -+ -+struct fid { -+ union { -+ struct { -+ u32 ino; -+ u32 gen; -+ u32 parent_ino; -+ u32 parent_gen; -+ } i32; -+ struct { -+ u32 block; -+ u16 partref; -+ u16 parent_partref; -+ u32 generation; -+ u32 parent_block; -+ u32 parent_generation; -+ } udf; -+ __u32 raw[0]; -+ }; -+}; -+ -+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; -+ 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_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 page *); -+ -+typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct page *); -+ -+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 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; -+ struct kmem_cache_order_objects oo; -+ struct kmem_cache_order_objects max; -+ 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[64]; -+}; -+ -+struct kmem_cache_cpu { -+ void **freelist; -+ long unsigned int tid; -+ struct page *page; -+ struct page *partial; -+}; -+ -+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 zap_details { -+ struct address_space *check_mapping; -+ long unsigned int first_index; -+ long unsigned int last_index; -+ struct page *single_page; -+}; -+ -+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; -+}; -+ -+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 page *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 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 batch_count; -+ struct mmu_gather_batch *active; -+ struct mmu_gather_batch local; -+ struct page *__pages[8]; -+}; -+ -+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, -+}; -+ -+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; -+ 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 {}; -+ -+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 *, int); -+ -+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); -+ -+enum wb_congested_state { -+ WB_async_congested = 0, -+ WB_sync_congested = 1, -+}; -+ -+enum { -+ XA_CHECK_SCHED = 4096, -+}; -+ -+enum wb_state { -+ WB_registered = 0, -+ WB_writeback_running = 1, -+ WB_has_dirty_io = 2, -+ WB_start_all = 3, -+}; -+ -+enum { -+ BLK_RW_ASYNC = 0, -+ BLK_RW_SYNC = 1, -+}; -+ -+struct wb_lock_cookie { -+ bool locked; -+ long unsigned int flags; -+}; -+ -+typedef int (*writepage_t)(struct page *, struct writeback_control *, void *); -+ -+enum page_memcg_data_flags { -+ MEMCG_DATA_OBJCGS = 1, -+ MEMCG_DATA_KMEM = 2, -+ __NR_MEMCG_DATA_FLAGS = 4, -+}; -+ -+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; -+}; -+ -+typedef void compound_page_dtor(struct page *); -+ -+struct trace_event_raw_mm_lru_insertion { -+ struct trace_entry ent; -+ struct page *page; -+ 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 page *page; -+ 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 page *); -+ -+typedef void (*btf_trace_mm_lru_activate)(void *, struct page *); -+ -+struct lru_rotate { -+ local_lock_t lock; -+ struct pagevec pvec; -+}; -+ -+struct lru_pvecs { -+ local_lock_t lock; -+ struct pagevec lru_add; -+ struct pagevec lru_deactivate_file; -+ struct pagevec lru_deactivate; -+ struct pagevec lru_lazyfree; -+ struct pagevec activate_page; -+}; -+ -+enum lruvec_flags { -+ LRUVEC_CONGESTED = 0, -+}; -+ -+enum pgdat_flags { -+ PGDAT_DIRTY = 0, -+ PGDAT_WRITEBACK = 1, -+ PGDAT_RECLAIM_LOCKED = 2, -+}; -+ -+enum zone_flags { -+ ZONE_BOOSTED_WATERMARK = 0, -+ ZONE_RECLAIM_ACTIVE = 1, -+}; -+ -+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; -+}; -+ -+struct mem_cgroup_reclaim_cookie { -+ pg_data_t *pgdat; -+ unsigned int generation; -+}; -+ -+enum ttu_flags { -+ TTU_SPLIT_HUGE_PMD = 4, -+ TTU_IGNORE_MLOCK = 8, -+ TTU_SYNC = 16, -+ TTU_IGNORE_HWPOISON = 32, -+ TTU_BATCH_FLUSH = 64, -+ TTU_RMAP_LOCKED = 128, -+}; -+ -+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_TYPES = 8, -+}; -+ -+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; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { -+ struct trace_entry ent; -+ int order; -+ gfp_t 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; -+ gfp_t 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; -+ isolate_mode_t isolate_mode; -+ int lru; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_writepage { -+ 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; -+ gfp_t gfp_flags; -+ 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_writepage {}; -+ -+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 {}; -+ -+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, isolate_mode_t, int); -+ -+typedef void (*btf_trace_mm_vmscan_writepage)(void *, struct page *); -+ -+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); -+ -+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; -+ 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 memcg_low_reclaim: 1; -+ unsigned int memcg_low_skipped: 1; -+ unsigned int hibernation_mode: 1; -+ unsigned int compaction_ready: 1; -+ unsigned int cache_trim_mode: 1; -+ unsigned int file_is_tiny: 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 page_references { -+ PAGEREF_RECLAIM = 0, -+ PAGEREF_RECLAIM_CLEAN = 1, -+ PAGEREF_KEEP = 2, -+ PAGEREF_ACTIVATE = 3, -+}; -+ -+enum scan_balance { -+ SCAN_EQUAL = 0, -+ SCAN_FRACT = 1, -+ SCAN_ANON = 2, -+ SCAN_FILE = 3, -+}; -+ -+enum transparent_hugepage_flag { -+ TRANSPARENT_HUGEPAGE_NEVER_DAX = 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 xattr; -+ -+typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); -+ -+struct xattr { -+ const char *name; -+ void *value; -+ size_t value_len; -+}; -+ -+struct constant_table { -+ const char *name; -+ int value; -+}; -+ -+enum { -+ MPOL_DEFAULT = 0, -+ MPOL_PREFERRED = 1, -+ MPOL_BIND = 2, -+ MPOL_INTERLEAVE = 3, -+ MPOL_LOCAL = 4, -+ MPOL_MAX = 5, -+}; -+ -+struct shared_policy { -+ struct rb_root root; -+ rwlock_t lock; -+}; -+ -+struct simple_xattrs { -+ struct list_head head; -+ spinlock_t lock; -+}; -+ -+struct simple_xattr { -+ struct list_head list; -+ char *name; -+ size_t size; -+ char value[0]; -+}; -+ -+struct shmem_inode_info { -+ spinlock_t lock; -+ unsigned int seals; -+ long unsigned int flags; -+ long unsigned int alloced; -+ long unsigned int swapped; -+ struct list_head shrinklist; -+ struct list_head swaplist; -+ struct shared_policy policy; -+ struct simple_xattrs xattrs; -+ atomic_t stop_eviction; -+ struct inode vfs_inode; -+}; -+ -+struct shmem_sb_info { -+ long unsigned int max_blocks; -+ struct percpu_counter used_blocks; -+ long unsigned int max_inodes; -+ long unsigned int free_inodes; -+ spinlock_t stat_lock; -+ umode_t mode; -+ unsigned char huge; -+ kuid_t uid; -+ kgid_t gid; -+ bool full_inums; -+ ino_t next_ino; -+ ino_t *ino_batch; -+ struct mempolicy *mpol; -+ spinlock_t shrinklist_lock; -+ struct list_head shrinklist; -+ long unsigned int shrinklist_len; -+}; -+ -+enum sgp_type { -+ SGP_READ = 0, -+ SGP_CACHE = 1, -+ SGP_NOHUGE = 2, -+ SGP_HUGE = 3, -+ SGP_WRITE = 4, -+ SGP_FALLOC = 5, -+}; -+ -+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_LUSTRE = 151, -+ FILEID_KERNFS = 254, -+ FILEID_INVALID = 255, -+}; -+ -+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; -+}; -+ -+enum shmem_param { -+ Opt_gid = 0, -+ Opt_huge = 1, -+ Opt_mode = 2, -+ Opt_mpol = 3, -+ Opt_nr_blocks = 4, -+ Opt_nr_inodes = 5, -+ Opt_size = 6, -+ Opt_uid = 7, -+ Opt_inode32 = 8, -+ Opt_inode64 = 9, -+}; -+ -+enum writeback_stat_item { -+ NR_DIRTY_THRESHOLD = 0, -+ NR_DIRTY_BG_THRESHOLD = 1, -+ NR_VM_WRITEBACK_STAT_ITEMS = 2, -+}; -+ -+struct contig_page_info { -+ long unsigned int free_pages; -+ long unsigned int free_blocks_total; -+ long unsigned int free_blocks_suitable; -+}; -+ -+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 mminit_level { -+ MMINIT_WARNING = 0, -+ MMINIT_VERIFY = 1, -+ MMINIT_TRACE = 2, -+}; -+ -+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 void * (*pcpu_fc_alloc_fn_t)(unsigned int, size_t, size_t); -+ -+typedef void (*pcpu_fc_free_fn_t)(void *, size_t); -+ -+typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); -+ -+struct trace_event_raw_percpu_alloc_percpu { -+ struct trace_entry ent; -+ bool reserved; -+ bool is_atomic; -+ size_t size; -+ size_t align; -+ void *base_addr; -+ int off; -+ void *ptr; -+ 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 *, bool, bool, size_t, size_t, void *, int, void *); -+ -+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 pcpu_chunk { -+ struct list_head list; -+ int free_bytes; -+ struct pcpu_block_md chunk_md; -+ void *base_addr; -+ long unsigned int *alloc_map; -+ long unsigned int *bound_map; -+ struct pcpu_block_md *md_blocks; -+ void *data; -+ bool immutable; -+ bool isolated; -+ int start_offset; -+ int end_offset; -+ struct obj_cgroup **obj_cgroups; -+ int nr_pages; -+ int nr_populated; -+ int nr_empty_pop_pages; -+ long unsigned int populated[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc_node { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t 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; -+ gfp_t 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; -+ 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_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_alloc {}; -+ -+struct trace_event_data_offsets_kmem_alloc_node {}; -+ -+struct trace_event_data_offsets_kfree {}; -+ -+struct trace_event_data_offsets_kmem_cache_free { -+ u32 name; -+}; -+ -+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_rss_stat {}; -+ -+typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmalloc_node)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); -+ -+typedef void (*btf_trace_kmem_cache_alloc_node)(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 char *); -+ -+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); -+ -+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_rss_stat)(void *, struct mm_struct *, int, long int); -+ -+enum slab_state { -+ DOWN = 0, -+ PARTIAL = 1, -+ PARTIAL_NODE = 2, -+ UP = 3, -+ FULL = 4, -+}; -+ -+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 page *kp_page; -+ 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]; -+}; -+ -+enum pageblock_bits { -+ PB_migrate = 0, -+ PB_migrate_end = 2, -+ PB_migrate_skip = 3, -+ NR_PAGEBLOCK_BITS = 4, -+}; -+ -+struct node___2 { -+ struct device dev; -+ struct list_head access_list; -+ struct work_struct node_work; -+ struct list_head cache_attrs; -+ struct device *cache_dev; -+}; -+ -+typedef struct page *new_page_t(struct page *, long unsigned int); -+ -+typedef void free_page_t(struct page *, long unsigned int); -+ -+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; -+ gfp_t 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_migratepages)(void *, long unsigned int, int, struct list_head *); -+ -+typedef void (*btf_trace_mm_compaction_begin)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, bool); -+ -+typedef void (*btf_trace_mm_compaction_end)(void *, long unsigned int, long unsigned int, 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; -+ -+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 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 lru_status { -+ LRU_REMOVED = 0, -+ LRU_REMOVED_RETRY = 1, -+ LRU_ROTATE = 2, -+ LRU_SKIP = 3, -+ LRU_RETRY = 4, -+}; -+ -+typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, spinlock_t *, void *); -+ -+typedef struct { -+ long unsigned int pd; -+} hugepd_t; -+ -+struct migration_target_control { -+ int nid; -+ nodemask_t *nmask; -+ gfp_t gfp_mask; -+}; -+ -+struct follow_page_context { -+ struct dev_pagemap *pgmap; -+ unsigned int page_mask; -+}; -+ -+struct trace_event_raw_mmap_lock_start_locking { -+ 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_raw_mmap_lock_released { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ u32 __data_loc_memcg_path; -+ bool write; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_start_locking { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_acquire_returned { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_released { -+ u32 memcg_path; -+}; -+ -+typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); -+ -+typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); -+ -+typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); -+ -+struct memcg_path { -+ local_lock_t lock; -+ char *buf; -+ local_t buf_idx; -+}; -+ -+typedef struct { -+ u64 val; -+} pfn_t; -+ -+typedef unsigned int pgtbl_mod_mask; -+ -+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, -+}; -+ -+struct copy_subpage_arg { -+ struct page *dst; -+ struct page *src; -+ struct vm_area_struct *vma; -+}; -+ -+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_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 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; -+}; -+ -+enum { -+ HUGETLB_SHMFS_INODE = 1, -+ HUGETLB_ANONHUGE_INODE = 2, -+}; -+ -+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_data_offsets_vm_unmapped_area {}; -+ -+typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); -+ -+enum pgt_entry { -+ NORMAL_PMD = 0, -+ HPAGE_PMD = 1, -+ NORMAL_PUD = 2, -+ HPAGE_PUD = 3, -+}; -+ -+struct rmap_walk_control { -+ void *arg; -+ bool (*rmap_one)(struct page *, struct vm_area_struct *, long unsigned int, void *); -+ int (*done)(struct page *); -+ struct anon_vma * (*anon_lock)(struct page *); -+ bool (*invalid_vma)(struct vm_area_struct *, void *); -+}; -+ -+struct page_referenced_arg { -+ int mapcount; -+ int referenced; -+ long unsigned int vm_flags; -+ struct mem_cgroup *memcg; -+}; -+ -+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; -+ }; -+}; -+ -+struct vfree_deferred { -+ struct llist_head list; -+ struct work_struct wq; -+}; -+ -+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 vmap_block { -+ spinlock_t lock; -+ struct vmap_area *va; -+ long unsigned int free; -+ long unsigned int dirty; -+ long unsigned int dirty_min; -+ long unsigned int dirty_max; -+ struct list_head free_list; -+ struct callback_head callback_head; -+ struct list_head purge; -+}; -+ -+struct page_frag_cache { -+ void *va; -+ __u16 offset; -+ __u16 size; -+ unsigned int pagecnt_bias; -+ bool pfmemalloc; -+}; -+ -+typedef int fpi_t; -+ -+struct pagesets { -+ local_lock_t lock; -+}; -+ -+struct pcpu_drain { -+ struct zone *zone; -+ struct work_struct work; -+}; -+ -+struct mminit_pfnnid_cache { -+ long unsigned int last_start; -+ long unsigned int last_end; -+ int last_nid; -+}; -+ -+enum { -+ MMOP_OFFLINE = 0, -+ MMOP_ONLINE = 1, -+ MMOP_ONLINE_KERNEL = 2, -+ MMOP_ONLINE_MOVABLE = 3, -+}; -+ -+typedef int mhp_t; -+ -+typedef void (*online_page_callback_t)(struct page *, unsigned int); -+ -+struct memory_block { -+ long unsigned int start_section_nr; -+ long unsigned int state; -+ int online_type; -+ int nid; -+ struct device dev; -+ long unsigned int nr_vmemmap_pages; -+}; -+ -+struct memory_notify { -+ long unsigned int start_pfn; -+ long unsigned int nr_pages; -+ int status_change_nid_normal; -+ int status_change_nid_high; -+ int status_change_nid; -+}; -+ -+typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); -+ -+enum mf_flags { -+ MF_COUNT_INCREASED = 1, -+ MF_ACTION_REQUIRED = 2, -+ MF_MUST_KILL = 4, -+ MF_SOFT_OFFLINE = 8, -+}; -+ -+struct madvise_walk_private { -+ struct mmu_gather *tlb; -+ bool pageout; -+}; -+ -+struct vma_swap_readahead { -+ short unsigned int win; -+ short unsigned int offset; -+ short unsigned int nr_pte; -+ pte_t *ptes; -+}; -+ -+enum { -+ PERCPU_REF_INIT_ATOMIC = 1, -+ PERCPU_REF_INIT_DEAD = 2, -+ PERCPU_REF_ALLOW_REINIT = 4, -+}; -+ -+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 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; -+}; -+ -+struct frontswap_ops { -+ void (*init)(unsigned int); -+ int (*store)(unsigned int, long unsigned int, struct page *); -+ int (*load)(unsigned int, long unsigned int, struct page *); -+ void (*invalidate_page)(unsigned int, long unsigned int); -+ void (*invalidate_area)(unsigned int); -+ struct frontswap_ops *next; -+}; -+ -+struct crypto_wait { -+ struct completion completion; -+ int err; -+}; -+ -+struct zpool; -+ -+struct zpool_ops { -+ int (*evict)(struct zpool *, long unsigned int); -+}; -+ -+enum zpool_mapmode { -+ ZPOOL_MM_RW = 0, -+ ZPOOL_MM_RO = 1, -+ ZPOOL_MM_WO = 2, -+ ZPOOL_MM_DEFAULT = 0, -+}; -+ -+struct acomp_req { -+ struct crypto_async_request base; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ unsigned int slen; -+ unsigned int dlen; -+ u32 flags; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *__ctx[0]; -+}; -+ -+struct crypto_acomp { -+ int (*compress)(struct acomp_req *); -+ int (*decompress)(struct acomp_req *); -+ void (*dst_free)(struct scatterlist *); -+ unsigned int reqsize; -+ long: 32; -+ 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 crypto_tfm base; -+}; -+ -+struct crypto_acomp_ctx { -+ struct crypto_acomp *acomp; -+ struct acomp_req *req; -+ struct crypto_wait wait; -+ u8 *dstmem; -+ struct mutex *mutex; -+}; -+ -+struct zswap_pool { -+ struct zpool *zpool; -+ struct crypto_acomp_ctx *acomp_ctx; -+ struct kref kref; -+ struct list_head list; -+ struct work_struct release_work; -+ struct work_struct shrink_work; -+ struct hlist_node node; -+ char tfm_name[128]; -+}; -+ -+struct zswap_entry { -+ struct rb_node rbnode; -+ long unsigned int offset; -+ int refcount; -+ unsigned int length; -+ struct zswap_pool *pool; -+ union { -+ long unsigned int handle; -+ long unsigned int value; -+ }; -+}; -+ -+struct zswap_header { -+ swp_entry_t swpentry; -+}; -+ -+struct zswap_tree { -+ struct rb_root rbroot; -+ spinlock_t lock; -+}; -+ -+enum zswap_get_swap_ret { -+ ZSWAP_SWAPCACHE_NEW = 0, -+ ZSWAP_SWAPCACHE_EXIST = 1, -+ ZSWAP_SWAPCACHE_FAIL = 2, -+}; -+ -+struct dma_pool { -+ struct list_head page_list; -+ spinlock_t lock; -+ size_t size; -+ struct device *dev; -+ size_t allocation; -+ size_t boundary; -+ char name[32]; -+ struct list_head pools; -+}; -+ -+struct dma_page { -+ struct list_head page_list; -+ void *vaddr; -+ dma_addr_t dma; -+ unsigned int in_use; -+ unsigned int offset; -+}; -+ -+enum string_size_units { -+ STRING_UNITS_10 = 0, -+ STRING_UNITS_2 = 1, -+}; -+ -+typedef void (*node_registration_func_t)(struct node___2 *); -+ -+enum mcopy_atomic_mode { -+ MCOPY_ATOMIC_NORMAL = 0, -+ MCOPY_ATOMIC_ZEROPAGE = 1, -+ MCOPY_ATOMIC_CONTINUE = 2, -+}; -+ -+enum { -+ SUBPAGE_INDEX_SUBPOOL = 1, -+ SUBPAGE_INDEX_CGROUP = 2, -+ SUBPAGE_INDEX_CGROUP_RSVD = 3, -+ __MAX_CGROUP_SUBPAGE_INDEX = 3, -+ __NR_USED_SUBPAGE = 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 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; -+}; -+ -+enum hugetlb_page_flags { -+ HPG_restore_reserve = 0, -+ HPG_migratable = 1, -+ HPG_temporary = 2, -+ HPG_freed = 3, -+ HPG_vmemmap_optimized = 4, -+ __NR_HPAGEFLAGS = 5, -+}; -+ -+struct huge_bootmem_page { -+ struct list_head list; -+ struct hstate *hstate; -+}; -+ -+enum hugetlb_memory_event { -+ HUGETLB_MAX = 0, -+ HUGETLB_NR_MEMORY_EVENTS = 1, -+}; -+ -+struct hugetlb_cgroup { -+ struct cgroup_subsys_state css; -+ 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]; -+}; -+ -+enum vma_resv_mode { -+ VMA_NEEDS_RESV = 0, -+ VMA_COMMIT_RESV = 1, -+ VMA_END_RESV = 2, -+ VMA_ADD_RESV = 3, -+ VMA_DEL_RESV = 4, -+}; -+ -+struct node_hstate { -+ struct kobject *hugepages_kobj; -+ struct kobject *hstate_kobjs[4]; -+}; -+ -+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 mempolicy_operations { -+ int (*create)(struct mempolicy *, const nodemask_t *); -+ void (*rebind)(struct mempolicy *, const nodemask_t *); -+}; -+ -+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 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; -+}; -+ -+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_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; -+}; -+ -+struct rmap_item; -+ -+struct mm_slot { -+ struct hlist_node link; -+ struct list_head mm_list; -+ struct rmap_item *rmap_list; -+ struct mm_struct *mm; -+}; -+ -+struct stable_node; -+ -+struct rmap_item { -+ struct rmap_item *rmap_list; -+ union { -+ struct anon_vma *anon_vma; -+ int nid; -+ }; -+ struct mm_struct *mm; -+ long unsigned int address; -+ unsigned int oldchecksum; -+ union { -+ struct rb_node node; -+ struct { -+ struct stable_node *head; -+ struct hlist_node hlist; -+ }; -+ }; -+}; -+ -+struct ksm_scan { -+ struct mm_slot *mm_slot; -+ long unsigned int address; -+ struct rmap_item **rmap_list; -+ long unsigned int seqnr; -+}; -+ -+struct 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; -+}; -+ -+enum get_ksm_page_flags { -+ GET_KSM_PAGE_NOLOCK = 0, -+ GET_KSM_PAGE_LOCK = 1, -+ GET_KSM_PAGE_TRYLOCK = 2, -+}; -+ -+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 track { -+ long unsigned int addr; -+ long unsigned int addrs[16]; -+ int cpu; -+ int pid; -+ long unsigned int when; -+}; -+ -+enum track_item { -+ TRACK_ALLOC = 0, -+ TRACK_FREE = 1, -+}; -+ -+struct detached_freelist { -+ struct page *page; -+ void *tail; -+ void *freelist; -+ int cnt; -+ struct kmem_cache *s; -+}; -+ -+struct location { -+ long unsigned int count; -+ long unsigned int addr; -+ 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[64]; -+ nodemask_t nodes; -+}; -+ -+struct loc_track { -+ long unsigned int max; -+ long unsigned int count; -+ struct location *loc; -+}; -+ -+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; -+}; -+ -+enum slab_modes { -+ M_NONE = 0, -+ M_PARTIAL = 1, -+ M_FULL = 2, -+ M_FREE = 3, -+}; -+ -+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; -+ struct page *b_page; -+ 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; -+}; -+ -+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, -+}; -+ -+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; -+ 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_data_offsets_mm_migrate_pages {}; -+ -+struct trace_event_data_offsets_mm_migrate_pages_start {}; -+ -+typedef void (*btf_trace_mm_migrate_pages)(void *, 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); -+ -+enum scan_result { -+ SCAN_FAIL = 0, -+ SCAN_SUCCEED = 1, -+ SCAN_PMD_NULL = 2, -+ SCAN_EXCEED_NONE_PTE = 3, -+ SCAN_EXCEED_SWAP_PTE = 4, -+ SCAN_EXCEED_SHARED_PTE = 5, -+ SCAN_PTE_NON_PRESENT = 6, -+ SCAN_PTE_UFFD_WP = 7, -+ SCAN_PAGE_RO = 8, -+ SCAN_LACK_REFERENCED_PAGE = 9, -+ SCAN_PAGE_NULL = 10, -+ SCAN_SCAN_ABORT = 11, -+ SCAN_PAGE_COUNT = 12, -+ SCAN_PAGE_LRU = 13, -+ SCAN_PAGE_LOCK = 14, -+ SCAN_PAGE_ANON = 15, -+ SCAN_PAGE_COMPOUND = 16, -+ SCAN_ANY_PROCESS = 17, -+ SCAN_VMA_NULL = 18, -+ SCAN_VMA_CHECK = 19, -+ SCAN_ADDRESS_RANGE = 20, -+ SCAN_SWAP_CACHE_PAGE = 21, -+ SCAN_DEL_PAGE_LRU = 22, -+ SCAN_ALLOC_HUGE_PAGE_FAIL = 23, -+ SCAN_CGROUP_CHARGE_FAIL = 24, -+ SCAN_TRUNCATED = 25, -+ SCAN_PAGE_HAS_PRIVATE = 26, -+}; -+ -+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_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 {}; -+ -+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); -+ -+struct mm_slot___2 { -+ struct hlist_node hash; -+ struct list_head mm_node; -+ struct mm_struct *mm; -+ int nr_pte_mapped_thp; -+ long unsigned int pte_mapped_thp[8]; -+}; -+ -+struct khugepaged_scan { -+ struct list_head mm_head; -+ struct mm_slot___2 *mm_slot; -+ long unsigned int address; -+}; -+ -+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[64]; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum res_type { -+ _MEM = 0, -+ _MEMSWAP = 1, -+ _OOM_TYPE = 2, -+ _KMEM = 3, -+ _TCP = 4, -+}; -+ -+struct memory_stat { -+ const char *name; -+ unsigned int idx; -+}; -+ -+struct oom_wait_info { -+ struct mem_cgroup *memcg; -+ wait_queue_entry_t wait; -+}; -+ -+enum oom_status { -+ OOM_SUCCESS = 0, -+ OOM_FAILED = 1, -+ OOM_ASYNC = 2, -+ OOM_SKIPPED = 3, -+}; -+ -+struct obj_stock { -+ 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 memcg_stock_pcp { -+ struct mem_cgroup *cached; -+ unsigned int nr_pages; -+ struct obj_stock task_obj; -+ struct obj_stock irq_obj; -+ struct work_struct work; -+ long unsigned int flags; -+}; -+ -+enum { -+ RES_USAGE = 0, -+ RES_LIMIT = 1, -+ RES_MAX_USAGE = 2, -+ RES_FAILCNT = 3, -+ RES_SOFT_LIMIT = 4, -+}; -+ -+union mc_target { -+ struct page *page; -+ 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 uncharge_gather { -+ struct mem_cgroup *memcg; -+ long unsigned int nr_memory; -+ long unsigned int pgpgout; -+ long unsigned int nr_kmem; -+ struct page *dummy_page; -+}; -+ -+struct numa_stat { -+ const char *name; -+ unsigned int lru_mask; -+}; -+ -+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 swap_cgroup_ctrl { -+ struct page **map; -+ long unsigned int length; -+ spinlock_t lock; -+}; -+ -+struct swap_cgroup { -+ short unsigned int id; -+}; -+ -+enum { -+ RES_USAGE___2 = 0, -+ RES_RSVD_USAGE = 1, -+ RES_LIMIT___2 = 2, -+ RES_RSVD_LIMIT = 3, -+ RES_MAX_USAGE___2 = 4, -+ RES_RSVD_MAX_USAGE = 5, -+ RES_FAILCNT___2 = 6, -+ RES_RSVD_FAILCNT = 7, -+}; -+ -+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_SLAB = 2, -+ MF_MSG_DIFFERENT_COMPOUND = 3, -+ MF_MSG_POISONED_HUGE = 4, -+ MF_MSG_HUGE = 5, -+ MF_MSG_FREE_HUGE = 6, -+ MF_MSG_NON_PMD_HUGE = 7, -+ MF_MSG_UNMAP_FAILED = 8, -+ MF_MSG_DIRTY_SWAPCACHE = 9, -+ MF_MSG_CLEAN_SWAPCACHE = 10, -+ MF_MSG_DIRTY_MLOCKED_LRU = 11, -+ MF_MSG_CLEAN_MLOCKED_LRU = 12, -+ MF_MSG_DIRTY_UNEVICTABLE_LRU = 13, -+ MF_MSG_CLEAN_UNEVICTABLE_LRU = 14, -+ MF_MSG_DIRTY_LRU = 15, -+ MF_MSG_CLEAN_LRU = 16, -+ MF_MSG_TRUNCATED_LRU = 17, -+ MF_MSG_BUDDY = 18, -+ MF_MSG_BUDDY_2ND = 19, -+ MF_MSG_DAX = 20, -+ MF_MSG_UNSPLIT_THP = 21, -+ MF_MSG_UNKNOWN = 22, -+}; -+ -+typedef long unsigned int dax_entry_t; -+ -+struct __kfifo { -+ unsigned int in; -+ unsigned int out; -+ unsigned int mask; -+ unsigned int esize; -+ void *data; -+}; -+ -+struct to_kill { -+ struct list_head nd; -+ struct task_struct *tsk; -+ long unsigned int addr; -+ short int size_shift; -+}; -+ -+struct hwp_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 *, long unsigned int); -+}; -+ -+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; -+ spinlock_t lock; -+ struct work_struct work; -+}; -+ -+typedef u32 depot_stack_handle_t; -+ -+struct page_ext_operations { -+ size_t offset; -+ size_t size; -+ bool (*need)(); -+ void (*init)(); -+}; -+ -+enum page_ext_flags { -+ PAGE_EXT_OWNER = 0, -+ PAGE_EXT_OWNER_ALLOCATED = 1, -+}; -+ -+struct page_owner { -+ short unsigned int order; -+ short int last_migrate_reason; -+ gfp_t gfp_mask; -+ depot_stack_handle_t handle; -+ depot_stack_handle_t free_handle; -+ u64 ts_nsec; -+ u64 free_ts_nsec; -+ pid_t pid; -+}; -+ -+struct cleancache_filekey { -+ union { -+ ino_t ino; -+ __u32 fh[6]; -+ u32 key[6]; -+ } u; -+}; -+ -+struct cleancache_ops { -+ int (*init_fs)(size_t); -+ int (*init_shared_fs)(uuid_t *, size_t); -+ int (*get_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*put_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*invalidate_page)(int, struct cleancache_filekey, long unsigned int); -+ void (*invalidate_inode)(int, struct cleancache_filekey); -+ void (*invalidate_fs)(int); -+}; -+ -+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 zpool_driver; -+ -+struct zpool { -+ struct zpool_driver *driver; -+ void *pool; -+ const struct zpool_ops *ops; -+ bool evictable; -+ bool can_sleep_mapped; -+ struct list_head list; -+}; -+ -+struct zpool_driver { -+ char *type; -+ struct module *owner; -+ atomic_t refcount; -+ struct list_head list; -+ void * (*create)(const char *, gfp_t, const struct zpool_ops *, struct zpool *); -+ void (*destroy)(void *); -+ bool malloc_support_movable; -+ int (*malloc)(void *, size_t, gfp_t, long unsigned int *); -+ void (*free)(void *, long unsigned int); -+ int (*shrink)(void *, unsigned int, unsigned int *); -+ bool sleep_mapped; -+ void * (*map)(void *, long unsigned int, enum zpool_mapmode); -+ void (*unmap)(void *, long unsigned int); -+ u64 (*total_size)(void *); -+}; -+ -+struct zbud_pool; -+ -+struct zbud_ops { -+ int (*evict)(struct zbud_pool *, long unsigned int); -+}; -+ -+struct zbud_pool { -+ spinlock_t lock; -+ union { -+ struct list_head buddied; -+ struct list_head unbuddied[63]; -+ }; -+ struct list_head lru; -+ u64 pages_nr; -+ const struct zbud_ops *ops; -+ struct zpool *zpool; -+ const struct zpool_ops *zpool_ops; -+}; -+ -+struct zbud_header { -+ struct list_head buddy; -+ struct list_head lru; -+ unsigned int first_chunks; -+ unsigned int last_chunks; -+ bool under_reclaim; -+}; -+ -+enum buddy { -+ FIRST = 0, -+ LAST = 1, -+}; -+ -+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_EMPTY = 0, -+ ZS_ALMOST_EMPTY = 1, -+ ZS_ALMOST_FULL = 2, -+ ZS_FULL = 3, -+ NR_ZS_FULLNESS = 4, -+}; -+ -+enum zs_stat_type { -+ CLASS_EMPTY = 0, -+ CLASS_ALMOST_EMPTY = 1, -+ CLASS_ALMOST_FULL = 2, -+ CLASS_FULL = 3, -+ OBJ_ALLOCATED = 4, -+ OBJ_USED = 5, -+ NR_ZS_STAT_TYPE = 6, -+}; -+ -+struct zs_size_stat { -+ long unsigned int objs[6]; -+}; -+ -+struct size_class { -+ spinlock_t lock; -+ struct list_head fullness_list[4]; -+ 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 dentry *stat_dentry; -+ struct inode *inode; -+ struct work_struct free_work; -+ struct wait_queue_head migration_wait; -+ atomic_long_t isolated_pages; -+ bool destroying; -+}; -+ -+struct zspage { -+ struct { -+ unsigned int fullness: 2; -+ unsigned int class: 9; -+ unsigned int isolated: 3; -+ unsigned int magic: 8; -+ }; -+ unsigned int inuse; -+ unsigned int freeobj; -+ struct page *first_page; -+ struct list_head list; -+ rwlock_t lock; -+}; -+ -+struct mapping_area { -+ char *vm_buf; -+ char *vm_addr; -+ enum zs_mapmode vm_mm; -+}; -+ -+struct zs_compact_control { -+ struct page *s_page; -+ struct page *d_page; -+ int obj_idx; -+}; -+ -+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 inode *inode; -+}; -+ -+enum { -+ BAD_STACK = 4294967295, -+ NOT_STACK = 0, -+ GOOD_FRAME = 1, -+ GOOD_STACK = 2, -+}; -+ -+enum hmm_pfn_flags { -+ HMM_PFN_VALID = 0, -+ HMM_PFN_WRITE = 0, -+ HMM_PFN_ERROR = 0, -+ HMM_PFN_ORDER_SHIFT = 56, -+ HMM_PFN_REQ_FAULT = 0, -+ HMM_PFN_REQ_WRITE = 0, -+ HMM_PFN_FLAGS = 0, -+}; -+ -+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_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, -+}; -+ -+struct hugetlbfs_inode_info { -+ struct shared_policy policy; -+ struct inode vfs_inode; -+ unsigned int seals; -+}; -+ -+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 open_how { -+ __u64 flags; -+ __u64 mode; -+ __u64 resolve; -+}; -+ -+struct open_flags { -+ int open_flag; -+ umode_t mode; -+ int acc_mode; -+ int intent; -+ int lookup_flags; -+}; -+ -+typedef __kernel_rwf_t rwf_t; -+ -+enum vfs_get_super_keying { -+ vfs_get_single_super = 0, -+ vfs_get_single_reconf_super = 1, -+ vfs_get_keyed_super = 2, -+ vfs_get_independent_super = 3, -+}; -+ -+typedef struct kobject *kobj_probe_t(dev_t, int *, void *); -+ -+struct kobj_map; -+ -+struct char_device_struct { -+ struct char_device_struct *next; -+ unsigned int major; -+ unsigned int baseminor; -+ int minorct; -+ char name[64]; -+ struct cdev *cdev; -+}; -+ -+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 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; -+ __u64 __spare2; -+ __u64 __spare3[12]; -+}; -+ -+struct mount; -+ -+struct mnt_namespace { -+ struct ns_common ns; -+ struct mount *root; -+ struct list_head list; -+ spinlock_t ns_lock; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ u64 seq; -+ wait_queue_head_t poll; -+ u64 event; -+ unsigned int mounts; -+ unsigned int pending_mounts; -+}; -+ -+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 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; -+ 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; -+}; -+ -+typedef short unsigned int ushort; -+ -+struct user_arg_ptr { -+ union { -+ const char * const *native; -+ } ptr; -+}; -+ -+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 name_snapshot { -+ struct qstr name; -+ unsigned char inline_name[32]; -+}; -+ -+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 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; -+ kuid_t dir_uid; -+ umode_t dir_mode; -+}; -+ -+struct renamedata { -+ struct user_namespace *old_mnt_userns; -+ struct inode *old_dir; -+ struct dentry *old_dentry; -+ struct user_namespace *new_mnt_userns; -+ struct inode *new_dir; -+ struct dentry *new_dentry; -+ struct inode **delegated_inode; -+ unsigned int flags; -+}; -+ -+enum { -+ LAST_NORM = 0, -+ LAST_ROOT = 1, -+ LAST_DOT = 2, -+ LAST_DOTDOT = 3, -+}; -+ -+enum { -+ WALK_TRAILING = 1, -+ WALK_MORE = 2, -+ WALK_NOFOLLOW = 4, -+}; -+ -+struct word_at_a_time { -+ const long unsigned int one_bits; -+ const long unsigned int high_bits; -+}; -+ -+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_clone_range { -+ __s64 src_fd; -+ __u64 src_offset; -+ __u64 src_length; -+ __u64 dest_offset; -+}; -+ -+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]; -+}; -+ -+typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); -+ -+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 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 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_extent { -+ __u64 fe_logical; -+ __u64 fe_physical; -+ __u64 fe_length; -+ __u64 fe_reserved64[2]; -+ __u32 fe_flags; -+ __u32 fe_reserved[3]; -+}; -+ -+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 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[1]; -+}; -+ -+struct getdents_callback { -+ 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; -+}; -+ -+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; -+ int len; -+ struct pollfd entries[0]; -+}; -+ -+enum dentry_d_lock_class { -+ DENTRY_D_LOCK_NORMAL = 0, -+ DENTRY_D_LOCK_NESTED = 1, -+}; -+ -+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; -+}; -+ -+enum file_time_flags { -+ S_ATIME = 1, -+ S_MTIME = 2, -+ S_CTIME = 4, -+ S_VERSION = 8, -+}; -+ -+struct mount_attr { -+ __u64 attr_set; -+ __u64 attr_clr; -+ __u64 propagation; -+ __u64 userns_fd; -+}; -+ -+struct proc_mounts { -+ struct mnt_namespace *ns; -+ struct path root; -+ int (*show)(struct seq_file *, struct vfsmount *); -+ struct mount cursor; -+}; -+ -+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; -+}; -+ -+enum umount_tree_flags { -+ UMOUNT_SYNC = 1, -+ UMOUNT_PROPAGATE = 2, -+ UMOUNT_CONNECTED = 4, -+}; -+ -+struct simple_transaction_argresp { -+ ssize_t size; -+ char data[0]; -+}; -+ -+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; -+}; -+ -+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_page_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_congest_waited_template { -+ struct trace_entry ent; -+ unsigned int usec_timeout; -+ unsigned int usec_delayed; -+ 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_page_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_congest_waited_template {}; -+ -+struct trace_event_data_offsets_writeback_single_inode_template {}; -+ -+struct trace_event_data_offsets_writeback_inode_template {}; -+ -+typedef void (*btf_trace_writeback_dirty_page)(void *, struct page *, struct address_space *); -+ -+typedef void (*btf_trace_wait_on_page_writeback)(void *, struct page *, 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 page *, 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_congestion_wait)(void *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_writeback_wait_iff_congested)(void *, unsigned int, unsigned int); -+ -+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 splice_desc { -+ size_t total_len; -+ unsigned int len; -+ unsigned int flags; -+ union { -+ void *userptr; -+ struct file *file; -+ void *data; -+ } u; -+ 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 prepend_buffer { -+ char *buf; -+ int len; -+}; -+ -+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]; -+}; -+ -+struct ns_get_path_task_args { -+ const struct proc_ns_operations *ns_ops; -+ struct task_struct *task; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct dax_device; -+ -+struct iomap_page_ops; -+ -+struct iomap___2 { -+ 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_page_ops *page_ops; -+}; -+ -+struct iomap_page_ops { -+ int (*page_prepare)(struct inode *, loff_t, unsigned int, struct iomap___2 *); -+ void (*page_done)(struct inode *, loff_t, unsigned int, struct page *, struct iomap___2 *); -+}; -+ -+struct decrypt_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; -+}; -+ -+enum stat_group { -+ STAT_READ = 0, -+ STAT_WRITE = 1, -+ STAT_DISCARD = 2, -+ STAT_FLUSH = 3, -+ NR_STAT_GROUPS = 4, -+}; -+ -+enum { -+ DISK_EVENT_MEDIA_CHANGE = 1, -+ DISK_EVENT_EJECT_REQUEST = 2, -+}; -+ -+enum { -+ BIOSET_NEED_BVECS = 1, -+ BIOSET_NEED_RESCUER = 2, -+}; -+ -+struct bdev_inode { -+ struct block_device bdev; -+ struct inode vfs_inode; -+}; -+ -+struct blkdev_dio { -+ union { -+ struct kiocb *iocb; -+ struct task_struct *waiter; -+ }; -+ size_t size; -+ atomic_t ref; -+ bool multi_bio: 1; -+ bool should_dirty: 1; -+ bool is_sync: 1; -+ struct bio bio; -+}; -+ -+struct bd_holder_disk { -+ struct list_head list; -+ struct gendisk *disk; -+ int refcnt; -+}; -+ -+typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); -+ -+typedef void dio_submit_t(struct bio *, struct inode *, loff_t); -+ -+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; -+ dio_submit_t *submit_io; -+ 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; -+ int op; -+ int op_flags; -+ blk_qc_t bio_cookie; -+ struct gendisk *bio_disk; -+ struct inode *inode; -+ loff_t i_size; -+ dio_iodone_t *end_io; -+ 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 bvec_iter_all { -+ struct bio_vec bv; -+ int idx; -+ unsigned int done; -+}; -+ -+struct mpage_readpage_args { -+ struct bio *bio; -+ struct page *page; -+ 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; -+ unsigned int use_writepage; -+}; -+ -+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; -+ }; -+ 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]; -+}; -+ -+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 *); -+ const char *lsm; -+}; -+ -+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; -+}; -+ -+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 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 inotify_event_info { -+ struct fsnotify_event fse; -+ u32 mask; -+ int wd; -+ u32 sync_cookie; -+ int name_len; -+ char name[0]; -+}; -+ -+struct inotify_event { -+ __s32 wd; -+ __u32 mask; -+ __u32 cookie; -+ __u32 len; -+ char name[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 file_fh_totlen; -+ u8 name_len; -+ u8 pad; -+ 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_NUM = 5, -+}; -+ -+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 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_path_event { -+ struct fanotify_event fae; -+ struct path path; -+}; -+ -+struct fanotify_perm_event { -+ struct fanotify_event fae; -+ struct path path; -+ short unsigned int response; -+ short unsigned int state; -+ int fd; -+}; -+ -+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_response { -+ __s32 fd; -+ __u32 response; -+}; -+ -+struct epoll_event { -+ __poll_t events; -+ __u64 data; -+}; -+ -+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; -+ 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; -+ rwlock_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; -+ unsigned int napi_id; -+}; -+ -+struct ep_pqueue { -+ poll_table pt; -+ struct epitem *epi; -+}; -+ -+struct epitems_head { -+ struct hlist_head epitems; -+ struct epitems_head *next; -+}; -+ -+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 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 eventfd_ctx___2 { -+ struct kref kref; -+ wait_queue_head_t wqh; -+ __u64 count; -+ unsigned int flags; -+ int id; -+}; -+ -+enum userfaultfd_state { -+ UFFD_STATE_WAIT_API = 0, -+ UFFD_STATE_RUNNING = 1, -+}; -+ -+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; -+ enum userfaultfd_state state; -+ bool released; -+ bool mmap_changing; -+ struct mm_struct *mm; -+}; -+ -+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 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; -+}; -+ -+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 page **ring_pages; -+ 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: 32; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ }; -+ struct page *internal_pages[8]; -+ struct file *aio_ring_file; -+ unsigned int id; -+ long: 32; -+ 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 done; -+ bool cancelled; -+ 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_poll_table { -+ struct poll_table_struct pt; -+ struct aio_kiocb *iocb; -+ int error; -+}; -+ -+struct __aio_sigset { -+ const sigset_t *sigmask; -+ size_t sigsetsize; -+}; -+ -+struct iomap_ops { -+ int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap___2 *, struct iomap___2 *); -+ int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap___2 *); -+}; -+ -+typedef loff_t (*iomap_actor_t)(struct inode *, loff_t, loff_t, void *, struct iomap___2 *, struct iomap___2 *); -+ -+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; -+ long unsigned int 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; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ struct page *zero_page; -+ void *radix_entry; -+ dev_t dev; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pmd_insert_mapping_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ long int length; -+ u64 pfn_val; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pte_fault_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int 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_insert_mapping { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ 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_pmd_insert_mapping_class {}; -+ -+struct trace_event_data_offsets_dax_pte_fault_class {}; -+ -+struct trace_event_data_offsets_dax_insert_mapping {}; -+ -+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 page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_insert_mapping)(void *, struct inode *, struct vm_fault *, long int, pfn_t, 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_insert_mapping)(void *, struct inode *, struct vm_fault *, void *); -+ -+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, -+}; -+ -+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 *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_pid; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *fl; -+ long unsigned int i_ino; -+ dev_t s_dev; -+ struct file_lock *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ long unsigned int fl_break_time; -+ long unsigned int fl_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 fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *); -+ -+typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lock *, struct file_lock *); -+ -+struct file_lock_list_struct { -+ spinlock_t lock; -+ struct hlist_head hlist; -+}; -+ -+struct locks_iterator { -+ int li_cpu; -+ loff_t li_pos; -+}; -+ -+typedef unsigned int __kernel_uid_t; -+ -+typedef unsigned int __kernel_gid_t; -+ -+struct gnu_property { -+ u32 pr_type; -+ u32 pr_datasz; -+}; -+ -+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 core_vma_metadata { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int flags; -+ long unsigned int dump_size; -+}; -+ -+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 posix_acl_xattr_entry { -+ __le16 e_tag; -+ __le16 e_perm; -+ __le32 e_id; -+}; -+ -+struct posix_acl_xattr_header { -+ __le32 a_version; -+}; -+ -+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; -+ short unsigned int qlen; -+ struct rpc_timer timer_list; -+ const char *name; -+}; -+ -+struct nfs_seqid_counter { -+ ktime_t create_time; -+ int owner_id; -+ int flags; -+ u32 counter; -+ spinlock_t lock; -+ struct list_head list; -+ struct rpc_wait_queue wait; -+}; -+ -+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_state; -+ -+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 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; -+ unsigned int nwords; -+ struct rpc_rqst *rqst; -+}; -+ -+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 list_head 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_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; -+ int tk_rpc_status; -+ 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; -+ 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; -+ unsigned char tk_rebind_retry: 2; -+}; -+ -+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; -+ -+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_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_sysfs_client; -+ -+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_clnt { -+ atomic_t cl_count; -+ unsigned int cl_clid; -+ struct list_head cl_clients; -+ struct list_head cl_tasks; -+ 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; -+ 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; -+}; -+ -+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; -+ 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; -+ const char *servername; -+ const char *address_strings[6]; -+ struct dentry *debugfs; -+ atomic_t inject_disconnect; -+ 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 *); -+}; -+ -+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 (*buf_alloc)(struct rpc_task *); -+ void (*buf_free)(struct rpc_task *); -+ void (*prepare_request)(struct rpc_rqst *); -+ int (*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_ops; -+ -+struct svc_serv { -+ struct svc_program *sv_program; -+ struct svc_stat *sv_stats; -+ spinlock_t sv_lock; -+ 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; -+ struct svc_pool *sv_pools; -+ const struct svc_serv_ops *sv_ops; -+ struct list_head sv_cb_list; -+ spinlock_t sv_cb_lock; -+ wait_queue_head_t sv_cb_waitq; -+ 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 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; -+ 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; -+}; -+ -+struct svc_version; -+ -+struct svc_rqst; -+ -+struct svc_process_info; -+ -+struct svc_program { -+ struct svc_program *pg_next; -+ 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; -+ struct svc_stat *pg_stats; -+ int (*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_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 = 4294967295, -+}; -+ -+struct nfs4_label { -+ uint32_t lfs; -+ uint32_t pi; -+ u32 len; -+ char *label; -+}; -+ -+typedef struct { -+ char data[8]; -+} nfs4_verifier; -+ -+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_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 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 nlm_host; -+ -+struct nfs_iostats; -+ -+struct nfs_auth_info { -+ unsigned int flavor_len; -+ rpc_authflavor_t flavors[12]; -+}; -+ -+struct nfs_fscache_key; -+ -+struct fscache_cookie; -+ -+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; -+ atomic_long_t writeback; -+ 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; -+ __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 nfs_fscache_key *fscache_key; -+ struct fscache_cookie *fscache; -+ u32 pnfs_blksize; -+ u32 attr_bitmask[3]; -+ u32 attr_bitmask_nl[3]; -+ u32 exclcreat_bitmask[3]; -+ u32 cache_consistency_bitmask[3]; -+ u32 acl_bitmask; -+ u32 fh_expire_type; -+ struct pnfs_layoutdriver_type *pnfs_curr_ld; -+ struct rpc_wait_queue roc_rpcwaitq; -+ void *pnfs_ld_data; -+ struct rb_root state_owners; -+ struct ida openowner_id; -+ struct ida lockowner_id; -+ struct list_head state_owners_lru; -+ struct list_head layouts; -+ struct list_head delegations; -+ struct list_head ss_copies; -+ 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 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; -+ const char *cl_principal; -+ 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 fscache_cookie *fscache; -+ struct net *cl_net; -+ struct list_head pending_cb_stateids; -+}; -+ -+struct pnfs_layout_segment; -+ -+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; -+ }; -+ 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; -+ __u64 prev_cookie; -+ const char *name; -+ unsigned int len; -+ int eof; -+ struct nfs_fh *fh; -+ struct nfs_fattr *fattr; -+ struct nfs4_label *label; -+ 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 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; -+ 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; -+ 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 nfs4_label *, struct inode *); -+ int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); -+ int (*lookup)(struct inode *, struct dentry *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*access)(struct inode *, struct nfs_access_entry *); -+ 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 page *, 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); -+ 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); -+}; -+ -+struct nfs_access_entry { -+ struct rb_node rb_node; -+ struct list_head lru; -+ const struct cred *cred; -+ __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_fsinfo *); -+ 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 *); -+ 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; -+ int (*accept)(struct svc_rqst *, __be32 *); -+ int (*release)(struct svc_rqst *); -+ void (*domain_release)(struct auth_domain *); -+ int (*set_client)(struct svc_rqst *); -+}; -+ -+struct svc_cacherep; -+ -+struct svc_procedure; -+ -+struct svc_deferred_req; -+ -+struct svc_rqst { -+ struct list_head rq_all; -+ 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; -+ size_t rq_xprt_hlen; -+ 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 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; -+ void *rq_auth_data; -+ 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 svc_cacherep *rq_cacherep; -+ struct task_struct *rq_task; -+ spinlock_t rq_lock; -+ struct net *rq_bc_net; -+ void **rq_lease_breaker; -+}; -+ -+struct svc_pool_stats { -+ atomic_long_t packets; -+ long unsigned int sockets_queued; -+ atomic_long_t threads_woken; -+ atomic_long_t threads_timedout; -+}; -+ -+struct svc_pool { -+ unsigned int sp_id; -+ spinlock_t sp_lock; -+ struct list_head sp_sockets; -+ unsigned int sp_nrthreads; -+ struct list_head sp_all_threads; -+ struct svc_pool_stats sp_stats; -+ long unsigned int sp_flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct svc_serv_ops { -+ void (*svo_shutdown)(struct svc_serv *, struct net *); -+ int (*svo_function)(void *); -+ void (*svo_enqueue_xprt)(struct svc_xprt *); -+ int (*svo_setup)(struct svc_serv *, struct svc_pool *, int); -+ struct module *svo_module; -+}; -+ -+struct svc_procedure { -+ __be32 (*pc_func)(struct svc_rqst *); -+ int (*pc_decode)(struct svc_rqst *, __be32 *); -+ int (*pc_encode)(struct svc_rqst *, __be32 *); -+ void (*pc_release)(struct svc_rqst *); -+ unsigned int pc_argsize; -+ 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; -+ struct cache_deferred_req handle; -+ size_t xprt_hlen; -+ int argslen; -+ __be32 args[0]; -+}; -+ -+struct svc_process_info { -+ union { -+ int (*dispatch)(struct svc_rqst *, __be32 *); -+ struct { -+ unsigned int lovers; -+ unsigned int hivers; -+ } mismatch; -+ }; -+}; -+ -+struct svc_version { -+ u32 vs_vers; -+ u32 vs_nproc; -+ const struct svc_procedure *vs_proc; -+ 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 *, __be32 *); -+}; -+ -+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 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 inode *, 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; -+ seqcount_spinlock_t so_reclaim_seqcount; -+ struct mutex so_delegreturn_mutex; -+}; -+ -+struct core_name { -+ char *corename; -+ int used; -+ int size; -+}; -+ -+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; -+ long unsigned int offset; -+ unsigned int 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_apply { -+ struct trace_entry ent; -+ dev_t dev; -+ u64 ino; -+ loff_t pos; -+ loff_t length; -+ unsigned int flags; -+ const void *ops; -+ void *actor; -+ long unsigned int caller; -+ 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_apply {}; -+ -+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 *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_releasepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_invalidatepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_apply_dstmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply_srcmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply)(void *, struct inode *, loff_t, loff_t, unsigned int, const void *, void *, long unsigned int); -+ -+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; -+ struct bio *io_bio; -+ struct bio io_inline_bio; -+}; -+ -+struct iomap_writepage_ctx; -+ -+struct iomap_writeback_ops { -+ int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t); -+ int (*prepare_ioend)(struct iomap_ioend *, int); -+ void (*discard_page)(struct page *, loff_t); -+}; -+ -+struct iomap_writepage_ctx { -+ struct iomap___2 iomap; -+ struct iomap_ioend *ioend; -+ const struct iomap_writeback_ops *ops; -+}; -+ -+struct iomap_page { -+ atomic_t read_bytes_pending; -+ atomic_t write_bytes_pending; -+ spinlock_t uptodate_lock; -+ long unsigned int uptodate[0]; -+}; -+ -+struct iomap_readpage_ctx { -+ struct page *cur_page; -+ bool cur_page_in_bio; -+ struct bio *bio; -+ struct readahead_control *rac; -+}; -+ -+enum { -+ IOMAP_WRITE_F_UNSHARE = 1, -+}; -+ -+struct iomap_dio_ops { -+ int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); -+ blk_qc_t (*submit_io)(struct inode *, struct iomap___2 *, struct bio *, loff_t); -+}; -+ -+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; -+ bool wait_for_completion; -+ union { -+ struct { -+ struct iov_iter *iter; -+ struct task_struct *waiter; -+ struct request_queue *last_queue; -+ blk_qc_t cookie; -+ } submit; -+ struct { -+ struct work_struct work; -+ } aio; -+ }; -+}; -+ -+struct fiemap_ctx { -+ struct fiemap_extent_info *fi; -+ struct iomap___2 prev; -+}; -+ -+struct iomap_swapfile_info { -+ struct iomap___2 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 { -+ 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; -+}; -+ -+struct qtree_fmt_operations { -+ void (*mem2disk_dqblk)(void *, struct dquot *); -+ void (*disk2mem_dqblk)(struct dquot *, void *); -+ int (*is_id)(void *, struct dquot *); -+}; -+ -+struct qtree_mem_dqinfo { -+ struct super_block *dqi_sb; -+ int dqi_type; -+ unsigned int dqi_blocks; -+ unsigned int dqi_free_blk; -+ unsigned int dqi_free_entry; -+ unsigned int dqi_blocksize_bits; -+ unsigned int dqi_entry_size; -+ unsigned int dqi_usable_bs; -+ unsigned int dqi_qtree_depth; -+ const struct qtree_fmt_operations *dqi_ops; -+}; -+ -+struct v2_disk_dqheader { -+ __le32 dqh_magic; -+ __le32 dqh_version; -+}; -+ -+struct v2r0_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_ihardlimit; -+ __le32 dqb_isoftlimit; -+ __le32 dqb_curinodes; -+ __le32 dqb_bhardlimit; -+ __le32 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2r1_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_pad; -+ __le64 dqb_ihardlimit; -+ __le64 dqb_isoftlimit; -+ __le64 dqb_curinodes; -+ __le64 dqb_bhardlimit; -+ __le64 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2_disk_dqinfo { -+ __le32 dqi_bgrace; -+ __le32 dqi_igrace; -+ __le32 dqi_flags; -+ __le32 dqi_blocks; -+ __le32 dqi_free_blk; -+ __le32 dqi_free_entry; -+}; -+ -+struct qt_disk_dqdbheader { -+ __le32 dqdh_next_free; -+ __le32 dqdh_prev_free; -+ __le16 dqdh_entries; -+ __le16 dqdh_pad1; -+ __le32 dqdh_pad2; -+}; -+ -+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 u32 compat_uint_t; -+ -+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; -+}; -+ -+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 proc_maps_private { -+ struct inode *inode; -+ struct task_struct *task; -+ struct mm_struct *mm; -+ struct vm_area_struct *tail_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; -+ u64 pss; -+ u64 pss_anon; -+ u64 pss_file; -+ u64 pss_shmem; -+ u64 pss_locked; -+ u64 swap_pss; -+ bool check_shmem_swap; -+}; -+ -+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 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[64]; -+}; -+ -+struct numa_maps_private { -+ struct proc_maps_private proc_maps; -+ struct numa_maps md; -+}; -+ -+struct pde_opener { -+ struct list_head lh; -+ struct file *file; -+ bool closing; -+ struct completion *c; -+}; -+ -+enum { -+ BIAS = 2147483648, -+}; -+ -+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___2 = 0, -+ Opt_hidepid = 1, -+ Opt_subset = 2, -+}; -+ -+struct genradix_root; -+ -+struct __genradix { -+ struct genradix_root *root; -+}; -+ -+struct syscall_info { -+ __u64 sp; -+ struct seccomp_data data; -+}; -+ -+typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); -+ -+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; -+}; -+ -+struct fd_data { -+ fmode_t mode; -+ unsigned int fd; -+}; -+ -+struct sysctl_alias { -+ const char *kernel_param; -+ const char *sysctl_param; -+}; -+ -+struct seq_net_private { -+ struct net *net; -+}; -+ -+struct bpf_iter_aux_info___2; -+ -+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 vmcore { -+ struct list_head list; -+ long long unsigned int paddr; -+ long long unsigned int size; -+ loff_t offset; -+}; -+ -+struct vmcoredd_node { -+ struct list_head list; -+ void *buf; -+ unsigned int size; -+}; -+ -+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; -+ -+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 vmcoredd_data { -+ char dump_name[44]; -+ unsigned int size; -+ int (*vmcoredd_callback)(struct vmcoredd_data *, void *); -+}; -+ -+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_super_info { -+ struct super_block *sb; -+ struct kernfs_root *root; -+ const void *ns; -+ struct list_head node; -+}; -+ -+enum kernfs_node_flag { -+ KERNFS_ACTIVATED = 16, -+ KERNFS_NS = 32, -+ KERNFS_HAS_SEQ_SHOW = 64, -+ KERNFS_HAS_MMAP = 128, -+ KERNFS_LOCKDEP = 256, -+ KERNFS_SUICIDAL = 1024, -+ KERNFS_SUICIDED = 2048, -+ KERNFS_EMPTY_DIR = 4096, -+ KERNFS_HAS_RELEASE = 8192, -+}; -+ -+struct kernfs_open_node { -+ atomic_t refcnt; -+ atomic_t event; -+ wait_queue_head_t poll; -+ struct list_head files; -+}; -+ -+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 *); -+ int (*commit_item)(struct config_item *); -+ void (*disconnect_notify)(struct config_group *, struct config_item *); -+ void (*drop_item)(struct config_group *, struct config_item *); -+}; -+ -+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; -+}; -+ -+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 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___2 = 0, -+ Opt_gid___3 = 1, -+ Opt_mode___2 = 2, -+ Opt_ptmxmode = 3, -+ Opt_newinstance = 4, -+ Opt_max = 5, -+ Opt_err = 6, -+}; -+ -+struct pts_fs_info { -+ struct ida allocated_ptys; -+ struct pts_mount_opts mount_opts; -+ struct super_block *sb; -+ struct dentry *ptmx_dentry; -+}; -+ -+struct ramfs_mount_opts { -+ umode_t mode; -+}; -+ -+struct ramfs_fs_info { -+ struct ramfs_mount_opts mount_opts; -+}; -+ -+enum ramfs_param { -+ Opt_mode___3 = 0, -+}; -+ -+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___4 = 0, -+ Opt_min_size = 1, -+ Opt_mode___4 = 2, -+ Opt_nr_inodes___2 = 3, -+ Opt_pagesize = 4, -+ Opt_size___2 = 5, -+ Opt_uid___3 = 6, -+}; -+ -+struct getdents_callback___2 { -+ struct dir_context ctx; -+ char *name; -+ u64 ino; -+ int found; -+ int sequence; -+}; -+ -+typedef u16 wchar_t; -+ -+typedef u32 unicode_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; -+}; -+ -+enum utf16_endian { -+ UTF16_HOST_ENDIAN = 0, -+ UTF16_LITTLE_ENDIAN = 1, -+ UTF16_BIG_ENDIAN = 2, -+}; -+ -+struct utf8_table { -+ int cmask; -+ int cval; -+ int shift; -+ long int lmask; -+ long int lval; -+}; -+ -+typedef unsigned int autofs_wqt_t; -+ -+struct autofs_sb_info; -+ -+struct autofs_info { -+ struct dentry *dentry; -+ struct inode *inode; -+ int flags; -+ struct completion expire_complete; -+ struct list_head active; -+ struct list_head expiring; -+ struct autofs_sb_info *sbi; -+ 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; -+}; -+ -+enum { -+ Opt_err___2 = 0, -+ Opt_fd = 1, -+ Opt_uid___4 = 2, -+ Opt_gid___5 = 3, -+ Opt_pgrp = 4, -+ Opt_minproto = 5, -+ Opt_maxproto = 6, -+ Opt_indirect = 7, -+ Opt_direct = 8, -+ Opt_offset = 9, -+ Opt_strictexpire = 10, -+ Opt_ignore = 11, -+}; -+ -+struct autofs_packet_hdr { -+ int proto_version; -+ int type; -+}; -+ -+struct autofs_packet_expire { -+ struct autofs_packet_hdr hdr; -+ int len; -+ char name[256]; -+}; -+ -+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_notify { -+ NFY_NONE = 0, -+ NFY_MOUNT = 1, -+ NFY_EXPIRE = 2, -+}; -+ -+enum { -+ AUTOFS_IOC_EXPIRE_MULTI_CMD = 102, -+ AUTOFS_IOC_PROTOSUBVER_CMD = 103, -+ AUTOFS_IOC_ASKUMOUNT_CMD = 112, -+}; -+ -+struct autofs_packet_missing { -+ struct autofs_packet_hdr hdr; -+ autofs_wqt_t wait_queue_token; -+ int len; -+ char name[256]; -+}; -+ -+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 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)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); -+ -+struct debugfs_fsdata { -+ const struct file_operations *real_fops; -+ refcount_t active_users; -+ struct completion active_users_drained; -+}; -+ -+struct debugfs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+enum { -+ Opt_uid___5 = 0, -+ Opt_gid___6 = 1, -+ Opt_mode___5 = 2, -+ Opt_err___3 = 3, -+}; -+ -+struct debugfs_fs_info { -+ struct debugfs_mount_opts mount_opts; -+}; -+ -+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; -+}; -+ -+struct debugfs_devm_entry { -+ int (*read)(struct seq_file *, void *); -+ struct device *dev; -+}; -+ -+struct tracefs_dir_ops { -+ int (*mkdir)(const char *); -+ int (*rmdir)(const char *); -+}; -+ -+struct tracefs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+struct tracefs_fs_info { -+ struct tracefs_mount_opts mount_opts; -+}; -+ -+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; -+ int count; -+ enum kmsg_dump_reason reason; -+ unsigned int part; -+ bool compressed; -+}; -+ -+struct pstore_info { -+ struct module *owner; -+ const char *name; -+ struct semaphore 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___4 = 1, -+}; -+ -+struct crypto_comp { -+ struct crypto_tfm base; -+}; -+ -+struct pstore_zbackend { -+ int (*zbufsize)(size_t); -+ const char *name; -+}; -+ -+struct efi_variable { -+ efi_char16_t VariableName[512]; -+ efi_guid_t VendorGuid; -+ long unsigned int DataSize; -+ __u8 Data[1024]; -+ efi_status_t Status; -+ __u32 Attributes; -+} __attribute__((packed)); -+ -+struct efivar_entry { -+ struct efi_variable var; -+ struct list_head list; -+ struct kobject kobj; -+ bool scanning; -+ bool deleting; -+}; -+ -+typedef u16 ucs2_char_t; -+ -+typedef unsigned int __kernel_mode_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 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_msgseg { -+ struct msg_msgseg *next; -+}; -+ -+typedef int __kernel_ipc_pid_t; -+ -+typedef __kernel_long_t __kernel_old_time_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_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 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; -+}; -+ -+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_undo_list { -+ refcount_t refcnt; -+ spinlock_t lock; -+ struct list_head list_proc; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sem sems[0]; -+}; -+ -+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; -+ 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; -+ long: 64; -+ 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 mqueue_fs_context { -+ struct ipc_namespace *ipc_ns; -+}; -+ -+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 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; -+}; -+ -+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___2 watch; -+ __u32 key_id; -+ __u32 aux; -+}; -+ -+struct assoc_array_edit; -+ -+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___2 { -+ 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]; -+}; -+ -+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; -+}; -+ -+struct keyring_read_iterator_context { -+ size_t buflen; -+ size_t count; -+ key_serial_t *buffer; -+}; -+ -+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]; -+}; -+ -+struct user_key_payload { -+ struct callback_head rcu; -+ short unsigned int datalen; -+ long: 48; -+ char data[0]; -+}; -+ -+struct kpp_request { -+ struct crypto_async_request base; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ unsigned int src_len; -+ unsigned int dst_len; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *__ctx[0]; -+}; -+ -+struct crypto_kpp { -+ 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 *); -+ unsigned int reqsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_alg base; -+}; -+ -+struct dh { -+ void *key; -+ void *p; -+ void *q; -+ void *g; -+ unsigned int key_size; -+ unsigned int p_size; -+ unsigned int q_size; -+ unsigned int g_size; -+}; -+ -+struct dh_completion { -+ struct completion completion; -+ int err; -+}; -+ -+struct kdf_sdesc { -+ struct shash_desc shash; -+ char ctx[0]; -+}; -+ -+enum { -+ Opt_err___5 = 0, -+ Opt_enc = 1, -+ Opt_hash = 2, -+}; -+ -+enum chacha20poly1305_lengths { -+ XCHACHA20POLY1305_NONCE_SIZE = 24, -+ CHACHA20POLY1305_KEY_SIZE = 32, -+ CHACHA20POLY1305_AUTHTAG_SIZE = 16, -+}; -+ -+enum { -+ big_key_data = 0, -+ big_key_path = 1, -+ big_key_path_2nd_part = 2, -+ big_key_len = 3, -+}; -+ -+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__LAST = 20, -+}; -+ -+enum tpm_duration { -+ TPM_SHORT = 0, -+ TPM_MEDIUM = 1, -+ TPM_LONG = 2, -+ TPM_LONG_LONG = 3, -+ TPM_UNDEFINED = 4, -+ TPM_NUM_DURATIONS = 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 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___6 = 3, -+}; -+ -+enum { -+ Opt_default = 0, -+ Opt_ecryptfs = 1, -+ Opt_enc32 = 2, -+ Opt_error = 3, -+}; -+ -+enum derived_key_type { -+ ENC_KEY = 0, -+ AUTH_KEY = 1, -+}; -+ -+typedef u16 uint16_t; -+ -+enum ecryptfs_token_types { -+ ECRYPTFS_PASSWORD = 0, -+ ECRYPTFS_PRIVATE_KEY = 1, -+}; -+ -+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 sctp_endpoint; -+ -+union security_list_options { -+ int (*binder_set_context_mgr)(struct task_struct *); -+ int (*binder_transaction)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_binder)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_file)(struct task_struct *, struct task_struct *, struct file *); -+ int (*ptrace_access_check)(struct task_struct *, unsigned int); -+ int (*ptrace_traceme)(struct task_struct *); -+ int (*capget)(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, 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 *, struct file *); -+ int (*bprm_check_security)(struct linux_binprm *); -+ void (*bprm_committing_creds)(struct linux_binprm *); -+ void (*bprm_committed_creds)(struct linux_binprm *); -+ 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)(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 (*sb_add_mnt_opt)(const char *, const char *, int, void **); -+ int (*move_mount)(const struct path *, const struct path *); -+ int (*dentry_init_security)(struct dentry *, int, const struct qstr *, 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 *); -+ int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, const char **, void **, size_t *); -+ int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); -+ int (*inode_create)(struct inode *, struct dentry *, umode_t); -+ 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 dentry *, struct iattr *); -+ int (*inode_getattr)(const struct path *); -+ int (*inode_setxattr)(struct user_namespace *, 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 user_namespace *, struct dentry *, const char *); -+ int (*inode_need_killpriv)(struct dentry *); -+ int (*inode_killpriv)(struct user_namespace *, struct dentry *); -+ int (*inode_getsecurity)(struct user_namespace *, 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)(const char *); -+ int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); -+ int (*file_permission)(struct file *, int); -+ int (*file_alloc_security)(struct file *); -+ void (*file_free_security)(struct file *); -+ int (*file_ioctl)(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 (*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_setpgid)(struct task_struct *, pid_t); -+ int (*task_getpgid)(struct task_struct *); -+ int (*task_getsid)(struct task_struct *); -+ void (*task_getsecid_subj)(struct task_struct *, 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 (*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 (*getprocattr)(struct task_struct *, 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 (*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 *, char *, int *, 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)(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 (*secmark_refcount_dec)(); -+ void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); -+ int (*tun_dev_alloc_security)(void **); -+ void (*tun_dev_free_security)(void *); -+ int (*tun_dev_create)(); -+ int (*tun_dev_attach_queue)(void *); -+ int (*tun_dev_attach)(struct sock *, void *); -+ int (*tun_dev_open)(void *); -+ int (*sctp_assoc_request)(struct sctp_endpoint *, struct sk_buff *); -+ int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); -+ void (*sctp_sk_clone)(struct sctp_endpoint *, 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 **); -+ void (*ib_free_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); -+ void (*key_free)(struct key *); -+ int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); -+ int (*key_getsecurity)(struct key *, char **); -+ int (*audit_rule_init)(u32, u32, char *, void **); -+ 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_alloc_security)(struct bpf_map *); -+ void (*bpf_map_free_security)(struct bpf_map *); -+ int (*bpf_prog_alloc_security)(struct bpf_prog_aux *); -+ void (*bpf_prog_free_security)(struct bpf_prog_aux *); -+ int (*locked_down)(enum lockdown_reason); -+ int (*lock_kernel_down)(const char *, enum lockdown_reason); -+ int (*perf_event_open)(struct perf_event_attr *, int); -+ int (*perf_event_alloc)(struct perf_event *); -+ void (*perf_event_free)(struct perf_event *); -+ int (*perf_event_read)(struct perf_event *); -+ int (*perf_event_write)(struct perf_event *); -+}; -+ -+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_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 sb_add_mnt_opt; -+ struct hlist_head move_mount; -+ struct hlist_head dentry_init_security; -+ struct hlist_head dentry_create_files_as; -+ struct hlist_head path_notify; -+ struct hlist_head inode_alloc_security; -+ struct hlist_head inode_free_security; -+ struct hlist_head inode_init_security; -+ struct hlist_head inode_init_security_anon; -+ struct hlist_head inode_create; -+ 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_getattr; -+ 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_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_getsecid; -+ struct hlist_head inode_copy_up; -+ struct hlist_head inode_copy_up_xattr; -+ struct hlist_head kernfs_init_security; -+ struct hlist_head file_permission; -+ struct hlist_head file_alloc_security; -+ struct hlist_head file_free_security; -+ struct hlist_head file_ioctl; -+ 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 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 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_setpgid; -+ struct hlist_head task_getpgid; -+ struct hlist_head task_getsid; -+ struct hlist_head task_getsecid_subj; -+ struct hlist_head task_getsecid_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 ipc_permission; -+ struct hlist_head ipc_getsecid; -+ 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 getprocattr; -+ struct hlist_head setprocattr; -+ struct hlist_head ismaclabel; -+ struct hlist_head secid_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_free_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 ib_pkey_access; -+ struct hlist_head ib_endport_manage_subnet; -+ struct hlist_head ib_alloc_security; -+ struct hlist_head ib_free_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_free; -+ struct hlist_head key_permission; -+ struct hlist_head key_getsecurity; -+ 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_alloc_security; -+ struct hlist_head bpf_map_free_security; -+ struct hlist_head bpf_prog_alloc_security; -+ struct hlist_head bpf_prog_free_security; -+ 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_free; -+ struct hlist_head perf_event_read; -+ struct hlist_head perf_event_write; -+}; -+ -+struct security_hook_list { -+ struct hlist_node list; -+ struct hlist_head *head; -+ union security_list_options hook; -+ char *lsm; -+}; -+ -+enum lsm_order { -+ LSM_ORDER_FIRST = 4294967295, -+ LSM_ORDER_MUTABLE = 0, -+}; -+ -+struct lsm_info { -+ const char *name; -+ enum lsm_order order; -+ long unsigned int flags; -+ int *enabled; -+ int (*init)(); -+ struct lsm_blob_sizes *blobs; -+}; -+ -+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_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_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, -+}; -+ -+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, -+}; -+ -+enum ethtool_link_ext_substate_cable_issue { -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, -+}; -+ -+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_ts_info { -+ __u32 cmd; -+ __u32 so_timestamping; -+ __s32 phc_index; -+ __u32 tx_types; -+ __u32 tx_reserved[3]; -+ __u32 rx_filters; -+ __u32 rx_reserved[3]; -+}; -+ -+struct ethtool_fecparam { -+ __u32 cmd; -+ __u32 active_fec; -+ __u32 fec; -+ __u32 reserved; -+}; -+ -+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_MASK_NBITS = 92, -+}; -+ -+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 reserved1[1]; -+ __u32 reserved[7]; -+ __u32 link_mode_masks[0]; -+}; -+ -+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; -+ u8 __link_ext_substate; -+ }; -+}; -+ -+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_eth_mac_stats { -+ 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 ethtool_eth_phy_stats { -+ u64 SymbolErrorDuringCarrier; -+}; -+ -+struct ethtool_eth_ctrl_stats { -+ u64 MACControlFramesTransmitted; -+ u64 MACControlFramesReceived; -+ u64 UnsupportedOpcodesReceived; -+}; -+ -+struct ethtool_pause_stats { -+ u64 tx_pause_frames; -+ u64 rx_pause_frames; -+}; -+ -+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 { -+ u64 undersize_pkts; -+ u64 oversize_pkts; -+ u64 fragments; -+ u64 jabbers; -+ u64 hist[10]; -+ u64 hist_tx[10]; -+}; -+ -+struct ethtool_module_eeprom { -+ u32 offset; -+ u32 length; -+ u8 page; -+ u8 bank; -+ u8 i2c_address; -+ u8 *data; -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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_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_state; -+ -+struct selinux_audit_data { -+ u32 ssid; -+ u32 tsid; -+ u16 tclass; -+ u32 requested; -+ u32 audited; -+ u32 denied; -+ int result; -+ struct selinux_state *state; -+}; -+ -+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; -+ } u; -+ union { -+ struct selinux_audit_data *selinux_audit_data; -+ }; -+}; -+ -+enum { -+ POLICYDB_CAPABILITY_NETPEER = 0, -+ POLICYDB_CAPABILITY_OPENPERM = 1, -+ POLICYDB_CAPABILITY_EXTSOCKCLASS = 2, -+ POLICYDB_CAPABILITY_ALWAYSNETWORK = 3, -+ POLICYDB_CAPABILITY_CGROUPSECLABEL = 4, -+ POLICYDB_CAPABILITY_NNP_NOSUID_TRANSITION = 5, -+ POLICYDB_CAPABILITY_GENFS_SECLABEL_SYMLINKS = 6, -+ __POLICYDB_CAPABILITY_MAX = 7, -+}; -+ -+struct selinux_avc; -+ -+struct selinux_policy; -+ -+struct selinux_state { -+ bool enforcing; -+ bool checkreqprot; -+ bool initialized; -+ bool policycap[7]; -+ struct page *status_page; -+ struct mutex status_lock; -+ struct selinux_avc *avc; -+ struct selinux_policy *policy; -+ struct mutex policy_mutex; -+}; -+ -+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 selinux_avc { -+ unsigned int avc_cache_threshold; -+ struct avc_cache avc_cache; -+}; -+ -+struct av_decision { -+ u32 allowed; -+ u32 auditallow; -+ u32 auditdeny; -+ u32 seqno; -+ u32 flags; -+}; -+ -+struct extended_perms_data { -+ u32 p[8]; -+}; -+ -+struct extended_perms_decision { -+ u8 used; -+ u8 driver; -+ struct extended_perms_data *allowed; -+ struct extended_perms_data *auditallow; -+ struct extended_perms_data *dontaudit; -+}; -+ -+struct extended_perms { -+ u16 len; -+ struct extended_perms_data drivers; -+}; -+ -+struct avc_cache_stats { -+ unsigned int lookups; -+ unsigned int misses; -+ unsigned int allocations; -+ unsigned int reclaims; -+ unsigned int frees; -+}; -+ -+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; -+ u32 tcontext; -+ u32 tclass; -+}; -+ -+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_callback_node { -+ int (*callback)(u32); -+ u32 events; -+ struct avc_callback_node *next; -+}; -+ -+typedef __u16 __sum16; -+ -+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 { -+ struct hlist_node node; -+ int hashent; -+ 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; -+}; -+ -+struct crypto_shash___2; -+ -+struct sctp_hmac_algo_param; -+ -+struct sctp_chunks_param; -+ -+struct sctp_endpoint { -+ struct sctp_ep_common base; -+ struct list_head asocs; -+ __u8 secret_key[32]; -+ __u8 *digest; -+ __u32 sndbuf_policy; -+ __u32 rcvbuf_policy; -+ struct crypto_shash___2 **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; -+ u32 secid; -+ u32 peer_secid; -+}; -+ -+struct sockaddr_in6 { -+ short unsigned int sin6_family; -+ __be16 sin6_port; -+ __be32 sin6_flowinfo; -+ struct in6_addr sin6_addr; -+ __u32 sin6_scope_id; -+}; -+ -+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 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 *); -+}; -+ -+enum nf_hook_ops_type { -+ NF_HOOK_OP_UNDEFINED = 0, -+ NF_HOOK_OP_NF_TABLES = 1, -+}; -+ -+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 = 4294966846, -+ NF_IP_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP_PRI_RAW = 4294966996, -+ NF_IP_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP_PRI_CONNTRACK = 4294967096, -+ NF_IP_PRI_MANGLE = 4294967146, -+ NF_IP_PRI_NAT_DST = 4294967196, -+ 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 = 4294966846, -+ NF_IP6_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP6_PRI_RAW = 4294966996, -+ NF_IP6_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP6_PRI_CONNTRACK = 4294967096, -+ NF_IP6_PRI_MANGLE = 4294967146, -+ NF_IP6_PRI_NAT_DST = 4294967196, -+ 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 socket_alloc { -+ struct socket socket; -+ struct inode vfs_inode; -+}; -+ -+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_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; -+ __be32 inet_saddr; -+ __s16 uc_ttl; -+ __u16 cmsg_flags; -+ __be16 inet_sport; -+ __u16 inet_id; -+ struct ip_options_rcu *inet_opt; -+ int rx_dst_ifindex; -+ __u8 tos; -+ __u8 min_ttl; -+ __u8 mc_ttl; -+ __u8 pmtudisc; -+ __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 rcv_tos; -+ __u8 convert_csum; -+ int uc_index; -+ int mc_index; -+ __be32 mc_addr; -+ 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; -+}; -+ -+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; -+ __be32 flow_label; -+ __u32 frag_size; -+ __u16 __unused_1: 7; -+ __s16 hop_limit: 9; -+ __u16 mc_loop: 1; -+ __u16 __unused_2: 6; -+ __s16 mcast_hops: 9; -+ 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; -+ __u16 recverr: 1; -+ __u16 sndflow: 1; -+ __u16 repflow: 1; -+ __u16 pmtudisc: 3; -+ __u16 padding: 1; -+ __u16 srcprefs: 3; -+ __u16 dontfrag: 1; -+ __u16 autoflowlabel: 1; -+ __u16 autoflowlabel_set: 1; -+ __u16 mc_all: 1; -+ __u16 recverr_rfc4884: 1; -+ __u16 rtalert_isolate: 1; -+ __u8 min_hopcount; -+ __u8 tclass; -+ __be32 rcv_flowinfo; -+ __u32 dst_cookie; -+ __u32 rx_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 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 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; -+}; -+ -+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; -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+}; -+ -+struct udphdr { -+ __be16 source; -+ __be16 dest; -+ __be16 len; -+ __sum16 check; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct inet_skb_parm { -+ int iif; -+ struct ip_options opt; -+ u16 flags; -+ u16 frag_max_size; -+}; -+ -+struct tty_file_private { -+ struct tty_struct *tty; -+ struct file *file; -+ struct list_head list; -+}; -+ -+struct netlbl_lsm_cache { -+ refcount_t refcount; -+ void (*free)(const void *); -+ void *data; -+}; -+ -+struct netlbl_lsm_catmap { -+ u32 startbit; -+ u64 bitmap[4]; -+ struct netlbl_lsm_catmap *next; -+}; -+ -+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 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 = 13, -+ DCCP_PASSIVE_CLOSEREQ = 14, -+ DCCP_MAX_STATES = 15, -+}; -+ -+typedef __s32 sctp_assoc_t; -+ -+enum sctp_msg_flags { -+ MSG_NOTIFICATION = 32768, -+}; -+ -+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; -+ char: 8; -+} __attribute__((packed)); -+ -+struct sctphdr { -+ __be16 source; -+ __be16 dest; -+ __be32 vtag; -+ __le32 checksum; -+}; -+ -+struct sctp_chunkhdr { -+ __u8 type; -+ __u8 flags; -+ __be16 length; -+}; -+ -+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_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; -+ __u8 payload[0]; -+}; -+ -+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; -+ __u8 params[0]; -+}; -+ -+struct sctp_init_chunk { -+ struct sctp_chunkhdr chunk_hdr; -+ struct sctp_inithdr init_hdr; -+}; -+ -+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_gap_ack_block { -+ __be16 start; -+ __be16 end; -+}; -+ -+union sctp_sack_variable { -+ struct sctp_gap_ack_block gab; -+ __be32 dup; -+}; -+ -+struct sctp_sackhdr { -+ __be32 cum_tsn_ack; -+ __be32 a_rwnd; -+ __be16 num_gap_ack_blocks; -+ __be16 num_dup_tsns; -+ union sctp_sack_variable variable[0]; -+}; -+ -+struct sctp_heartbeathdr { -+ struct sctp_paramhdr info; -+}; -+ -+struct sctp_shutdownhdr { -+ __be32 cum_tsn_ack; -+}; -+ -+struct sctp_errhdr { -+ __be16 cause; -+ __be16 length; -+ __u8 variable[0]; -+}; -+ -+struct sctp_ecnehdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_cwrhdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_fwdtsn_skip { -+ __be16 stream; -+ __be16 ssn; -+}; -+ -+struct sctp_fwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_fwdtsn_skip skip[0]; -+}; -+ -+struct sctp_ifwdtsn_skip { -+ __be16 stream; -+ __u8 reserved; -+ __u8 flags; -+ __be32 mid; -+}; -+ -+struct sctp_ifwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_ifwdtsn_skip skip[0]; -+}; -+ -+struct sctp_addip_param { -+ struct sctp_paramhdr param_hdr; -+ __be32 crr_id; -+}; -+ -+struct sctp_addiphdr { -+ __be32 serial; -+ __u8 params[0]; -+}; -+ -+struct sctp_authhdr { -+ __be16 shkey_id; -+ __be16 hmac_id; -+ __u8 hmac[0]; -+}; -+ -+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_init_chunk peer_init[0]; -+}; -+ -+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 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_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 hostname_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]; -+ 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_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_scope { -+ SCTP_SCOPE_GLOBAL = 0, -+ SCTP_SCOPE_PRIVATE = 1, -+ SCTP_SCOPE_LINK = 2, -+ SCTP_SCOPE_LOOPBACK = 3, -+ SCTP_SCOPE_UNUSABLE = 4, -+}; -+ -+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 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; -+ int: 32; -+ struct sctp_pf *pf; -+ struct crypto_shash___2 *hmac; -+ char *sctp_hmac_alg; -+ struct sctp_endpoint *ep; -+ struct sctp_bind_bucket *bind_hash; -+ __u16 default_stream; -+ short: 16; -+ __u32 default_ppid; -+ __u16 default_flags; -+ short: 16; -+ __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; -+ short: 16; -+ __u32 flowlabel; -+ __u8 dscp; -+ char: 8; -+ __u16 pf_retrans; -+ __u16 ps_retrans; -+ short: 16; -+ __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; -+ short: 16; -+ 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; -+ int: 22; -+ atomic_t pd_mode; -+ struct sk_buff_head pd_lobby; -+ struct list_head auto_asconf_list; -+ int do_auto_asconf; -+ int: 32; -+} __attribute__((packed)); -+ -+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_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 (*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 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 { -+ __u32 last_rtx_chunks; -+ __u16 pmtu; -+ __u16 probe_size; -+ __u16 probe_high; -+ __u8 probe_count: 3; -+ __u8 raise_count: 5; -+ __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; -+}; -+ -+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 task_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; -+}; -+ -+struct file_security_struct { -+ u32 sid; -+ u32 fown_sid; -+ u32 isid; -+ u32 pseqno; -+}; -+ -+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; -+}; -+ -+struct msg_security_struct { -+ u32 sid; -+}; -+ -+struct ipc_security_struct { -+ u16 sclass; -+ u32 sid; -+}; -+ -+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 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 { -+ const char *fscontext; -+ const char *context; -+ const char *rootcontext; -+ const char *defcontext; -+}; -+ -+enum { -+ Opt_error___2 = 4294967295, -+ Opt_context = 0, -+ Opt_defcontext = 1, -+ Opt_fscontext = 2, -+ Opt_rootcontext = 3, -+ Opt_seclabel = 4, -+}; -+ -+struct selinux_policy_convert_data; -+ -+struct selinux_load_state { -+ struct selinux_policy *policy; -+ struct selinux_policy_convert_data *convert_data; -+}; -+ -+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; -+ unsigned 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 selinux_state *state; -+ struct super_block *sb; -+}; -+ -+struct policy_load_memory { -+ size_t len; -+ void *data; -+}; -+ -+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; -+}; -+ -+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_MAX = 39, -+}; -+ -+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_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_MAX = 119, -+}; -+ -+struct nlmsg_perm { -+ u16 nlmsg_type; -+ u32 perm; -+}; -+ -+struct netif_security_struct { -+ 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 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 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 hashtab_node { -+ void *key; -+ void *datum; -+ struct hashtab_node *next; -+}; -+ -+struct hashtab { -+ struct hashtab_node **htable; -+ u32 size; -+ u32 nel; -+}; -+ -+struct hashtab_info { -+ u32 slots_used; -+ u32 max_chain_len; -+}; -+ -+struct hashtab_key_params { -+ u32 (*hash)(const void *); -+ int (*cmp)(const void *, const void *); -+}; -+ -+struct symtab { -+ struct hashtab table; -+ u32 nprim; -+}; -+ -+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_str_cache { -+ struct callback_head rcu_member; -+ struct list_head lru_member; -+ struct sidtab_entry *parent; -+ u32 len; -+ char str[0]; -+}; -+ -+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 sidtab; -+ -+struct sidtab_convert_params { -+ int (*func)(struct context *, struct context *, void *); -+ void *args; -+ struct sidtab *target; -+}; -+ -+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 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 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 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_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 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; -+ size_t len; -+ unsigned int policyvers; -+ unsigned int reject_unknown: 1; -+ unsigned int allow_unknown: 1; -+ u16 process_class; -+ u32 process_trans_perms; -+}; -+ -+struct perm_datum { -+ u32 value; -+}; -+ -+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 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_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; -+ void *fp; -+}; -+ -+struct cond_expr_node { -+ u32 expr_type; -+ u32 bool; -+}; -+ -+struct policydb_compat_info { -+ int version; -+ int sym_num; -+ int ocon_num; -+}; -+ -+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 convert_context_args { -+ struct selinux_state *state; -+ struct policydb *oldp; -+ struct policydb *newp; -+}; -+ -+struct selinux_policy_convert_data { -+ struct convert_context_args args; -+ struct sidtab_convert_params sidtab_params; -+}; -+ -+struct selinux_mapping { -+ u16 value; -+ unsigned int num_perms; -+ u32 perms[32]; -+}; -+ -+struct selinux_audit_rule { -+ u32 au_seqno; -+ struct context au_ctxt; -+}; -+ -+struct cond_insertf_data { -+ struct policydb *p; -+ struct avtab_node **dst; -+ struct cond_av_list *other; -+}; -+ -+struct rt6key { -+ struct in6_addr addr; -+ int plen; -+}; -+ -+struct rtable; -+ -+struct fnhe_hash_bucket; -+ -+struct fib_nh_common { -+ struct net_device *nhc_dev; -+ 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 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 should_flush: 1; -+ u8 dst_nocount: 1; -+ u8 dst_nopolicy: 1; -+ u8 fib6_destroying: 1; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 1; -+ struct callback_head rcu; -+ struct nexthop *nh; -+ struct fib6_nh fib6_nh[0]; -+}; -+ -+struct uncached_list; -+ -+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; -+ struct list_head rt6i_uncached; -+ struct uncached_list *rt6i_uncached_list; -+ 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; -+ atomic_t fib_rt_uncache; -+}; -+ -+struct fib6_node { -+ struct fib6_node *parent; -+ struct fib6_node *left; -+ struct fib6_node *right; -+ 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; -+}; -+ -+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; -+}; -+ -+enum { -+ XFRM_POLICY_TYPE_MAIN = 0, -+ XFRM_POLICY_TYPE_SUB = 1, -+ XFRM_POLICY_TYPE_MAX = 2, -+ XFRM_POLICY_TYPE_ANY = 255, -+}; -+ -+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_MAX = 32, -+}; -+ -+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 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_state_offload { -+ struct net_device *dev; -+ struct net_device *real_dev; -+ long unsigned int offload_handle; -+ unsigned int num_exthdrs; -+ u8 flags; -+}; -+ -+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; -+ }; -+ struct hlist_node bysrc; -+ struct hlist_node byspi; -+ struct hlist_node byseq; -+ refcount_t refcnt; -+ spinlock_t lock; -+ 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; -+ struct xfrm_encap_tmpl *encap; -+ struct sock *encap_sk; -+ 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_state_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; -+}; -+ -+struct dst_metrics { -+ u32 metrics[17]; -+ refcount_t refcnt; -+}; -+ -+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; -+ 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 hlist_node bydst_inexact_list; -+ struct callback_head rcu; -+}; -+ -+struct udp_hslot; -+ -+struct udp_table { -+ struct udp_hslot *hash; -+ struct udp_hslot *hash2; -+ unsigned int mask; -+ unsigned int log; -+}; -+ -+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 list_head rt_uncached; -+ struct uncached_list *rt_uncached_list; -+}; -+ -+struct fnhe_hash_bucket { -+ struct fib_nh_exception *chain; -+}; -+ -+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 *); -+ 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_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 xfrm_offload { -+ struct { -+ __u32 low; -+ __u32 hi; -+ } seq; -+ __u32 flags; -+ __u32 status; -+ __u8 proto; -+ __u8 inner_ipproto; -+}; -+ -+struct sec_path { -+ int len; -+ int olen; -+ struct xfrm_state *xvec[6]; -+ struct xfrm_offload ovec[1]; -+}; -+ -+struct udp_hslot { -+ struct hlist_head head; -+ int count; -+ spinlock_t lock; -+}; -+ -+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 sockaddr_un { -+ __kernel_sa_family_t sun_family; -+ char sun_path[108]; -+}; -+ -+struct unix_address { -+ refcount_t refcnt; -+ int len; -+ unsigned int hash; -+ struct sockaddr_un name[0]; -+}; -+ -+struct scm_stat { -+ atomic_t nr_fds; -+}; -+ -+struct unix_sock { -+ struct sock sk; -+ struct unix_address *addr; -+ struct path path; -+ struct mutex iolock; -+ struct mutex bindlock; -+ struct sock *peer; -+ struct list_head link; -+ atomic_long_t inflight; -+ spinlock_t lock; -+ long unsigned int gc_flags; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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 ima_digest_data { -+ u8 algo; -+ u8 length; -+ union { -+ struct { -+ u8 unused; -+ u8 type; -+ } sha1; -+ struct { -+ u8 type; -+ u8 algo; -+ } ng; -+ u8 data[2]; -+ } xattr; -+ u8 digest[0]; -+}; -+ -+struct integrity_iint_cache { -+ struct rb_node rb_node; -+ struct mutex mutex; -+ struct inode *inode; -+ u64 version; -+ 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; -+ enum integrity_status evm_status: 4; -+ struct ima_digest_data *ima_hash; -+}; -+ -+struct modsig; -+ -+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_md2WithRSAEncryption = 11, -+ OID_md3WithRSAEncryption = 12, -+ OID_md4WithRSAEncryption = 13, -+ OID_sha1WithRSAEncryption = 14, -+ OID_sha256WithRSAEncryption = 15, -+ OID_sha384WithRSAEncryption = 16, -+ OID_sha512WithRSAEncryption = 17, -+ OID_sha224WithRSAEncryption = 18, -+ OID_data = 19, -+ OID_signed_data = 20, -+ OID_email_address = 21, -+ OID_contentType = 22, -+ OID_messageDigest = 23, -+ OID_signingTime = 24, -+ OID_smimeCapabilites = 25, -+ OID_smimeAuthenticatedAttrs = 26, -+ OID_md2 = 27, -+ OID_md4 = 28, -+ OID_md5 = 29, -+ OID_mskrb5 = 30, -+ OID_krb5 = 31, -+ OID_krb5u2u = 32, -+ OID_msIndirectData = 33, -+ OID_msStatementType = 34, -+ OID_msSpOpusInfo = 35, -+ OID_msPeImageDataObjId = 36, -+ OID_msIndividualSPKeyPurpose = 37, -+ OID_msOutlookExpress = 38, -+ OID_ntlmssp = 39, -+ OID_spnego = 40, -+ OID_certAuthInfoAccess = 41, -+ OID_sha1 = 42, -+ OID_id_ansip384r1 = 43, -+ OID_sha256 = 44, -+ OID_sha384 = 45, -+ OID_sha512 = 46, -+ OID_sha224 = 47, -+ OID_commonName = 48, -+ OID_surname = 49, -+ OID_countryName = 50, -+ OID_locality = 51, -+ OID_stateOrProvinceName = 52, -+ OID_organizationName = 53, -+ OID_organizationUnitName = 54, -+ OID_title = 55, -+ OID_description = 56, -+ OID_name = 57, -+ OID_givenName = 58, -+ OID_initials = 59, -+ OID_generationalQualifier = 60, -+ OID_subjectKeyIdentifier = 61, -+ OID_keyUsage = 62, -+ OID_subjectAltName = 63, -+ OID_issuerAltName = 64, -+ OID_basicConstraints = 65, -+ OID_crlDistributionPoints = 66, -+ OID_certPolicies = 67, -+ OID_authorityKeyIdentifier = 68, -+ OID_extKeyUsage = 69, -+ OID_gostCPSignA = 70, -+ OID_gostCPSignB = 71, -+ OID_gostCPSignC = 72, -+ OID_gost2012PKey256 = 73, -+ OID_gost2012PKey512 = 74, -+ OID_gost2012Digest256 = 75, -+ OID_gost2012Digest512 = 76, -+ OID_gost2012Signature256 = 77, -+ OID_gost2012Signature512 = 78, -+ OID_gostTC26Sign256A = 79, -+ OID_gostTC26Sign256B = 80, -+ OID_gostTC26Sign256C = 81, -+ OID_gostTC26Sign256D = 82, -+ OID_gostTC26Sign512A = 83, -+ OID_gostTC26Sign512B = 84, -+ OID_gostTC26Sign512C = 85, -+ OID_sm2 = 86, -+ OID_sm3 = 87, -+ OID_SM2_with_SM3 = 88, -+ OID_sm3WithRSAEncryption = 89, -+ OID_TPMLoadableKey = 90, -+ OID_TPMImportableKey = 91, -+ OID_TPMSealedData = 92, -+ OID__NR = 93, -+}; -+ -+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; -+}; -+ -+struct asymmetric_key_id; -+ -+struct public_key_signature { -+ struct asymmetric_key_id *auth_ids[2]; -+ u8 *s; -+ u32 s_size; -+ u8 *digest; -+ u8 digest_size; -+ const char *pkey_algo; -+ const char *hash_algo; -+ const char *encoding; -+ const void *data; -+ unsigned int data_size; -+}; -+ -+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)); -+ -+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; -+ -+typedef void (*efi_element_handler_t)(const char *, const void *, size_t); -+ -+struct efi_mokvar_table_entry { -+ char name[256]; -+ u64 data_size; -+ u8 data[0]; -+}; -+ -+struct tpm_digest { -+ u16 alg_id; -+ u8 digest[64]; -+}; -+ -+struct evm_ima_xattr_data { -+ u8 type; -+ u8 data[0]; -+}; -+ -+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_event_data { -+ struct integrity_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_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]; -+}; -+ -+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, -+}; -+ -+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 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); -+ 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[3]; -+ const struct attribute_group *groups[8]; -+ unsigned int groups_cnt; -+ u32 nr_allocated_banks; -+ struct tpm_bank_info *allocated_banks; -+ 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 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_XATTR_LAST = 6, -+}; -+ -+enum ima_hooks { -+ NONE = 0, -+ FILE_CHECK = 1, -+ MMAP_CHECK = 2, -+ BPRM_CHECK = 3, -+ CREDS_CHECK = 4, -+ POST_SETATTR = 5, -+ MODULE_CHECK = 6, -+ FIRMWARE_CHECK = 7, -+ KEXEC_KERNEL_CHECK = 8, -+ KEXEC_INITRAMFS_CHECK = 9, -+ POLICY_CHECK = 10, -+ KEXEC_CMDLINE = 11, -+ KEY_CHECK = 12, -+ CRITICAL_DATA = 13, -+ MAX_CHECK = 14, -+}; -+ -+struct hash_alg_common { -+ unsigned int digestsize; -+ unsigned int statesize; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 crypto_alg base; -+}; -+ -+struct ahash_request { -+ struct crypto_async_request base; -+ unsigned int nbytes; -+ struct scatterlist *src; -+ u8 *result; -+ void *priv; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *__ctx[0]; -+}; -+ -+struct crypto_ahash { -+ 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); -+ unsigned int reqsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_tfm base; -+}; -+ -+enum tpm_algorithms { -+ TPM_ALG_ERROR = 0, -+ TPM_ALG_SHA1 = 4, -+ 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, -+}; -+ -+enum tpm_pcrs { -+ TPM_PCR0 = 0, -+ TPM_PCR8 = 8, -+ TPM_PCR10 = 10, -+}; -+ -+struct ima_algo_desc { -+ struct crypto_shash *tfm; -+ enum hash_algo algo; -+}; -+ -+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; -+ kuid_t fowner; -+ bool (*uid_op)(kuid_t, kuid_t); -+ bool (*fowner_op)(kuid_t, kuid_t); -+ int pcr; -+ 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 { -+ Opt_measure = 0, -+ Opt_dont_measure = 1, -+ Opt_appraise = 2, -+ Opt_dont_appraise = 3, -+ Opt_audit = 4, -+ Opt_hash___2 = 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_fowner_eq = 20, -+ Opt_uid_gt = 21, -+ Opt_euid_gt = 22, -+ Opt_fowner_gt = 23, -+ Opt_uid_lt = 24, -+ Opt_euid_lt = 25, -+ Opt_fowner_lt = 26, -+ Opt_appraise_type = 27, -+ Opt_appraise_flag = 28, -+ Opt_permit_directio = 29, -+ Opt_pcr = 30, -+ Opt_template = 31, -+ Opt_keyrings = 32, -+ Opt_label = 33, -+ Opt_err___7 = 34, -+}; -+ -+enum { -+ mask_exec = 0, -+ mask_write = 1, -+ mask_read = 2, -+ mask_append = 3, -+}; -+ -+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, -+}; -+ -+enum data_formats { -+ DATA_FMT_DIGEST = 0, -+ DATA_FMT_DIGEST_WITH_ALGO = 1, -+ DATA_FMT_STRING = 2, -+ DATA_FMT_HEX = 3, -+ DATA_FMT_UINT = 4, -+}; -+ -+struct modsig___2 { -+ 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_key_entry { -+ struct list_head list; -+ void *payload; -+ size_t payload_len; -+ char *keyring_name; -+}; -+ -+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 evm_xattr { -+ struct evm_ima_xattr_data data; -+ u8 digest[20]; -+}; -+ -+struct xattr_list { -+ struct list_head list; -+ char *name; -+ bool enabled; -+}; -+ -+struct evm_digest { -+ struct ima_digest_data hdr; -+ char digest[64]; -+}; -+ -+struct h_misc { -+ long unsigned int ino; -+ __u32 generation; -+ uid_t uid; -+ gid_t gid; -+ umode_t mode; -+}; -+ -+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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct crypto_cipher { -+ struct crypto_tfm base; -+}; -+ -+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 { -+ 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, -+}; -+ -+enum { -+ CRYPTOA_UNSPEC = 0, -+ CRYPTOA_ALG = 1, -+ CRYPTOA_TYPE = 2, -+ __CRYPTOA_MAX = 3, -+}; -+ -+struct aead_instance { -+ void (*free)(struct aead_instance *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct { -+ char head[128]; -+ struct crypto_instance base; -+ } s; -+ struct aead_alg alg; -+ }; -+}; -+ -+struct crypto_aead_spawn { -+ struct crypto_spawn base; -+}; -+ -+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_MAX = 22, -+}; -+ -+struct crypto_report_aead { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int maxauthsize; -+ unsigned int ivsize; -+}; -+ -+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; -+ long: 32; -+ 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 crypto_alg base; -+}; -+ -+struct crypto_rng { -+ struct crypto_tfm base; -+}; -+ -+struct crypto_cipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_sync_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct skcipher_instance { -+ void (*free)(struct skcipher_instance *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct { -+ char head[128]; -+ 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_report_blkcipher { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+}; -+ -+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 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 *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct hash_alg_common halg; -+}; -+ -+struct crypto_hash_walk { -+ char *data; -+ unsigned int offset; -+ unsigned int alignmask; -+ struct page *pg; -+ unsigned int entrylen; -+ unsigned int total; -+ struct scatterlist *sg; -+ unsigned int flags; -+}; -+ -+struct ahash_instance { -+ void (*free)(struct ahash_instance *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct { -+ char head[256]; -+ struct crypto_instance base; -+ } s; -+ struct ahash_alg alg; -+ }; -+}; -+ -+struct crypto_ahash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_hash { -+ char type[64]; -+ unsigned int blocksize; -+ unsigned int digestsize; -+}; -+ -+struct ahash_request_priv { -+ crypto_completion_t complete; -+ void *data; -+ u8 *result; -+ u32 flags; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *ubuf[0]; -+}; -+ -+struct shash_instance { -+ void (*free)(struct shash_instance *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct { -+ char head[256]; -+ struct crypto_instance base; -+ } s; -+ struct shash_alg alg; -+ }; -+}; -+ -+struct crypto_shash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_akcipher { -+ char type[64]; -+}; -+ -+struct akcipher_request { -+ struct crypto_async_request base; -+ struct scatterlist *src; -+ struct scatterlist *dst; -+ unsigned int src_len; -+ unsigned int dst_len; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ void *__ctx[0]; -+}; -+ -+struct crypto_akcipher { -+ 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 *); -+ unsigned int reqsize; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_alg base; -+}; -+ -+struct akcipher_instance { -+ void (*free)(struct akcipher_instance *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct { -+ char head[128]; -+ struct crypto_instance base; -+ } s; -+ struct akcipher_alg alg; -+ }; -+}; -+ -+struct crypto_akcipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_kpp { -+ char type[64]; -+}; -+ -+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 q; -+ MPI g; -+ MPI xa; -+}; -+ -+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 rsa_mpi_key { -+ MPI n; -+ MPI e; -+ MPI d; -+}; -+ -+struct asn1_decoder___2; -+ -+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; -+ long: 64; -+ long: 64; -+ struct akcipher_request child_req; -+}; -+ -+struct crypto_report_acomp { -+ char type[64]; -+}; -+ -+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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct crypto_alg base; -+}; -+ -+struct crypto_report_comp { -+ char type[64]; -+}; -+ -+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 *); -+ 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 crypto_alg base; -+}; -+ -+struct scomp_scratch { -+ spinlock_t lock; -+ void *src; -+ void *dst; -+}; -+ -+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 drbg_string { -+ const unsigned char *buf; -+ size_t len; -+ struct list_head list; -+}; -+ -+struct drbg_test_data { -+ struct drbg_string *testentropy; -+}; -+ -+struct hash_testvec { -+ const char *key; -+ const char *plaintext; -+ const char *digest; -+ unsigned int psize; -+ short unsigned int ksize; -+ int setkey_error; -+ int digest_error; -+}; -+ -+struct cipher_testvec { -+ const char *key; -+ const char *iv; -+ const char *iv_out; -+ const char *ptext; -+ const char *ctext; -+ unsigned char wk; -+ short unsigned int klen; -+ unsigned int len; -+ bool fips_skip; -+ bool generates_iv; -+ int setkey_error; -+ int crypt_error; -+}; -+ -+struct aead_testvec { -+ const char *key; -+ const char *iv; -+ const char *ptext; -+ const char *assoc; -+ const char *ctext; -+ unsigned char novrfy; -+ unsigned char wk; -+ unsigned char klen; -+ unsigned int plen; -+ unsigned int clen; -+ unsigned int alen; -+ int setkey_error; -+ int setauthsize_error; -+ int crypt_error; -+}; -+ -+struct cprng_testvec { -+ const char *key; -+ const char *dt; -+ const char *v; -+ const char *result; -+ unsigned char klen; -+ short unsigned int dtlen; -+ short unsigned int vlen; -+ short unsigned int rlen; -+ short unsigned int loops; -+}; -+ -+struct drbg_testvec { -+ const unsigned char *entropy; -+ size_t entropylen; -+ const unsigned char *entpra; -+ const unsigned char *entprb; -+ size_t entprlen; -+ const unsigned char *addtla; -+ const unsigned char *addtlb; -+ size_t addtllen; -+ const unsigned char *pers; -+ size_t perslen; -+ const unsigned char *expected; -+ size_t expectedlen; -+}; -+ -+struct akcipher_testvec { -+ const unsigned char *key; -+ const unsigned char *params; -+ const unsigned char *m; -+ const unsigned char *c; -+ unsigned int key_len; -+ unsigned int param_len; -+ unsigned int m_size; -+ unsigned int c_size; -+ bool public_key_vec; -+ bool siggen_sigver_test; -+ enum OID algo; -+}; -+ -+struct kpp_testvec { -+ const unsigned char *secret; -+ const unsigned char *b_secret; -+ const unsigned char *b_public; -+ const unsigned char *expected_a_public; -+ const unsigned char *expected_ss; -+ short unsigned int secret_size; -+ short unsigned int b_secret_size; -+ short unsigned int b_public_size; -+ short unsigned int expected_a_public_size; -+ short unsigned int expected_ss_size; -+ bool genkey; -+}; -+ -+struct comp_testvec { -+ int inlen; -+ int outlen; -+ char input[512]; -+ char output[512]; -+}; -+ -+struct aead_test_suite { -+ const struct aead_testvec *vecs; -+ unsigned int count; -+ unsigned int einval_allowed: 1; -+ unsigned int aad_iv: 1; -+}; -+ -+struct cipher_test_suite { -+ const struct cipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct comp_test_suite { -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } comp; -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } decomp; -+}; -+ -+struct hash_test_suite { -+ const struct hash_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct cprng_test_suite { -+ const struct cprng_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct drbg_test_suite { -+ const struct drbg_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct akcipher_test_suite { -+ const struct akcipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct kpp_test_suite { -+ const struct kpp_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct alg_test_desc { -+ const char *alg; -+ const char *generic_driver; -+ int (*test)(const struct alg_test_desc *, const char *, u32, u32); -+ int fips_allowed; -+ union { -+ struct aead_test_suite aead; -+ struct cipher_test_suite cipher; -+ struct comp_test_suite comp; -+ struct hash_test_suite hash; -+ struct cprng_test_suite cprng; -+ struct drbg_test_suite drbg; -+ struct akcipher_test_suite akcipher; -+ struct kpp_test_suite kpp; -+ } suite; -+}; -+ -+enum flush_type { -+ FLUSH_TYPE_NONE = 0, -+ FLUSH_TYPE_FLUSH = 1, -+ FLUSH_TYPE_REIMPORT = 2, -+}; -+ -+enum finalization_type { -+ FINALIZATION_TYPE_FINAL = 0, -+ FINALIZATION_TYPE_FINUP = 1, -+ FINALIZATION_TYPE_DIGEST = 2, -+}; -+ -+struct test_sg_division { -+ unsigned int proportion_of_total; -+ unsigned int offset; -+ bool offset_relative_to_alignmask; -+ enum flush_type flush_type; -+ bool nosimd; -+}; -+ -+struct testvec_config { -+ const char *name; -+ bool inplace; -+ u32 req_flags; -+ struct test_sg_division src_divs[8]; -+ struct test_sg_division dst_divs[8]; -+ unsigned int iv_offset; -+ unsigned int key_offset; -+ bool iv_offset_relative_to_alignmask; -+ bool key_offset_relative_to_alignmask; -+ enum finalization_type finalization_type; -+ bool nosimd; -+}; -+ -+struct test_sglist { -+ char *bufs[8]; -+ struct scatterlist sgl[8]; -+ struct scatterlist sgl_saved[8]; -+ struct scatterlist *sgl_ptr; -+ unsigned int nents; -+}; -+ -+struct cipher_test_sglists { -+ struct test_sglist src; -+ struct test_sglist dst; -+}; -+ -+struct cmac_tfm_ctx { -+ struct crypto_cipher *child; -+ u8 ctx[0]; -+}; -+ -+struct cmac_desc_ctx { -+ unsigned int len; -+ u8 ctx[0]; -+}; -+ -+struct hmac_ctx { -+ struct crypto_shash *hash; -+}; -+ -+struct md5_state { -+ u32 hash[4]; -+ u32 block[16]; -+ u64 byte_count; -+}; -+ -+struct sha1_state { -+ u32 state[5]; -+ u64 count; -+ u8 buffer[64]; -+}; -+ -+typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); -+ -+struct sha256_state { -+ u32 state[8]; -+ u64 count; -+ u8 buf[64]; -+}; -+ -+struct sha512_state { -+ u64 state[8]; -+ u64 count[2]; -+ u8 buf[128]; -+}; -+ -+typedef void sha512_block_fn(struct sha512_state *, const u8 *, int); -+ -+struct sha3_state { -+ u64 st[25]; -+ unsigned int rsiz; -+ unsigned int rsizw; -+ unsigned int partial; -+ u8 buf[144]; -+}; -+ -+typedef struct { -+ u64 a; -+ u64 b; -+} u128; -+ -+typedef struct { -+ __le64 b; -+ __le64 a; -+} le128; -+ -+struct gf128mul_4k { -+ be128 t[256]; -+}; -+ -+struct gf128mul_64k { -+ struct gf128mul_4k *t[16]; -+}; -+ -+struct crypto_cts_ctx { -+ struct crypto_skcipher *child; -+}; -+ -+struct crypto_cts_reqctx { -+ struct scatterlist sg[2]; -+ unsigned int offset; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct skcipher_request subreq; -+}; -+ -+struct xts_tfm_ctx { -+ struct crypto_skcipher *child; -+ struct crypto_cipher *tweak; -+}; -+ -+struct xts_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ char name[128]; -+}; -+ -+struct xts_request_ctx { -+ le128 t; -+ struct scatterlist *tail; -+ struct scatterlist sg[2]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct skcipher_request subreq; -+}; -+ -+struct crypto_rfc3686_ctx { -+ struct crypto_skcipher *child; -+ u8 nonce[4]; -+}; -+ -+struct crypto_rfc3686_req_ctx { -+ u8 iv[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; -+ struct skcipher_request subreq; -+}; -+ -+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]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union { -+ struct ahash_request ahreq; -+ struct skcipher_request skreq; -+ } u; -+}; -+ -+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]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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]; -+ long: 64; -+ union { -+ struct ahash_request ahreq; -+ struct skcipher_request skreq; -+ }; -+}; -+ -+struct cbcmac_tfm_ctx { -+ struct crypto_cipher *child; -+}; -+ -+struct cbcmac_desc_ctx { -+ unsigned int len; -+}; -+ -+struct cryptd_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct cryptd_ahash { -+ struct crypto_ahash base; -+}; -+ -+struct cryptd_aead { -+ struct crypto_aead base; -+}; -+ -+struct cryptd_cpu_queue { -+ struct crypto_queue queue; -+ struct work_struct work; -+}; -+ -+struct cryptd_queue { -+ struct cryptd_cpu_queue *cpu_queue; -+}; -+ -+struct cryptd_instance_ctx { -+ struct crypto_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct skcipherd_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct hashd_instance_ctx { -+ struct crypto_shash_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct aead_instance_ctx { -+ struct crypto_aead_spawn aead_spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct cryptd_skcipher_ctx { -+ refcount_t refcnt; -+ struct crypto_sync_skcipher *child; -+}; -+ -+struct cryptd_skcipher_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+struct cryptd_hash_ctx { -+ refcount_t refcnt; -+ struct crypto_shash *child; -+}; -+ -+struct cryptd_hash_request_ctx { -+ crypto_completion_t complete; -+ struct shash_desc desc; -+}; -+ -+struct cryptd_aead_ctx { -+ refcount_t refcnt; -+ struct crypto_aead *child; -+}; -+ -+struct cryptd_aead_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+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; -+ -+struct deflate_ctx { -+ struct z_stream_s comp_stream; -+ struct z_stream_s decomp_stream; -+}; -+ -+struct chksum_ctx { -+ u32 key; -+}; -+ -+struct chksum_desc_ctx { -+ u32 crc; -+}; -+ -+struct chksum_desc_ctx___2 { -+ __u16 crc; -+}; -+ -+enum { -+ CRYPTO_AUTHENC_KEYA_UNSPEC = 0, -+ CRYPTO_AUTHENC_KEYA_PARAM = 1, -+}; -+ -+struct crypto_authenc_key_param { -+ __be32 enckeylen; -+}; -+ -+struct crypto_authenc_keys { -+ const u8 *authkey; -+ const u8 *enckey; -+ unsigned int authkeylen; -+ unsigned int enckeylen; -+}; -+ -+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 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]; -+}; -+ -+struct lzo_ctx { -+ void *lzo_comp_mem; -+}; -+ -+struct lzorle_ctx { -+ void *lzorle_comp_mem; -+}; -+ -+struct random_extrng { -+ ssize_t (*extrng_read)(void *, size_t); -+ struct module *owner; -+}; -+ -+struct crypto_report_rng { -+ char type[64]; -+ unsigned int seedsize; -+}; -+ -+struct random_ready_callback { -+ struct list_head list; -+ void (*func)(struct random_ready_callback *); -+ struct module *owner; -+}; -+ -+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 *); -+}; -+ -+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; -+ bool seeded; -+ bool pr; -+ bool fips_primed; -+ unsigned char *prev; -+ struct work_struct seed_work; -+ struct crypto_rng *jent; -+ const struct drbg_state_ops *d_ops; -+ const struct drbg_core *core; -+ struct drbg_string test_data; -+ struct random_ready_callback random_ready; -+}; -+ -+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 rand_data { -+ __u64 data; -+ __u64 old_data; -+ __u64 prev_time; -+ __u64 last_delta; -+ __s64 last_delta2; -+ unsigned int osr; -+ unsigned char *mem; -+ unsigned int memlocation; -+ unsigned int memblocks; -+ unsigned int memblocksize; -+ unsigned int memaccessloops; -+ int rct_count; -+ unsigned int apt_observations; -+ unsigned int apt_count; -+ unsigned int apt_base; -+ unsigned int apt_base_set: 1; -+ unsigned int health_failure: 1; -+}; -+ -+struct rand_data___2; -+ -+struct jitterentropy { -+ spinlock_t jent_lock; -+ struct rand_data___2 *entropy_collector; -+ unsigned int reset_cnt; -+}; -+ -+struct ghash_ctx { -+ struct gf128mul_4k *gf128; -+}; -+ -+struct ghash_desc_ctx { -+ u8 buffer[16]; -+ u32 bytes; -+}; -+ -+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 cmsghdr { -+ __kernel_size_t cmsg_len; -+ int cmsg_level; -+ int cmsg_type; -+}; -+ -+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_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_control { -+ struct af_alg_iv *iv; -+ int op; -+ unsigned int aead_assoclen; -+}; -+ -+struct af_alg_sgl { -+ struct scatterlist sg[17]; -+ struct page *pages[16]; -+ unsigned int npages; -+}; -+ -+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; -+ size_t aead_assoclen; -+ struct crypto_wait wait; -+ size_t used; -+ atomic_t rcvused; -+ bool more; -+ bool merge; -+ bool enc; -+ bool init; -+ unsigned int len; -+}; -+ -+struct alg_type_list { -+ const struct af_alg_type *type; -+ struct list_head list; -+}; -+ -+struct hash_ctx { -+ struct af_alg_sgl sgl; -+ u8 *result; -+ struct crypto_wait wait; -+ unsigned int len; -+ bool more; -+ long: 24; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct ahash_request req; -+}; -+ -+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; -+}; -+ -+struct aead_tfm { -+ struct crypto_aead *aead; -+ struct crypto_sync_skcipher *null_tfm; -+}; -+ -+struct asymmetric_key_ids { -+ void *id[2]; -+}; -+ -+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 *); -+}; -+ -+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_pkey_algo = 7, -+ ACT_x509_note_serial = 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_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_key; -+ bool unsupported_sig; -+ bool blacklisted; -+}; -+ -+struct x509_parse_context { -+ struct x509_certificate *cert; -+ long unsigned int data; -+ const void *cert_start; -+ const void *key; -+ size_t key_size; -+ const void *params; -+ size_t params_size; -+ enum OID key_algo; -+ enum OID last_oid; -+ enum OID algo_oid; -+ unsigned char nr_mpi; -+ 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, -+}; -+ -+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___2 { -+ 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___2 *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; -+}; -+ -+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 simd_skcipher_alg___2 { -+ const char *ialg_name; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 skcipher_alg alg; -+}; -+ -+struct simd_skcipher_ctx { -+ struct cryptd_skcipher *cryptd_tfm; -+}; -+ -+struct simd_aead_alg { -+ const char *ialg_name; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 aead_alg alg; -+}; -+ -+struct simd_aead_ctx { -+ struct cryptd_aead *cryptd_tfm; -+}; -+ -+enum rq_qos_id { -+ RQ_QOS_WBT = 0, -+ RQ_QOS_LATENCY = 1, -+ RQ_QOS_COST = 2, -+ RQ_QOS_IOPRIO = 3, -+}; -+ -+struct rq_qos_ops; -+ -+struct rq_qos { -+ struct rq_qos_ops *ops; -+ struct request_queue *q; -+ enum rq_qos_id id; -+ struct rq_qos *next; -+ struct dentry *debugfs_dir; -+}; -+ -+enum hctx_type { -+ HCTX_TYPE_DEFAULT = 0, -+ HCTX_TYPE_READ = 1, -+ HCTX_TYPE_POLL = 2, -+ HCTX_MAX_TYPES = 3, -+}; -+ -+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 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[8]; -+}; -+ -+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 = 32, -+ BLK_MQ_F_NO_SCHED = 64, -+ BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, -+ BLK_MQ_F_ALLOC_POLICY_BITS = 1, -+ BLK_MQ_S_STOPPED = 0, -+ BLK_MQ_S_TAG_ACTIVE = 1, -+ BLK_MQ_S_SCHED_RESTART = 2, -+ BLK_MQ_S_INACTIVE = 3, -+ BLK_MQ_MAX_DEPTH = 10240, -+ BLK_MQ_CPU_WORK_BATCH = 8, -+}; -+ -+enum { -+ WBT_RWQ_BG = 0, -+ WBT_RWQ_KSWAPD = 1, -+ WBT_RWQ_DISCARD = 2, -+ WBT_NUM_RWQ = 3, -+}; -+ -+struct req_iterator { -+ struct bvec_iter iter; -+ struct bio *bio; -+}; -+ -+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, -+}; -+ -+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; -+ char rwbs[8]; -+ u32 __data_loc_cmd; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_block_rq_complete { -+ struct trace_entry ent; -+ dev_t dev; -+ sector_t sector; -+ unsigned int nr_sector; -+ int error; -+ 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; -+ 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; -+}; -+ -+struct trace_event_data_offsets_block_rq_complete { -+ u32 cmd; -+}; -+ -+struct trace_event_data_offsets_block_rq { -+ u32 cmd; -+}; -+ -+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 *, int, 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_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); -+ -+enum { -+ BLK_MQ_NO_TAG = 4294967295, -+ BLK_MQ_TAG_MIN = 1, -+ BLK_MQ_TAG_MAX = 4294967294, -+}; -+ -+struct queue_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct request_queue *, char *); -+ ssize_t (*store)(struct request_queue *, const char *, size_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 = 500, -+}; -+ -+enum blk_default_limits { -+ BLK_MAX_SEGMENTS = 128, -+ BLK_SAFE_MAX_SECTORS = 255, -+ BLK_DEF_MAX_SECTORS = 2560, -+ BLK_MAX_SEGMENT_SIZE = 65536, -+ BLK_SEG_BOUNDARY_MASK = 4294967295, -+}; -+ -+enum { -+ ICQ_EXITED = 4, -+ ICQ_DESTROYED = 8, -+}; -+ -+struct rq_map_data { -+ struct page **pages; -+ int page_order; -+ int nr_entries; -+ long unsigned int offset; -+ int null_mapped; -+ int from_user; -+}; -+ -+struct bio_map_data { -+ bool is_our_pages: 1; -+ bool is_null_mapped: 1; -+ struct iov_iter iter; -+ struct iovec iov[0]; -+}; -+ -+enum bio_merge_status { -+ BIO_MERGE_OK = 0, -+ BIO_MERGE_NONE = 1, -+ BIO_MERGE_FAILED = 2, -+}; -+ -+typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); -+ -+typedef bool busy_iter_fn(struct blk_mq_hw_ctx *, struct request *, void *, bool); -+ -+typedef bool busy_tag_iter_fn(struct request *, void *, bool); -+ -+enum { -+ BLK_MQ_UNIQUE_TAG_BITS = 16, -+ BLK_MQ_UNIQUE_TAG_MASK = 65535, -+}; -+ -+struct mq_inflight { -+ struct block_device *part; -+ unsigned int inflight[2]; -+}; -+ -+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 sbq_wait { -+ struct sbitmap_queue *sbq; -+ struct wait_queue_entry wait; -+}; -+ -+struct bt_iter_data { -+ struct blk_mq_hw_ctx *hctx; -+ busy_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; -+}; -+ -+struct blk_queue_stats { -+ struct list_head callbacks; -+ spinlock_t lock; -+ bool enable_accounting; -+}; -+ -+struct blk_mq_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t); -+}; -+ -+struct blk_mq_hw_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_hw_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t); -+}; -+ -+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 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 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 class_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+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 blk_major_name { -+ struct blk_major_name *next; -+ int major; -+ char name[16]; -+ void (*probe)(dev_t); -+}; -+ -+enum { -+ IOPRIO_WHO_PROCESS = 1, -+ IOPRIO_WHO_PGRP = 2, -+ IOPRIO_WHO_USER = 3, -+}; -+ -+struct parsed_partitions { -+ struct block_device *bdev; -+ 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 page *v; -+} Sector; -+ -+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 = 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 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 _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 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; -+}; -+ -+enum { -+ DISK_EVENT_FLAG_POLL = 1, -+ DISK_EVENT_FLAG_UEVENT = 2, -+}; -+ -+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 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 for_data; -+ int (*exit)(struct cdrom_device_info *); -+ int mrw_mode_page; -+}; -+ -+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; -+}; -+ -+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 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 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 *, int); -+ int (*select_disc)(struct cdrom_device_info *, 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 *); -+ const int capability; -+ int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); -+}; -+ -+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]; -+}; -+ -+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 scsi_request { -+ unsigned char __cmd[16]; -+ unsigned char *cmd; -+ short unsigned int cmd_len; -+ int result; -+ unsigned int sense_len; -+ unsigned int resid_len; -+ int retries; -+ void *sense; -+}; -+ -+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; -+}; -+ -+struct blk_cmd_filter { -+ long unsigned int read_ok[4]; -+ long unsigned int write_ok[4]; -+}; -+ -+enum { -+ OMAX_SB_LEN = 16, -+}; -+ -+struct bsg_device { -+ struct request_queue *queue; -+ spinlock_t lock; -+ struct hlist_node dev_list; -+ refcount_t ref_count; -+ char name[20]; -+ int max_queue; -+}; -+ -+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 *); -+ -+struct bsg_set { -+ struct blk_mq_tag_set tag_set; -+ bsg_job_fn *job_fn; -+ bsg_timeout_fn *timeout_fn; -+}; -+ -+typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); -+ -+typedef void blkcg_pol_init_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_bind_cpd_fn(struct blkcg_policy_data *); -+ -+typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(gfp_t, struct request_queue *, struct blkcg *); -+ -+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 size_t blkcg_pol_stat_pd_fn(struct blkg_policy_data *, char *, size_t); -+ -+struct blkcg_policy { -+ int plid; -+ struct cftype *dfl_cftypes; -+ struct cftype *legacy_cftypes; -+ blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; -+ blkcg_pol_init_cpd_fn *cpd_init_fn; -+ blkcg_pol_free_cpd_fn *cpd_free_fn; -+ blkcg_pol_bind_cpd_fn *cpd_bind_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 { -+ struct block_device *bdev; -+ struct blkcg_gq *blkg; -+ char *body; -+}; -+ -+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 blkg_rwstat { -+ struct percpu_counter cpu_cnt[5]; -+ atomic64_t aux_cnt[5]; -+}; -+ -+struct blkg_rwstat_sample { -+ u64 cnt[5]; -+}; -+ -+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 latency_bucket { -+ long unsigned int total_latency; -+ int samples; -+}; -+ -+struct avg_latency_bucket { -+ long unsigned int latency; -+ bool valid; -+}; -+ -+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; -+ unsigned int limit_index; -+ bool limit_valid[2]; -+ long unsigned int low_upgrade_time; -+ long unsigned int low_downgrade_time; -+ unsigned int scale; -+ struct latency_bucket tmp_buckets[18]; -+ struct avg_latency_bucket avg_buckets[18]; -+ struct latency_bucket *latency_buckets[2]; -+ long unsigned int last_calculate_time; -+ long unsigned int filtered_latency; -+ bool track_bio_latency; -+}; -+ -+struct throtl_grp; -+ -+struct throtl_qnode { -+ struct list_head node; -+ struct bio_list bios; -+ 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[2]; -+ uint64_t bps[4]; -+ uint64_t bps_conf[4]; -+ unsigned int iops[4]; -+ unsigned int iops_conf[4]; -+ uint64_t bytes_disp[2]; -+ unsigned int io_disp[2]; -+ long unsigned int last_low_overflow_time[2]; -+ uint64_t last_bytes_disp[2]; -+ unsigned int last_io_disp[2]; -+ long unsigned int last_check_time; -+ long unsigned int latency_target; -+ long unsigned int latency_target_conf; -+ long unsigned int slice_start[2]; -+ long unsigned int slice_end[2]; -+ long unsigned int last_finish_time; -+ long unsigned int checked_last_finish_time; -+ long unsigned int avg_idletime; -+ long unsigned int idletime_threshold; -+ long unsigned int idletime_threshold_conf; -+ unsigned int bio_cnt; -+ unsigned int bad_bio_cnt; -+ long unsigned int bio_cnt_reset_time; -+ struct blkg_rwstat stat_bytes; -+ struct blkg_rwstat stat_ios; -+}; -+ -+enum tg_state_flags { -+ THROTL_TG_PENDING = 1, -+ THROTL_TG_WAS_EMPTY = 2, -+}; -+ -+enum { -+ LIMIT_LOW = 0, -+ LIMIT_MAX = 1, -+ LIMIT_CNT = 2, -+}; -+ -+struct blk_iolatency { -+ struct rq_qos rqos; -+ struct timer_list timer; -+ atomic_t enabled; -+}; -+ -+struct iolatency_grp; -+ -+struct child_latency_info { -+ spinlock_t lock; -+ u64 last_scale_event; -+ u64 scale_lat; -+ u64 nr_samples; -+ struct iolatency_grp *scale_grp; -+ atomic_t scale_cookie; -+}; -+ -+struct percentile_stats { -+ u64 total; -+ u64 missed; -+}; -+ -+struct latency_stat { -+ union { -+ struct percentile_stats ps; -+ struct blk_rq_stat rqs; -+ }; -+}; -+ -+struct iolatency_grp { -+ struct blkg_policy_data pd; -+ struct latency_stat *stats; -+ struct latency_stat cur_stat; -+ struct blk_iolatency *blkiolat; -+ struct rq_depth rq_depth; -+ struct rq_wait rq_wait; -+ atomic64_t window_start; -+ atomic_t scale_cookie; -+ u64 min_lat_nsec; -+ u64 cur_win_nsec; -+ u64 lat_avg; -+ u64 nr_samples; -+ bool ssd; -+ struct child_latency_info child_lat; -+}; -+ -+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 { -+ local_t inserted; -+ local_t merged; -+ local_t dispatched; -+ local_t completed; -+}; -+ -+struct io_stats { -+ struct io_stats_per_prio stats[3]; -+}; -+ -+struct dd_per_prio { -+ struct list_head dispatch; -+ struct rb_root sort_list[2]; -+ struct list_head fifo_list[2]; -+ struct request *next_rq[2]; -+}; -+ -+struct deadline_data { -+ struct dd_per_prio per_prio[3]; -+ enum dd_data_dir last_dir; -+ unsigned int batching; -+ unsigned int starved; -+ struct io_stats *stats; -+ int fifo_expire[2]; -+ int fifo_batch; -+ int writes_starved; -+ int front_merges; -+ u32 async_depth; -+ spinlock_t lock; -+ spinlock_t zone_lock; -+}; -+ -+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 *, struct request_queue *, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_kyber_adjust)(void *, struct request_queue *, const char *, unsigned int); -+ -+typedef void (*btf_trace_kyber_throttled)(void *, struct request_queue *, 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; -+ 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 bfq_entity; -+ -+struct bfq_service_tree { -+ struct rb_root active; -+ struct rb_root idle; -+ struct bfq_entity *first_idle; -+ struct bfq_entity *last_idle; -+ u64 vtime; -+ long unsigned int wsum; -+}; -+ -+struct bfq_sched_data; -+ -+struct bfq_queue; -+ -+struct bfq_entity { -+ struct rb_node rb_node; -+ bool on_st_or_in_serv; -+ u64 start; -+ u64 finish; -+ struct rb_root *tree; -+ u64 min_start; -+ int service; -+ int budget; -+ int dev_weight; -+ int weight; -+ int new_weight; -+ int orig_weight; -+ struct bfq_entity *parent; -+ struct bfq_sched_data *my_sched_data; -+ struct bfq_sched_data *sched_data; -+ int prio_changed; -+ bool in_groups_with_pending_reqs; -+ struct bfq_queue *last_bfqq_created; -+}; -+ -+struct bfq_sched_data { -+ struct bfq_entity *in_service_entity; -+ struct bfq_entity *next_in_service; -+ struct bfq_service_tree service_tree[3]; -+ long unsigned int bfq_class_idle_last_service; -+}; -+ -+struct bfq_weight_counter { -+ unsigned int weight; -+ unsigned int num_active; -+ struct rb_node weights_node; -+}; -+ -+struct bfq_ttime { -+ u64 last_end_request; -+ u64 ttime_total; -+ long unsigned int ttime_samples; -+ u64 ttime_mean; -+}; -+ -+struct bfq_data; -+ -+struct bfq_io_cq; -+ -+struct bfq_queue { -+ int ref; -+ int stable_ref; -+ struct bfq_data *bfqd; -+ short unsigned int ioprio; -+ short unsigned int ioprio_class; -+ short unsigned int new_ioprio; -+ short unsigned int new_ioprio_class; -+ u64 last_serv_time_ns; -+ unsigned int inject_limit; -+ long unsigned int decrease_time_jif; -+ struct bfq_queue *new_bfqq; -+ struct rb_node pos_node; -+ struct rb_root *pos_root; -+ struct rb_root sort_list; -+ struct request *next_rq; -+ int queued[2]; -+ int allocated; -+ int meta_pending; -+ struct list_head fifo; -+ struct bfq_entity entity; -+ struct bfq_weight_counter *weight_counter; -+ int max_budget; -+ long unsigned int budget_timeout; -+ int dispatched; -+ long unsigned int flags; -+ struct list_head bfqq_list; -+ struct bfq_ttime ttime; -+ u64 io_start_time; -+ u64 tot_idle_time; -+ u32 seek_history; -+ struct hlist_node burst_list_node; -+ sector_t last_request_pos; -+ unsigned int requests_within_timer; -+ pid_t pid; -+ struct bfq_io_cq *bic; -+ long unsigned int wr_cur_max_time; -+ long unsigned int soft_rt_next_start; -+ long unsigned int last_wr_start_finish; -+ unsigned int wr_coeff; -+ long unsigned int last_idle_bklogged; -+ long unsigned int service_from_backlogged; -+ long unsigned int service_from_wr; -+ long unsigned int wr_start_at_switch_to_srt; -+ long unsigned int split_time; -+ long unsigned int first_IO_time; -+ long unsigned int creation_time; -+ u32 max_service_rate; -+ struct bfq_queue *waker_bfqq; -+ struct bfq_queue *tentative_waker_bfqq; -+ unsigned int num_waker_detections; -+ struct hlist_node woken_list_node; -+ struct hlist_head woken_list; -+}; -+ -+struct bfq_group; -+ -+struct bfq_data { -+ struct request_queue *queue; -+ struct list_head dispatch; -+ struct bfq_group *root_group; -+ struct rb_root_cached queue_weights_tree; -+ unsigned int num_groups_with_pending_reqs; -+ unsigned int busy_queues[3]; -+ int wr_busy_queues; -+ int queued; -+ int rq_in_driver; -+ bool nonrot_with_queueing; -+ int max_rq_in_driver; -+ int hw_tag_samples; -+ int hw_tag; -+ int budgets_assigned; -+ struct hrtimer idle_slice_timer; -+ struct bfq_queue *in_service_queue; -+ sector_t last_position; -+ sector_t in_serv_last_pos; -+ u64 last_completion; -+ struct bfq_queue *last_completed_rq_bfqq; -+ struct bfq_queue *last_bfqq_created; -+ u64 last_empty_occupied_ns; -+ bool wait_dispatch; -+ struct request *waited_rq; -+ bool rqs_injected; -+ u64 first_dispatch; -+ u64 last_dispatch; -+ ktime_t last_budget_start; -+ ktime_t last_idling_start; -+ long unsigned int last_idling_start_jiffies; -+ int peak_rate_samples; -+ u32 sequential_samples; -+ u64 tot_sectors_dispatched; -+ u32 last_rq_max_size; -+ u64 delta_from_first; -+ u32 peak_rate; -+ int bfq_max_budget; -+ struct list_head active_list; -+ struct list_head idle_list; -+ u64 bfq_fifo_expire[2]; -+ unsigned int bfq_back_penalty; -+ unsigned int bfq_back_max; -+ u32 bfq_slice_idle; -+ int bfq_user_max_budget; -+ unsigned int bfq_timeout; -+ bool strict_guarantees; -+ long unsigned int last_ins_in_burst; -+ long unsigned int bfq_burst_interval; -+ int burst_size; -+ struct bfq_entity *burst_parent_entity; -+ long unsigned int bfq_large_burst_thresh; -+ bool large_burst; -+ struct hlist_head burst_list; -+ bool low_latency; -+ unsigned int bfq_wr_coeff; -+ unsigned int bfq_wr_max_time; -+ unsigned int bfq_wr_rt_max_time; -+ unsigned int bfq_wr_min_idle_time; -+ long unsigned int bfq_wr_min_inter_arr_async; -+ unsigned int bfq_wr_max_softrt_rate; -+ u64 rate_dur_prod; -+ struct bfq_queue oom_bfqq; -+ spinlock_t lock; -+ struct bfq_io_cq *bio_bic; -+ struct bfq_queue *bio_bfqq; -+ unsigned int word_depths[4]; -+}; -+ -+struct bfq_io_cq { -+ struct io_cq icq; -+ struct bfq_queue *bfqq[2]; -+ int ioprio; -+ uint64_t blkcg_serial_nr; -+ bool saved_has_short_ttime; -+ bool saved_IO_bound; -+ u64 saved_io_start_time; -+ u64 saved_tot_idle_time; -+ bool saved_in_large_burst; -+ bool was_in_burst_list; -+ unsigned int saved_weight; -+ long unsigned int saved_wr_coeff; -+ long unsigned int saved_last_wr_start_finish; -+ long unsigned int saved_service_from_wr; -+ long unsigned int saved_wr_start_at_switch_to_srt; -+ unsigned int saved_wr_cur_max_time; -+ struct bfq_ttime saved_ttime; -+ u64 saved_last_serv_time_ns; -+ unsigned int saved_inject_limit; -+ long unsigned int saved_decrease_time_jif; -+ struct bfq_queue *stable_merge_bfqq; -+ bool stably_merged; -+}; -+ -+struct bfqg_stats { -+ struct blkg_rwstat bytes; -+ struct blkg_rwstat ios; -+}; -+ -+struct bfq_group { -+ struct blkg_policy_data pd; -+ char blkg_path[128]; -+ int ref; -+ struct bfq_entity entity; -+ struct bfq_sched_data sched_data; -+ void *bfqd; -+ struct bfq_queue *async_bfqq[16]; -+ struct bfq_queue *async_idle_bfqq; -+ struct bfq_entity *my_entity; -+ int active_entities; -+ struct rb_root rq_pos_tree; -+ struct bfqg_stats stats; -+}; -+ -+enum bfqq_state_flags { -+ BFQQF_just_created = 0, -+ BFQQF_busy = 1, -+ BFQQF_wait_request = 2, -+ BFQQF_non_blocking_wait_rq = 3, -+ BFQQF_fifo_expire = 4, -+ BFQQF_has_short_ttime = 5, -+ BFQQF_sync = 6, -+ BFQQF_IO_bound = 7, -+ BFQQF_in_large_burst = 8, -+ BFQQF_softrt_update = 9, -+ BFQQF_coop = 10, -+ BFQQF_split_coop = 11, -+}; -+ -+enum bfqq_expiration { -+ BFQQE_TOO_IDLE = 0, -+ BFQQE_BUDGET_TIMEOUT = 1, -+ BFQQE_BUDGET_EXHAUSTED = 2, -+ BFQQE_NO_MORE_REQUESTS = 3, -+ BFQQE_PREEMPTED = 4, -+}; -+ -+struct bfq_group_data { -+ struct blkcg_policy_data pd; -+ unsigned int weight; -+}; -+ -+enum bip_flags { -+ BIP_BLOCK_INTEGRITY = 1, -+ BIP_MAPPED_INTEGRITY = 2, -+ BIP_CTRL_NOCHECK = 4, -+ BIP_DISK_NOCHECK = 8, -+ BIP_IP_CHECKSUM = 16, -+}; -+ -+enum blk_integrity_flags { -+ BLK_INTEGRITY_VERIFY = 1, -+ BLK_INTEGRITY_GENERATE = 2, -+ BLK_INTEGRITY_DEVICE_CAPABLE = 4, -+ BLK_INTEGRITY_IP_CHECKSUM = 8, -+}; -+ -+struct integrity_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_integrity *, char *); -+ ssize_t (*store)(struct blk_integrity *, const char *, size_t); -+}; -+ -+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 t10_pi_tuple { -+ __be16 guard_tag; -+ __be16 app_tag; -+ __be32 ref_tag; -+}; -+ -+typedef __be16 csum_fn(void *, unsigned int); -+ -+struct virtio_device_id { -+ __u32 device; -+ __u32 vendor; -+}; -+ -+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; -+ void *priv; -+}; -+ -+struct vringh_config_ops; -+ -+struct virtio_config_ops; -+ -+struct virtio_device { -+ int index; -+ bool failed; -+ bool config_enabled; -+ 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; -+}; -+ -+typedef void vq_callback_t(struct virtqueue *); -+ -+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 **, vq_callback_t **, const char * const *, const bool *, struct irq_affinity *); -+ void (*del_vqs)(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); -+}; -+ -+struct virtio_shm_region { -+ u64 addr; -+ u64 len; -+}; -+ -+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 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_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_MAX = 8, -+}; -+ -+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; -+}; -+ -+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_hw_stats { -+ struct mutex lock; -+ long unsigned int timestamp; -+ long unsigned int lifespan; -+ const char * const *names; -+ 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, -+}; -+ -+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, -+}; -+ -+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 uverbs_attr_bundle; -+ -+struct rdma_cm_id; -+ -+struct iw_cm_id; -+ -+struct iw_cm_conn_param; -+ -+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_sge; -+ -+struct ib_mr_status; -+ -+struct ib_mw; -+ -+struct ib_xrcd; -+ -+struct ib_flow; -+ -+struct ib_flow_attr; -+ -+struct ib_flow_action; -+ -+struct ib_flow_action_attrs_esp; -+ -+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 *); -+ struct ib_qp * (*create_qp)(struct ib_pd *, 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 ib_udata *); -+ 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 *); -+ 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_udata *); -+ struct ib_mr * (*reg_user_mr_dmabuf)(struct ib_pd *, u64, u64, u64, int, int, struct ib_udata *); -+ 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 *); -+ struct ib_flow_action * (*create_flow_action_esp)(struct ib_device *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ int (*destroy_flow_action)(struct ib_flow_action *); -+ int (*modify_flow_action_esp)(struct ib_flow_action *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ 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 *); -+ 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 (*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 (*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 *); -+ int (*counter_unbind_qp)(struct ib_qp *); -+ int (*counter_dealloc)(struct rdma_counter *); -+ struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); -+ int (*counter_update_stats)(struct rdma_counter *); -+ int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); -+ int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); -+ size_t size_ib_ah; -+ size_t size_ib_counters; -+ size_t size_ib_cq; -+ size_t size_ib_mw; -+ size_t size_ib_pd; -+ size_t size_ib_rwq_ind_table; -+ size_t size_ib_srq; -+ size_t size_ib_ucontext; -+ size_t size_ib_xrcd; -+}; -+ -+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; -+ 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]; -+ 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; -+}; -+ -+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 ib_uverbs_flow_action_esp_keymat { -+ IB_UVERBS_FLOW_ACTION_ESP_KEYMAT_AES_GCM = 0, -+}; -+ -+struct ib_uverbs_flow_action_esp_keymat_aes_gcm { -+ __u64 iv; -+ __u32 iv_algo; -+ __u32 salt; -+ __u32 icv_len; -+ __u32 key_len; -+ __u32 aes_key[8]; -+}; -+ -+enum ib_uverbs_flow_action_esp_replay { -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_NONE = 0, -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_BMP = 1, -+}; -+ -+struct ib_uverbs_flow_action_esp_replay_bmp { -+ __u32 size; -+}; -+ -+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 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 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 *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_REG_MR = 8, -+ IB_WC_MASKED_COMP_SWAP = 9, -+ IB_WC_MASKED_FETCH_ADD = 10, -+ 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_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 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_uverbs_file; -+ -+struct ib_ucontext { -+ struct ib_device *device; -+ struct ib_uverbs_file *ufile; -+ struct ib_rdmacg_object cg_obj; -+ 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_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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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_flow_action_attrs_esp_keymats { -+ enum ib_uverbs_flow_action_esp_keymat protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_keymat_aes_gcm aes_gcm; -+ } keymat; -+}; -+ -+struct ib_flow_action_attrs_esp_replays { -+ enum ib_uverbs_flow_action_esp_replay protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_replay_bmp bmp; -+ } replay; -+}; -+ -+struct ib_flow_spec_list { -+ struct ib_flow_spec_list *next; -+ union ib_flow_spec spec; -+}; -+ -+struct ib_flow_action_attrs_esp { -+ struct ib_flow_action_attrs_esp_keymats *keymat; -+ struct ib_flow_action_attrs_esp_replays *replay; -+ struct ib_flow_spec_list *encap; -+ u32 esn; -+ u32 spi; -+ u32 seq; -+ u32 tfc_pad; -+ u64 flags; -+ u64 hard_limit_pkts; -+}; -+ -+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; -+}; -+ -+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; -+ 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; -+}; -+ -+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 zone_report_args { -+ struct blk_zone *zones; -+}; -+ -+struct blk_revalidate_zone_args { -+ struct gendisk *disk; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int nr_zones; -+ sector_t zone_sectors; -+ sector_t sector; -+}; -+ -+enum wbt_flags { -+ WBT_TRACKED = 1, -+ WBT_READ = 2, -+ WBT_KSWAPD = 4, -+ WBT_DISCARD = 8, -+ WBT_NR_BITS = 4, -+}; -+ -+enum { -+ WBT_STATE_ON_DEFAULT = 1, -+ WBT_STATE_ON_MANUAL = 2, -+ WBT_STATE_OFF_DEFAULT = 3, -+}; -+ -+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; -+ unsigned int wc; -+ 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; -+}; -+ -+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 { -+ 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; -+ long unsigned int rw; -+}; -+ -+struct show_busy_params { -+ struct seq_file *m; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+typedef int (*cmp_r_func_t)(const void *, const void *, const void *); -+ -+struct siprand_state { -+ long unsigned int v0; -+ long unsigned int v1; -+ long unsigned int v2; -+ long unsigned int v3; -+}; -+ -+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; -+}; -+ -+enum { -+ REG_OP_ISFREE = 0, -+ REG_OP_ALLOC = 1, -+ REG_OP_RELEASE = 2, -+}; -+ -+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 csum_state { -+ __wsum csum; -+ size_t off; -+}; -+ -+typedef u32 compat_size_t; -+ -+typedef s32 compat_ssize_t; -+ -+typedef u32 compat_uptr_t; -+ -+struct compat_iovec { -+ compat_uptr_t iov_base; -+ compat_size_t iov_len; -+}; -+ -+struct rhltable { -+ struct rhashtable ht; -+}; -+ -+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; -+}; -+ -+union nested_table { -+ union nested_table *table; -+ struct rhash_lock_head *bucket; -+}; -+ -+struct once_work { -+ struct work_struct work; -+ struct static_key_true *key; -+ struct module *module; -+}; -+ -+struct genradix_iter { -+ size_t offset; -+ size_t pos; -+}; -+ -+struct genradix_node { -+ union { -+ struct genradix_node *children[512]; -+ u8 data[4096]; -+ }; -+}; -+ -+struct test_fail { -+ const char *str; -+ unsigned int base; -+}; -+ -+struct test_s8 { -+ const char *str; -+ unsigned int base; -+ s8 expected_res; -+}; -+ -+struct test_u8 { -+ const char *str; -+ unsigned int base; -+ u8 expected_res; -+}; -+ -+struct test_s16 { -+ const char *str; -+ unsigned int base; -+ s16 expected_res; -+}; -+ -+struct test_u16 { -+ const char *str; -+ unsigned int base; -+ u16 expected_res; -+}; -+ -+struct test_s32 { -+ const char *str; -+ unsigned int base; -+ s32 expected_res; -+}; -+ -+struct test_u32 { -+ const char *str; -+ unsigned int base; -+ u32 expected_res; -+}; -+ -+struct test_s64 { -+ const char *str; -+ unsigned int base; -+ s64 expected_res; -+}; -+ -+struct test_u64 { -+ const char *str; -+ unsigned int base; -+ u64 expected_res; -+}; -+ -+struct test_ll { -+ const char *str; -+ unsigned int base; -+ long long int expected_res; -+}; -+ -+struct test_ull { -+ const char *str; -+ unsigned int base; -+ long long unsigned int expected_res; -+}; -+ -+struct reciprocal_value_adv { -+ u32 m; -+ u8 sh; -+ u8 exp; -+ bool is_wide_m; -+}; -+ -+struct chacha20poly1305_testvec { -+ const u8 *input; -+ const u8 *output; -+ const u8 *assoc; -+ const u8 *nonce; -+ const u8 *key; -+ size_t ilen; -+ size_t alen; -+ size_t nlen; -+ bool failure; -+}; -+ -+enum { -+ MAXIMUM_TEST_BUFFER_LEN = 4096, -+}; -+ -+enum devm_ioremap_type { -+ DEVM_IOREMAP = 0, -+ DEVM_IOREMAP_UC = 1, -+ DEVM_IOREMAP_WC = 2, -+ DEVM_IOREMAP_NP = 3, -+}; -+ -+struct pcim_iomap_devres { -+ void *table[6]; -+}; -+ -+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); -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef struct { -+ unsigned char op; -+ unsigned char bits; -+ short unsigned int val; -+} code; -+ -+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]; -+}; -+ -+union uu { -+ short unsigned int us; -+ unsigned char b[2]; -+}; -+ -+typedef unsigned int uInt; -+ -+typedef enum { -+ CODES = 0, -+ LENS = 1, -+ DISTS = 2, -+} codetype; -+ -+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 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 tree_desc_s tree_desc; -+ -+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 uint8_t BYTE; -+ -+typedef uint16_t U16; -+ -+typedef uint32_t U32; -+ -+typedef uint64_t U64; -+ -+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; -+ -+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 xz_dec; -+ -+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___2 { -+ 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; -+}; -+ -+struct xz_dec_lzma2___2 { -+ 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_bcj___2 { -+ enum { -+ BCJ_X86 = 4, -+ BCJ_POWERPC = 5, -+ BCJ_IA64 = 6, -+ BCJ_ARM = 7, -+ BCJ_ARMTHUMB = 8, -+ BCJ_SPARC = 9, -+ } 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_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 ts_linear_state { -+ unsigned int len; -+ const void *data; -+}; -+ -+struct ei_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+ int etype; -+ void *priv; -+}; -+ -+struct ddebug_table { -+ struct list_head link; -+ 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; -+ unsigned int first_lineno; -+ unsigned int last_lineno; -+}; -+ -+struct ddebug_iter { -+ struct ddebug_table *table; -+ unsigned int idx; -+}; -+ -+struct flag_settings { -+ unsigned int flags; -+ unsigned int mask; -+}; -+ -+struct flagsbuf { -+ char buf[7]; -+}; -+ -+struct nla_bitfield32 { -+ __u32 value; -+ __u32 selector; -+}; -+ -+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 cpu_rmap { -+ struct kref refcount; -+ u16 size; -+ u16 used; -+ void **obj; -+ struct { -+ u16 index; -+ u16 dist; -+ } near[0]; -+}; -+ -+struct irq_glue { -+ struct irq_affinity_notify notify; -+ struct cpu_rmap *rmap; -+ u16 index; -+}; -+ -+typedef mpi_limb_t *mpi_ptr_t; -+ -+typedef int mpi_size_t; -+ -+typedef mpi_limb_t UWtype; -+ -+typedef unsigned int UHWtype; -+ -+enum gcry_mpi_constants { -+ MPI_C_ZERO = 0, -+ MPI_C_ONE = 1, -+ MPI_C_TWO = 2, -+ MPI_C_THREE = 3, -+ MPI_C_FOUR = 4, -+ MPI_C_EIGHT = 5, -+}; -+ -+struct barrett_ctx_s; -+ -+typedef struct barrett_ctx_s *mpi_barrett_t; -+ -+struct gcry_mpi_point { -+ MPI x; -+ MPI y; -+ MPI z; -+}; -+ -+typedef struct gcry_mpi_point *MPI_POINT; -+ -+enum gcry_mpi_ec_models { -+ MPI_EC_WEIERSTRASS = 0, -+ MPI_EC_MONTGOMERY = 1, -+ MPI_EC_EDWARDS = 2, -+}; -+ -+enum ecc_dialects { -+ ECC_DIALECT_STANDARD = 0, -+ ECC_DIALECT_ED25519 = 1, -+ ECC_DIALECT_SAFECURVE = 2, -+}; -+ -+struct mpi_ec_ctx { -+ enum gcry_mpi_ec_models model; -+ enum ecc_dialects dialect; -+ int flags; -+ unsigned int nbits; -+ MPI p; -+ MPI a; -+ MPI b; -+ MPI_POINT G; -+ MPI n; -+ unsigned int h; -+ MPI_POINT Q; -+ MPI d; -+ const char *name; -+ struct { -+ struct { -+ unsigned int a_is_pminus3: 1; -+ unsigned int two_inv_p: 1; -+ } valid; -+ int a_is_pminus3; -+ MPI two_inv_p; -+ mpi_barrett_t p_barrett; -+ MPI scratch[11]; -+ } t; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+}; -+ -+struct field_table { -+ const char *p; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+}; -+ -+enum gcry_mpi_format { -+ GCRYMPI_FMT_NONE = 0, -+ GCRYMPI_FMT_STD = 1, -+ GCRYMPI_FMT_PGP = 2, -+ GCRYMPI_FMT_SSH = 3, -+ GCRYMPI_FMT_HEX = 4, -+ GCRYMPI_FMT_USG = 5, -+ GCRYMPI_FMT_OPAQUE = 8, -+}; -+ -+struct barrett_ctx_s___2; -+ -+typedef struct barrett_ctx_s___2 *mpi_barrett_t___2; -+ -+struct barrett_ctx_s___2 { -+ MPI m; -+ int m_copied; -+ int k; -+ MPI y; -+ MPI r1; -+ MPI r2; -+ MPI r3; -+}; -+ -+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 long int mpi_limb_signed_t; -+ -+enum dim_tune_state { -+ DIM_PARKING_ON_TOP = 0, -+ DIM_PARKING_TIRED = 1, -+ DIM_GOING_RIGHT = 2, -+ DIM_GOING_LEFT = 3, -+}; -+ -+struct dim_cq_moder { -+ u16 usec; -+ u16 pkts; -+ u16 comps; -+ u8 cq_period_mode; -+}; -+ -+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, -+}; -+ -+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)); -+ -+struct sg_splitter { -+ struct scatterlist *in_sg0; -+ int nents; -+ off_t skip_sg0; -+ unsigned int length_last_sg; -+ struct scatterlist *out_sg; -+}; -+ -+struct sg_pool { -+ size_t size; -+ char *name; -+ struct kmem_cache *slab; -+ mempool_t *pool; -+}; -+ -+enum { -+ IRQ_POLL_F_SCHED = 0, -+ IRQ_POLL_F_DISABLE = 1, -+}; -+ -+union handle_parts { -+ depot_stack_handle_t handle; -+ struct { -+ u32 slabindex: 21; -+ u32 offset: 10; -+ u32 valid: 1; -+ }; -+}; -+ -+struct stack_record { -+ struct stack_record *next; -+ u32 hash; -+ u32 size; -+ union handle_parts handle; -+ long unsigned int entries[0]; -+}; -+ -+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 firmware { -+ size_t size; -+ const u8 *data; -+ void *priv; -+}; -+ -+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; -+}; -+ -+struct pldmfw_ops; -+ -+struct pldmfw { -+ const struct pldmfw_ops *ops; -+ struct device *dev; -+}; -+ -+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; -+}; -+ -+typedef long unsigned int cycles_t; -+ -+enum aarch64_insn_prfm_type { -+ AARCH64_INSN_PRFM_TYPE_PLD = 0, -+ AARCH64_INSN_PRFM_TYPE_PLI = 1, -+ AARCH64_INSN_PRFM_TYPE_PST = 2, -+}; -+ -+enum aarch64_insn_prfm_target { -+ AARCH64_INSN_PRFM_TARGET_L1 = 0, -+ AARCH64_INSN_PRFM_TARGET_L2 = 1, -+ AARCH64_INSN_PRFM_TARGET_L3 = 2, -+}; -+ -+enum aarch64_insn_prfm_policy { -+ AARCH64_INSN_PRFM_POLICY_KEEP = 0, -+ AARCH64_INSN_PRFM_POLICY_STRM = 1, -+}; -+ -+struct warn_args___2; -+ -+struct compress_format { -+ unsigned char magic[2]; -+ const char *name; -+ decompress_fn decompressor; -+}; -+ -+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 { -+ int state; -+ uint32_t rep0; -+ uint32_t rep1; -+ uint32_t rep2; -+ uint32_t rep3; -+}; -+ -+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, -+}; -+ -+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 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; -+}; -+ -+struct fprop_local_single { -+ long unsigned int events; -+ unsigned int period; -+ raw_spinlock_t lock; -+}; -+ -+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 uevent_sock { -+ struct list_head list; -+ struct sock *sk; -+}; -+ -+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); -+}; -+ -+typedef struct { -+ long unsigned int key[2]; -+} hsiphash_key_t; -+ -+struct clk_core; -+ -+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 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 minmax_sample { -+ u32 t; -+ u32 v; -+}; -+ -+struct minmax { -+ struct minmax_sample s[3]; -+}; -+ -+struct xa_limit { -+ u32 max; -+ u32 min; -+}; -+ -+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; -+}; -+ -+typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *); -+ -+typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); -+ -+struct tegra_ictlr_soc { -+ unsigned int num_ictlrs; -+}; -+ -+struct tegra_ictlr_info { -+ void *base[6]; -+ u32 cop_ier[6]; -+ u32 cop_iep[6]; -+ u32 cpu_ier[6]; -+ u32 cpu_iep[6]; -+ u32 ictlr_wake_mask[6]; -+}; -+ -+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]; -+}; -+ -+enum acpi_madt_gic_version { -+ ACPI_MADT_GIC_VERSION_NONE = 0, -+ ACPI_MADT_GIC_VERSION_V1 = 1, -+ ACPI_MADT_GIC_VERSION_V2 = 2, -+ ACPI_MADT_GIC_VERSION_V3 = 3, -+ ACPI_MADT_GIC_VERSION_V4 = 4, -+ ACPI_MADT_GIC_VERSION_RESERVED = 5, -+}; -+ -+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_COUNT = 5, -+}; -+ -+union gic_base { -+ void *common_base; -+ void **percpu_base; -+}; -+ -+struct gic_chip_data { -+ struct irq_chip chip; -+ 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; -+}; -+ -+struct gic_quirk { -+ const char *desc; -+ const char *compatible; -+ bool (*init)(void *); -+ u32 iidr; -+ u32 mask; -+}; -+ -+struct clk_bulk_data { -+ const char *id; -+ struct clk *clk; -+}; -+ -+struct gic_clk_data { -+ unsigned int num_clocks; -+ const char * const *clocks; -+}; -+ -+struct gic_chip_data___2; -+ -+struct gic_chip_pm { -+ struct gic_chip_data___2 *chip_data; -+ const struct gic_clk_data *clk_data; -+ struct clk_bulk_data *clks; -+}; -+ -+struct acpi_table_madt { -+ struct acpi_table_header header; -+ u32 address; -+ u32 flags; -+}; -+ -+struct acpi_madt_generic_msi_frame { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u32 msi_frame_id; -+ u64 base_address; -+ u32 flags; -+ u16 spi_count; -+ u16 spi_base; -+}; -+ -+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 acpi_madt_generic_redistributor { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u64 base_address; -+ u32 length; -+} __attribute__((packed)); -+ -+struct rdists { -+ struct { -+ raw_spinlock_t rd_lock; -+ void *rd_base; -+ struct page *pend_page; -+ phys_addr_t phys_base; -+ bool lpi_enabled; -+ 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; -+ bool has_vlpis; -+ bool has_rvpeid; -+ bool has_direct_lpi; -+ bool has_vpend_valid_dirty; -+}; -+ -+struct partition_affinity { -+ cpumask_t mask; -+ void *partition_id; -+}; -+ -+struct redist_region { -+ void *redist_base; -+ phys_addr_t phys_base; -+ bool single_redist; -+}; -+ -+struct partition_desc; -+ -+struct gic_chip_data___3 { -+ struct fwnode_handle *fwnode; -+ 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 mbi_range { -+ u32 spi_start; -+ u32 nr_spis; -+ long unsigned int *bm; -+}; -+ -+struct acpi_madt_generic_translator { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u32 translation_id; -+ u64 base_address; -+ u32 reserved2; -+} __attribute__((packed)); -+ -+struct acpi_srat_gic_its_affinity { -+ struct acpi_subtable_header header; -+ u32 proximity_domain; -+ u16 reserved; -+ u32 its_id; -+} __attribute__((packed)); -+ -+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 its_collection___2 { -+ u64 target_address; -+ u16 col_id; -+}; -+ -+struct its_baser { -+ void *base; -+ u64 val; -+ u32 order; -+ u32 psz; -+}; -+ -+struct its_cmd_block; -+ -+struct its_device___2; -+ -+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___2 *collections; -+ struct fwnode_handle *fwnode_handle; -+ u64 (*get_msi_base)(struct its_device___2 *); -+ 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___2 { -+ 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___2 *dev; -+ u32 event_id; -+ } its_inv_cmd; -+ struct { -+ struct its_device___2 *dev; -+ u32 event_id; -+ } its_clear_cmd; -+ struct { -+ struct its_device___2 *dev; -+ u32 event_id; -+ } its_int_cmd; -+ struct { -+ struct its_device___2 *dev; -+ int valid; -+ } its_mapd_cmd; -+ struct { -+ struct its_collection___2 *col; -+ int valid; -+ } its_mapc_cmd; -+ struct { -+ struct its_device___2 *dev; -+ u32 phys_id; -+ u32 event_id; -+ } its_mapti_cmd; -+ struct { -+ struct its_device___2 *dev; -+ struct its_collection___2 *col; -+ u32 event_id; -+ } its_movi_cmd; -+ struct { -+ struct its_device___2 *dev; -+ u32 event_id; -+ } its_discard_cmd; -+ struct { -+ struct its_collection___2 *col; -+ } its_invall_cmd; -+ struct { -+ struct its_vpe *vpe; -+ } its_vinvall_cmd; -+ struct { -+ struct its_vpe *vpe; -+ struct its_collection___2 *col; -+ bool valid; -+ } its_vmapp_cmd; -+ struct { -+ struct its_vpe *vpe; -+ struct its_device___2 *dev; -+ u32 virt_id; -+ u32 event_id; -+ bool db_enabled; -+ } its_vmapti_cmd; -+ struct { -+ struct its_vpe *vpe; -+ struct its_device___2 *dev; -+ u32 event_id; -+ bool db_enabled; -+ } its_vmovi_cmd; -+ struct { -+ struct its_vpe *vpe; -+ struct its_collection___2 *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___2 * (*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 its_srat_map { -+ u32 numa_node; -+ u32 its_id; -+}; -+ -+struct partition_desc___2 { -+ 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; -+}; -+ -+typedef void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); -+ -+struct mbigen_device { -+ struct platform_device *pdev; -+ void *base; -+}; -+ -+struct acpi_resource_irq { -+ u8 descriptor_length; -+ u8 triggering; -+ u8 polarity; -+ u8 shareable; -+ u8 wake_capable; -+ u8 interrupt_count; -+ u8 interrupts[1]; -+}; -+ -+struct acpi_resource_dma { -+ u8 type; -+ u8 bus_master; -+ u8 transfer; -+ u8 channel_count; -+ u8 channels[1]; -+}; -+ -+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[1]; -+} __attribute__((packed)); -+ -+struct acpi_resource_vendor_typed { -+ u16 byte_length; -+ u8 uuid_subtype; -+ u8 uuid[16]; -+ u8 byte_data[1]; -+}; -+ -+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; -+ u32 interrupts[1]; -+} __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_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_address address; -+}; -+ -+struct acpi_resource { -+ u32 type; -+ u32 length; -+ union acpi_resource_data data; -+} __attribute__((packed)); -+ -+typedef acpi_status (*acpi_walk_resource_callback)(struct acpi_resource *, void *); -+ -+struct combiner_reg { -+ void *addr; -+ long unsigned int enabled; -+}; -+ -+struct combiner { -+ struct irq_domain *domain; -+ int parent_irq; -+ u32 nirqs; -+ u32 nregs; -+ struct combiner_reg regs[0]; -+}; -+ -+struct get_registers_context { -+ struct device *dev; -+ struct combiner *combiner; -+ int err; -+}; -+ -+struct gpio_desc; -+ -+struct of_dev_auxdata { -+ char *compatible; -+ resource_size_t phys_addr; -+ char *name; -+ void *platform_data; -+}; -+ -+struct circ_buf { -+ char *buf; -+ int head; -+ int tail; -+}; -+ -+struct serial_rs485 { -+ __u32 flags; -+ __u32 delay_rts_before_send; -+ __u32 delay_rts_after_send; -+ __u32 padding[5]; -+}; -+ -+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 (*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 *, 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 *); -+}; -+ -+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 unsigned int upf_t; -+ -+typedef unsigned int upstat_t; -+ -+struct uart_state; -+ -+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 *, 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 serial_rs485 *); -+ int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); -+ 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; -+ int hw_stopped; -+ unsigned int mctrl; -+ unsigned int timeout; -+ 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; -+ long unsigned int sysrq; -+ unsigned int 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 gpio_desc *rs485_term_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; -+ struct circ_buf xmit; -+ atomic_t refcount; -+ wait_queue_head_t remove_wait; -+ struct uart_port *uart_port; -+}; -+ -+struct plat_serial8250_port { -+ long unsigned int iobase; -+ void *membase; -+ resource_size_t mapbase; -+ unsigned int irq; -+ long unsigned int irqflags; -+ unsigned int uartclk; -+ void *private_data; -+ unsigned char regshift; -+ unsigned char iotype; -+ unsigned char hub6; -+ unsigned char has_sysrq; -+ upf_t flags; -+ unsigned int type; -+ unsigned int (*serial_in)(struct uart_port *, int); -+ void (*serial_out)(struct uart_port *, int, int); -+ void (*set_termios)(struct uart_port *, struct ktermios *, 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 lpc_cycle_para { -+ unsigned int opflags; -+ unsigned int csize; -+}; -+ -+struct hisi_lpc_dev { -+ spinlock_t cycle_lock; -+ void *membase; -+ struct logic_pio_hwaddr *io_host; -+}; -+ -+struct hisi_lpc_acpi_cell { -+ const char *hid; -+ const char *name; -+ void *pdata; -+ size_t pdata_size; -+}; -+ -+enum regcache_type { -+ REGCACHE_NONE = 0, -+ REGCACHE_RBTREE = 1, -+ REGCACHE_COMPRESSED = 2, -+ REGCACHE_FLAT = 3, -+}; -+ -+struct reg_default { -+ unsigned int reg; -+ unsigned int def; -+}; -+ -+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 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); -+ bool disable_locking; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ int (*reg_read)(void *, unsigned int, unsigned int *); -+ int (*reg_write)(void *, unsigned int, unsigned int); -+ bool fast_io; -+ unsigned int max_register; -+ 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; -+ enum regmap_endian reg_format_endian; -+ enum regmap_endian val_format_endian; -+ const struct regmap_range_cfg *ranges; -+ unsigned int num_ranges; -+ bool use_hwlock; -+ unsigned int hwlock_id; -+ unsigned int hwlock_mode; -+ bool can_sleep; -+}; -+ -+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 *); -+ -+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_write)(void *, unsigned int, unsigned int); -+ -+typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); -+ -+typedef struct regmap_async * (*regmap_hw_async_alloc)(); -+ -+typedef void (*regmap_hw_free_context)(void *); -+ -+struct regmap_bus { -+ bool fast_io; -+ 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_update_bits reg_update_bits; -+ regmap_hw_read read; -+ regmap_hw_reg_read reg_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; -+ bool free_on_exit; -+}; -+ -+struct vexpress_syscfg { -+ struct device *dev; -+ void *base; -+ struct list_head funcs; -+}; -+ -+struct regmap; -+ -+struct vexpress_syscfg_func { -+ struct list_head list; -+ struct vexpress_syscfg *syscfg; -+ struct regmap *regmap; -+ int num_templates; -+ u32 template[0]; -+}; -+ -+struct vexpress_config_bridge_ops { -+ struct regmap * (*regmap_init)(struct device *, void *); -+ void (*regmap_exit)(struct regmap *, void *); -+}; -+ -+struct vexpress_config_bridge { -+ struct vexpress_config_bridge_ops *ops; -+ void *context; -+}; -+ -+enum device_link_state { -+ DL_STATE_NONE = 4294967295, -+ 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 regulator; -+ -+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_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; -+ -+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 *); -+ 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 phy_provider { -+ struct device *dev; -+ struct device_node *children; -+ struct module *owner; -+ struct list_head list; -+ struct phy * (*of_xlate)(struct device *, struct of_phandle_args *); -+}; -+ -+struct phy_lookup { -+ struct list_head node; -+ const char *dev_id; -+ const char *con_id; -+ struct phy *phy; -+}; -+ -+enum cmu_type_t { -+ REF_CMU = 0, -+ PHY_CMU = 1, -+}; -+ -+enum clk_type_t { -+ CLK_EXT_DIFF = 0, -+ CLK_INT_DIFF = 1, -+ CLK_INT_SING = 2, -+}; -+ -+enum xgene_phy_mode { -+ MODE_SATA = 0, -+ MODE_SGMII = 1, -+ MODE_PCIE = 2, -+ MODE_USB = 3, -+ MODE_XFI = 4, -+ MODE_MAX___2 = 5, -+}; -+ -+struct xgene_sata_override_param { -+ u32 speed[2]; -+ u32 txspeed[3]; -+ u32 txboostgain[6]; -+ u32 txeyetuning[6]; -+ u32 txeyedirection[6]; -+ u32 txamplitude[6]; -+ u32 txprecursor_cn1[6]; -+ u32 txprecursor_cn2[6]; -+ u32 txpostcursor_cp1[6]; -+}; -+ -+struct xgene_phy_ctx { -+ struct device *dev; -+ struct phy *phy; -+ enum xgene_phy_mode mode; -+ enum clk_type_t clk_type; -+ void *sds_base; -+ struct clk *clk; -+ struct xgene_sata_override_param sata_param; -+}; -+ -+struct pinctrl; -+ -+struct pinctrl_state; -+ -+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 extcon_dev; -+ -+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 ns2_phy_data; -+ -+struct ns2_phy_driver { -+ void *icfgdrd_regs; -+ void *idmdrd_rst_ctrl; -+ void *crmu_usb2_ctrl; -+ void *usb2h_strap_reg; -+ struct ns2_phy_data *data; -+ struct extcon_dev *edev; -+ struct gpio_desc *vbus_gpiod; -+ struct gpio_desc *id_gpiod; -+ int id_irq; -+ int vbus_irq; -+ long unsigned int debounce_jiffies; -+ struct delayed_work wq_extcon; -+}; -+ -+struct ns2_phy_data { -+ struct ns2_phy_driver *driver; -+ struct phy *phy; -+ int new_state; -+}; -+ -+enum brcm_sata_phy_version { -+ BRCM_SATA_PHY_STB_16NM = 0, -+ BRCM_SATA_PHY_STB_28NM = 1, -+ BRCM_SATA_PHY_STB_40NM = 2, -+ BRCM_SATA_PHY_IPROC_NS2 = 3, -+ BRCM_SATA_PHY_IPROC_NSP = 4, -+ BRCM_SATA_PHY_IPROC_SR = 5, -+ BRCM_SATA_PHY_DSL_28NM = 6, -+}; -+ -+enum brcm_sata_phy_rxaeq_mode { -+ RXAEQ_MODE_OFF = 0, -+ RXAEQ_MODE_AUTO = 1, -+ RXAEQ_MODE_MANUAL = 2, -+}; -+ -+struct brcm_sata_phy; -+ -+struct brcm_sata_port { -+ int portnum; -+ struct phy *phy; -+ struct brcm_sata_phy *phy_priv; -+ bool ssc_en; -+ enum brcm_sata_phy_rxaeq_mode rxaeq_mode; -+ u32 rxaeq_val; -+ u32 tx_amplitude_val; -+}; -+ -+struct brcm_sata_phy { -+ struct device *dev; -+ void *phy_base; -+ void *ctrl_base; -+ enum brcm_sata_phy_version version; -+ struct brcm_sata_port phys[2]; -+}; -+ -+enum sata_phy_regs { -+ BLOCK0_REG_BANK = 0, -+ BLOCK0_XGXSSTATUS = 129, -+ BLOCK0_XGXSSTATUS_PLL_LOCK = 4096, -+ BLOCK0_SPARE = 141, -+ BLOCK0_SPARE_OOB_CLK_SEL_MASK = 3, -+ BLOCK0_SPARE_OOB_CLK_SEL_REFBY2 = 1, -+ BLOCK1_REG_BANK = 16, -+ BLOCK1_TEST_TX = 131, -+ BLOCK1_TEST_TX_AMP_SHIFT = 12, -+ PLL_REG_BANK_0 = 80, -+ PLL_REG_BANK_0_PLLCONTROL_0 = 129, -+ PLLCONTROL_0_FREQ_DET_RESTART = 8192, -+ PLLCONTROL_0_FREQ_MONITOR = 4096, -+ PLLCONTROL_0_SEQ_START = 32768, -+ PLL_CAP_CHARGE_TIME = 131, -+ PLL_VCO_CAL_THRESH = 132, -+ PLL_CAP_CONTROL = 133, -+ PLL_FREQ_DET_TIME = 134, -+ PLL_ACTRL2 = 139, -+ PLL_ACTRL2_SELDIV_MASK = 31, -+ PLL_ACTRL2_SELDIV_SHIFT = 9, -+ PLL_ACTRL6 = 134, -+ PLL1_REG_BANK = 96, -+ PLL1_ACTRL2 = 130, -+ PLL1_ACTRL3 = 131, -+ PLL1_ACTRL4 = 132, -+ PLL1_ACTRL5 = 133, -+ PLL1_ACTRL6 = 134, -+ PLL1_ACTRL7 = 135, -+ PLL1_ACTRL8 = 136, -+ TX_REG_BANK = 112, -+ TX_ACTRL0 = 128, -+ TX_ACTRL0_TXPOL_FLIP = 64, -+ TX_ACTRL5 = 133, -+ TX_ACTRL5_SSC_EN = 2048, -+ AEQRX_REG_BANK_0 = 208, -+ AEQ_CONTROL1 = 129, -+ AEQ_CONTROL1_ENABLE = 4, -+ AEQ_CONTROL1_FREEZE = 8, -+ AEQ_FRC_EQ = 131, -+ AEQ_FRC_EQ_FORCE = 1, -+ AEQ_FRC_EQ_FORCE_VAL = 2, -+ AEQ_RFZ_FRC_VAL = 256, -+ AEQRX_REG_BANK_1 = 224, -+ AEQRX_SLCAL0_CTRL0 = 130, -+ AEQRX_SLCAL1_CTRL0 = 134, -+ OOB_REG_BANK = 336, -+ OOB1_REG_BANK = 352, -+ OOB_CTRL1 = 128, -+ OOB_CTRL1_BURST_MAX_MASK = 15, -+ OOB_CTRL1_BURST_MAX_SHIFT = 12, -+ OOB_CTRL1_BURST_MIN_MASK = 15, -+ OOB_CTRL1_BURST_MIN_SHIFT = 8, -+ OOB_CTRL1_WAKE_IDLE_MAX_MASK = 15, -+ OOB_CTRL1_WAKE_IDLE_MAX_SHIFT = 4, -+ OOB_CTRL1_WAKE_IDLE_MIN_MASK = 15, -+ OOB_CTRL1_WAKE_IDLE_MIN_SHIFT = 0, -+ OOB_CTRL2 = 129, -+ OOB_CTRL2_SEL_ENA_SHIFT = 15, -+ OOB_CTRL2_SEL_ENA_RC_SHIFT = 14, -+ OOB_CTRL2_RESET_IDLE_MAX_MASK = 63, -+ OOB_CTRL2_RESET_IDLE_MAX_SHIFT = 8, -+ OOB_CTRL2_BURST_CNT_MASK = 3, -+ OOB_CTRL2_BURST_CNT_SHIFT = 6, -+ OOB_CTRL2_RESET_IDLE_MIN_MASK = 63, -+ OOB_CTRL2_RESET_IDLE_MIN_SHIFT = 0, -+ TXPMD_REG_BANK = 416, -+ TXPMD_CONTROL1 = 129, -+ TXPMD_CONTROL1_TX_SSC_EN_FRC = 1, -+ TXPMD_CONTROL1_TX_SSC_EN_FRC_VAL = 2, -+ TXPMD_TX_FREQ_CTRL_CONTROL1 = 130, -+ TXPMD_TX_FREQ_CTRL_CONTROL2 = 131, -+ TXPMD_TX_FREQ_CTRL_CONTROL2_FMIN_MASK = 1023, -+ TXPMD_TX_FREQ_CTRL_CONTROL3 = 132, -+ TXPMD_TX_FREQ_CTRL_CONTROL3_FMAX_MASK = 1023, -+ RXPMD_REG_BANK = 448, -+ RXPMD_RX_CDR_CONTROL1 = 129, -+ RXPMD_RX_PPM_VAL_MASK = 511, -+ RXPMD_RXPMD_EN_FRC = 4096, -+ RXPMD_RXPMD_EN_FRC_VAL = 8192, -+ RXPMD_RX_CDR_CDR_PROP_BW = 130, -+ RXPMD_G_CDR_PROP_BW_MASK = 7, -+ RXPMD_G1_CDR_PROP_BW_SHIFT = 0, -+ RXPMD_G2_CDR_PROP_BW_SHIFT = 3, -+ RXPMD_G3_CDR_PROB_BW_SHIFT = 6, -+ RXPMD_RX_CDR_CDR_ACQ_INTEG_BW = 131, -+ RXPMD_G_CDR_ACQ_INT_BW_MASK = 7, -+ RXPMD_G1_CDR_ACQ_INT_BW_SHIFT = 0, -+ RXPMD_G2_CDR_ACQ_INT_BW_SHIFT = 3, -+ RXPMD_G3_CDR_ACQ_INT_BW_SHIFT = 6, -+ RXPMD_RX_CDR_CDR_LOCK_INTEG_BW = 132, -+ RXPMD_G_CDR_LOCK_INT_BW_MASK = 7, -+ RXPMD_G1_CDR_LOCK_INT_BW_SHIFT = 0, -+ RXPMD_G2_CDR_LOCK_INT_BW_SHIFT = 3, -+ RXPMD_G3_CDR_LOCK_INT_BW_SHIFT = 6, -+ RXPMD_RX_FREQ_MON_CONTROL1 = 135, -+ RXPMD_MON_CORRECT_EN = 256, -+ RXPMD_MON_MARGIN_VAL_MASK = 255, -+}; -+ -+enum sata_phy_ctrl_regs { -+ PHY_CTRL_1 = 0, -+ PHY_CTRL_1_RESET = 1, -+}; -+ -+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_pin_desc { -+ unsigned int number; -+ const char *name; -+ void *drv_data; -+}; -+ -+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; -+}; -+ -+struct gpio_irq_chip { -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ const struct irq_domain_ops *domain_ops; -+ 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 *); -+ void * (*populate_parent_alloc_arg)(struct gpio_chip *, 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; -+ void *parent_handler_data; -+ unsigned int num_parents; -+ unsigned int *parents; -+ unsigned int *map; -+ bool threaded; -+ 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 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 base; -+ u16 ngpio; -+ 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; -+ spinlock_t bgpio_lock; -+ long unsigned int bgpio_data; -+ long unsigned int bgpio_dir; -+ struct gpio_irq_chip irq; -+ long unsigned int *valid_mask; -+ struct device_node *of_node; -+ unsigned int of_gpio_n_cells; -+ int (*of_xlate)(struct gpio_chip *, const struct of_phandle_args *, u32 *); -+}; -+ -+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_dev { -+ struct list_head node; -+ 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 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_MODE_LOW_POWER = 15, -+ PIN_CONFIG_MODE_PWM = 16, -+ PIN_CONFIG_OUTPUT = 17, -+ PIN_CONFIG_OUTPUT_ENABLE = 18, -+ PIN_CONFIG_PERSIST_STATE = 19, -+ PIN_CONFIG_POWER_SOURCE = 20, -+ PIN_CONFIG_SKEW_DELAY = 21, -+ PIN_CONFIG_SLEEP_HARDWARE_STATE = 22, -+ PIN_CONFIG_SLEW_RATE = 23, -+ 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 gpio_desc___2; -+ -+struct gpio_device { -+ int id; -+ struct device dev; -+ struct cdev chrdev; -+ struct device *mockdev; -+ struct module *owner; -+ struct gpio_chip *chip; -+ struct gpio_desc___2 *descs; -+ int base; -+ u16 ngpio; -+ const char *label; -+ void *data; -+ struct list_head list; -+ struct blocking_notifier_head notifier; -+ struct list_head pin_ranges; -+}; -+ -+struct gpio_desc___2 { -+ struct gpio_device *gdev; -+ long unsigned int flags; -+ const char *label; -+ const char *name; -+ unsigned int debounce_period_us; -+}; -+ -+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 pinctrl_maps { -+ struct list_head node; -+ const struct pinctrl_map *maps; -+ unsigned int num_maps; -+}; -+ -+struct pctldev; -+ -+struct pinctrl_dt_map { -+ struct list_head node; -+ struct pinctrl_dev *pctldev; -+ struct pinctrl_map *map; -+ unsigned int num_maps; -+}; -+ -+struct reset_control; -+ -+struct tegra_xusb_padctl_function { -+ const char *name; -+ const char * const *groups; -+ unsigned int num_groups; -+}; -+ -+struct tegra_xusb_padctl_lane; -+ -+struct tegra_xusb_padctl_soc { -+ const struct pinctrl_pin_desc *pins; -+ unsigned int num_pins; -+ const struct tegra_xusb_padctl_function *functions; -+ unsigned int num_functions; -+ const struct tegra_xusb_padctl_lane *lanes; -+ unsigned int num_lanes; -+}; -+ -+struct tegra_xusb_padctl_lane { -+ const char *name; -+ unsigned int offset; -+ unsigned int shift; -+ unsigned int mask; -+ unsigned int iddq; -+ const unsigned int *funcs; -+ unsigned int num_funcs; -+}; -+ -+struct tegra_xusb_padctl { -+ struct device *dev; -+ void *regs; -+ struct mutex lock; -+ struct reset_control *rst; -+ const struct tegra_xusb_padctl_soc *soc; -+ struct pinctrl_dev *pinctrl; -+ struct pinctrl_desc desc; -+ struct phy_provider *provider; -+ struct phy *phys[2]; -+ unsigned int enable; -+}; -+ -+enum tegra_xusb_padctl_param { -+ TEGRA_XUSB_PADCTL_IDDQ = 0, -+}; -+ -+struct tegra_xusb_padctl_property { -+ const char *name; -+ enum tegra_xusb_padctl_param param; -+}; -+ -+enum tegra124_function { -+ TEGRA124_FUNC_SNPS = 0, -+ TEGRA124_FUNC_XUSB = 1, -+ TEGRA124_FUNC_UART = 2, -+ TEGRA124_FUNC_PCIE = 3, -+ TEGRA124_FUNC_USB3 = 4, -+ TEGRA124_FUNC_SATA = 5, -+ TEGRA124_FUNC_RSVD = 6, -+}; -+ -+enum iproc_pinconf_param { -+ IPROC_PINCONF_DRIVE_STRENGTH = 0, -+ IPROC_PINCONF_BIAS_DISABLE = 1, -+ IPROC_PINCONF_BIAS_PULL_UP = 2, -+ IPROC_PINCONF_BIAS_PULL_DOWN = 3, -+ IPROC_PINCON_MAX = 4, -+}; -+ -+enum iproc_pinconf_ctrl_type { -+ IOCTRL_TYPE_AON = 1, -+ IOCTRL_TYPE_CDRU = 2, -+ IOCTRL_TYPE_INVALID = 3, -+}; -+ -+struct iproc_gpio { -+ struct device *dev; -+ void *base; -+ void *io_ctrl; -+ enum iproc_pinconf_ctrl_type io_ctrl_type; -+ raw_spinlock_t lock; -+ struct irq_chip irqchip; -+ struct gpio_chip gc; -+ unsigned int num_banks; -+ bool pinmux_is_supported; -+ enum pin_config_param *pinconf_disable; -+ unsigned int nr_pinconf_disable; -+ struct pinctrl_dev *pctl; -+ struct pinctrl_desc pctldesc; -+}; -+ -+struct gpio_pin_range { -+ struct list_head node; -+ struct pinctrl_dev *pctldev; -+ struct pinctrl_gpio_range range; -+}; -+ -+struct gpio_array; -+ -+struct gpio_descs { -+ struct gpio_array *info; -+ unsigned int ndescs; -+ struct gpio_desc___2 *desc[0]; -+}; -+ -+struct gpio_array { -+ struct gpio_desc___2 **desc; -+ unsigned int size; -+ struct gpio_chip *chip; -+ 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_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 acpi_gpio_info { -+ struct acpi_device *adev; -+ enum gpiod_flags flags; -+ bool gpioint; -+ int pin_config; -+ int polarity; -+ int triggering; -+ unsigned int debounce; -+ unsigned int quirks; -+}; -+ -+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 devres; -+ -+struct gpio { -+ unsigned int gpio; -+ long unsigned int flags; -+ const char *label; -+}; -+ -+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, -+}; -+ -+struct of_mm_gpio_chip { -+ struct gpio_chip gc; -+ void (*save_regs)(struct of_mm_gpio_chip *); -+ void *regs; -+}; -+ -+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, -+}; -+ -+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 linereq; -+ -+struct line { -+ struct gpio_desc___2 *desc; -+ struct linereq *req; -+ unsigned int irq; -+ u64 eflags; -+ u64 timestamp_ns; -+ u32 req_seqno; -+ u32 line_seqno; -+ struct delayed_work work; -+ unsigned int sw_debounced; -+ unsigned int level; -+}; -+ -+struct linereq { -+ struct gpio_device *gdev; -+ const char *label; -+ u32 num_lines; -+ wait_queue_head_t wait; -+ 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 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; -+ long unsigned int *watched_lines; -+}; -+ -+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 u8 acpi_adr_space_type; -+ -+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 *); -+ -+typedef acpi_status (*acpi_adr_space_handler)(u32, acpi_physical_address, u32, u64 *, void *, void *); -+ -+struct acpi_connection_info { -+ u8 *connection; -+ u16 length; -+ u8 access_length; -+}; -+ -+typedef acpi_status (*acpi_adr_space_setup)(acpi_handle, u32, void *, void **); -+ -+struct acpi_gpiolib_dmi_quirk { -+ bool no_edge_events_on_boot; -+ char *ignore_wake; -+}; -+ -+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___2 *desc; -+}; -+ -+struct acpi_gpio_connection { -+ struct list_head node; -+ unsigned int pin; -+ struct gpio_desc___2 *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_lookup { -+ struct acpi_gpio_info info; -+ int index; -+ u16 pin_index; -+ bool active_low; -+ struct gpio_desc___2 *desc; -+ int n; -+}; -+ -+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; -+ unsigned int cid; -+ struct amba_cs_uci_id uci; -+ unsigned int irq[9]; -+ 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; -+}; -+ -+struct pl061_context_save_regs { -+ u8 gpio_data; -+ u8 gpio_dir; -+ u8 gpio_is; -+ u8 gpio_ibe; -+ u8 gpio_iev; -+ u8 gpio_ie; -+}; -+ -+struct pl061 { -+ raw_spinlock_t lock; -+ void *base; -+ struct gpio_chip gc; -+ struct irq_chip irq_chip; -+ int parent_irq; -+ struct pl061_context_save_regs csave_regs; -+}; -+ -+struct xgene_gpio { -+ struct gpio_chip chip; -+ void *base; -+ spinlock_t lock; -+ u32 set_dr_val[3]; -+}; -+ -+enum pwm_polarity { -+ PWM_POLARITY_NORMAL = 0, -+ PWM_POLARITY_INVERSED = 1, -+}; -+ -+struct pwm_args { -+ u64 period; -+ enum pwm_polarity polarity; -+}; -+ -+enum { -+ PWMF_REQUESTED = 1, -+ PWMF_EXPORTED = 2, -+}; -+ -+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; -+ unsigned int pwm; -+ struct pwm_chip *chip; -+ void *chip_data; -+ struct pwm_args args; -+ struct pwm_state state; -+ struct pwm_state last; -+}; -+ -+struct pwm_ops; -+ -+struct pwm_chip { -+ struct device *dev; -+ const struct pwm_ops *ops; -+ int base; -+ unsigned int npwm; -+ struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); -+ unsigned int of_pwm_n_cells; -+ struct list_head list; -+ struct pwm_device *pwms; -+}; -+ -+struct pwm_capture; -+ -+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); -+ int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); -+ void (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -+ struct module *owner; -+ int (*config)(struct pwm_chip *, struct pwm_device *, int, int); -+ int (*set_polarity)(struct pwm_chip *, struct pwm_device *, enum pwm_polarity); -+ int (*enable)(struct pwm_chip *, struct pwm_device *); -+ void (*disable)(struct pwm_chip *, struct pwm_device *); -+}; -+ -+struct pwm_capture { -+ unsigned int period; -+ unsigned int duty_cycle; -+}; -+ -+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; -+}; -+ -+struct trace_event_raw_pwm { -+ struct trace_entry ent; -+ struct pwm_device *pwm; -+ u64 period; -+ u64 duty_cycle; -+ enum pwm_polarity polarity; -+ bool enabled; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_pwm {}; -+ -+typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *); -+ -+typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *); -+ -+struct pwm_export { -+ struct device child; -+ struct pwm_device *pwm; -+ struct mutex lock; -+ struct pwm_state suspend; -+}; -+ -+struct iproc_pwmc { -+ struct pwm_chip chip; -+ void *base; -+ struct clk *clk; -+}; -+ -+enum { -+ pci_channel_io_normal = 1, -+ pci_channel_io_frozen = 2, -+ pci_channel_io_perm_failure = 3, -+}; -+ -+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]; -+ bool drivers_autoprobe; -+}; -+ -+struct rcec_ea { -+ u8 nextbusn; -+ u8 lastbusn; -+ u32 bitmap; -+}; -+ -+struct pci_bus_resource { -+ struct list_head list; -+ struct resource *res; -+ unsigned int flags; -+}; -+ -+typedef u64 pci_bus_addr_t; -+ -+struct pci_bus_region { -+ pci_bus_addr_t start; -+ pci_bus_addr_t end; -+}; -+ -+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; -+ -+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 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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 *, int); -+}; -+ -+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 bus_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct bus_type *, char *); -+ ssize_t (*store)(struct bus_type *, const char *, size_t); -+}; -+ -+enum pcie_reset_state { -+ pcie_deassert_reset = 1, -+ pcie_warm_reset = 2, -+ pcie_hot_reset = 3, -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); -+ -+struct pci_platform_pm_ops { -+ bool (*bridge_d3)(struct pci_dev *); -+ bool (*is_manageable)(struct pci_dev *); -+ int (*set_state)(struct pci_dev *, pci_power_t); -+ pci_power_t (*get_state)(struct pci_dev *); -+ void (*refresh_state)(struct pci_dev *); -+ pci_power_t (*choose_state)(struct pci_dev *); -+ int (*set_wakeup)(struct pci_dev *, bool); -+ bool (*need_resume)(struct pci_dev *); -+}; -+ -+struct pci_pme_device { -+ struct list_head list; -+ struct pci_dev *dev; -+}; -+ -+struct pci_saved_state { -+ u32 config_space[16]; -+ struct pci_cap_saved_data cap[0]; -+}; -+ -+struct pci_devres { -+ unsigned int enabled: 1; -+ unsigned int pinned: 1; -+ unsigned int orig_intx: 1; -+ unsigned int restore_intx: 1; -+ unsigned int mwi: 1; -+ u32 region_mask; -+}; -+ -+struct driver_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct device_driver *, char *); -+ ssize_t (*store)(struct device_driver *, const char *, size_t); -+}; -+ -+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, -+}; -+ -+enum dev_dma_attr { -+ DEV_DMA_NOT_SUPPORTED = 0, -+ DEV_DMA_NON_COHERENT = 1, -+ DEV_DMA_COHERENT = 2, -+}; -+ -+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 *); -+ void (*error_resume)(struct pci_dev *); -+ 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; -+}; -+ -+enum pci_mmap_state { -+ pci_mmap_io = 0, -+ pci_mmap_mem = 1, -+}; -+ -+enum pci_mmap_api { -+ PCI_MMAP_SYSFS = 0, -+ PCI_MMAP_PROCFS = 1, -+}; -+ -+struct pci_vpd_ops; -+ -+struct pci_vpd { -+ const struct pci_vpd_ops *ops; -+ struct mutex lock; -+ unsigned int len; -+ u16 flag; -+ u8 cap; -+ unsigned int busy: 1; -+ unsigned int valid: 1; -+}; -+ -+struct pci_vpd_ops { -+ ssize_t (*read)(struct pci_dev *, loff_t, size_t, void *); -+ ssize_t (*write)(struct pci_dev *, loff_t, size_t, const void *); -+}; -+ -+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 = 4294967295, -+ user_disabled = 0, -+ auto_disabled = 1, -+ user_enabled = 2, -+ auto_enabled = 3, -+}; -+ -+struct msix_entry { -+ u32 vector; -+ u16 entry; -+}; -+ -+struct portdrv_service_data { -+ struct pcie_port_service_driver *drv; -+ struct device *dev; -+ u32 service; -+}; -+ -+typedef int (*pcie_pm_callback_t)(struct pcie_device *); -+ -+struct walk_rcec_data { -+ struct pci_dev *rcec; -+ int (*user_callback)(struct pci_dev *, void *); -+ void *user_data; -+}; -+ -+struct aspm_latency { -+ u32 l0s; -+ u32 l1; -+}; -+ -+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; -+ char: 4; -+ u32 aspm_disable: 7; -+ u32 clkpm_capable: 1; -+ u32 clkpm_enabled: 1; -+ u32 clkpm_default: 1; -+ u32 clkpm_disable: 1; -+ struct aspm_latency latency_up; -+ struct aspm_latency latency_dw; -+ struct aspm_latency acceptable[8]; -+}; -+ -+enum { -+ CPER_SEV_RECOVERABLE = 0, -+ CPER_SEV_FATAL = 1, -+ CPER_SEV_CORRECTED = 2, -+ CPER_SEV_INFORMATIONAL = 3, -+}; -+ -+struct aer_stats { -+ u64 dev_cor_errs[16]; -+ u64 dev_fatal_errs[27]; -+ u64 dev_nonfatal_errs[27]; -+ 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 aer_header_log_regs { -+ unsigned int dw0; -+ unsigned int dw1; -+ unsigned int dw2; -+ unsigned int dw3; -+}; -+ -+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 aer_header_log_regs 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 error_dev_num; -+ unsigned int id: 16; -+ unsigned int severity: 2; -+ unsigned int __pad1: 5; -+ 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 aer_header_log_regs tlp; -+}; -+ -+struct aer_err_source { -+ unsigned int status; -+ unsigned int 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 pcie_pme_service_data { -+ spinlock_t lock; -+ struct pcie_device *srv; -+ struct work_struct work; -+ bool noirq; -+}; -+ -+typedef void (*acpi_notify_handler)(acpi_handle, u32, void *); -+ -+struct pci_slot_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct pci_slot *, char *); -+ ssize_t (*store)(struct pci_slot *, const char *, size_t); -+}; -+ -+typedef acpi_status (*acpi_walk_callback)(acpi_handle, u32, void *, void **); -+ -+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 *); -+ void (*cleanup)(struct device *); -+}; -+ -+enum pm_qos_flags_status { -+ PM_QOS_FLAGS_UNDEFINED = 4294967295, -+ PM_QOS_FLAGS_NONE = 0, -+ PM_QOS_FLAGS_SOME = 1, -+ PM_QOS_FLAGS_ALL = 2, -+}; -+ -+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, -+}; -+ -+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_pci_range { -+ union { -+ u64 pci_addr; -+ u64 bus_addr; -+ }; -+ u64 cpu_addr; -+ u64 size; -+ u32 flags; -+}; -+ -+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_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_CAP_CSS_NVM = 1, -+ NVME_CAP_CSS_CSI = 64, -+ 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, -+ NVME_CMBMSC_CRE = 1, -+ NVME_CMBMSC_CMSE = 2, -+}; -+ -+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 *, int); -+}; -+ -+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 controller { -+ struct pcie_device *pcie; -+ 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 ist_running; -+ int request_result; -+ wait_queue_head_t requester; -+}; -+ -+struct acpiphp_slot; -+ -+struct slot { -+ 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 *slot; -+ u8 device; -+ u32 flags; -+}; -+ -+struct acpiphp_attention_info { -+ int (*set_attn)(struct hotplug_slot *, u8); -+ int (*get_attn)(struct hotplug_slot *, u8 *); -+ struct module *owner; -+}; -+ -+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; -+}; -+ -+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 = 4294967295, -+ DMI_DEV_TYPE_OEM_STRING = 4294967294, -+ DMI_DEV_TYPE_DEV_ONBOARD = 4294967293, -+ DMI_DEV_TYPE_DEV_SLOT = 4294967292, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct thunder_pem_pci { -+ u32 ea_entry[3]; -+ void *pem_reg_base; -+}; -+ -+struct xgene_pcie_port { -+ struct device_node *node; -+ struct device *dev; -+ struct clk *clk; -+ void *csr_base; -+ void *cfg_base; -+ long unsigned int cfg_addr; -+ bool link_up; -+ u32 version; -+}; -+ -+struct xgene_msi; -+ -+struct xgene_msi_group { -+ struct xgene_msi *msi; -+ int gic_irq; -+ u32 msi_grp; -+}; -+ -+struct xgene_msi { -+ struct device_node *node; -+ struct irq_domain *inner_domain; -+ struct irq_domain *msi_domain; -+ u64 msi_addr; -+ void *msi_regs; -+ long unsigned int *bitmap; -+ struct mutex bitmap_lock; -+ struct xgene_msi_group *msi_groups; -+ int num_cpus; -+}; -+ -+enum iproc_pcie_type { -+ IPROC_PCIE_PAXB_BCMA = 0, -+ IPROC_PCIE_PAXB = 1, -+ IPROC_PCIE_PAXB_V2 = 2, -+ IPROC_PCIE_PAXC = 3, -+ IPROC_PCIE_PAXC_V2 = 4, -+}; -+ -+struct iproc_pcie_ob { -+ resource_size_t axi_offset; -+ unsigned int nr_windows; -+}; -+ -+struct iproc_pcie_ib { -+ unsigned int nr_regions; -+}; -+ -+struct iproc_pcie_ob_map; -+ -+struct iproc_pcie_ib_map; -+ -+struct iproc_msi; -+ -+struct iproc_pcie { -+ struct device *dev; -+ enum iproc_pcie_type type; -+ u16 *reg_offsets; -+ void *base; -+ phys_addr_t base_addr; -+ struct resource mem; -+ struct phy *phy; -+ int (*map_irq)(const struct pci_dev *, u8, u8); -+ bool ep_is_internal; -+ bool iproc_cfg_read; -+ bool rej_unconfig_pf; -+ bool has_apb_err_disable; -+ bool fix_paxc_cap; -+ bool need_ob_cfg; -+ struct iproc_pcie_ob ob; -+ const struct iproc_pcie_ob_map *ob_map; -+ bool need_ib_cfg; -+ struct iproc_pcie_ib ib; -+ const struct iproc_pcie_ib_map *ib_map; -+ bool need_msi_steer; -+ struct iproc_msi *msi; -+}; -+ -+struct iproc_pcie_ob_map { -+ resource_size_t window_sizes[4]; -+ unsigned int nr_sizes; -+}; -+ -+enum iproc_pcie_ib_map_type { -+ IPROC_PCIE_IB_MAP_MEM = 0, -+ IPROC_PCIE_IB_MAP_IO = 1, -+ IPROC_PCIE_IB_MAP_INVALID = 2, -+}; -+ -+struct iproc_pcie_ib_map { -+ enum iproc_pcie_ib_map_type type; -+ unsigned int size_unit; -+ resource_size_t region_sizes[9]; -+ unsigned int nr_sizes; -+ unsigned int nr_windows; -+ u16 imap_addr_offset; -+ u16 imap_window_offset; -+}; -+ -+enum iproc_pcie_reg { -+ IPROC_PCIE_CLK_CTRL = 0, -+ IPROC_PCIE_MSI_GIC_MODE = 1, -+ IPROC_PCIE_MSI_BASE_ADDR = 2, -+ IPROC_PCIE_MSI_WINDOW_SIZE = 3, -+ IPROC_PCIE_MSI_ADDR_LO = 4, -+ IPROC_PCIE_MSI_ADDR_HI = 5, -+ IPROC_PCIE_MSI_EN_CFG = 6, -+ IPROC_PCIE_CFG_IND_ADDR = 7, -+ IPROC_PCIE_CFG_IND_DATA = 8, -+ IPROC_PCIE_CFG_ADDR = 9, -+ IPROC_PCIE_CFG_DATA = 10, -+ IPROC_PCIE_INTX_EN = 11, -+ IPROC_PCIE_OARR0 = 12, -+ IPROC_PCIE_OMAP0 = 13, -+ IPROC_PCIE_OARR1 = 14, -+ IPROC_PCIE_OMAP1 = 15, -+ IPROC_PCIE_OARR2 = 16, -+ IPROC_PCIE_OMAP2 = 17, -+ IPROC_PCIE_OARR3 = 18, -+ IPROC_PCIE_OMAP3 = 19, -+ IPROC_PCIE_IARR0 = 20, -+ IPROC_PCIE_IMAP0 = 21, -+ IPROC_PCIE_IARR1 = 22, -+ IPROC_PCIE_IMAP1 = 23, -+ IPROC_PCIE_IARR2 = 24, -+ IPROC_PCIE_IMAP2 = 25, -+ IPROC_PCIE_IARR3 = 26, -+ IPROC_PCIE_IMAP3 = 27, -+ IPROC_PCIE_IARR4 = 28, -+ IPROC_PCIE_IMAP4 = 29, -+ IPROC_PCIE_CFG_RD_STATUS = 30, -+ IPROC_PCIE_LINK_STATUS = 31, -+ IPROC_PCIE_APB_ERR_EN = 32, -+ IPROC_PCIE_MAX_NUM_REG = 33, -+}; -+ -+struct iproc_msi_grp; -+ -+struct iproc_msi { -+ struct iproc_pcie *pcie; -+ const u16 (*reg_offsets)[8]; -+ struct iproc_msi_grp *grps; -+ int nr_irqs; -+ int nr_cpus; -+ bool has_inten_reg; -+ long unsigned int *bitmap; -+ struct mutex bitmap_lock; -+ unsigned int nr_msi_vecs; -+ struct irq_domain *inner_domain; -+ struct irq_domain *msi_domain; -+ unsigned int nr_eq_region; -+ unsigned int nr_msi_region; -+ void *eq_cpu; -+ dma_addr_t eq_dma; -+ phys_addr_t msi_addr; -+}; -+ -+enum iproc_msi_reg { -+ IPROC_MSI_EQ_PAGE = 0, -+ IPROC_MSI_EQ_PAGE_UPPER = 1, -+ IPROC_MSI_PAGE = 2, -+ IPROC_MSI_PAGE_UPPER = 3, -+ IPROC_MSI_CTRL = 4, -+ IPROC_MSI_EQ_HEAD = 5, -+ IPROC_MSI_EQ_TAIL = 6, -+ IPROC_MSI_INTS_EN = 7, -+ IPROC_MSI_REG_SIZE = 8, -+}; -+ -+struct iproc_msi_grp { -+ struct iproc_msi *msi; -+ int gic_irq; -+ unsigned int eq; -+}; -+ -+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 = 4294967295, -+ 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_bar { -+ dma_addr_t phys_addr; -+ void *addr; -+ size_t size; -+ enum pci_barno barno; -+ int flags; -+}; -+ -+struct pci_epc_ops; -+ -+struct pci_epc_mem; -+ -+struct pci_epc { -+ struct device dev; -+ struct list_head pci_epf; -+ const struct pci_epc_ops *ops; -+ struct pci_epc_mem **windows; -+ struct pci_epc_mem *mem; -+ unsigned int num_windows; -+ u8 max_functions; -+ struct config_group *group; -+ struct mutex lock; -+ long unsigned int function_num_map; -+ struct atomic_notifier_head notifier; -+}; -+ -+enum pci_epc_irq_type { -+ PCI_EPC_IRQ_UNKNOWN = 0, -+ PCI_EPC_IRQ_LEGACY = 1, -+ PCI_EPC_IRQ_MSI = 2, -+ PCI_EPC_IRQ_MSIX = 3, -+}; -+ -+struct pci_epc_features; -+ -+struct pci_epc_ops { -+ int (*write_header)(struct pci_epc *, u8, struct pci_epf_header *); -+ int (*set_bar)(struct pci_epc *, u8, struct pci_epf_bar *); -+ void (*clear_bar)(struct pci_epc *, u8, struct pci_epf_bar *); -+ int (*map_addr)(struct pci_epc *, u8, phys_addr_t, u64, size_t); -+ void (*unmap_addr)(struct pci_epc *, u8, phys_addr_t); -+ int (*set_msi)(struct pci_epc *, u8, u8); -+ int (*get_msi)(struct pci_epc *, u8); -+ int (*set_msix)(struct pci_epc *, u8, u16, enum pci_barno, u32); -+ int (*get_msix)(struct pci_epc *, u8); -+ int (*raise_irq)(struct pci_epc *, u8, enum pci_epc_irq_type, u16); -+ int (*map_msi_irq)(struct pci_epc *, 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); -+ struct module *owner; -+}; -+ -+struct pci_epc_features { -+ unsigned int linkup_notifier: 1; -+ unsigned int core_init_notifier: 1; -+ unsigned int msi_capable: 1; -+ unsigned int msix_capable: 1; -+ u8 reserved_bar; -+ u8 bar_fixed_64bit; -+ u64 bar_fixed_size[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; -+}; -+ -+enum dw_pcie_region_type { -+ DW_PCIE_REGION_UNKNOWN = 0, -+ DW_PCIE_REGION_INBOUND = 1, -+ DW_PCIE_REGION_OUTBOUND = 2, -+}; -+ -+struct pcie_port; -+ -+struct dw_pcie_host_ops { -+ int (*host_init)(struct pcie_port *); -+ int (*msi_host_init)(struct pcie_port *); -+}; -+ -+struct pcie_port { -+ bool has_msi_ctrl: 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; -+ struct irq_domain *irq_domain; -+ struct irq_domain *msi_domain; -+ u16 msi_msg; -+ 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]; -+}; -+ -+enum dw_pcie_as_type { -+ DW_PCIE_AS_UNKNOWN = 0, -+ DW_PCIE_AS_MEM = 1, -+ DW_PCIE_AS_IO = 2, -+}; -+ -+struct dw_pcie_ep; -+ -+struct dw_pcie_ep_ops { -+ void (*ep_init)(struct dw_pcie_ep *); -+ int (*raise_irq)(struct dw_pcie_ep *, u8, enum pci_epc_irq_type, u16); -+ const struct pci_epc_features * (*get_features)(struct dw_pcie_ep *); -+ unsigned int (*func_conf_select)(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); -+ int (*link_up)(struct dw_pcie *); -+ int (*start_link)(struct dw_pcie *); -+ void (*stop_link)(struct dw_pcie *); -+}; -+ -+struct dw_pcie { -+ struct device *dev; -+ void *dbi_base; -+ void *dbi_base2; -+ void *atu_base; -+ size_t atu_size; -+ u32 num_ib_windows; -+ u32 num_ob_windows; -+ struct pcie_port pp; -+ struct dw_pcie_ep ep; -+ const struct dw_pcie_ops *ops; -+ unsigned int version; -+ int num_lanes; -+ int link_gen; -+ u8 n_fts[2]; -+ bool iatu_unroll_enabled: 1; -+ bool io_cfg_atu_shared: 1; -+}; -+ -+struct al_pcie_acpi { -+ void *dbi_base; -+}; -+ -+struct tegra194_pcie_ecam { -+ void *config_base; -+ void *iatu_base; -+ void *dbi_base; -+}; -+ -+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; -+ 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; -+ bool itc; -+ 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; -+ unsigned char pixel_repeat; -+ 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 = 4294967295, -+ 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; -+}; -+ -+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 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 (*con_init)(struct vc_data *, int); -+ void (*con_deinit)(struct vc_data *); -+ void (*con_clear)(struct vc_data *, int, int, int, int); -+ void (*con_putc)(struct vc_data *, int, int, int); -+ void (*con_putcs)(struct vc_data *, const short unsigned int *, int, int, int); -+ void (*con_cursor)(struct vc_data *, int); -+ bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); -+ int (*con_switch)(struct vc_data *); -+ int (*con_blank)(struct vc_data *, int, int); -+ int (*con_font_set)(struct vc_data *, struct console_font *, unsigned int); -+ int (*con_font_get)(struct vc_data *, struct console_font *); -+ int (*con_font_default)(struct vc_data *, struct console_font *, char *); -+ int (*con_resize)(struct vc_data *, unsigned int, unsigned int, unsigned int); -+ void (*con_set_palette)(struct vc_data *, const unsigned char *); -+ void (*con_scrolldelta)(struct vc_data *, int); -+ int (*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); -+ u16 * (*con_screen_pos)(const struct vc_data *, int); -+ long unsigned int (*con_getxy)(struct vc_data *, long unsigned int, int *, int *); -+ void (*con_flush_scrollback)(struct vc_data *); -+ int (*con_debug_enter)(struct vc_data *); -+ int (*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 { -+ char mode; -+ char waitv; -+ short int relsig; -+ short int acqsig; -+ short int frsig; -+}; -+ -+struct uni_pagedir; -+ -+struct uni_screen; -+ -+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_resize_user; -+ 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_pagedir *vc_uni_pagedir; -+ struct uni_pagedir **vc_uni_pagedir_loc; -+ struct uni_screen *vc_uni_screen; -+}; -+ -+struct linux_logo { -+ int type; -+ unsigned int width; -+ unsigned int height; -+ unsigned int clutsize; -+ const unsigned char *clut; -+ const unsigned char *data; -+}; -+ -+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_event { -+ struct fb_info *info; -+ void *data; -+}; -+ -+struct fb_pixmap { -+ u8 *addr; -+ u32 size; -+ u32 offset; -+ u32 buf_align; -+ u32 scan_align; -+ u32 access_align; -+ u32 flags; -+ u32 blit_x; -+ u32 blit_y; -+ void (*writeio)(struct fb_info *, void *, void *, unsigned int); -+ void (*readio)(struct fb_info *, void *, void *, unsigned int); -+}; -+ -+struct backlight_device; -+ -+struct fb_deferred_io; -+ -+struct fb_ops; -+ -+struct fb_tile_ops; -+ -+struct apertures_struct; -+ -+struct fb_info { -+ atomic_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 work_struct queue; -+ struct fb_pixmap pixmap; -+ struct fb_pixmap sprite; -+ struct fb_cmap cmap; -+ struct list_head modelist; -+ struct fb_videomode *mode; -+ struct backlight_device *bl_dev; -+ struct mutex bl_curve_mutex; -+ u8 bl_curve[128]; -+ struct delayed_work deferred_work; -+ 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; -+ struct apertures_struct *apertures; -+ bool skip_vt_switch; -+}; -+ -+struct fb_blit_caps { -+ u32 x; -+ u32 y; -+ u32 len; -+ u32 flags; -+}; -+ -+struct fb_deferred_io { -+ long unsigned int delay; -+ struct mutex lock; -+ struct list_head pagelist; -+ void (*first_io)(struct fb_info *); -+ 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 aperture { -+ resource_size_t base; -+ resource_size_t size; -+}; -+ -+struct apertures_struct { -+ unsigned int count; -+ struct aperture ranges[0]; -+}; -+ -+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; -+ int fb_blank; -+ 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 notifier_block fb_notif; -+ struct list_head entry; -+ struct device dev; -+ bool fb_bl_on[32]; -+ int use_count; -+}; -+ -+enum backlight_update_reason { -+ BACKLIGHT_UPDATE_HOTKEY = 0, -+ BACKLIGHT_UPDATE_SYSFS = 1, -+}; -+ -+enum backlight_notification { -+ BACKLIGHT_REGISTERED = 0, -+ BACKLIGHT_UNREGISTERED = 1, -+}; -+ -+struct backlight_ops { -+ unsigned int options; -+ int (*update_status)(struct backlight_device *); -+ int (*get_brightness)(struct backlight_device *); -+ int (*check_fb)(struct backlight_device *, struct fb_info *); -+}; -+ -+struct fb_cmap_user { -+ __u32 start; -+ __u32 len; -+ __u16 *red; -+ __u16 *green; -+ __u16 *blue; -+ __u16 *transp; -+}; -+ -+struct fb_modelist { -+ struct list_head list; -+ struct fb_videomode mode; -+}; -+ -+struct logo_data { -+ int depth; -+ int needs_directpalette; -+ int needs_truepalette; -+ int needs_cmapreset; -+ const struct linux_logo *logo; -+}; -+ -+typedef unsigned int u_int; -+ -+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; -+}; -+ -+typedef unsigned char u_char; -+ -+struct fb_con2fbmap { -+ __u32 console; -+ __u32 framebuffer; -+}; -+ -+struct vc { -+ struct vc_data *d; -+ struct work_struct SAK_work; -+}; -+ -+struct fbcon_display { -+ const u_char *fontdata; -+ int userfont; -+ u_short scrollmode; -+ 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); -+ 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 *, int, int, int); -+ int (*update_start)(struct fb_info *); -+ int (*rotate_font)(struct fb_info *, struct vc_data *); -+ struct fb_var_screeninfo var; -+ struct timer_list cursor_timer; -+ 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; -+ int flags; -+ int rotate; -+ int cur_rotate; -+ char *cursor_data; -+ u8 *fontbuffer; -+ u8 *fontdata; -+ u8 *cursor_src; -+ u32 cursor_size; -+ u32 fd_size; -+}; -+ -+enum { -+ FBCON_LOGO_CANSHOW = 4294967295, -+ FBCON_LOGO_DRAW = 4294967294, -+ FBCON_LOGO_DONTSHOW = 4294967293, -+}; -+ -+enum drm_panel_orientation { -+ DRM_MODE_PANEL_ORIENTATION_UNKNOWN = 4294967295, -+ 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, -+}; -+ -+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 simplefb_platform_data { -+ u32 width; -+ u32 height; -+ u32 stride; -+ const char *format; -+}; -+ -+struct simplefb_params { -+ u32 width; -+ u32 height; -+ u32 stride; -+ struct simplefb_format *format; -+}; -+ -+struct simplefb_par { -+ u32 palette[16]; -+ bool clks_enabled; -+ unsigned int clk_count; -+ struct clk **clks; -+}; -+ -+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, -+}; -+ -+struct dmi_header { -+ u8 type; -+ u8 length; -+ u16 handle; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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 software_node { -+ const char *name; -+ const struct software_node *parent; -+ const struct property_entry *properties; -+}; -+ -+typedef u16 acpi_owner_id; -+ -+union acpi_name_union { -+ u32 integer; -+ char ascii[4]; -+}; -+ -+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_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_io_sapic { -+ struct acpi_subtable_header header; -+ u8 id; -+ u8 reserved; -+ u32 global_irq_base; -+ u64 address; -+}; -+ -+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[1]; -+} __attribute__((packed)); -+ -+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_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]; -+}; -+ -+struct acpi_subtable_proc { -+ int id; -+ acpi_tbl_entry_handler handler; -+ int count; -+}; -+ -+enum acpi_subtable_type { -+ ACPI_SUBTABLE_COMMON = 0, -+ ACPI_SUBTABLE_HMAT = 1, -+ ACPI_SUBTABLE_PRMT = 2, -+}; -+ -+struct acpi_subtable_entry { -+ union acpi_subtable_headers *hdr; -+ enum acpi_subtable_type type; -+}; -+ -+typedef u32 (*acpi_interface_handler)(acpi_string, u32); -+ -+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_predefined_names { -+ const char *name; -+ u8 type; -+ char *val; -+}; -+ -+typedef u32 (*acpi_osd_handler)(void *); -+ -+typedef void (*acpi_osd_exec_callback)(void *); -+ -+typedef u32 (*acpi_gpe_handler)(acpi_handle, u32, void *); -+ -+struct acpi_pci_id { -+ u16 segment; -+ u16 bus; -+ u16 device; -+ u16 function; -+}; -+ -+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; -+}; -+ -+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; -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+ 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; -+ 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 { -+ u32 parse_args; -+ u32 runtime_args; -+ u16 flags; -+ u8 object_type; -+ u8 class; -+ u8 type; -+}; -+ -+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 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; -+}; -+ -+struct acpi_handle_list { -+ u32 count; -+ acpi_handle handles[10]; -+}; -+ -+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 nvs_region { -+ __u64 phys_start; -+ __u64 size; -+ struct list_head node; -+}; -+ -+struct acpi_wakeup_handler { -+ struct list_head list_node; -+ bool (*wakeup)(void *); -+ void *context; -+}; -+ -+struct acpi_hardware_id { -+ struct list_head list; -+ const char *id; -+}; -+ -+struct acpi_data_node { -+ const char *name; -+ acpi_handle handle; -+ struct fwnode_handle fwnode; -+ struct fwnode_handle *parent; -+ struct acpi_device_data data; -+ struct list_head sibling; -+ 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 pm_domain_data { -+ struct list_head list_node; -+ struct device *dev; -+}; -+ -+typedef u32 (*acpi_event_handler)(void *); -+ -+typedef acpi_status (*acpi_table_handler)(u32, void *, void *); -+ -+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_device_physical_node { -+ unsigned int node_id; -+ struct list_head node; -+ struct device *dev; -+ bool put_online: 1; -+}; -+ -+struct acpi_osc_context { -+ char *uuid_str; -+ int rev; -+ struct acpi_buffer cap; -+ struct acpi_buffer ret; -+}; -+ -+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]; -+}; -+ -+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_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 reserved1; -+ u16 pci_device_id; -+ u16 pci_vendor_id; -+ u8 pci_bus; -+ u8 pci_device; -+ u8 pci_function; -+ u32 pci_flags; -+ u8 pci_segment; -+ u32 reserved2; -+} __attribute__((packed)); -+ -+struct acpi_table_stao { -+ struct acpi_table_header header; -+ u8 ignore_uart; -+} __attribute__((packed)); -+ -+struct acpi_dep_data { -+ struct list_head node; -+ acpi_handle supplier; -+ acpi_handle consumer; -+}; -+ -+enum acpi_reconfig_event { -+ ACPI_RECONFIG_DEVICE_ADD = 0, -+ ACPI_RECONFIG_DEVICE_REMOVE = 1, -+}; -+ -+struct acpi_scan_clear_dep_work { -+ struct work_struct work; -+ struct acpi_device *adev; -+}; -+ -+struct platform_device___2; -+ -+struct resource_win { -+ struct resource res; -+ resource_size_t offset; -+}; -+ -+struct res_proc_context { -+ struct list_head *list; -+ int (*preproc)(struct acpi_resource *, void *); -+ void *preproc_data; -+ int count; -+ int error; -+}; -+ -+struct acpi_processor_errata { -+ u8 smp; -+ struct { -+ u8 throttle: 1; -+ u8 fdma: 1; -+ u8 reserved: 6; -+ u32 bmisx; -+ } piix4; -+}; -+ -+typedef u32 acpi_event_status; -+ -+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[1]; -+} __attribute__((packed)); -+ -+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; -+ long unsigned int nr_pending_queries; -+ 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_QUERY_PENDING = 1, -+ EC_FLAGS_QUERY_GUARDING = 2, -+ EC_FLAGS_EVENT_HANDLER_INSTALLED = 3, -+ EC_FLAGS_EC_HANDLER_INSTALLED = 4, -+ EC_FLAGS_QUERY_METHODS_INSTALLED = 5, -+ EC_FLAGS_STARTED = 6, -+ EC_FLAGS_STOPPED = 7, -+ EC_FLAGS_EVENTS_MASKED = 8, -+}; -+ -+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 pci_osc_bit_struct { -+ u32 bit; -+ char *desc; -+}; -+ -+struct acpi_handle_node { -+ struct list_head node; -+ acpi_handle handle; -+}; -+ -+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 acpi_pci_routing_table { -+ u32 length; -+ u32 pin; -+ u64 address; -+ u32 source_index; -+ char source[4]; -+}; -+ -+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 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_power_dependent_device { -+ struct device *dev; -+ struct list_head node; -+}; -+ -+struct acpi_power_resource { -+ struct acpi_device device; -+ struct list_head list_node; -+ char *name; -+ u32 system_level; -+ u32 order; -+ unsigned int ref_count; -+ u8 state; -+ bool wakeup_enabled; -+ struct mutex resource_lock; -+ struct list_head dependents; -+}; -+ -+struct acpi_power_resource_entry { -+ struct list_head node; -+ struct acpi_power_resource *resource; -+}; -+ -+struct acpi_bus_event { -+ struct list_head node; -+ acpi_device_class device_class; -+ acpi_bus_id bus_id; -+ u32 type; -+ u32 data; -+}; -+ -+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_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 void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); -+ -+struct acpi_table_bert { -+ struct acpi_table_header header; -+ u32 region_length; -+ u64 address; -+}; -+ -+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; -+}; -+ -+struct acpi_device_properties { -+ const guid_t *guid; -+ const union acpi_object *properties; -+ struct list_head list; -+}; -+ -+struct acpi_lpat { -+ int temp; -+ int raw; -+}; -+ -+struct acpi_lpat_conversion_table { -+ struct acpi_lpat *lpat; -+ int lpat_count; -+}; -+ -+struct acpi_irq_parse_one_ctx { -+ int rc; -+ unsigned int index; -+ long unsigned int *res_flags; -+ struct irq_fwspec *fwspec; -+ bool skip_producer_check; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef u32 acpi_name; -+ -+typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); -+ -+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, -+}; -+ -+typedef acpi_status (*acpi_execute_op)(struct acpi_walk_state *); -+ -+typedef u32 acpi_mutex_handle; -+ -+struct acpi_reg_walk_info { -+ u32 function; -+ u32 reg_run_count; -+ acpi_adr_space_type space_id; -+}; -+ -+enum { -+ AML_FIELD_UPDATE_PRESERVE = 0, -+ AML_FIELD_UPDATE_WRITE_AS_ONES = 32, -+ AML_FIELD_UPDATE_WRITE_AS_ZEROS = 64, -+}; -+ -+struct acpi_signal_fatal_info { -+ u32 type; -+ u32 code; -+ u32 argument; -+}; -+ -+enum { -+ MATCH_MTR = 0, -+ MATCH_MEQ = 1, -+ MATCH_MLE = 2, -+ MATCH_MLT = 3, -+ MATCH_MGE = 4, -+ MATCH_MGT = 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, -+}; -+ -+typedef enum { -+ ACPI_TRACE_AML_METHOD = 0, -+ ACPI_TRACE_AML_OPCODE = 1, -+ ACPI_TRACE_AML_REGION = 2, -+} acpi_trace_event_type; -+ -+struct acpi_port_info { -+ char *name; -+ u16 start; -+ u16 end; -+ u8 osi_dependency; -+}; -+ -+struct acpi_pci_device { -+ acpi_handle device; -+ struct acpi_pci_device *next; -+}; -+ -+typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); -+ -+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_pkg_callback)(u8, union acpi_operand_object *, union acpi_generic_state *, void *); -+ -+struct acpi_table_list { -+ struct acpi_table_desc *tables; -+ u32 current_table_count; -+ u32 max_table_count; -+ u8 flags; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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_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_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; -+}; -+ -+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; -+ u32 interrupts[1]; -+} __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_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_address address; -+ u32 dword_item; -+ u16 word_item; -+ u8 byte_item; -+}; -+ -+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, -+}; -+ -+typedef u16 acpi_rs_length; -+ -+typedef acpi_status (*acpi_walk_aml_callback)(u8 *, u32, u32, u8, void **); -+ -+typedef u32 acpi_rsdesc_size; -+ -+struct acpi_vendor_uuid { -+ u8 subtype; -+ u8 data[16]; -+}; -+ -+struct acpi_vendor_walk_info { -+ struct acpi_vendor_uuid *uuid; -+ struct acpi_buffer *buffer; -+ acpi_status status; -+}; -+ -+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)); -+ -+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; -+}; -+ -+struct acpi_pkg_info { -+ u8 *free_space; -+ acpi_size length; -+ u32 object_space; -+ u32 num_packages; -+}; -+ -+struct acpi_exception_info { -+ char *name; -+}; -+ -+typedef u32 (*acpi_sci_handler)(void *); -+ -+struct acpi_mutex_info { -+ void *mutex; -+ u32 use_count; -+ u64 thread_id; -+}; -+ -+struct acpi_sci_handler_info { -+ struct acpi_sci_handler_info *next; -+ acpi_sci_handler address; -+ void *context; -+}; -+ -+struct acpi_comment_node { -+ char *comment; -+ struct acpi_comment_node *next; -+}; -+ -+struct acpi_interface_info { -+ char *name; -+ struct acpi_interface_info *next; -+ u8 flags; -+ u8 value; -+}; -+ -+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 mcfg_entry { -+ struct list_head list; -+ phys_addr_t addr; -+ u16 segment; -+ u8 bus_start; -+ u8 bus_end; -+}; -+ -+struct mcfg_fixup { -+ char oem_id[7]; -+ char oem_table_id[9]; -+ u32 oem_revision; -+ u16 segment; -+ struct resource bus_range; -+ const struct pci_ecam_ops *ops; -+ struct resource cfgres; -+}; -+ -+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; -+ 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 work_struct set_brightness_work; -+ int delayed_set_value; -+ 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; -+ 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 *); -+ struct led_hw_trigger_type *trigger_type; -+ rwlock_t leddev_list_lock; -+ struct list_head led_cdevs; -+ struct list_head next_trig; -+ const struct attribute_group **groups; -+}; -+ -+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_INPUT_CURRENT_LIMIT = 37, -+ POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 38, -+ POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 39, -+ POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 40, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 41, -+ POWER_SUPPLY_PROP_ENERGY_FULL = 42, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY = 43, -+ POWER_SUPPLY_PROP_ENERGY_NOW = 44, -+ POWER_SUPPLY_PROP_ENERGY_AVG = 45, -+ POWER_SUPPLY_PROP_CAPACITY = 46, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 47, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 48, -+ POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 49, -+ POWER_SUPPLY_PROP_CAPACITY_LEVEL = 50, -+ POWER_SUPPLY_PROP_TEMP = 51, -+ POWER_SUPPLY_PROP_TEMP_MAX = 52, -+ POWER_SUPPLY_PROP_TEMP_MIN = 53, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 54, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 55, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT = 56, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 57, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 58, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 59, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 60, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 61, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 62, -+ POWER_SUPPLY_PROP_TYPE = 63, -+ POWER_SUPPLY_PROP_USB_TYPE = 64, -+ POWER_SUPPLY_PROP_SCOPE = 65, -+ POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 66, -+ POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 67, -+ POWER_SUPPLY_PROP_CALIBRATE = 68, -+ POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 69, -+ POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 70, -+ POWER_SUPPLY_PROP_MANUFACTURE_DAY = 71, -+ POWER_SUPPLY_PROP_MODEL_NAME = 72, -+ POWER_SUPPLY_PROP_MANUFACTURER = 73, -+ POWER_SUPPLY_PROP_SERIAL_NUMBER = 74, -+}; -+ -+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, -+}; -+ -+union power_supply_propval { -+ int intval; -+ const char *strval; -+}; -+ -+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 power_supply; -+ -+struct power_supply_desc { -+ const char *name; -+ enum power_supply_type type; -+ const enum power_supply_usb_type *usb_types; -+ size_t num_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 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; -+ 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 thermal_zone_device *tzd; -+ struct thermal_cooling_device *tcd; -+ struct led_trigger *charging_full_trig; -+ char *charging_full_trig_name; -+ struct led_trigger *charging_trig; -+ char *charging_trig_name; -+ struct led_trigger *full_trig; -+ char *full_trig_name; -+ struct led_trigger *online_trig; -+ char *online_trig_name; -+ struct led_trigger *charging_blink_full_solid_trig; -+ char *charging_blink_full_solid_trig_name; -+}; -+ -+struct acpi_ac_bl { -+ const char *hid; -+ int hrv; -+}; -+ -+struct acpi_ac { -+ struct power_supply *charger; -+ struct power_supply_desc charger_desc; -+ struct acpi_device *device; -+ long long unsigned int state; -+ struct notifier_block battery_nb; -+}; -+ -+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; -+ 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); -+ void (*events)(struct input_handle *, const 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; -+}; -+ -+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_fan_fps { -+ u64 control; -+ u64 trip_point; -+ u64 speed; -+ u64 noise_level; -+ u64 power; -+ char name[20]; -+ struct device_attribute dev_attr; -+}; -+ -+struct acpi_fan_fif { -+ u64 revision; -+ u64 fine_grain_ctrl; -+ u64 step_size; -+ u64 low_speed_notification; -+}; -+ -+struct acpi_fan { -+ bool acpi4; -+ struct acpi_fan_fif fif; -+ struct acpi_fan_fps *fps; -+ int fps_count; -+ struct thermal_cooling_device *cdev; -+}; -+ -+struct acpi_pci_slot { -+ struct pci_slot *pci_slot; -+ struct list_head list; -+}; -+ -+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_lpi_states_array { -+ unsigned int size; -+ unsigned int composite_states_size; -+ struct acpi_lpi_state *entries; -+ struct acpi_lpi_state *composite_states[8]; -+}; -+ -+struct container_dev { -+ struct device dev; -+ int (*offline)(struct container_dev *); -+}; -+ -+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, -+ THERMAL_TREND_RAISE_FULL = 3, -+ THERMAL_TREND_DROP_FULL = 4, -+}; -+ -+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, -+}; -+ -+struct thermal_zone_device_ops { -+ int (*bind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ int (*unbind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ 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 (*get_trip_type)(struct thermal_zone_device *, int, enum thermal_trip_type *); -+ int (*get_trip_temp)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_temp)(struct thermal_zone_device *, int, int); -+ int (*get_trip_hyst)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_hyst)(struct thermal_zone_device *, int, 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 *, int, enum thermal_trend *); -+ void (*hot)(struct thermal_zone_device *); -+ void (*critical)(struct thermal_zone_device *); -+}; -+ -+struct thermal_attr; -+ -+struct thermal_zone_params; -+ -+struct thermal_governor; -+ -+struct thermal_zone_device { -+ int id; -+ char type[20]; -+ struct device device; -+ struct attribute_group trips_attribute_group; -+ struct thermal_attr *trip_temp_attrs; -+ struct thermal_attr *trip_type_attrs; -+ struct thermal_attr *trip_hyst_attrs; -+ enum thermal_device_mode mode; -+ void *devdata; -+ int trips; -+ long unsigned int trips_disabled; -+ long unsigned int passive_delay_jiffies; -+ long unsigned int polling_delay_jiffies; -+ int temperature; -+ int last_temperature; -+ int emul_temperature; -+ int passive; -+ int prev_low_trip; -+ int prev_high_trip; -+ atomic_t need_update; -+ struct thermal_zone_device_ops *ops; -+ struct thermal_zone_params *tzp; -+ struct thermal_governor *governor; -+ void *governor_data; -+ struct list_head thermal_instances; -+ struct ida ida; -+ struct mutex lock; -+ struct list_head node; -+ struct delayed_work poll_queue; -+ enum thermal_notify_event notify_event; -+}; -+ -+struct thermal_bind_params; -+ -+struct thermal_zone_params { -+ char governor_name[20]; -+ bool no_hwmon; -+ int num_tbps; -+ struct thermal_bind_params *tbp; -+ 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 { -+ char name[20]; -+ int (*bind_to_tz)(struct thermal_zone_device *); -+ void (*unbind_from_tz)(struct thermal_zone_device *); -+ int (*throttle)(struct thermal_zone_device *, int); -+ struct list_head governor_list; -+}; -+ -+struct thermal_bind_params { -+ struct thermal_cooling_device *cdev; -+ int weight; -+ int trip_mask; -+ long unsigned int *binding_limits; -+ int (*match)(struct thermal_zone_device *, struct thermal_cooling_device *); -+}; -+ -+struct acpi_thermal_state { -+ u8 critical: 1; -+ u8 hot: 1; -+ u8 passive: 1; -+ u8 active: 1; -+ u8 reserved: 4; -+ int active_index; -+}; -+ -+struct acpi_thermal_state_flags { -+ u8 valid: 1; -+ u8 enabled: 1; -+ u8 reserved: 6; -+}; -+ -+struct acpi_thermal_critical { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+}; -+ -+struct acpi_thermal_hot { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+}; -+ -+struct acpi_thermal_passive { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+ long unsigned int tc1; -+ long unsigned int tc2; -+ long unsigned int tsp; -+ struct acpi_handle_list devices; -+}; -+ -+struct acpi_thermal_active { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+ struct acpi_handle_list devices; -+}; -+ -+struct acpi_thermal_trips { -+ struct acpi_thermal_critical critical; -+ struct acpi_thermal_hot hot; -+ struct acpi_thermal_passive passive; -+ struct acpi_thermal_active active[10]; -+}; -+ -+struct acpi_thermal_flags { -+ u8 cooling_mode: 1; -+ u8 devices: 1; -+ u8 reserved: 6; -+}; -+ -+struct acpi_thermal { -+ struct acpi_device *device; -+ acpi_bus_id name; -+ long unsigned int temperature; -+ long unsigned int last_temperature; -+ long unsigned int polling_frequency; -+ volatile u8 zombie; -+ struct acpi_thermal_flags flags; -+ struct acpi_thermal_state state; -+ struct acpi_thermal_trips trips; -+ struct acpi_handle_list devices; -+ struct thermal_zone_device *thermal_zone; -+ int kelvin_offset; -+ struct work_struct thermal_check_work; -+ struct mutex thermal_check_lock; -+ refcount_t thermal_check_count; -+}; -+ -+struct acpi_table_slit { -+ struct acpi_table_header header; -+ u64 locality_count; -+ u8 entry[1]; -+} __attribute__((packed)); -+ -+struct acpi_table_srat { -+ struct acpi_table_header header; -+ u32 table_revision; -+ u64 reserved; -+}; -+ -+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_generic_affinity { -+ struct acpi_subtable_header header; -+ u8 reserved; -+ u8 device_handle_type; -+ u32 proximity_domain; -+ u8 device_handle[16]; -+ u32 flags; -+ u32 reserved1; -+}; -+ -+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 reserved2; -+ u16 number_of_SMBIOShandles; -+}; -+ -+struct node_hmem_attrs { -+ 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, -+}; -+ -+struct node_cache_attrs { -+ enum cache_indexing indexing; -+ enum cache_write_policy write_policy; -+ u64 size; -+ u16 line_size; -+ u8 level; -+}; -+ -+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; -+}; -+ -+struct memory_target { -+ struct list_head node; -+ unsigned int memory_pxm; -+ unsigned int processor_pxm; -+ struct resource memregions; -+ struct node_hmem_attrs hmem_attrs[2]; -+ struct list_head caches; -+ struct node_cache_attrs cache_attrs; -+ bool registered; -+}; -+ -+struct memory_initiator { -+ struct list_head node; -+ unsigned int processor_pxm; -+ bool has_cpu; -+}; -+ -+struct acpi_memory_info { -+ struct list_head list; -+ u64 start_addr; -+ u64 length; -+ short unsigned int caching; -+ short unsigned int write_protect; -+ unsigned int enabled: 1; -+}; -+ -+struct acpi_memory_device { -+ struct acpi_device *device; -+ struct list_head res_list; -+}; -+ -+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, -+}; -+ -+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_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, -+}; -+ -+struct acpi_battery_hook { -+ const char *name; -+ int (*add_battery)(struct power_supply *); -+ int (*remove_battery)(struct power_supply *); -+ struct list_head list; -+}; -+ -+enum { -+ ACPI_BATTERY_ALARM_PRESENT = 0, -+ ACPI_BATTERY_XINFO_PRESENT = 1, -+ ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY = 2, -+ ACPI_BATTERY_QUIRK_THINKPAD_MAH = 3, -+ ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE = 4, -+}; -+ -+struct acpi_battery { -+ struct mutex lock; -+ struct mutex sysfs_lock; -+ struct power_supply *bat; -+ struct power_supply_desc bat_desc; -+ struct acpi_device *device; -+ struct notifier_block pm_nb; -+ struct list_head list; -+ long unsigned int update_time; -+ int revision; -+ int rate_now; -+ int capacity_now; -+ int voltage_now; -+ int design_capacity; -+ int full_charge_capacity; -+ int technology; -+ int design_voltage; -+ int design_capacity_warning; -+ int design_capacity_low; -+ int cycle_count; -+ int measurement_accuracy; -+ int max_sampling_time; -+ int min_sampling_time; -+ int max_averaging_interval; -+ int min_averaging_interval; -+ int capacity_granularity_1; -+ int capacity_granularity_2; -+ int alarm; -+ char model_number[32]; -+ char serial_number[32]; -+ char type[32]; -+ char oem_info[32]; -+ int state; -+ int power_unit; -+ long unsigned int flags; -+}; -+ -+struct acpi_offsets { -+ size_t offset; -+ u8 mode; -+}; -+ -+struct acpi_table_bgrt { -+ struct acpi_table_header header; -+ u16 version; -+ u8 status; -+ u8 image_type; -+ u64 image_address; -+ u32 image_offset_x; -+ u32 image_offset_y; -+}; -+ -+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_shared_memory { -+ u32 signature; -+ u16 command; -+ u16 status; -+}; -+ -+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_client; -+ -+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; -+ struct list_head node; -+}; -+ -+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 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; -+ 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_caps { -+ u32 guaranteed_perf; -+ u32 highest_perf; -+ u32 nominal_perf; -+ u32 lowest_perf; -+ u32 lowest_nonlinear_perf; -+ u32 lowest_freq; -+ u32 nominal_freq; -+}; -+ -+struct cppc_perf_ctrls { -+ u32 max_perf; -+ u32 min_perf; -+ u32 desired_perf; -+}; -+ -+struct cppc_perf_fb_ctrs { -+ u64 reference; -+ u64 delivered; -+ u64 reference_perf; -+ u64 wraparound_time; -+}; -+ -+struct cppc_cpudata { -+ struct list_head node; -+ 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 mbox_chan *pcc_channel; -+ void *pcc_comm_addr; -+ 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; -+}; -+ -+enum acpi_pptt_type { -+ ACPI_PPTT_TYPE_PROCESSOR = 0, -+ ACPI_PPTT_TYPE_CACHE = 1, -+ ACPI_PPTT_TYPE_ID = 2, -+ ACPI_PPTT_TYPE_RESERVED = 3, -+}; -+ -+struct acpi_pptt_processor { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u32 flags; -+ u32 parent; -+ u32 acpi_processor_id; -+ u32 number_of_priv_resources; -+}; -+ -+struct acpi_pptt_cache { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u32 flags; -+ u32 next_level_of_cache; -+ u32 size; -+ u32 number_of_sets; -+ u8 associativity; -+ u8 attributes; -+ u16 line_size; -+}; -+ -+struct acpi_pptt_cache_v1 { -+ u32 cache_id; -+}; -+ -+struct acpi_whea_header { -+ u8 action; -+ u8 instruction; -+ u8 flags; -+ u8 reserved; -+ struct acpi_generic_address register_region; -+ u64 value; -+ u64 mask; -+} __attribute__((packed)); -+ -+struct acpi_hest_header { -+ u16 type; -+ u16 source_id; -+}; -+ -+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; -+}; -+ -+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_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_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_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_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 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; -+} __attribute__((packed)); -+ -+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 ghes_arr { -+ struct platform_device **ghes_devs; -+ unsigned int count; -+}; -+ -+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; -+}; -+ -+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 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 acpi_hest_notify_types { -+ ACPI_HEST_NOTIFY_POLLED = 0, -+ ACPI_HEST_NOTIFY_EXTERNAL = 1, -+ ACPI_HEST_NOTIFY_LOCAL = 2, -+ ACPI_HEST_NOTIFY_SCI = 3, -+ ACPI_HEST_NOTIFY_NMI = 4, -+ ACPI_HEST_NOTIFY_CMCI = 5, -+ ACPI_HEST_NOTIFY_MCE = 6, -+ ACPI_HEST_NOTIFY_GPIO = 7, -+ ACPI_HEST_NOTIFY_SEA = 8, -+ ACPI_HEST_NOTIFY_SEI = 9, -+ ACPI_HEST_NOTIFY_GSIV = 10, -+ ACPI_HEST_NOTIFY_SOFTWARE_DELEGATED = 11, -+ ACPI_HEST_NOTIFY_RESERVED = 12, -+}; -+ -+struct acpi_hest_generic_v2 { -+ 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_generic_address read_ack_register; -+ u64 read_ack_preserve; -+ u64 read_ack_write; -+} __attribute__((packed)); -+ -+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 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_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 ghes { -+ union { -+ struct acpi_hest_generic *generic; -+ struct acpi_hest_generic_v2 *generic_v2; -+ }; -+ struct acpi_hest_generic_status *estatus; -+ long unsigned int flags; -+ union { -+ struct list_head list; -+ struct timer_list timer; -+ unsigned int irq; -+ }; -+}; -+ -+struct ghes_estatus_node { -+ struct llist_node llnode; -+ struct acpi_hest_generic *generic; -+ struct ghes *ghes; -+ int task_work_cpu; -+ struct callback_head task_work; -+}; -+ -+struct ghes_estatus_cache { -+ u32 estatus_len; -+ atomic_t count; -+ struct acpi_hest_generic *generic; -+ long long unsigned int time_in; -+ struct callback_head rcu; -+}; -+ -+enum { -+ GHES_SEV_NO = 0, -+ GHES_SEV_CORRECTED = 1, -+ GHES_SEV_RECOVERABLE = 2, -+ GHES_SEV_PANIC = 3, -+}; -+ -+struct ghes_vendor_record_entry { -+ struct work_struct work; -+ int error_severity; -+ char vendor_record[0]; -+}; -+ -+struct acpi_table_iort { -+ struct acpi_table_header header; -+ u32 node_count; -+ u32 node_offset; -+ u32 reserved; -+}; -+ -+struct acpi_iort_node { -+ u8 type; -+ u16 length; -+ u8 revision; -+ u32 identifier; -+ u32 mapping_count; -+ u32 mapping_offset; -+ char node_data[1]; -+} __attribute__((packed)); -+ -+enum acpi_iort_node_type { -+ ACPI_IORT_NODE_ITS_GROUP = 0, -+ ACPI_IORT_NODE_NAMED_COMPONENT = 1, -+ ACPI_IORT_NODE_PCI_ROOT_COMPLEX = 2, -+ ACPI_IORT_NODE_SMMU = 3, -+ ACPI_IORT_NODE_SMMU_V3 = 4, -+ ACPI_IORT_NODE_PMCG = 5, -+ ACPI_IORT_NODE_RMR = 6, -+}; -+ -+struct acpi_iort_id_mapping { -+ u32 input_base; -+ u32 id_count; -+ u32 output_base; -+ u32 output_reference; -+ u32 flags; -+}; -+ -+struct acpi_iort_its_group { -+ u32 its_count; -+ u32 identifiers[1]; -+}; -+ -+struct acpi_iort_named_component { -+ u32 node_flags; -+ u64 memory_properties; -+ u8 memory_address_limit; -+ char device_name[1]; -+} __attribute__((packed)); -+ -+struct acpi_iort_root_complex { -+ u64 memory_properties; -+ u32 ats_attribute; -+ u32 pci_segment_number; -+ u8 memory_address_limit; -+ u8 reserved[3]; -+} __attribute__((packed)); -+ -+struct acpi_iort_smmu { -+ u64 base_address; -+ u64 span; -+ u32 model; -+ u32 flags; -+ u32 global_interrupt_offset; -+ u32 context_interrupt_count; -+ u32 context_interrupt_offset; -+ u32 pmu_interrupt_count; -+ u32 pmu_interrupt_offset; -+ u64 interrupts[1]; -+} __attribute__((packed)); -+ -+struct acpi_iort_smmu_v3 { -+ u64 base_address; -+ u32 flags; -+ u32 reserved; -+ u64 vatos_address; -+ u32 model; -+ u32 event_gsiv; -+ u32 pri_gsiv; -+ u32 gerr_gsiv; -+ u32 sync_gsiv; -+ u32 pxm; -+ u32 id_mapping_index; -+} __attribute__((packed)); -+ -+struct acpi_iort_pmcg { -+ u64 page0_base_address; -+ u32 overflow_gsiv; -+ u32 node_reference; -+ u64 page1_base_address; -+}; -+ -+struct iort_its_msi_chip { -+ struct list_head list; -+ struct fwnode_handle *fw_node; -+ phys_addr_t base_addr; -+ u32 translation_id; -+}; -+ -+struct iort_fwnode { -+ struct list_head list; -+ struct acpi_iort_node *iort_node; -+ struct fwnode_handle *fwnode; -+}; -+ -+typedef acpi_status (*iort_find_node_callback)(struct acpi_iort_node *, void *); -+ -+struct iort_pci_alias_info { -+ struct device *dev; -+ struct acpi_iort_node *node; -+}; -+ -+struct iort_dev_config { -+ const char *name; -+ int (*dev_init)(struct acpi_iort_node *); -+ void (*dev_dma_configure)(struct device *, struct acpi_iort_node *); -+ int (*dev_count_resources)(struct acpi_iort_node *); -+ void (*dev_init_resources)(struct resource *, struct acpi_iort_node *); -+ int (*dev_set_proximity)(struct device *, struct acpi_iort_node *); -+ int (*dev_add_platdata)(struct platform_device *); -+}; -+ -+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, -+}; -+ -+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]; -+}; -+ -+struct acpi_table_gtdt { -+ struct acpi_table_header header; -+ u64 counter_block_addresss; -+ u32 reserved; -+ u32 secure_el1_interrupt; -+ u32 secure_el1_flags; -+ u32 non_secure_el1_interrupt; -+ u32 non_secure_el1_flags; -+ u32 virtual_timer_interrupt; -+ u32 virtual_timer_flags; -+ u32 non_secure_el2_interrupt; -+ u32 non_secure_el2_flags; -+ u64 counter_read_block_address; -+ u32 platform_timer_count; -+ u32 platform_timer_offset; -+} __attribute__((packed)); -+ -+struct acpi_gtdt_header { -+ u8 type; -+ u16 length; -+} __attribute__((packed)); -+ -+enum acpi_gtdt_type { -+ ACPI_GTDT_TYPE_TIMER_BLOCK = 0, -+ ACPI_GTDT_TYPE_WATCHDOG = 1, -+ ACPI_GTDT_TYPE_RESERVED = 2, -+}; -+ -+struct acpi_gtdt_timer_block { -+ struct acpi_gtdt_header header; -+ u8 reserved; -+ u64 block_address; -+ u32 timer_count; -+ u32 timer_offset; -+} __attribute__((packed)); -+ -+struct acpi_gtdt_timer_entry { -+ u8 frame_number; -+ u8 reserved[3]; -+ u64 base_address; -+ u64 el0_base_address; -+ u32 timer_interrupt; -+ u32 timer_flags; -+ u32 virtual_timer_interrupt; -+ u32 virtual_timer_flags; -+ u32 common_flags; -+} __attribute__((packed)); -+ -+struct acpi_gtdt_watchdog { -+ struct acpi_gtdt_header header; -+ u8 reserved; -+ u64 refresh_frame_address; -+ u64 control_frame_address; -+ u32 timer_interrupt; -+ u32 timer_flags; -+} __attribute__((packed)); -+ -+struct acpi_gtdt_descriptor { -+ struct acpi_table_gtdt *gtdt; -+ void *gtdt_end; -+ void *platform_timer; -+}; -+ -+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 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_resource { -+ struct list_head list; -+ struct resource res; -+}; -+ -+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_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 pnp_fixup { -+ char id[7]; -+ void (*quirk_function)(struct pnp_dev *); -+}; -+ -+struct acpipnp_parse_option_s { -+ struct pnp_dev *dev; -+ unsigned int option_flags; -+}; -+ -+struct deferred_device { -+ struct amba_device *dev; -+ struct resource *parent; -+ struct list_head node; -+}; -+ -+struct find_data { -+ struct amba_device *dev; -+ struct device *parent; -+ const char *busid; -+ unsigned int id; -+ unsigned int mask; -+}; -+ -+struct tegra_ahb { -+ void *regs; -+ struct device *dev; -+ u32 ctx[0]; -+}; -+ -+struct clk_bulk_devres { -+ struct clk_bulk_data *clks; -+ int num_clks; -+}; -+ -+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_init_data; -+ -+struct clk_hw { -+ struct clk_core *core; -+ struct clk *clk; -+ const struct clk_init_data *init; -+}; -+ -+struct clk_rate_request { -+ 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[20]; -+ char con_id[16]; -+}; -+ -+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 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_data_offsets_clk { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate_range { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_parent { -+ u32 name; -+ u32 pname; -+}; -+ -+struct trace_event_data_offsets_clk_phase { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_duty_cycle { -+ u32 name; -+}; -+ -+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 *); -+ -+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 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; -+}; -+ -+typedef void (*of_init_fn_1)(struct device_node *); -+ -+struct clk_fixed_factor { -+ struct clk_hw hw; -+ unsigned int mult; -+ unsigned int div; -+}; -+ -+struct clk_fixed_rate { -+ struct clk_hw hw; -+ long unsigned int fixed_rate; -+ long unsigned int fixed_accuracy; -+ long unsigned int flags; -+}; -+ -+struct clk_gate { -+ struct clk_hw hw; -+ void *reg; -+ u8 bit_idx; -+ u8 flags; -+ 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; -+ u32 *table; -+ u32 mask; -+ u8 shift; -+ 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 clk_fractional_divider { -+ struct clk_hw hw; -+ void *reg; -+ u8 mshift; -+ u8 mwidth; -+ u32 mmask; -+ u8 nshift; -+ u8 nwidth; -+ u32 nmask; -+ u8 flags; -+ void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); -+ spinlock_t *lock; -+}; -+ -+struct clk_gpio { -+ struct clk_hw hw; -+ struct gpio_desc *gpiod; -+}; -+ -+enum xgene_pll_type { -+ PLL_TYPE_PCP = 0, -+ PLL_TYPE_SOC = 1, -+}; -+ -+struct xgene_clk_pll { -+ struct clk_hw hw; -+ void *reg; -+ spinlock_t *lock; -+ u32 pll_offset; -+ enum xgene_pll_type type; -+ int version; -+}; -+ -+struct xgene_clk_pmd { -+ struct clk_hw hw; -+ void *reg; -+ u8 shift; -+ u32 mask; -+ u64 denom; -+ u32 flags; -+ spinlock_t *lock; -+}; -+ -+struct xgene_dev_parameters { -+ void *csr_reg; -+ u32 reg_clk_offset; -+ u32 reg_clk_mask; -+ u32 reg_csr_offset; -+ u32 reg_csr_mask; -+ void *divider_reg; -+ u32 reg_divider_offset; -+ u32 reg_divider_shift; -+ u32 reg_divider_width; -+}; -+ -+struct xgene_clk { -+ struct clk_hw hw; -+ spinlock_t *lock; -+ struct xgene_dev_parameters param; -+}; -+ -+enum iproc_arm_pll_fid { -+ ARM_PLL_FID_CRYSTAL_CLK = 0, -+ ARM_PLL_FID_SYS_CLK = 2, -+ ARM_PLL_FID_CH0_SLOW_CLK = 6, -+ ARM_PLL_FID_CH1_FAST_CLK = 7, -+}; -+ -+struct iproc_arm_pll { -+ struct clk_hw hw; -+ void *base; -+ long unsigned int rate; -+}; -+ -+struct iproc_pll_vco_param { -+ long unsigned int rate; -+ unsigned int ndiv_int; -+ unsigned int ndiv_frac; -+ unsigned int pdiv; -+}; -+ -+struct iproc_clk_reg_op { -+ unsigned int offset; -+ unsigned int shift; -+ unsigned int width; -+}; -+ -+struct iproc_asiu_gate { -+ unsigned int offset; -+ unsigned int en_shift; -+}; -+ -+struct iproc_pll_aon_pwr_ctrl { -+ unsigned int offset; -+ unsigned int pwr_width; -+ unsigned int pwr_shift; -+ unsigned int iso_shift; -+}; -+ -+struct iproc_pll_reset_ctrl { -+ unsigned int offset; -+ unsigned int reset_shift; -+ unsigned int p_reset_shift; -+}; -+ -+struct iproc_pll_dig_filter_ctrl { -+ unsigned int offset; -+ unsigned int ki_shift; -+ unsigned int ki_width; -+ unsigned int kp_shift; -+ unsigned int kp_width; -+ unsigned int ka_shift; -+ unsigned int ka_width; -+}; -+ -+struct iproc_pll_sw_ctrl { -+ unsigned int offset; -+ unsigned int shift; -+}; -+ -+struct iproc_pll_vco_ctrl { -+ unsigned int u_offset; -+ unsigned int l_offset; -+}; -+ -+struct iproc_pll_ctrl { -+ long unsigned int flags; -+ struct iproc_pll_aon_pwr_ctrl aon; -+ struct iproc_asiu_gate asiu; -+ struct iproc_pll_reset_ctrl reset; -+ struct iproc_pll_dig_filter_ctrl dig_filter; -+ struct iproc_pll_sw_ctrl sw_ctrl; -+ struct iproc_clk_reg_op ndiv_int; -+ struct iproc_clk_reg_op ndiv_frac; -+ struct iproc_clk_reg_op pdiv; -+ struct iproc_pll_vco_ctrl vco_ctrl; -+ struct iproc_clk_reg_op status; -+ struct iproc_clk_reg_op macro_mode; -+}; -+ -+struct iproc_clk_enable_ctrl { -+ unsigned int offset; -+ unsigned int enable_shift; -+ unsigned int hold_shift; -+ unsigned int bypass_shift; -+}; -+ -+struct iproc_clk_ctrl { -+ unsigned int channel; -+ long unsigned int flags; -+ struct iproc_clk_enable_ctrl enable; -+ struct iproc_clk_reg_op mdiv; -+}; -+ -+enum kp_band { -+ KP_BAND_MID = 0, -+ KP_BAND_HIGH = 1, -+ KP_BAND_HIGH_HIGH = 2, -+}; -+ -+enum vco_freq_range { -+ VCO_LOW = 700000000, -+ VCO_MID = 1200000000, -+ VCO_HIGH = 2200000000, -+ VCO_HIGH_HIGH = 3100000000, -+ VCO_MAX = 4000000000, -+}; -+ -+struct iproc_pll { -+ void *status_base; -+ void *control_base; -+ void *pwr_base; -+ void *asiu_base; -+ const struct iproc_pll_ctrl *ctrl; -+ const struct iproc_pll_vco_param *vco_param; -+ unsigned int num_vco_entries; -+}; -+ -+struct iproc_clk { -+ struct clk_hw hw; -+ struct iproc_pll *pll; -+ const struct iproc_clk_ctrl *ctrl; -+}; -+ -+struct iproc_asiu_div { -+ unsigned int offset; -+ unsigned int en_shift; -+ unsigned int high_shift; -+ unsigned int high_width; -+ unsigned int low_shift; -+ unsigned int low_width; -+}; -+ -+struct iproc_asiu; -+ -+struct iproc_asiu_clk { -+ struct clk_hw hw; -+ const char *name; -+ struct iproc_asiu *asiu; -+ long unsigned int rate; -+ struct iproc_asiu_div div; -+ struct iproc_asiu_gate gate; -+}; -+ -+struct iproc_asiu { -+ void *div_base; -+ void *gate_base; -+ struct clk_hw_onecell_data *clk_data; -+ struct iproc_asiu_clk *clks; -+}; -+ -+struct hisi_clock_data { -+ struct clk_onecell_data clk_data; -+ void *base; -+}; -+ -+struct hisi_fixed_rate_clock { -+ unsigned int id; -+ char *name; -+ const char *parent_name; -+ long unsigned int flags; -+ long unsigned int fixed_rate; -+}; -+ -+struct hisi_fixed_factor_clock { -+ unsigned int id; -+ char *name; -+ const char *parent_name; -+ long unsigned int mult; -+ long unsigned int div; -+ long unsigned int flags; -+}; -+ -+struct hisi_mux_clock { -+ unsigned int id; -+ const char *name; -+ const char * const *parent_names; -+ u8 num_parents; -+ long unsigned int flags; -+ long unsigned int offset; -+ u8 shift; -+ u8 width; -+ u8 mux_flags; -+ const u32 *table; -+ const char *alias; -+}; -+ -+struct hisi_phase_clock { -+ unsigned int id; -+ const char *name; -+ const char *parent_names; -+ long unsigned int flags; -+ long unsigned int offset; -+ u8 shift; -+ u8 width; -+ u32 *phase_degrees; -+ u32 *phase_regvals; -+ u8 phase_num; -+}; -+ -+struct hisi_divider_clock { -+ unsigned int id; -+ const char *name; -+ const char *parent_name; -+ long unsigned int flags; -+ long unsigned int offset; -+ u8 shift; -+ u8 width; -+ u8 div_flags; -+ struct clk_div_table *table; -+ const char *alias; -+}; -+ -+struct hi6220_divider_clock { -+ unsigned int id; -+ const char *name; -+ const char *parent_name; -+ long unsigned int flags; -+ long unsigned int offset; -+ u8 shift; -+ u8 width; -+ u32 mask_bit; -+ const char *alias; -+}; -+ -+struct hisi_gate_clock { -+ unsigned int id; -+ const char *name; -+ const char *parent_name; -+ long unsigned int flags; -+ long unsigned int offset; -+ u8 bit_idx; -+ u8 gate_flags; -+ const char *alias; -+}; -+ -+struct clkgate_separated { -+ struct clk_hw hw; -+ void *enable; -+ u8 bit_idx; -+ u8 flags; -+ spinlock_t *lock; -+}; -+ -+struct hi6220_clk_divider { -+ struct clk_hw hw; -+ void *reg; -+ u8 shift; -+ u8 width; -+ u32 mask; -+ const struct clk_div_table *table; -+ spinlock_t *lock; -+}; -+ -+struct clk_hisi_phase { -+ struct clk_hw hw; -+ void *reg; -+ u32 *phase_degrees; -+ u32 *phase_regvals; -+ u8 phase_num; -+ u32 mask; -+ u8 shift; -+ u8 flags; -+ spinlock_t *lock; -+}; -+ -+struct hisi_crg_funcs { -+ struct hisi_clock_data * (*register_clks)(struct platform_device *); -+ void (*unregister_clks)(struct platform_device *); -+}; -+ -+struct hisi_reset_controller; -+ -+struct hisi_crg_dev { -+ struct hisi_clock_data *clk_data; -+ struct hisi_reset_controller *rstc; -+ const struct hisi_crg_funcs *funcs; -+}; -+ -+struct hi3519_crg_data { -+ struct hisi_clock_data *clk_data; -+ struct hisi_reset_controller *rstc; -+}; -+ -+struct reset_controller_dev; -+ -+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; -+ int of_reset_n_cells; -+ int (*of_xlate)(struct reset_controller_dev *, const struct of_phandle_args *); -+ unsigned int nr_resets; -+}; -+ -+struct hisi_reset_controller___2 { -+ spinlock_t lock; -+ void *membase; -+ struct reset_controller_dev rcdev; -+}; -+ -+struct mbox_chan___2; -+ -+struct hi3660_stub_clk_chan { -+ struct mbox_client cl; -+ struct mbox_chan___2 *mbox; -+}; -+ -+struct hi3660_stub_clk { -+ unsigned int id; -+ struct clk_hw hw; -+ unsigned int cmd; -+ unsigned int msg[8]; -+ unsigned int rate; -+}; -+ -+struct tegra_cpu_car_ops { -+ void (*wait_for_reset)(u32); -+ void (*put_in_reset)(u32); -+ void (*out_of_reset)(u32); -+ void (*enable_clock)(u32); -+ void (*disable_clock)(u32); -+ bool (*rail_off_ready)(); -+ void (*suspend)(); -+ void (*resume)(); -+}; -+ -+struct tegra_clk_periph_regs { -+ u32 enb_reg; -+ u32 enb_set_reg; -+ u32 enb_clr_reg; -+ u32 rst_reg; -+ u32 rst_set_reg; -+ u32 rst_clr_reg; -+}; -+ -+struct tegra_clk_init_table { -+ unsigned int clk_id; -+ unsigned int parent_id; -+ long unsigned int rate; -+ int state; -+}; -+ -+struct tegra_clk_duplicate { -+ int clk_id; -+ struct clk_lookup lookup; -+}; -+ -+struct tegra_clk { -+ int dt_id; -+ bool present; -+}; -+ -+struct tegra_devclk { -+ int dt_id; -+ char *dev_id; -+ char *con_id; -+}; -+ -+typedef void (*tegra_clk_apply_init_table_func)(); -+ -+struct tegra_clk_sync_source { -+ struct clk_hw hw; -+ long unsigned int rate; -+ long unsigned int max_rate; -+}; -+ -+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 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 i2c_algorithm { -+ int (*master_xfer)(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 *); -+ int (*reg_slave)(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 rail_alignment { -+ int offset_uv; -+ int step_uv; -+}; -+ -+struct cvb_coefficients { -+ int c0; -+ int c1; -+ int c2; -+}; -+ -+struct cvb_table_freq_entry { -+ long unsigned int freq; -+ struct cvb_coefficients coefficients; -+}; -+ -+struct cvb_cpu_dfll_data { -+ u32 tune0_low; -+ u32 tune0_high; -+ u32 tune1; -+ unsigned int tune_high_min_millivolts; -+}; -+ -+struct cvb_table { -+ int speedo_id; -+ int process_id; -+ int min_millivolts; -+ int max_millivolts; -+ int speedo_scale; -+ int voltage_scale; -+ struct cvb_table_freq_entry entries[40]; -+ struct cvb_cpu_dfll_data cpu_dfll_data; -+}; -+ -+struct tegra_dfll_soc_data { -+ struct device *dev; -+ long unsigned int max_freq; -+ const struct cvb_table *cvb; -+ struct rail_alignment alignment; -+ void (*init_clock_trimmers)(); -+ void (*set_clock_trimmers_high)(); -+ void (*set_clock_trimmers_low)(); -+}; -+ -+enum dfll_ctrl_mode { -+ DFLL_UNINITIALIZED = 0, -+ DFLL_DISABLED = 1, -+ DFLL_OPEN_LOOP = 2, -+ DFLL_CLOSED_LOOP = 3, -+}; -+ -+enum dfll_tune_range { -+ DFLL_TUNE_UNINITIALIZED = 0, -+ DFLL_TUNE_LOW = 1, -+}; -+ -+enum tegra_dfll_pmu_if { -+ TEGRA_DFLL_PMU_I2C = 0, -+ TEGRA_DFLL_PMU_PWM = 1, -+}; -+ -+struct dfll_rate_req { -+ long unsigned int rate; -+ long unsigned int dvco_target_rate; -+ int lut_index; -+ u8 mult_bits; -+ u8 scale_bits; -+}; -+ -+struct tegra_dfll { -+ struct device *dev; -+ struct tegra_dfll_soc_data *soc; -+ void *base; -+ void *i2c_base; -+ void *i2c_controller_base; -+ void *lut_base; -+ struct regulator *vdd_reg; -+ struct clk *soc_clk; -+ struct clk *ref_clk; -+ struct clk *i2c_clk; -+ struct clk *dfll_clk; -+ struct reset_control *dvco_rst; -+ long unsigned int ref_rate; -+ long unsigned int i2c_clk_rate; -+ long unsigned int dvco_rate_min; -+ enum dfll_ctrl_mode mode; -+ enum dfll_tune_range tune_range; -+ struct dentry *debugfs_dir; -+ struct clk_hw dfll_clk_hw; -+ const char *output_clock_name; -+ struct dfll_rate_req last_req; -+ long unsigned int last_unrounded_rate; -+ u32 droop_ctrl; -+ u32 sample_rate; -+ u32 force_mode; -+ u32 cf; -+ u32 ci; -+ u32 cg; -+ bool cg_scale; -+ u32 i2c_fs_rate; -+ u32 i2c_reg; -+ u32 i2c_slave_addr; -+ unsigned int lut[33]; -+ long unsigned int lut_uv[33]; -+ int lut_size; -+ u8 lut_bottom; -+ u8 lut_min; -+ u8 lut_max; -+ u8 lut_safe; -+ enum tegra_dfll_pmu_if pmu_if; -+ long unsigned int pwm_rate; -+ struct pinctrl *pwm_pin; -+ struct pinctrl_state *pwm_enable_state; -+ struct pinctrl_state *pwm_disable_state; -+ u32 reg_init_uV; -+}; -+ -+struct dev_pm_opp; -+ -+struct tegra_clk_frac_div { -+ struct clk_hw hw; -+ void *reg; -+ u8 flags; -+ u8 shift; -+ u8 width; -+ u8 frac_width; -+ spinlock_t *lock; -+}; -+ -+struct tegra_clk_periph_gate { -+ u32 magic; -+ struct clk_hw hw; -+ void *clk_base; -+ u8 flags; -+ int clk_num; -+ int *enable_refcnt; -+ const struct tegra_clk_periph_regs *regs; -+}; -+ -+struct tegra_clk_periph { -+ u32 magic; -+ struct clk_hw hw; -+ struct clk_mux mux; -+ struct tegra_clk_frac_div divider; -+ struct tegra_clk_periph_gate gate; -+ const struct clk_ops *mux_ops; -+ const struct clk_ops *div_ops; -+ const struct clk_ops *gate_ops; -+}; -+ -+struct tegra_periph_init_data { -+ const char *name; -+ int clk_id; -+ union { -+ const char * const *parent_names; -+ const char *parent_name; -+ } p; -+ int num_parents; -+ struct tegra_clk_periph periph; -+ u32 offset; -+ const char *con_id; -+ const char *dev_id; -+ long unsigned int flags; -+}; -+ -+struct tegra_clk_periph_fixed { -+ struct clk_hw hw; -+ void *base; -+ const struct tegra_clk_periph_regs *regs; -+ unsigned int mul; -+ unsigned int div; -+ unsigned int num; -+}; -+ -+struct tegra_clk_pll_freq_table { -+ long unsigned int input_rate; -+ long unsigned int output_rate; -+ u32 n; -+ u32 m; -+ u8 p; -+ u8 cpcon; -+ u16 sdm_data; -+}; -+ -+struct pdiv_map { -+ u8 pdiv; -+ u8 hw_val; -+}; -+ -+struct div_nmp { -+ u8 divn_shift; -+ u8 divn_width; -+ u8 divm_shift; -+ u8 divm_width; -+ u8 divp_shift; -+ u8 divp_width; -+ u8 override_divn_shift; -+ u8 override_divm_shift; -+ u8 override_divp_shift; -+}; -+ -+struct tegra_clk_pll; -+ -+struct tegra_clk_pll_params { -+ long unsigned int input_min; -+ long unsigned int input_max; -+ long unsigned int cf_min; -+ long unsigned int cf_max; -+ long unsigned int vco_min; -+ long unsigned int vco_max; -+ u32 base_reg; -+ u32 misc_reg; -+ u32 lock_reg; -+ u32 lock_mask; -+ u32 lock_enable_bit_idx; -+ u32 iddq_reg; -+ u32 iddq_bit_idx; -+ u32 reset_reg; -+ u32 reset_bit_idx; -+ u32 sdm_din_reg; -+ u32 sdm_din_mask; -+ u32 sdm_ctrl_reg; -+ u32 sdm_ctrl_en_mask; -+ u32 ssc_ctrl_reg; -+ u32 ssc_ctrl_en_mask; -+ u32 aux_reg; -+ u32 dyn_ramp_reg; -+ u32 ext_misc_reg[6]; -+ u32 pmc_divnm_reg; -+ u32 pmc_divp_reg; -+ u32 flags; -+ int stepa_shift; -+ int stepb_shift; -+ int lock_delay; -+ int max_p; -+ bool defaults_set; -+ const struct pdiv_map *pdiv_tohw; -+ struct div_nmp *div_nmp; -+ struct tegra_clk_pll_freq_table *freq_table; -+ long unsigned int fixed_rate; -+ u16 mdiv_default; -+ u32 (*round_p_to_pdiv)(u32, u32 *); -+ void (*set_gain)(struct tegra_clk_pll_freq_table *); -+ int (*calc_rate)(struct clk_hw *, struct tegra_clk_pll_freq_table *, long unsigned int, long unsigned int); -+ long unsigned int (*adjust_vco)(struct tegra_clk_pll_params *, long unsigned int); -+ void (*set_defaults)(struct tegra_clk_pll *); -+ int (*dyn_ramp)(struct tegra_clk_pll *, struct tegra_clk_pll_freq_table *); -+ int (*pre_rate_change)(); -+ void (*post_rate_change)(); -+}; -+ -+struct tegra_clk_pll { -+ struct clk_hw hw; -+ void *clk_base; -+ void *pmc; -+ spinlock_t *lock; -+ struct tegra_clk_pll_params *params; -+}; -+ -+struct utmi_clk_param { -+ u32 osc_frequency; -+ u8 enable_delay_count; -+ u8 stable_count; -+ u8 active_delay_count; -+ u8 xtal_freq_count; -+}; -+ -+struct tegra_clk_pll_out { -+ struct clk_hw hw; -+ void *reg; -+ u8 enb_bit_idx; -+ u8 rst_bit_idx; -+ spinlock_t *lock; -+ u8 flags; -+}; -+ -+struct tegra_sdmmc_mux { -+ struct clk_hw hw; -+ void *reg; -+ spinlock_t *lock; -+ const struct clk_ops *gate_ops; -+ struct tegra_clk_periph_gate gate; -+ u8 div_flags; -+}; -+ -+struct tegra_clk_super_mux { -+ struct clk_hw hw; -+ void *reg; -+ struct tegra_clk_frac_div frac_div; -+ const struct clk_ops *div_ops; -+ u8 width; -+ u8 flags; -+ u8 div2_index; -+ u8 pllx_index; -+ spinlock_t *lock; -+}; -+ -+struct tegra_audio_clk_info { -+ char *name; -+ struct tegra_clk_pll_params *pll_params; -+ int clk_id; -+ char *parent; -+}; -+ -+enum clk_id { -+ tegra_clk_actmon = 0, -+ tegra_clk_adx = 1, -+ tegra_clk_adx1 = 2, -+ tegra_clk_afi = 3, -+ tegra_clk_amx = 4, -+ tegra_clk_amx1 = 5, -+ tegra_clk_apb2ape = 6, -+ tegra_clk_ahbdma = 7, -+ tegra_clk_apbdma = 8, -+ tegra_clk_apbif = 9, -+ tegra_clk_ape = 10, -+ tegra_clk_audio0 = 11, -+ tegra_clk_audio0_2x = 12, -+ tegra_clk_audio0_mux = 13, -+ tegra_clk_audio1 = 14, -+ tegra_clk_audio1_2x = 15, -+ tegra_clk_audio1_mux = 16, -+ tegra_clk_audio2 = 17, -+ tegra_clk_audio2_2x = 18, -+ tegra_clk_audio2_mux = 19, -+ tegra_clk_audio3 = 20, -+ tegra_clk_audio3_2x = 21, -+ tegra_clk_audio3_mux = 22, -+ tegra_clk_audio4 = 23, -+ tegra_clk_audio4_2x = 24, -+ tegra_clk_audio4_mux = 25, -+ tegra_clk_bsea = 26, -+ tegra_clk_bsev = 27, -+ tegra_clk_cclk_g = 28, -+ tegra_clk_cclk_lp = 29, -+ tegra_clk_cilab = 30, -+ tegra_clk_cilcd = 31, -+ tegra_clk_cile = 32, -+ tegra_clk_clk_32k = 33, -+ tegra_clk_clk72Mhz = 34, -+ tegra_clk_clk72Mhz_8 = 35, -+ tegra_clk_clk_m = 36, -+ tegra_clk_osc = 37, -+ tegra_clk_osc_div2 = 38, -+ tegra_clk_osc_div4 = 39, -+ tegra_clk_cml0 = 40, -+ tegra_clk_cml1 = 41, -+ tegra_clk_csi = 42, -+ tegra_clk_csite = 43, -+ tegra_clk_csite_8 = 44, -+ tegra_clk_csus = 45, -+ tegra_clk_cve = 46, -+ tegra_clk_dam0 = 47, -+ tegra_clk_dam1 = 48, -+ tegra_clk_dam2 = 49, -+ tegra_clk_d_audio = 50, -+ tegra_clk_dbgapb = 51, -+ tegra_clk_dds = 52, -+ tegra_clk_dfll_ref = 53, -+ tegra_clk_dfll_soc = 54, -+ tegra_clk_disp1 = 55, -+ tegra_clk_disp1_8 = 56, -+ tegra_clk_disp2 = 57, -+ tegra_clk_disp2_8 = 58, -+ tegra_clk_dp2 = 59, -+ tegra_clk_dpaux = 60, -+ tegra_clk_dpaux1 = 61, -+ tegra_clk_dsialp = 62, -+ tegra_clk_dsia_mux = 63, -+ tegra_clk_dsiblp = 64, -+ tegra_clk_dsib_mux = 65, -+ tegra_clk_dtv = 66, -+ tegra_clk_emc = 67, -+ tegra_clk_entropy = 68, -+ tegra_clk_entropy_8 = 69, -+ tegra_clk_epp = 70, -+ tegra_clk_epp_8 = 71, -+ tegra_clk_extern1 = 72, -+ tegra_clk_extern2 = 73, -+ tegra_clk_extern3 = 74, -+ tegra_clk_fuse = 75, -+ tegra_clk_fuse_burn = 76, -+ tegra_clk_gpu = 77, -+ tegra_clk_gr2d = 78, -+ tegra_clk_gr2d_8 = 79, -+ tegra_clk_gr3d = 80, -+ tegra_clk_gr3d_8 = 81, -+ tegra_clk_hclk = 82, -+ tegra_clk_hda = 83, -+ tegra_clk_hda_8 = 84, -+ tegra_clk_hda2codec_2x = 85, -+ tegra_clk_hda2codec_2x_8 = 86, -+ tegra_clk_hda2hdmi = 87, -+ tegra_clk_hdmi = 88, -+ tegra_clk_hdmi_audio = 89, -+ tegra_clk_host1x = 90, -+ tegra_clk_host1x_8 = 91, -+ tegra_clk_host1x_9 = 92, -+ tegra_clk_hsic_trk = 93, -+ tegra_clk_i2c1 = 94, -+ tegra_clk_i2c2 = 95, -+ tegra_clk_i2c3 = 96, -+ tegra_clk_i2c4 = 97, -+ tegra_clk_i2c5 = 98, -+ tegra_clk_i2c6 = 99, -+ tegra_clk_i2cslow = 100, -+ tegra_clk_i2s0 = 101, -+ tegra_clk_i2s0_sync = 102, -+ tegra_clk_i2s1 = 103, -+ tegra_clk_i2s1_sync = 104, -+ tegra_clk_i2s2 = 105, -+ tegra_clk_i2s2_sync = 106, -+ tegra_clk_i2s3 = 107, -+ tegra_clk_i2s3_sync = 108, -+ tegra_clk_i2s4 = 109, -+ tegra_clk_i2s4_sync = 110, -+ tegra_clk_isp = 111, -+ tegra_clk_isp_8 = 112, -+ tegra_clk_isp_9 = 113, -+ tegra_clk_ispb = 114, -+ tegra_clk_kbc = 115, -+ tegra_clk_kfuse = 116, -+ tegra_clk_la = 117, -+ tegra_clk_maud = 118, -+ tegra_clk_mipi = 119, -+ tegra_clk_mipibif = 120, -+ tegra_clk_mipi_cal = 121, -+ tegra_clk_mpe = 122, -+ tegra_clk_mselect = 123, -+ tegra_clk_msenc = 124, -+ tegra_clk_ndflash = 125, -+ tegra_clk_ndflash_8 = 126, -+ tegra_clk_ndspeed = 127, -+ tegra_clk_ndspeed_8 = 128, -+ tegra_clk_nor = 129, -+ tegra_clk_nvdec = 130, -+ tegra_clk_nvenc = 131, -+ tegra_clk_nvjpg = 132, -+ tegra_clk_owr = 133, -+ tegra_clk_owr_8 = 134, -+ tegra_clk_pcie = 135, -+ tegra_clk_pclk = 136, -+ tegra_clk_pll_a = 137, -+ tegra_clk_pll_a_out0 = 138, -+ tegra_clk_pll_a1 = 139, -+ tegra_clk_pll_c = 140, -+ tegra_clk_pll_c2 = 141, -+ tegra_clk_pll_c3 = 142, -+ tegra_clk_pll_c4 = 143, -+ tegra_clk_pll_c4_out0 = 144, -+ tegra_clk_pll_c4_out1 = 145, -+ tegra_clk_pll_c4_out2 = 146, -+ tegra_clk_pll_c4_out3 = 147, -+ tegra_clk_pll_c_out1 = 148, -+ tegra_clk_pll_d = 149, -+ tegra_clk_pll_d2 = 150, -+ tegra_clk_pll_d2_out0 = 151, -+ tegra_clk_pll_d_out0 = 152, -+ tegra_clk_pll_dp = 153, -+ tegra_clk_pll_e_out0 = 154, -+ tegra_clk_pll_g_ref = 155, -+ tegra_clk_pll_m = 156, -+ tegra_clk_pll_m_out1 = 157, -+ tegra_clk_pll_mb = 158, -+ tegra_clk_pll_p = 159, -+ tegra_clk_pll_p_out1 = 160, -+ tegra_clk_pll_p_out2 = 161, -+ tegra_clk_pll_p_out2_int = 162, -+ tegra_clk_pll_p_out3 = 163, -+ tegra_clk_pll_p_out4 = 164, -+ tegra_clk_pll_p_out4_cpu = 165, -+ tegra_clk_pll_p_out5 = 166, -+ tegra_clk_pll_p_out_hsio = 167, -+ tegra_clk_pll_p_out_xusb = 168, -+ tegra_clk_pll_p_out_cpu = 169, -+ tegra_clk_pll_p_out_adsp = 170, -+ tegra_clk_pll_ref = 171, -+ tegra_clk_pll_re_out = 172, -+ tegra_clk_pll_re_vco = 173, -+ tegra_clk_pll_u = 174, -+ tegra_clk_pll_u_out = 175, -+ tegra_clk_pll_u_out1 = 176, -+ tegra_clk_pll_u_out2 = 177, -+ tegra_clk_pll_u_12m = 178, -+ tegra_clk_pll_u_480m = 179, -+ tegra_clk_pll_u_48m = 180, -+ tegra_clk_pll_u_60m = 181, -+ tegra_clk_pll_x = 182, -+ tegra_clk_pll_x_out0 = 183, -+ tegra_clk_pwm = 184, -+ tegra_clk_qspi = 185, -+ tegra_clk_rtc = 186, -+ tegra_clk_sata = 187, -+ tegra_clk_sata_8 = 188, -+ tegra_clk_sata_cold = 189, -+ tegra_clk_sata_oob = 190, -+ tegra_clk_sata_oob_8 = 191, -+ tegra_clk_sbc1 = 192, -+ tegra_clk_sbc1_8 = 193, -+ tegra_clk_sbc1_9 = 194, -+ tegra_clk_sbc2 = 195, -+ tegra_clk_sbc2_8 = 196, -+ tegra_clk_sbc2_9 = 197, -+ tegra_clk_sbc3 = 198, -+ tegra_clk_sbc3_8 = 199, -+ tegra_clk_sbc3_9 = 200, -+ tegra_clk_sbc4 = 201, -+ tegra_clk_sbc4_8 = 202, -+ tegra_clk_sbc4_9 = 203, -+ tegra_clk_sbc5 = 204, -+ tegra_clk_sbc5_8 = 205, -+ tegra_clk_sbc6 = 206, -+ tegra_clk_sbc6_8 = 207, -+ tegra_clk_sclk = 208, -+ tegra_clk_sdmmc_legacy = 209, -+ tegra_clk_sdmmc1 = 210, -+ tegra_clk_sdmmc1_8 = 211, -+ tegra_clk_sdmmc1_9 = 212, -+ tegra_clk_sdmmc2 = 213, -+ tegra_clk_sdmmc2_8 = 214, -+ tegra_clk_sdmmc3 = 215, -+ tegra_clk_sdmmc3_8 = 216, -+ tegra_clk_sdmmc3_9 = 217, -+ tegra_clk_sdmmc4 = 218, -+ tegra_clk_sdmmc4_8 = 219, -+ tegra_clk_se = 220, -+ tegra_clk_se_10 = 221, -+ tegra_clk_soc_therm = 222, -+ tegra_clk_soc_therm_8 = 223, -+ tegra_clk_sor0 = 224, -+ tegra_clk_sor0_out = 225, -+ tegra_clk_sor1 = 226, -+ tegra_clk_sor1_out = 227, -+ tegra_clk_spdif = 228, -+ tegra_clk_spdif_2x = 229, -+ tegra_clk_spdif_in = 230, -+ tegra_clk_spdif_in_8 = 231, -+ tegra_clk_spdif_in_sync = 232, -+ tegra_clk_spdif_mux = 233, -+ tegra_clk_spdif_out = 234, -+ tegra_clk_timer = 235, -+ tegra_clk_trace = 236, -+ tegra_clk_tsec = 237, -+ tegra_clk_tsec_8 = 238, -+ tegra_clk_tsecb = 239, -+ tegra_clk_tsensor = 240, -+ tegra_clk_tvdac = 241, -+ tegra_clk_tvo = 242, -+ tegra_clk_uarta = 243, -+ tegra_clk_uarta_8 = 244, -+ tegra_clk_uartb = 245, -+ tegra_clk_uartb_8 = 246, -+ tegra_clk_uartc = 247, -+ tegra_clk_uartc_8 = 248, -+ tegra_clk_uartd = 249, -+ tegra_clk_uartd_8 = 250, -+ tegra_clk_uarte = 251, -+ tegra_clk_uarte_8 = 252, -+ tegra_clk_uartape = 253, -+ tegra_clk_usb2 = 254, -+ tegra_clk_usb2_hsic_trk = 255, -+ tegra_clk_usb2_trk = 256, -+ tegra_clk_usb3 = 257, -+ tegra_clk_usbd = 258, -+ tegra_clk_vcp = 259, -+ tegra_clk_vde = 260, -+ tegra_clk_vde_8 = 261, -+ tegra_clk_vfir = 262, -+ tegra_clk_vi = 263, -+ tegra_clk_vi_8 = 264, -+ tegra_clk_vi_9 = 265, -+ tegra_clk_vi_10 = 266, -+ tegra_clk_vi_i2c = 267, -+ tegra_clk_vic03 = 268, -+ tegra_clk_vic03_8 = 269, -+ tegra_clk_vim2_clk = 270, -+ tegra_clk_vimclk_sync = 271, -+ tegra_clk_vi_sensor = 272, -+ tegra_clk_vi_sensor_8 = 273, -+ tegra_clk_vi_sensor_9 = 274, -+ tegra_clk_vi_sensor2 = 275, -+ tegra_clk_vi_sensor2_8 = 276, -+ tegra_clk_xusb_dev = 277, -+ tegra_clk_xusb_dev_src = 278, -+ tegra_clk_xusb_dev_src_8 = 279, -+ tegra_clk_xusb_falcon_src = 280, -+ tegra_clk_xusb_falcon_src_8 = 281, -+ tegra_clk_xusb_fs_src = 282, -+ tegra_clk_xusb_gate = 283, -+ tegra_clk_xusb_host = 284, -+ tegra_clk_xusb_host_src = 285, -+ tegra_clk_xusb_host_src_8 = 286, -+ tegra_clk_xusb_hs_src = 287, -+ tegra_clk_xusb_hs_src_4 = 288, -+ tegra_clk_xusb_ss = 289, -+ tegra_clk_xusb_ss_src = 290, -+ tegra_clk_xusb_ss_src_8 = 291, -+ tegra_clk_xusb_ss_div2 = 292, -+ tegra_clk_xusb_ssp_src = 293, -+ tegra_clk_sclk_mux = 294, -+ tegra_clk_sor_safe = 295, -+ tegra_clk_cec = 296, -+ tegra_clk_ispa = 297, -+ tegra_clk_dmic1 = 298, -+ tegra_clk_dmic2 = 299, -+ tegra_clk_dmic3 = 300, -+ tegra_clk_dmic1_sync_clk = 301, -+ tegra_clk_dmic2_sync_clk = 302, -+ tegra_clk_dmic3_sync_clk = 303, -+ tegra_clk_dmic1_sync_clk_mux = 304, -+ tegra_clk_dmic2_sync_clk_mux = 305, -+ tegra_clk_dmic3_sync_clk_mux = 306, -+ tegra_clk_iqc1 = 307, -+ tegra_clk_iqc2 = 308, -+ tegra_clk_pll_a_out_adsp = 309, -+ tegra_clk_pll_a_out0_out_adsp = 310, -+ tegra_clk_adsp = 311, -+ tegra_clk_adsp_neon = 312, -+ tegra_clk_max = 313, -+}; -+ -+struct tegra_sync_source_initdata { -+ char *name; -+ long unsigned int rate; -+ long unsigned int max_rate; -+ int clk_id; -+}; -+ -+struct tegra_audio_clk_initdata { -+ char *gate_name; -+ char *mux_name; -+ u32 offset; -+ int gate_clk_id; -+ int mux_clk_id; -+}; -+ -+struct tegra_audio2x_clk_initdata { -+ char *parent; -+ char *gate_name; -+ char *name_2x; -+ char *div_name; -+ int clk_id; -+ int clk_num; -+ u8 div_offset; -+}; -+ -+struct pll_out_data { -+ char *div_name; -+ char *pll_out_name; -+ u32 offset; -+ int clk_id; -+ u8 div_shift; -+ u8 div_flags; -+ u8 rst_shift; -+ spinlock_t *lock; -+}; -+ -+enum tegra_super_gen { -+ gen4 = 4, -+ gen5 = 5, -+}; -+ -+struct tegra_super_gen_info { -+ enum tegra_super_gen gen; -+ const char **sclk_parents; -+ const char **cclk_g_parents; -+ const char **cclk_lp_parents; -+ int num_sclk_parents; -+ int num_cclk_g_parents; -+ int num_cclk_lp_parents; -+}; -+ -+enum { -+ DOWN___2 = 0, -+ UP___2 = 1, -+}; -+ -+struct clk_sp810; -+ -+struct clk_sp810_timerclken { -+ struct clk_hw hw; -+ struct clk *clk; -+ struct clk_sp810 *sp810; -+ int channel; -+}; -+ -+struct clk_sp810 { -+ struct device_node *node; -+ void *base; -+ spinlock_t lock; -+ struct clk_sp810_timerclken timerclken[4]; -+}; -+ -+struct vexpress_osc { -+ struct regmap *reg; -+ struct clk_hw hw; -+ long unsigned int rate_min; -+ long unsigned int rate_max; -+}; -+ -+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]; -+}; -+ -+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; -+ struct mutex chan_mutex; -+ 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_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; -+}; -+ -+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, -+}; -+ -+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; -+ unsigned int slave_id; -+ 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 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 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 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 nvmem_cell_info { -+ const char *name; -+ unsigned int offset; -+ unsigned int bytes; -+ unsigned int bit_offset; -+ unsigned int nbits; -+}; -+ -+struct nvmem_cell_lookup { -+ const char *nvmem_name; -+ const char *cell_name; -+ const char *dev_id; -+ const char *con_id; -+ struct list_head node; -+}; -+ -+typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); -+ -+typedef int (*nvmem_reg_write_t)(void *, 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_config { -+ struct device *dev; -+ const char *name; -+ int id; -+ struct module *owner; -+ struct gpio_desc *wp_gpio; -+ const struct nvmem_cell_info *cells; -+ int ncells; -+ const struct nvmem_keepout *keepout; -+ unsigned int nkeepout; -+ enum nvmem_type type; -+ bool read_only; -+ bool root_only; -+ struct device_node *of_node; -+ bool no_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 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; -+}; -+ -+enum tegra_revision { -+ TEGRA_REVISION_UNKNOWN = 0, -+ TEGRA_REVISION_A01 = 1, -+ TEGRA_REVISION_A02 = 2, -+ TEGRA_REVISION_A03 = 3, -+ TEGRA_REVISION_A03p = 4, -+ TEGRA_REVISION_A04 = 5, -+ TEGRA_REVISION_MAX = 6, -+}; -+ -+struct tegra_sku_info { -+ int sku_id; -+ int cpu_process_id; -+ int cpu_speedo_id; -+ int cpu_speedo_value; -+ int cpu_iddq_value; -+ int soc_process_id; -+ int soc_speedo_id; -+ int soc_speedo_value; -+ int gpu_process_id; -+ int gpu_speedo_id; -+ int gpu_speedo_value; -+ enum tegra_revision revision; -+}; -+ -+struct tegra_fuse; -+ -+struct tegra_fuse_info { -+ u32 (*read)(struct tegra_fuse *, unsigned int); -+ unsigned int size; -+ unsigned int spare; -+}; -+ -+struct nvmem_device; -+ -+struct tegra_fuse_soc; -+ -+struct tegra_fuse { -+ struct device *dev; -+ void *base; -+ phys_addr_t phys; -+ struct clk *clk; -+ u32 (*read_early)(struct tegra_fuse *, unsigned int); -+ u32 (*read)(struct tegra_fuse *, unsigned int); -+ const struct tegra_fuse_soc *soc; -+ struct { -+ struct mutex lock; -+ struct completion wait; -+ struct dma_chan *chan; -+ struct dma_slave_config config; -+ dma_addr_t phys; -+ u32 *virt; -+ } apbdma; -+ struct nvmem_device *nvmem; -+ struct nvmem_cell_lookup *lookups; -+}; -+ -+struct tegra_fuse_soc { -+ void (*init)(struct tegra_fuse *); -+ void (*speedo_init)(struct tegra_sku_info *); -+ int (*probe)(struct tegra_fuse *); -+ const struct tegra_fuse_info *info; -+ const struct nvmem_cell_lookup *lookups; -+ unsigned int num_lookups; -+ const struct attribute_group *soc_attr_group; -+}; -+ -+struct soc_device; -+ -+struct tegra_core_opp_params { -+ bool init_state; -+}; -+ -+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 *); -+}; -+ -+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 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 { -+ 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 { -+ 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; -+ } split; -+ struct { -+ 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; -+ bool used_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; -+ } packed; -+ }; -+ bool (*notify)(struct virtqueue *); -+ bool we_own_ring; -+}; -+ -+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_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; -+ int notify_map_cap; -+ u32 notify_offset_multiplier; -+ int modern_bars; -+ struct virtio_device_id id; -+}; -+ -+struct virtio_pci_vq_info { -+ struct virtqueue *vq; -+ struct list_head node; -+ unsigned int msix_vector; -+}; -+ -+struct virtio_pci_device { -+ struct virtio_device vdev; -+ struct pci_dev *pci_dev; -+ struct virtio_pci_modern_device mdev; -+ u8 *isr; -+ void *ioaddr; -+ spinlock_t lock; -+ struct list_head virtqueues; -+ struct virtio_pci_vq_info **vqs; -+ 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); -+}; -+ -+enum { -+ VP_MSIX_CONFIG_VECTOR = 0, -+ VP_MSIX_VQ_VECTOR = 1, -+}; -+ -+struct reset_control___2; -+ -+struct reset_control_bulk_data { -+ const char *id; -+ struct reset_control___2 *rstc; -+}; -+ -+struct reset_control___2 { -+ 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_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___2 base; -+ unsigned int num_rstcs; -+ struct reset_control___2 *rstc[0]; -+}; -+ -+struct reset_control_bulk_devres { -+ int num_rstcs; -+ struct reset_control_bulk_data *rstcs; -+}; -+ -+struct scmi_revision_info { -+ u16 major_ver; -+ u16 minor_ver; -+ u8 num_protocols; -+ u8 num_agents; -+ u32 impl_ver; -+ char vendor_id[16]; -+ char sub_vendor_id[16]; -+}; -+ -+struct scmi_xfer_ops; -+ -+struct scmi_protocol_handle { -+ struct device *dev; -+ const struct scmi_xfer_ops *xops; -+ int (*set_priv)(const struct scmi_protocol_handle *, void *); -+ void * (*get_priv)(const struct scmi_protocol_handle *); -+}; -+ -+struct scmi_reset_proto_ops { -+ int (*num_domains_get)(const struct scmi_protocol_handle *); -+ char * (*name_get)(const struct scmi_protocol_handle *, u32); -+ int (*latency_get)(const struct scmi_protocol_handle *, u32); -+ int (*reset)(const struct scmi_protocol_handle *, u32); -+ int (*assert)(const struct scmi_protocol_handle *, u32); -+ int (*deassert)(const struct scmi_protocol_handle *, u32); -+}; -+ -+struct scmi_device; -+ -+struct scmi_handle; -+ -+struct scmi_notify_ops { -+ int (*devm_event_notifier_register)(struct scmi_device *, u8, u8, const u32 *, struct notifier_block *); -+ int (*devm_event_notifier_unregister)(struct scmi_device *, u8, u8, const u32 *, struct notifier_block *); -+ int (*event_notifier_register)(const struct scmi_handle *, u8, u8, const u32 *, struct notifier_block *); -+ int (*event_notifier_unregister)(const struct scmi_handle *, u8, u8, const u32 *, struct notifier_block *); -+}; -+ -+struct scmi_device { -+ u32 id; -+ u8 protocol_id; -+ const char *name; -+ struct device dev; -+ struct scmi_handle *handle; -+}; -+ -+struct scmi_handle { -+ struct device *dev; -+ struct scmi_revision_info *version; -+ const void * (*devm_protocol_get)(struct scmi_device *, u8, struct scmi_protocol_handle **); -+ void (*devm_protocol_put)(struct scmi_device *, u8); -+ const struct scmi_notify_ops *notify_ops; -+}; -+ -+enum scmi_std_protocol { -+ SCMI_PROTOCOL_BASE = 16, -+ SCMI_PROTOCOL_POWER = 17, -+ SCMI_PROTOCOL_SYSTEM = 18, -+ SCMI_PROTOCOL_PERF = 19, -+ SCMI_PROTOCOL_CLOCK = 20, -+ SCMI_PROTOCOL_SENSOR = 21, -+ SCMI_PROTOCOL_RESET = 22, -+ SCMI_PROTOCOL_VOLTAGE = 23, -+}; -+ -+struct scmi_device_id { -+ u8 protocol_id; -+ const char *name; -+}; -+ -+struct scmi_driver { -+ const char *name; -+ int (*probe)(struct scmi_device *); -+ void (*remove)(struct scmi_device *); -+ const struct scmi_device_id *id_table; -+ struct device_driver driver; -+}; -+ -+struct scmi_reset_data { -+ struct reset_controller_dev rcdev; -+ const struct scmi_protocol_handle *ph; -+}; -+ -+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; -+ 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; -+ char read_buf[4096]; -+ long unsigned int read_flags[64]; -+ unsigned char echo_buf[4096]; -+ size_t read_tail; -+ size_t line_start; -+ 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 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 pts_fs_info___2; -+ -+struct tty_audit_buf { -+ struct mutex mutex; -+ dev_t dev; -+ unsigned int icanon: 1; -+ size_t valid; -+ unsigned char *data; -+}; -+ -+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 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 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_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 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 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; -+ char: 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 kbd_led_trigger { -+ struct led_trigger trigger; -+ unsigned int mask; -+}; -+ -+struct uni_pagedir { -+ u16 **uni_pgdir[32]; -+ long unsigned int refcount; -+ long unsigned int sum; -+ unsigned char *inverse_translations[4]; -+ u16 *inverse_trans_unicode; -+}; -+ -+typedef uint32_t char32_t; -+ -+struct uni_screen { -+ char32_t *lines[0]; -+}; -+ -+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, -+}; -+ -+struct rgb { -+ u8 r; -+ u8 g; -+ u8 b; -+}; -+ -+enum { -+ 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, -+}; -+ -+struct interval { -+ uint32_t first; -+ uint32_t last; -+}; -+ -+struct vc_draw_region { -+ long unsigned int from; -+ long unsigned int to; -+ int x; -+}; -+ -+struct hv_ops; -+ -+struct hvc_struct { -+ struct tty_port port; -+ spinlock_t lock; -+ int index; -+ int do_wakeup; -+ char *outbuf; -+ 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; -+}; -+ -+struct hv_ops { -+ int (*get_chars)(uint32_t, char *, int); -+ int (*put_chars)(uint32_t, const char *, int); -+ 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 *, int); -+}; -+ -+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 uart_match { -+ struct uart_port *port; -+ struct uart_driver *driver; -+}; -+ -+struct earlycon_device { -+ struct console *con; -+ struct uart_port port; -+ char options[16]; -+ unsigned int baud; -+}; -+ -+struct earlycon_id { -+ char name[15]; -+ char name_term; -+ char compatible[128]; -+ int (*setup)(struct earlycon_device *, const char *); -+}; -+ -+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, -+}; -+ -+enum { -+ PLAT8250_DEV_LEGACY = 4294967295, -+ 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_port; -+ -+struct uart_8250_ops { -+ int (*setup_irq)(struct uart_8250_port *); -+ void (*release_irq)(struct uart_8250_port *); -+}; -+ -+struct mctrl_gpios; -+ -+struct uart_8250_dma; -+ -+struct uart_8250_em485; -+ -+struct uart_8250_port { -+ struct uart_port port; -+ struct timer_list timer; -+ struct list_head list; -+ u32 capabilities; -+ short unsigned int bugs; -+ bool fifo_bug; -+ unsigned int tx_loadsz; -+ unsigned char acr; -+ unsigned char fcr; -+ unsigned char ier; -+ unsigned char lcr; -+ unsigned char mcr; -+ unsigned char mcr_mask; -+ unsigned char mcr_force; -+ unsigned char cur_iotype; -+ unsigned int rpm_tx_active; -+ unsigned char canary; -+ unsigned char probe; -+ struct mctrl_gpios *gpios; -+ unsigned char lsr_saved_flags; -+ unsigned char msr_saved_flags; -+ struct uart_8250_dma *dma; -+ const struct uart_8250_ops *ops; -+ int (*dl_read)(struct uart_8250_port *); -+ void (*dl_write)(struct uart_8250_port *, int); -+ 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_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 *); -+ 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; -+}; -+ -+struct irq_info { -+ struct hlist_node node; -+ int irq; -+ spinlock_t lock; -+ struct list_head *head; -+}; -+ -+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 dw8250_port_data { -+ int line; -+ struct uart_8250_dma dma; -+ u8 dlf_size; -+}; -+ -+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; -+}; -+ -+struct quatech_feature { -+ u16 devid; -+ bool amcc; -+}; -+ -+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_3906250 = 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_endrun_2_4000000 = 71, -+ pbn_oxsemi = 72, -+ pbn_oxsemi_1_3906250 = 73, -+ pbn_oxsemi_2_3906250 = 74, -+ pbn_oxsemi_4_3906250 = 75, -+ pbn_oxsemi_8_3906250 = 76, -+ pbn_intel_i960 = 77, -+ pbn_sgi_ioc3 = 78, -+ pbn_computone_4 = 79, -+ pbn_computone_6 = 80, -+ pbn_computone_8 = 81, -+ pbn_sbsxrsio = 82, -+ pbn_pasemi_1682M = 83, -+ pbn_ni8430_2 = 84, -+ pbn_ni8430_4 = 85, -+ pbn_ni8430_8 = 86, -+ pbn_ni8430_16 = 87, -+ pbn_ADDIDATA_PCIe_1_3906250 = 88, -+ pbn_ADDIDATA_PCIe_2_3906250 = 89, -+ pbn_ADDIDATA_PCIe_4_3906250 = 90, -+ pbn_ADDIDATA_PCIe_8_3906250 = 91, -+ pbn_ce4100_1_115200 = 92, -+ pbn_omegapci = 93, -+ pbn_NETMOS9900_2s_115200 = 94, -+ pbn_brcm_trumanage = 95, -+ pbn_fintek_4 = 96, -+ pbn_fintek_8 = 97, -+ pbn_fintek_12 = 98, -+ pbn_fintek_F81504A = 99, -+ pbn_fintek_F81508A = 100, -+ pbn_fintek_F81512A = 101, -+ pbn_wch382_2 = 102, -+ pbn_wch384_4 = 103, -+ pbn_wch384_8 = 104, -+ pbn_pericom_PI7C9X7951 = 105, -+ pbn_pericom_PI7C9X7952 = 106, -+ pbn_pericom_PI7C9X7954 = 107, -+ pbn_pericom_PI7C9X7958 = 108, -+ pbn_sunix_pci_1s = 109, -+ pbn_sunix_pci_2s = 110, -+ pbn_sunix_pci_4s = 111, -+ pbn_sunix_pci_8s = 112, -+ pbn_sunix_pci_16s = 113, -+ pbn_titan_1_4000000 = 114, -+ pbn_titan_2_4000000 = 115, -+ pbn_titan_4_4000000 = 116, -+ pbn_titan_8_4000000 = 117, -+ pbn_moxa8250_2p = 118, -+ pbn_moxa8250_4p = 119, -+ pbn_moxa8250_8p = 120, -+}; -+ -+struct exar8250_platform { -+ int (*rs485_config)(struct uart_port *, struct serial_rs485 *); -+ int (*register_gpio)(struct pci_dev *, 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; -+ struct exar8250_board *board; -+ void *virt; -+ int line[0]; -+}; -+ -+struct fsl8250_data { -+ int line; -+}; -+ -+struct dw8250_data { -+ struct dw8250_port_data data; -+ u8 usr_reg; -+ 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 tegra_uart { -+ struct clk *clk; -+ struct reset_control *rst; -+ int line; -+}; -+ -+struct of_serial_info { -+ struct clk *clk; -+ struct reset_control *rst; -+ int type; -+ int line; -+}; -+ -+enum amba_vendor { -+ AMBA_VENDOR_ARM = 65, -+ AMBA_VENDOR_ST = 128, -+ AMBA_VENDOR_QCOM = 81, -+ AMBA_VENDOR_LSI = 182, -+ AMBA_VENDOR_LINUX = 254, -+}; -+ -+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 (*exit)(); -+}; -+ -+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_sgbuf { -+ struct scatterlist sg; -+ char *buf; -+}; -+ -+struct pl011_dmarx_data { -+ struct dma_chan *chan; -+ struct completion complete; -+ bool use_buf_b; -+ struct pl011_sgbuf sgbuf_a; -+ struct pl011_sgbuf sgbuf_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; -+ struct scatterlist sg; -+ 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 dmacr; -+ unsigned int im; -+ unsigned int old_status; -+ unsigned int fifosize; -+ unsigned int old_cr; -+ unsigned int fixed_baud; -+ char type[12]; -+ bool using_tx_dma; -+ bool using_rx_dma; -+ struct pl011_dmarx_data dmarx; -+ struct pl011_dmatx_data dmatx; -+ bool dma_probed; -+}; -+ -+struct gpio_array___2; -+ -+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___2 { -+ struct uart_port *port; -+ struct gpio_desc *gpio[6]; -+ int irq[6]; -+ unsigned int mctrl_prev; -+ bool mctrl_on; -+}; -+ -+struct memdev { -+ const char *name; -+ umode_t mode; -+ const struct file_operations *fops; -+ fmode_t fmode; -+}; -+ -+struct timer_rand_state { -+ cycles_t last_time; -+ long int last_delta; -+ long int last_delta2; -+}; -+ -+struct trace_event_raw_add_device_randomness { -+ struct trace_entry ent; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__mix_pool_bytes { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_credit_entropy_bits { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bits; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_debit_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int debit_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_input_randomness { -+ struct trace_entry ent; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_disk_randomness { -+ struct trace_entry ent; -+ dev_t dev; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__get_random_bytes { -+ struct trace_entry ent; -+ int nbytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__extract_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int nbytes; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_urandom_read { -+ struct trace_entry ent; -+ int got_bits; -+ int pool_left; -+ int input_left; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_prandom_u32 { -+ struct trace_entry ent; -+ unsigned int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_add_device_randomness {}; -+ -+struct trace_event_data_offsets_random__mix_pool_bytes {}; -+ -+struct trace_event_data_offsets_credit_entropy_bits {}; -+ -+struct trace_event_data_offsets_debit_entropy {}; -+ -+struct trace_event_data_offsets_add_input_randomness {}; -+ -+struct trace_event_data_offsets_add_disk_randomness {}; -+ -+struct trace_event_data_offsets_random__get_random_bytes {}; -+ -+struct trace_event_data_offsets_random__extract_entropy {}; -+ -+struct trace_event_data_offsets_urandom_read {}; -+ -+struct trace_event_data_offsets_prandom_u32 {}; -+ -+typedef void (*btf_trace_add_device_randomness)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes_nolock)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_credit_entropy_bits)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_debit_entropy)(void *, const char *, int); -+ -+typedef void (*btf_trace_add_input_randomness)(void *, int); -+ -+typedef void (*btf_trace_add_disk_randomness)(void *, dev_t, int); -+ -+typedef void (*btf_trace_get_random_bytes)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_get_random_bytes_arch)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_extract_entropy)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_urandom_read)(void *, int, int, int); -+ -+typedef void (*btf_trace_prandom_u32)(void *, unsigned int); -+ -+struct poolinfo { -+ int poolbitshift; -+ int poolwords; -+ int poolbytes; -+ int poolfracbits; -+ int tap1; -+ int tap2; -+ int tap3; -+ int tap4; -+ int tap5; -+}; -+ -+struct crng_state { -+ __u32 state[16]; -+ long unsigned int init_time; -+ spinlock_t lock; -+}; -+ -+struct entropy_store { -+ const struct poolinfo *poolinfo; -+ __u32 *pool; -+ const char *name; -+ spinlock_t lock; -+ short unsigned int add_ptr; -+ short unsigned int input_rotate; -+ int entropy_count; -+ unsigned int last_data_init: 1; -+ __u8 last_data[10]; -+}; -+ -+struct fast_pool { -+ __u32 pool[4]; -+ long unsigned int last; -+ short unsigned int reg_idx; -+ unsigned char count; -+}; -+ -+struct batched_entropy { -+ union { -+ u64 entropy_u64[8]; -+ u32 entropy_u32[16]; -+ }; -+ unsigned int position; -+ spinlock_t batch_lock; -+}; -+ -+struct virtrng_info { -+ struct hwrng hwrng; -+ struct virtqueue *vq; -+ struct completion have_data; -+ char name[25]; -+ unsigned int data_avail; -+ int index; -+ bool busy; -+ bool hwrng_register_done; -+ bool hwrng_removed; -+}; -+ -+struct hisi_rng { -+ void *base; -+ struct hwrng rng; -+}; -+ -+enum tpm2_startup_types { -+ TPM2_SU_CLEAR = 0, -+ TPM2_SU_STATE = 1, -+}; -+ -+enum tpm_chip_flags { -+ 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, -+}; -+ -+enum tpm2_structures { -+ TPM2_ST_NO_SESSIONS = 32769, -+ TPM2_ST_SESSIONS = 32770, -+}; -+ -+enum tpm2_return_codes { -+ TPM2_RC_SUCCESS = 0, -+ TPM2_RC_HASH = 131, -+ TPM2_RC_HANDLE = 139, -+ TPM2_RC_INITIALIZE = 256, -+ TPM2_RC_FAILURE = 257, -+ TPM2_RC_DISABLED = 288, -+ TPM2_RC_COMMAND_CODE = 323, -+ TPM2_RC_TESTING = 2314, -+ TPM2_RC_REFERENCE_H0 = 2320, -+ TPM2_RC_RETRY = 2338, -+}; -+ -+struct tpm_header { -+ __be16 tag; -+ __be32 length; -+ union { -+ __be32 ordinal; -+ __be32 return_code; -+ }; -+} __attribute__((packed)); -+ -+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]; -+}; -+ -+enum TPM_OPS_FLAGS { -+ TPM_OPS_AUTO_STARTUP = 1, -+}; -+ -+enum tpm2_timeouts { -+ TPM2_TIMEOUT_A = 750, -+ TPM2_TIMEOUT_B = 2000, -+ 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_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_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, -+}; -+ -+struct tpm_buf { -+ unsigned int flags; -+ u8 *data; -+}; -+ -+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 tpm_buf_flags { -+ TPM_BUF_OVERFLOW = 1, -+}; -+ -+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 tpm1_get_random_out { -+ __be32 rng_data_len; -+ u8 rng_data[128]; -+}; -+ -+enum tpm2_const { -+ TPM2_PLATFORM_PCR = 24, -+ TPM2_PCR_SELECT_MIN = 3, -+}; -+ -+enum tpm2_permanent_handles { -+ TPM2_RS_PW = 1073741833, -+}; -+ -+enum tpm2_capabilities { -+ TPM2_CAP_HANDLES = 1, -+ TPM2_CAP_COMMANDS = 2, -+ TPM2_CAP_PCRS = 5, -+ TPM2_CAP_TPM_PROPERTIES = 6, -+}; -+ -+enum tpm2_properties { -+ TPM_PT_TOTAL_COMMANDS = 297, -+}; -+ -+enum tpm2_cc_attrs { -+ TPM2_CC_ATTR_CHANDLES = 25, -+ TPM2_CC_ATTR_RHANDLE = 28, -+}; -+ -+struct tpm2_hash { -+ unsigned int crypto_id; -+ unsigned int tpm_id; -+}; -+ -+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_null_auth_area { -+ __be32 handle; -+ __be16 nonce_size; -+ u8 attributes; -+ __be16 auth_size; -+} __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 tpmrm_priv { -+ struct file_priv priv; -+ struct tpm_space space; -+}; -+ -+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 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; -+}; -+ -+struct tcpa_event { -+ u32 pcr_index; -+ u32 event_type; -+ u8 pcr_value[20]; -+ u32 event_size; -+ u8 event_data[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 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, -+}; -+ -+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 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]; -+}; -+ -+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 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; -+ }; -+} __attribute__((packed)); -+ -+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 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_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, -+}; -+ -+enum tis_defaults { -+ TIS_MEM_LEN = 20480, -+ TIS_SHORT_TIMEOUT = 750, -+ TIS_LONG_TIMEOUT = 2000, -+}; -+ -+enum tpm_tis_flags { -+ TPM_TIS_ITPM_WORKAROUND = 1, -+ TPM_TIS_INVALID_STATUS = 2, -+}; -+ -+struct tpm_tis_phy_ops; -+ -+struct tpm_tis_data { -+ u16 manufacturer_id; -+ int locality; -+ int irq; -+ bool irq_tested; -+ 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; -+}; -+ -+struct tpm_tis_phy_ops { -+ int (*read_bytes)(struct tpm_tis_data *, u32, u16, u8 *); -+ int (*write_bytes)(struct tpm_tis_data *, u32, u16, const u8 *); -+ int (*read16)(struct tpm_tis_data *, u32, u16 *); -+ int (*read32)(struct tpm_tis_data *, u32, u32 *); -+ int (*write32)(struct tpm_tis_data *, u32, u32); -+}; -+ -+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]; -+}; -+ -+struct tpm_info { -+ struct resource res; -+ int irq; -+}; -+ -+struct tpm_tis_tcg_phy { -+ struct tpm_tis_data priv; -+ void *iobase; -+}; -+ -+struct arm_smccc_quirk { -+ int id; -+ union { -+ long unsigned int a6; -+ } state; -+}; -+ -+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; -+}; -+ -+struct tpm2_crb_smc { -+ u32 interrupt; -+ u8 interrupt_flags; -+ u8 op_flags; -+ u16 reserved2; -+ u32 smc_func_id; -+}; -+ -+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, -+ IO_PGTABLE_NUM_FMTS = 7, -+}; -+ -+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; -+ 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 io_pgtable_ops { -+ int (*map)(struct io_pgtable_ops *, long unsigned int, phys_addr_t, size_t, int, gfp_t); -+ 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)(struct io_pgtable_ops *, long unsigned int, size_t, struct iommu_iotlb_gather *); -+ 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); -+}; -+ -+enum arm_smmu_s2cr_privcfg { -+ S2CR_PRIVCFG_DEFAULT = 0, -+ S2CR_PRIVCFG_DIPAN = 1, -+ S2CR_PRIVCFG_UNPRIV = 2, -+ S2CR_PRIVCFG_PRIV = 3, -+}; -+ -+enum arm_smmu_s2cr_type { -+ S2CR_TYPE_TRANS = 0, -+ S2CR_TYPE_BYPASS = 1, -+ S2CR_TYPE_FAULT = 2, -+}; -+ -+enum arm_smmu_cbar_type { -+ CBAR_TYPE_S2_TRANS = 0, -+ CBAR_TYPE_S1_TRANS_S2_BYPASS = 1, -+ CBAR_TYPE_S1_TRANS_S2_FAULT = 2, -+ CBAR_TYPE_S1_TRANS_S2_TRANS = 3, -+}; -+ -+enum arm_smmu_arch_version { -+ ARM_SMMU_V1 = 0, -+ ARM_SMMU_V1_64K = 1, -+ ARM_SMMU_V2 = 2, -+}; -+ -+enum arm_smmu_implementation { -+ GENERIC_SMMU = 0, -+ ARM_MMU500 = 1, -+ CAVIUM_SMMUV2 = 2, -+ QCOM_SMMUV2 = 3, -+}; -+ -+struct arm_smmu_s2cr { -+ struct iommu_group *group; -+ int count; -+ enum arm_smmu_s2cr_type type; -+ enum arm_smmu_s2cr_privcfg privcfg; -+ u8 cbndx; -+}; -+ -+struct arm_smmu_smr { -+ u16 mask; -+ u16 id; -+ bool valid; -+ bool pinned; -+}; -+ -+struct arm_smmu_impl; -+ -+struct arm_smmu_cb; -+ -+struct arm_smmu_device { -+ struct device *dev; -+ void *base; -+ unsigned int numpage; -+ unsigned int pgshift; -+ u32 features; -+ enum arm_smmu_arch_version version; -+ enum arm_smmu_implementation model; -+ const struct arm_smmu_impl *impl; -+ u32 num_context_banks; -+ u32 num_s2_context_banks; -+ long unsigned int context_map[2]; -+ struct arm_smmu_cb *cbs; -+ atomic_t irptndx; -+ u32 num_mapping_groups; -+ u16 streamid_mask; -+ u16 smr_mask_mask; -+ struct arm_smmu_smr *smrs; -+ struct arm_smmu_s2cr *s2crs; -+ struct mutex stream_map_mutex; -+ long unsigned int va_size; -+ long unsigned int ipa_size; -+ long unsigned int pa_size; -+ long unsigned int pgsize_bitmap; -+ u32 num_global_irqs; -+ u32 num_context_irqs; -+ unsigned int *irqs; -+ struct clk_bulk_data *clks; -+ int num_clks; -+ spinlock_t global_sync_lock; -+ struct iommu_device iommu; -+}; -+ -+struct arm_smmu_domain; -+ -+struct arm_smmu_impl { -+ u32 (*read_reg)(struct arm_smmu_device *, int, int); -+ void (*write_reg)(struct arm_smmu_device *, int, int, u32); -+ u64 (*read_reg64)(struct arm_smmu_device *, int, int); -+ void (*write_reg64)(struct arm_smmu_device *, int, int, u64); -+ int (*cfg_probe)(struct arm_smmu_device *); -+ int (*reset)(struct arm_smmu_device *); -+ int (*init_context)(struct arm_smmu_domain *, struct io_pgtable_cfg *, struct device *); -+ void (*tlb_sync)(struct arm_smmu_device *, int, int, int); -+ int (*def_domain_type)(struct device *); -+ irqreturn_t (*global_fault)(int, void *); -+ irqreturn_t (*context_fault)(int, void *); -+ int (*alloc_context_bank)(struct arm_smmu_domain *, struct arm_smmu_device *, struct device *, int); -+ void (*write_s2cr)(struct arm_smmu_device *, int); -+ void (*write_sctlr)(struct arm_smmu_device *, int, u32); -+ void (*probe_finalize)(struct arm_smmu_device *, struct device *); -+}; -+ -+struct arm_smmu_cfg; -+ -+struct arm_smmu_cb { -+ u64 ttbr[2]; -+ u32 tcr[2]; -+ u32 mair[2]; -+ struct arm_smmu_cfg *cfg; -+}; -+ -+enum arm_smmu_context_fmt { -+ ARM_SMMU_CTX_FMT_NONE = 0, -+ ARM_SMMU_CTX_FMT_AARCH64 = 1, -+ ARM_SMMU_CTX_FMT_AARCH32_L = 2, -+ ARM_SMMU_CTX_FMT_AARCH32_S = 3, -+}; -+ -+struct arm_smmu_cfg { -+ u8 cbndx; -+ u8 irptndx; -+ union { -+ u16 asid; -+ u16 vmid; -+ }; -+ enum arm_smmu_cbar_type cbar; -+ enum arm_smmu_context_fmt fmt; -+ bool flush_walk_prefer_tlbiasid; -+}; -+ -+enum arm_smmu_domain_stage { -+ ARM_SMMU_DOMAIN_S1 = 0, -+ ARM_SMMU_DOMAIN_S2 = 1, -+ ARM_SMMU_DOMAIN_NESTED = 2, -+ ARM_SMMU_DOMAIN_BYPASS = 3, -+}; -+ -+struct arm_smmu_domain { -+ struct arm_smmu_device *smmu; -+ struct io_pgtable_ops *pgtbl_ops; -+ long unsigned int pgtbl_quirks; -+ const struct iommu_flush_ops *flush_ops; -+ struct arm_smmu_cfg cfg; -+ enum arm_smmu_domain_stage stage; -+ struct mutex init_mutex; -+ spinlock_t cb_lock; -+ struct iommu_domain domain; -+}; -+ -+struct arm_smmu_master_cfg { -+ struct arm_smmu_device *smmu; -+ s16 smendx[0]; -+}; -+ -+struct arm_smmu_match_data { -+ enum arm_smmu_arch_version version; -+ enum arm_smmu_implementation model; -+}; -+ -+struct cavium_smmu { -+ struct arm_smmu_device smmu; -+ u32 id_base; -+}; -+ -+struct icc_node; -+ -+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_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)(struct of_phandle_args *, void *); -+ struct icc_node_data * (*xlate_extended)(struct of_phandle_args *, void *); -+ struct device *dev; -+ int users; -+ bool inter_set; -+ void *data; -+}; -+ -+struct tegra_mc_timing { -+ long unsigned int rate; -+ u32 *emem_data; -+}; -+ -+struct tegra_mc_client { -+ unsigned int id; -+ const char *name; -+ union { -+ unsigned int swgroup; -+ unsigned int sid; -+ }; -+ unsigned int fifo_size; -+ struct { -+ struct { -+ unsigned int reg; -+ unsigned int bit; -+ } smmu; -+ struct { -+ unsigned int reg; -+ unsigned int shift; -+ unsigned int mask; -+ unsigned int def; -+ } la; -+ struct { -+ unsigned int override; -+ unsigned int security; -+ } sid; -+ } regs; -+}; -+ -+struct tegra_smmu_swgroup { -+ const char *name; -+ unsigned int swgroup; -+ unsigned int reg; -+}; -+ -+struct tegra_smmu_group_soc { -+ const char *name; -+ const unsigned int *swgroups; -+ unsigned int num_swgroups; -+}; -+ -+struct tegra_smmu_soc { -+ const struct tegra_mc_client *clients; -+ unsigned int num_clients; -+ const struct tegra_smmu_swgroup *swgroups; -+ unsigned int num_swgroups; -+ const struct tegra_smmu_group_soc *groups; -+ unsigned int num_groups; -+ bool supports_round_robin_arbitration; -+ bool supports_request_limit; -+ unsigned int num_tlb_lines; -+ unsigned int num_asids; -+}; -+ -+struct tegra_mc_reset { -+ const char *name; -+ long unsigned int id; -+ unsigned int control; -+ unsigned int status; -+ unsigned int reset; -+ unsigned int bit; -+}; -+ -+struct tegra_mc; -+ -+struct tegra_mc_reset_ops { -+ int (*hotreset_assert)(struct tegra_mc *, const struct tegra_mc_reset *); -+ int (*hotreset_deassert)(struct tegra_mc *, const struct tegra_mc_reset *); -+ int (*block_dma)(struct tegra_mc *, const struct tegra_mc_reset *); -+ bool (*dma_idling)(struct tegra_mc *, const struct tegra_mc_reset *); -+ int (*unblock_dma)(struct tegra_mc *, const struct tegra_mc_reset *); -+ int (*reset_status)(struct tegra_mc *, const struct tegra_mc_reset *); -+}; -+ -+struct tegra_smmu; -+ -+struct gart_device; -+ -+struct tegra_mc_soc; -+ -+struct tegra_mc { -+ struct device *dev; -+ struct tegra_smmu *smmu; -+ struct gart_device *gart; -+ void *regs; -+ struct clk *clk; -+ int irq; -+ const struct tegra_mc_soc *soc; -+ long unsigned int tick; -+ struct tegra_mc_timing *timings; -+ unsigned int num_timings; -+ struct reset_controller_dev reset; -+ struct icc_provider provider; -+ spinlock_t lock; -+ struct { -+ struct dentry *root; -+ } debugfs; -+}; -+ -+struct tegra_mc_icc_ops { -+ int (*set)(struct icc_node *, struct icc_node *); -+ int (*aggregate)(struct icc_node *, u32, u32, u32, u32 *, u32 *); -+ struct icc_node_data * (*xlate_extended)(struct of_phandle_args *, void *); -+}; -+ -+struct tegra_mc_ops { -+ int (*probe)(struct tegra_mc *); -+ void (*remove)(struct tegra_mc *); -+ int (*suspend)(struct tegra_mc *); -+ int (*resume)(struct tegra_mc *); -+ irqreturn_t (*handle_irq)(int, void *); -+ int (*probe_device)(struct tegra_mc *, struct device *); -+}; -+ -+struct tegra_mc_soc { -+ const struct tegra_mc_client *clients; -+ unsigned int num_clients; -+ const long unsigned int *emem_regs; -+ unsigned int num_emem_regs; -+ unsigned int num_address_bits; -+ unsigned int atom_size; -+ u8 client_id_mask; -+ const struct tegra_smmu_soc *smmu; -+ u32 intmask; -+ const struct tegra_mc_reset_ops *reset_ops; -+ const struct tegra_mc_reset *resets; -+ unsigned int num_resets; -+ const struct tegra_mc_icc_ops *icc_ops; -+ const struct tegra_mc_ops *ops; -+}; -+ -+struct nvidia_smmu { -+ struct arm_smmu_device smmu; -+ void *bases[2]; -+ unsigned int num_instances; -+ struct tegra_mc *mc; -+}; -+ -+struct io_pgtable { -+ enum io_pgtable_fmt fmt; -+ void *cookie; -+ struct io_pgtable_cfg cfg; -+ struct io_pgtable_ops ops; -+}; -+ -+struct adreno_smmu_fault_info { -+ u64 far; -+ u64 ttbr0; -+ u32 contextidr; -+ u32 fsr; -+ u32 fsynr0; -+ u32 fsynr1; -+ u32 cbfrsynra; -+}; -+ -+struct adreno_smmu_priv { -+ const void *cookie; -+ const struct io_pgtable_cfg * (*get_ttbr1_cfg)(const void *); -+ int (*set_ttbr0_cfg)(const void *, const struct io_pgtable_cfg *); -+ void (*get_fault_info)(const void *, struct adreno_smmu_fault_info *); -+ void (*set_stall)(const void *, bool); -+ void (*resume_translation)(const void *, bool); -+}; -+ -+struct qcom_smmu { -+ struct arm_smmu_device smmu; -+ bool bypass_quirk; -+ u8 bypass_cbndx; -+ u32 stall_enabled; -+}; -+ -+enum iommu_fault_type { -+ IOMMU_FAULT_DMA_UNRECOV = 1, -+ IOMMU_FAULT_PAGE_REQ = 2, -+}; -+ -+enum iommu_fault_reason { -+ IOMMU_FAULT_REASON_UNKNOWN = 0, -+ IOMMU_FAULT_REASON_PASID_FETCH = 1, -+ IOMMU_FAULT_REASON_BAD_PASID_ENTRY = 2, -+ IOMMU_FAULT_REASON_PASID_INVALID = 3, -+ IOMMU_FAULT_REASON_WALK_EABT = 4, -+ IOMMU_FAULT_REASON_PTE_FETCH = 5, -+ IOMMU_FAULT_REASON_PERMISSION = 6, -+ IOMMU_FAULT_REASON_ACCESS = 7, -+ IOMMU_FAULT_REASON_OOR_ADDRESS = 8, -+}; -+ -+enum iommu_page_response_code { -+ IOMMU_PAGE_RESP_SUCCESS = 0, -+ IOMMU_PAGE_RESP_INVALID = 1, -+ IOMMU_PAGE_RESP_FAILURE = 2, -+}; -+ -+enum pri_resp { -+ PRI_RESP_DENY = 0, -+ PRI_RESP_FAIL = 1, -+ PRI_RESP_SUCC = 2, -+}; -+ -+struct arm_smmu_cmdq_ent { -+ u8 opcode; -+ bool substream_valid; -+ union { -+ struct { -+ u32 sid; -+ } prefetch; -+ struct { -+ u32 sid; -+ u32 ssid; -+ union { -+ bool leaf; -+ u8 span; -+ }; -+ } cfgi; -+ struct { -+ u8 num; -+ u8 scale; -+ u16 asid; -+ u16 vmid; -+ bool leaf; -+ u8 ttl; -+ u8 tg; -+ u64 addr; -+ } tlbi; -+ struct { -+ u32 sid; -+ u32 ssid; -+ u64 addr; -+ u8 size; -+ bool global; -+ } atc; -+ struct { -+ u32 sid; -+ u32 ssid; -+ u16 grpid; -+ enum pri_resp resp; -+ } pri; -+ struct { -+ u32 sid; -+ u16 stag; -+ u8 resp; -+ } resume; -+ struct { -+ u64 msiaddr; -+ } sync; -+ }; -+}; -+ -+struct arm_smmu_ll_queue { -+ union { -+ u64 val; -+ struct { -+ u32 prod; -+ u32 cons; -+ }; -+ struct { -+ atomic_t prod; -+ atomic_t cons; -+ } atomic; -+ u8 __pad[64]; -+ }; -+ u32 max_n_shift; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct arm_smmu_queue { -+ struct arm_smmu_ll_queue llq; -+ int irq; -+ __le64 *base; -+ dma_addr_t base_dma; -+ u64 q_base; -+ size_t ent_dwords; -+ u32 *prod_reg; -+ u32 *cons_reg; -+ long: 64; -+}; -+ -+struct arm_smmu_queue_poll { -+ ktime_t timeout; -+ unsigned int delay; -+ unsigned int spin_cnt; -+ bool wfe; -+}; -+ -+struct arm_smmu_cmdq { -+ struct arm_smmu_queue q; -+ atomic_long_t *valid_map; -+ atomic_t owner_prod; -+ atomic_t lock; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct arm_smmu_cmdq_batch { -+ u64 cmds[128]; -+ int num; -+}; -+ -+struct iopf_queue; -+ -+struct arm_smmu_evtq { -+ struct arm_smmu_queue q; -+ struct iopf_queue *iopf; -+ u32 max_stalls; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct arm_smmu_priq { -+ struct arm_smmu_queue q; -+}; -+ -+struct arm_smmu_strtab_l1_desc { -+ u8 span; -+ __le64 *l2ptr; -+ dma_addr_t l2ptr_dma; -+}; -+ -+struct arm_smmu_ctx_desc { -+ u16 asid; -+ u64 ttbr; -+ u64 tcr; -+ u64 mair; -+ refcount_t refs; -+ struct mm_struct *mm; -+}; -+ -+struct arm_smmu_l1_ctx_desc { -+ __le64 *l2ptr; -+ dma_addr_t l2ptr_dma; -+}; -+ -+struct arm_smmu_ctx_desc_cfg { -+ __le64 *cdtab; -+ dma_addr_t cdtab_dma; -+ struct arm_smmu_l1_ctx_desc *l1_desc; -+ unsigned int num_l1_ents; -+}; -+ -+struct arm_smmu_s1_cfg { -+ struct arm_smmu_ctx_desc_cfg cdcfg; -+ struct arm_smmu_ctx_desc cd; -+ u8 s1fmt; -+ u8 s1cdmax; -+}; -+ -+struct arm_smmu_s2_cfg { -+ u16 vmid; -+ u64 vttbr; -+ u64 vtcr; -+}; -+ -+struct arm_smmu_strtab_cfg { -+ __le64 *strtab; -+ dma_addr_t strtab_dma; -+ struct arm_smmu_strtab_l1_desc *l1_desc; -+ unsigned int num_l1_ents; -+ u64 strtab_base; -+ u32 strtab_base_cfg; -+}; -+ -+struct arm_smmu_device___2 { -+ struct device *dev; -+ void *base; -+ void *page1; -+ u32 features; -+ u32 options; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct arm_smmu_cmdq cmdq; -+ struct arm_smmu_evtq evtq; -+ struct arm_smmu_priq priq; -+ int gerr_irq; -+ int combined_irq; -+ long unsigned int ias; -+ long unsigned int oas; -+ long unsigned int pgsize_bitmap; -+ unsigned int asid_bits; -+ unsigned int vmid_bits; -+ long unsigned int vmid_map[1024]; -+ unsigned int ssid_bits; -+ unsigned int sid_bits; -+ struct arm_smmu_strtab_cfg strtab_cfg; -+ struct iommu_device iommu; -+ struct rb_root streams; -+ struct mutex streams_mutex; -+ long: 64; -+ long: 64; -+}; -+ -+struct arm_smmu_master; -+ -+struct arm_smmu_stream { -+ u32 id; -+ struct arm_smmu_master *master; -+ struct rb_node node; -+}; -+ -+struct arm_smmu_domain___2; -+ -+struct arm_smmu_master { -+ struct arm_smmu_device___2 *smmu; -+ struct device *dev; -+ struct arm_smmu_domain___2 *domain; -+ struct list_head domain_head; -+ struct arm_smmu_stream *streams; -+ unsigned int num_streams; -+ bool ats_enabled; -+ bool stall_enabled; -+ bool sva_enabled; -+ bool iopf_enabled; -+ struct list_head bonds; -+ unsigned int ssid_bits; -+}; -+ -+struct arm_smmu_domain___2 { -+ struct arm_smmu_device___2 *smmu; -+ struct mutex init_mutex; -+ struct io_pgtable_ops *pgtbl_ops; -+ bool stall_enabled; -+ atomic_t nr_ats_masters; -+ enum arm_smmu_domain_stage stage; -+ union { -+ struct arm_smmu_s1_cfg s1_cfg; -+ struct arm_smmu_s2_cfg s2_cfg; -+ }; -+ struct iommu_domain domain; -+ struct list_head devices; -+ spinlock_t devices_lock; -+ struct list_head mmu_notifiers; -+}; -+ -+enum arm_smmu_msi_index { -+ EVTQ_MSI_INDEX = 0, -+ GERROR_MSI_INDEX = 1, -+ PRIQ_MSI_INDEX = 2, -+ ARM_SMMU_MAX_MSIS = 3, -+}; -+ -+struct arm_smmu_option_prop { -+ u32 opt; -+ const char *prop; -+}; -+ -+typedef unsigned int ioasid_t; -+ -+struct arm_smmu_mmu_notifier { -+ struct mmu_notifier mn; -+ struct arm_smmu_ctx_desc *cd; -+ bool cleared; -+ refcount_t refs; -+ struct list_head list; -+ struct arm_smmu_domain___2 *domain; -+}; -+ -+struct arm_smmu_bond { -+ struct iommu_sva sva; -+ struct mm_struct *mm; -+ struct arm_smmu_mmu_notifier *smmu_mn; -+ struct list_head list; -+ refcount_t refs; -+}; -+ -+struct iommu_group { -+ struct kobject kobj; -+ struct kobject *devices_kobj; -+ struct list_head devices; -+ struct mutex mutex; -+ struct blocking_notifier_head notifier; -+ void *iommu_data; -+ void (*iommu_data_release)(void *); -+ char *name; -+ int id; -+ struct iommu_domain *default_domain; -+ struct iommu_domain *domain; -+ struct list_head entry; -+}; -+ -+enum iommu_inv_granularity { -+ IOMMU_INV_GRANU_DOMAIN = 0, -+ IOMMU_INV_GRANU_PASID = 1, -+ IOMMU_INV_GRANU_ADDR = 2, -+ IOMMU_INV_GRANU_NR = 3, -+}; -+ -+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; -+ 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 { -+ struct msi_desc *msi_desc; -+ 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; -+ }; -+}; -+ -+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); -+}; -+ -+struct group_for_pci_data { -+ struct pci_dev *pdev; -+ struct iommu_group *group; -+}; -+ -+struct __group_domain_type { -+ struct device *dev; -+ unsigned int type; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_iommu_device_event { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_map {}; -+ -+struct trace_event_data_offsets_unmap {}; -+ -+struct trace_event_data_offsets_iommu_error { -+ u32 device; -+ u32 driver; -+}; -+ -+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_detach_device_from_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_dma_cookie_type { -+ IOMMU_DMA_IOVA_COOKIE = 0, -+ IOMMU_DMA_MSI_COOKIE = 1, -+}; -+ -+struct iova { -+ struct rb_node node; -+ long unsigned int pfn_hi; -+ long unsigned int pfn_lo; -+}; -+ -+struct iova_magazine; -+ -+struct iova_cpu_rcache; -+ -+struct iova_rcache { -+ spinlock_t lock; -+ long unsigned int depot_size; -+ struct iova_magazine *depot[32]; -+ struct iova_cpu_rcache *cpu_rcaches; -+}; -+ -+struct iova_domain; -+ -+typedef void (*iova_flush_cb)(struct iova_domain *); -+ -+typedef void (*iova_entry_dtor)(long unsigned int); -+ -+struct iova_fq; -+ -+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_fq *fq; -+ atomic64_t fq_flush_start_cnt; -+ atomic64_t fq_flush_finish_cnt; -+ struct iova anchor; -+ struct iova_rcache rcaches[6]; -+ iova_flush_cb flush_cb; -+ iova_entry_dtor entry_dtor; -+ struct timer_list fq_timer; -+ atomic_t fq_timer_on; -+ struct hlist_node cpuhp_dead; -+}; -+ -+struct iommu_dma_cookie { -+ enum iommu_dma_cookie_type type; -+ union { -+ struct iova_domain iovad; -+ dma_addr_t msi_iova; -+ }; -+ struct list_head msi_page_list; -+ struct iommu_domain *fq_domain; -+}; -+ -+struct iova_fq_entry { -+ long unsigned int iova_pfn; -+ long unsigned int pages; -+ long unsigned int data; -+ u64 counter; -+}; -+ -+struct iova_fq { -+ struct iova_fq_entry entries[256]; -+ unsigned int head; -+ unsigned int tail; -+ spinlock_t lock; -+}; -+ -+struct iommu_dma_msi_page { -+ struct list_head list; -+ dma_addr_t iova; -+ phys_addr_t phys; -+}; -+ -+struct io_pgtable_init_fns { -+ struct io_pgtable * (*alloc)(struct io_pgtable_cfg *, void *); -+ void (*free)(struct io_pgtable *); -+}; -+ -+struct arm_lpae_io_pgtable { -+ struct io_pgtable iop; -+ int pgd_bits; -+ int start_level; -+ int bits_per_level; -+ void *pgd; -+}; -+ -+typedef u64 arm_lpae_iopte; -+ -+typedef ioasid_t (*ioasid_alloc_fn_t)(ioasid_t, ioasid_t, void *); -+ -+typedef void (*ioasid_free_fn_t)(ioasid_t, void *); -+ -+struct ioasid_set { -+ int dummy; -+}; -+ -+struct ioasid_allocator_ops { -+ ioasid_alloc_fn_t alloc; -+ ioasid_free_fn_t free; -+ struct list_head list; -+ void *pdata; -+}; -+ -+struct ioasid_data { -+ ioasid_t id; -+ struct ioasid_set *set; -+ void *private; -+ struct callback_head rcu; -+ refcount_t refs; -+}; -+ -+struct ioasid_allocator_data { -+ struct ioasid_allocator_ops *ops; -+ struct list_head list; -+ struct list_head slist; -+ long unsigned int flags; -+ struct xarray xa; -+ struct callback_head rcu; -+}; -+ -+struct iova_magazine { -+ long unsigned int size; -+ long unsigned int pfns[128]; -+}; -+ -+struct iova_cpu_rcache { -+ spinlock_t lock; -+ struct iova_magazine *loaded; -+ struct iova_magazine *prev; -+}; -+ -+struct of_pci_iommu_alias_info { -+ struct device *dev; -+ struct device_node *np; -+}; -+ -+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; -+}; -+ -+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; -+ __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 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; -+ struct mutex mutex; -+ 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 iopf_queue___2; -+ -+struct iopf_device_param { -+ struct device *dev; -+ struct iopf_queue___2 *queue; -+ struct list_head queue_list; -+ struct list_head partial; -+}; -+ -+struct iopf_queue___2 { -+ struct workqueue_struct *wq; -+ struct list_head devices; -+ struct mutex lock; -+}; -+ -+struct iopf_fault { -+ struct iommu_fault fault; -+ struct list_head list; -+}; -+ -+struct iopf_group { -+ struct iopf_fault last_fault; -+ struct list_head faults; -+ struct work_struct work; -+ struct device *dev; -+}; -+ -+struct drm_dmi_panel_orientation_data { -+ int width; -+ int height; -+ const char * const *bios_dates; -+ int orientation; -+}; -+ -+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; -+ void *cookie; -+ void (*irq_set_state)(void *, bool); -+ unsigned int (*set_vga_decode)(void *, 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[64]; -+ spinlock_t lock; -+}; -+ -+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; -+}; -+ -+enum proc_cn_mcast_op { -+ PROC_CN_MCAST_LISTEN = 1, -+ PROC_CN_MCAST_IGNORE = 2, -+}; -+ -+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 what 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 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 master; -+ -+struct component { -+ struct list_head node; -+ struct master *master; -+ 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 master { -+ struct list_head node; -+ bool bound; -+ const struct component_master_ops *ops; -+ struct device *parent; -+ struct component_match *match; -+}; -+ -+struct fwnode_link { -+ struct fwnode_handle *supplier; -+ struct list_head s_hook; -+ struct fwnode_handle *consumer; -+ struct list_head c_hook; -+}; -+ -+struct wake_irq { -+ struct device *dev; -+ unsigned int status; -+ int irq; -+ const char *name; -+}; -+ -+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 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; -+ struct bus_type *bus; -+ struct kset glue_dirs; -+ struct class *class; -+}; -+ -+struct driver_private { -+ struct kobject kobj; -+ struct klist klist_devices; -+ struct klist_node knode_bus; -+ struct module_kobject *mkobj; -+ struct device_driver *driver; -+}; -+ -+struct dev_ext_attribute { -+ struct device_attribute attr; -+ void *var; -+}; -+ -+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; -+ struct device_driver *async_driver; -+ char *deferred_probe_reason; -+ struct device *device; -+ u8 dead: 1; -+}; -+ -+union device_attr_group_devres { -+ const struct attribute_group *group; -+ const struct attribute_group **groups; -+}; -+ -+struct class_dir { -+ struct kobject kobj; -+ struct class *class; -+}; -+ -+struct root_device { -+ struct device dev; -+ struct module *owner; -+}; -+ -+struct subsys_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+struct subsys_interface { -+ const char *name; -+ 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_attach_data { -+ struct device *dev; -+ bool check_async; -+ bool want_async; -+ bool have_async; -+}; -+ -+struct class_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct class *, struct class_attribute *, char *); -+ ssize_t (*store)(struct class *, struct class_attribute *, const char *, size_t); -+}; -+ -+struct class_attribute_string { -+ struct class_attribute attr; -+ char *str; -+}; -+ -+struct class_compat { -+ struct kobject *kobj; -+}; -+ -+struct irq_affinity_devres { -+ unsigned int count; -+ unsigned int irq[0]; -+}; -+ -+struct platform_object { -+ struct platform_device pdev; -+ char name[0]; -+}; -+ -+struct cpu_attr { -+ struct device_attribute attr; -+ const struct cpumask * const map; -+}; -+ -+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___2 { -+ struct probe *probes[255]; -+ struct mutex *lock; -+}; -+ -+struct devres_node { -+ struct list_head entry; -+ dr_release_t release; -+ const char *name; -+ size_t size; -+}; -+ -+struct devres___2 { -+ 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 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 internal_container { -+ struct klist_node node; -+ struct attribute_container *cont; -+ struct device classdev; -+}; -+ -+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; -+}; -+ -+typedef void * (*devcon_match_fn_t)(struct fwnode_handle *, const char *, void *); -+ -+struct mii_bus; -+ -+struct mdio_device { -+ struct device dev; -+ struct mii_bus *bus; -+ char modalias[32]; -+ int (*bus_match)(struct device *, struct device_driver *); -+ void (*device_free)(struct mdio_device *); -+ void (*device_remove)(struct mdio_device *); -+ int addr; -+ int flags; -+ 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_UP = 3, -+ PHY_RUNNING = 4, -+ PHY_NOLINK = 5, -+ PHY_CABLETEST = 6, -+}; -+ -+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_QSGMII = 18, -+ PHY_INTERFACE_MODE_TRGMII = 19, -+ PHY_INTERFACE_MODE_100BASEX = 20, -+ PHY_INTERFACE_MODE_1000BASEX = 21, -+ PHY_INTERFACE_MODE_2500BASEX = 22, -+ PHY_INTERFACE_MODE_5GBASER = 23, -+ PHY_INTERFACE_MODE_RXAUI = 24, -+ PHY_INTERFACE_MODE_XAUI = 25, -+ PHY_INTERFACE_MODE_10GBASER = 26, -+ PHY_INTERFACE_MODE_25GBASER = 27, -+ PHY_INTERFACE_MODE_USXGMII = 28, -+ PHY_INTERFACE_MODE_10GKR = 29, -+ PHY_INTERFACE_MODE_MAX = 30, -+} phy_interface_t; -+ -+struct phylink; -+ -+struct phy_driver; -+ -+struct phy_led_trigger; -+ -+struct phy_package_shared; -+ -+struct mii_timestamper; -+ -+struct phy_device { -+ struct mdio_device mdio; -+ struct phy_driver *drv; -+ 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 autoneg: 1; -+ unsigned int link: 1; -+ unsigned int autoneg_complete: 1; -+ unsigned int interrupts: 1; -+ enum phy_state state; -+ u32 dev_flags; -+ phy_interface_t interface; -+ 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]; -+ u32 eee_broken_modes; -+ struct phy_led_trigger *phy_led_triggers; -+ unsigned int phy_num_led_triggers; -+ struct phy_led_trigger *last_triggered; -+ struct phy_led_trigger *led_link_trigger; -+ 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; -+ u8 mdix; -+ u8 mdix_ctrl; -+ void (*phy_link_change)(struct phy_device *, bool); -+ void (*adjust_link)(struct net_device *); -+ const struct macsec_ops *macsec_ops; -+}; -+ -+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 (*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; -+ enum { -+ MDIOBUS_NO_CAP = 0, -+ MDIOBUS_C22 = 1, -+ MDIOBUS_C45 = 2, -+ MDIOBUS_C22_C45 = 3, -+ } probe_capabilities; -+ 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 ifreq *); -+ void (*link_state)(struct mii_timestamper *, struct phy_device *); -+ int (*ts_info)(struct mii_timestamper *, struct ethtool_ts_info *); -+ struct device *device; -+}; -+ -+struct phy_package_shared { -+ int addr; -+ 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 (*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 *); -+ 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 *); -+}; -+ -+struct cache_type_info { -+ const char *size_prop; -+ const char *line_size_props[2]; -+ const char *nr_sets_prop; -+}; -+ -+struct software_node_ref_args { -+ const struct software_node *node; -+ unsigned int nargs; -+ u64 args[8]; -+}; -+ -+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 auxiliary_device_id { -+ char name[32]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct auxiliary_device { -+ struct device dev; -+ const char *name; -+ u32 id; -+}; -+ -+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 req { -+ struct req *next; -+ struct completion done; -+ int err; -+ const char *name; -+ umode_t mode; -+ kuid_t uid; -+ kgid_t gid; -+ struct device *dev; -+}; -+ -+typedef int (*pm_callback_t)(struct device *); -+ -+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; -+}; -+ -+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, -+}; -+ -+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_power_state { -+ s64 power_off_latency_ns; -+ s64 power_on_latency_ns; -+ s64 residency_ns; -+ u64 usage; -+ u64 rejected; -+ struct fwnode_handle *fwnode; -+ ktime_t idle_time; -+ void *data; -+}; -+ -+struct opp_table; -+ -+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 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 suspended_count; -+ unsigned int prepared_count; -+ unsigned int performance_state; -+ cpumask_var_t cpus; -+ 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; -+ unsigned int (*opp_to_performance_state)(struct generic_pm_domain *, struct dev_pm_opp *); -+ int (*set_performance_state)(struct generic_pm_domain *, unsigned int); -+ struct gpd_dev_ops dev_ops; -+ s64 max_off_time_ns; -+ ktime_t next_wakeup; -+ bool max_off_time_changed; -+ bool cached_power_down_ok; -+ bool cached_power_down_state_idx; -+ 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; -+ ktime_t on_time; -+ ktime_t accounting_time; -+ const struct genpd_lock_ops *lock_ops; -+ union { -+ struct mutex mlock; -+ struct { -+ spinlock_t slock; -+ long unsigned int 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; -+ 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 rpm_pstate; -+ ktime_t next_wakeup; -+ void *data; -+}; -+ -+typedef struct generic_pm_domain * (*genpd_xlate_t)(struct of_phandle_args *, void *); -+ -+struct genpd_onecell_data { -+ struct generic_pm_domain **domains; -+ unsigned int num_domains; -+ genpd_xlate_t xlate; -+}; -+ -+struct of_genpd_provider { -+ struct list_head link; -+ struct device_node *node; -+ genpd_xlate_t xlate; -+ void *data; -+}; -+ -+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 builtin_fw { -+ char *name; -+ void *data; -+ long unsigned int size; -+}; -+ -+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; -+ 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; -+}; -+ -+struct node_access_nodes { -+ struct device dev; -+ struct list_head list_node; -+ unsigned int access; -+ struct node_hmem_attrs hmem_attrs; -+}; -+ -+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 for_each_memory_block_cb_data { -+ walk_memory_blocks_func_t func; -+ void *arg; -+}; -+ -+struct reg_sequence { -+ unsigned int reg; -+ unsigned int def; -+ unsigned int delay_us; -+}; -+ -+struct regmap___2; -+ -+struct regmap_async { -+ struct list_head list; -+ struct regmap___2 *map; -+ void *work_buf; -+}; -+ -+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; -+ void (*format_write)(struct regmap___2 *, 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___2 { -+ union { -+ struct mutex mutex; -+ struct { -+ spinlock_t spinlock; -+ long unsigned int spinlock_flags; -+ }; -+ }; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ gfp_t alloc_flags; -+ 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 (*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); -+ 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; -+ 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___2 *); -+ int (*exit)(struct regmap___2 *); -+ void (*debugfs_init)(struct regmap___2 *); -+ int (*read)(struct regmap___2 *, unsigned int, unsigned int *); -+ int (*write)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*sync)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*drop)(struct regmap___2 *, unsigned int, unsigned int); -+}; -+ -+struct regmap_range_node { -+ struct rb_node node; -+ const char *name; -+ struct regmap___2 *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___2 *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_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; -+}; -+ -+struct trace_event_data_offsets_regmap_block { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_sync { -+ u32 name; -+ u32 status; -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_regmap_bool { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regmap_async { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_drop_region { -+ u32 name; -+}; -+ -+typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regcache_sync)(void *, struct regmap___2 *, const char *, const char *); -+ -+typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap___2 *, bool); -+ -+typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap___2 *, bool); -+ -+typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+struct regcache_rbtree_node { -+ void *block; -+ long 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___2 *map; -+ struct list_head link; -+}; -+ -+struct regmap_mmio_context { -+ void *regs; -+ unsigned int val_bytes; -+ bool relaxed_mmio; -+ 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 soc_device___2 { -+ struct device dev; -+ struct soc_device_attribute *attr; -+ int soc_dev_num; -+}; -+ -+struct devcd_entry { -+ struct device devcd_dev; -+ void *data; -+ size_t datalen; -+ 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; -+}; -+ -+struct platform_msi_priv_data { -+ struct device *dev; -+ void *host_data; -+ msi_alloc_info_t arg; -+ irq_write_msi_msg_t write_msg; -+ int devid; -+}; -+ -+struct trace_event_raw_devres { -+ struct trace_entry ent; -+ u32 __data_loc_devname; -+ struct device *dev; -+ const char *op; -+ void *node; -+ const char *name; -+ size_t size; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devres { -+ u32 devname; -+}; -+ -+typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); -+ -+struct test_struct { -+ char *get; -+ char *put; -+ void (*get_handler)(char *); -+ int (*put_handler)(char *, char *); -+}; -+ -+struct test_state { -+ char *name; -+ struct test_struct *tst; -+ int idx; -+ int (*run_test)(int, int); -+ int (*validate_put)(char *); -+}; -+ -+struct syscon_platform_data { -+ const char *label; -+}; -+ -+struct syscon { -+ struct device_node *np; -+ struct regmap *regmap; -+ struct list_head list; -+}; -+ -+struct dax_operations { -+ long int (*direct_access)(struct dax_device *, long unsigned int, long int, void **, pfn_t *); -+ bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); -+ size_t (*copy_from_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ size_t (*copy_to_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); -+}; -+ -+struct dax_device { -+ struct hlist_node list; -+ struct inode inode; -+ struct cdev cdev; -+ const char *host; -+ void *private; -+ long unsigned int flags; -+ const struct dax_operations *ops; -+}; -+ -+enum dax_device_flags { -+ DAXDEV_ALIVE = 0, -+ DAXDEV_WRITE_CACHE = 1, -+ DAXDEV_SYNC = 2, -+}; -+ -+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; -+ int id; -+ struct ida ida; -+ struct device dev; -+ struct dev_pagemap *pgmap; -+ int nr_range; -+ struct dev_dax_range *ranges; -+}; -+ -+enum dev_dax_subsys { -+ DEV_DAX_BUS = 0, -+ DEV_DAX_CLASS = 1, -+}; -+ -+struct dev_dax_data { -+ struct dax_region *dax_region; -+ struct dev_pagemap *pgmap; -+ enum dev_dax_subsys subsys; -+ resource_size_t size; -+ int id; -+}; -+ -+struct dax_device_driver { -+ struct device_driver drv; -+ struct list_head ids; -+ int match_always; -+ 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 memregion_info { -+ int target_node; -+}; -+ -+enum { -+ NDD_ALIASING = 0, -+ NDD_UNARMED = 1, -+ NDD_LOCKED = 2, -+ NDD_SECURITY_OVERWRITE = 3, -+ NDD_WORK_PENDING = 4, -+ NDD_NOBLK = 5, -+ NDD_LABELING = 6, -+ 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, -+ DPA_RESOURCE_ADJUSTED = 1, -+}; -+ -+struct nvdimm; -+ -+struct nvdimm_bus_descriptor; -+ -+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 nvdimm_bus; -+ -+struct cxl_component_regs { -+ void *hdm_decoder; -+}; -+ -+struct cxl_device_regs { -+ void *status; -+ void *mbox; -+ void *memdev; -+}; -+ -+struct cxl_regs { -+ union { -+ struct { -+ void *hdm_decoder; -+ }; -+ struct cxl_component_regs component; -+ }; -+ union { -+ struct { -+ void *status; -+ void *mbox; -+ void *memdev; -+ }; -+ struct cxl_device_regs device_regs; -+ }; -+}; -+ -+struct cxl_reg_map { -+ bool valid; -+ long unsigned int offset; -+ long unsigned int size; -+}; -+ -+struct cxl_component_reg_map { -+ struct cxl_reg_map hdm_decoder; -+}; -+ -+struct cxl_device_reg_map { -+ struct cxl_reg_map status; -+ struct cxl_reg_map mbox; -+ struct cxl_reg_map memdev; -+}; -+ -+struct cxl_register_map { -+ struct list_head list; -+ u64 block_offset; -+ u8 reg_type; -+ u8 barno; -+ union { -+ struct cxl_component_reg_map component_map; -+ struct cxl_device_reg_map device_map; -+ }; -+}; -+ -+enum cxl_decoder_type { -+ CXL_DECODER_ACCELERATOR = 2, -+ CXL_DECODER_EXPANDER = 3, -+}; -+ -+struct cxl_dport; -+ -+struct cxl_decoder { -+ struct device dev; -+ int id; -+ struct range range; -+ int interleave_ways; -+ int interleave_granularity; -+ enum cxl_decoder_type target_type; -+ long unsigned int flags; -+ struct cxl_dport *target[0]; -+}; -+ -+struct cxl_port; -+ -+struct cxl_dport { -+ struct device *dport; -+ int port_id; -+ resource_size_t component_reg_phys; -+ struct cxl_port *port; -+ struct list_head list; -+}; -+ -+enum cxl_nvdimm_brige_state { -+ CXL_NVB_NEW = 0, -+ CXL_NVB_DEAD = 1, -+ CXL_NVB_ONLINE = 2, -+ CXL_NVB_OFFLINE = 3, -+}; -+ -+struct cxl_nvdimm_bridge { -+ struct device dev; -+ struct cxl_port *port; -+ struct nvdimm_bus *nvdimm_bus; -+ struct nvdimm_bus_descriptor nd_desc; -+ struct work_struct state_work; -+ enum cxl_nvdimm_brige_state state; -+}; -+ -+struct cxl_port { -+ struct device dev; -+ struct device *uport; -+ int id; -+ struct list_head dports; -+ struct ida decoder_ida; -+ resource_size_t component_reg_phys; -+}; -+ -+struct cxl_memdev; -+ -+struct cxl_nvdimm { -+ struct device dev; -+ struct cxl_memdev *cxlmd; -+ struct nvdimm *nvdimm; -+}; -+ -+struct cxl_mem; -+ -+struct cxl_memdev { -+ struct device dev; -+ struct cdev cdev; -+ struct cxl_mem *cxlm; -+ int id; -+}; -+ -+struct cxl_driver { -+ const char *name; -+ int (*probe)(struct device *); -+ void (*remove)(struct device *); -+ struct device_driver drv; -+ int id; -+}; -+ -+struct cxl_mem { -+ struct pci_dev *pdev; -+ struct cxl_memdev *cxlmd; -+ struct cxl_regs regs; -+ size_t payload_size; -+ size_t lsa_size; -+ struct mutex mbox_mutex; -+ char firmware_version[16]; -+ long unsigned int *enabled_cmds; -+ struct range pmem_range; -+ struct range ram_range; -+}; -+ -+struct acpi_cedt_header { -+ u8 type; -+ u8 reserved; -+ u16 length; -+}; -+ -+enum acpi_cedt_type { -+ ACPI_CEDT_TYPE_CHBS = 0, -+ ACPI_CEDT_TYPE_CFMWS = 1, -+ ACPI_CEDT_TYPE_RESERVED = 2, -+}; -+ -+struct acpi_cedt_chbs { -+ struct acpi_cedt_header header; -+ u32 uid; -+ u32 cxl_version; -+ u32 reserved; -+ u64 base; -+ u64 length; -+}; -+ -+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 cxl_walk_context { -+ struct device *dev; -+ struct pci_bus *root; -+ struct cxl_port *port; -+ int error; -+ int count; -+}; -+ -+struct seqcount_ww_mutex { -+ seqcount_t seqcount; -+}; -+ -+typedef struct seqcount_ww_mutex seqcount_ww_mutex_t; -+ -+struct dma_buf_map { -+ union { -+ void *vaddr_iomem; -+ void *vaddr; -+ }; -+ bool is_iomem; -+}; -+ -+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 { -+ 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); -+}; -+ -+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_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; -+ -+struct dma_buf_attachment; -+ -+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 dma_buf_map *); -+ void (*vunmap)(struct dma_buf *, struct dma_buf_map *); -+}; -+ -+struct dma_buf_poll_cb_t { -+ struct dma_fence_cb cb; -+ wait_queue_head_t *poll; -+ __poll_t active; -+}; -+ -+struct dma_resv; -+ -+struct dma_buf { -+ size_t size; -+ struct file *file; -+ struct list_head attachments; -+ const struct dma_buf_ops *ops; -+ struct mutex lock; -+ unsigned int vmapping_counter; -+ struct dma_buf_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_excl; -+ struct dma_buf_poll_cb_t cb_shared; -+}; -+ -+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_resv_list; -+ -+struct dma_resv { -+ struct ww_mutex lock; -+ seqcount_ww_mutex_t seq; -+ struct dma_fence *fence_excl; -+ struct dma_resv_list *fence; -+}; -+ -+struct dma_buf_attach_ops { -+ bool allow_peer2peer; -+ void (*move_notify)(struct dma_buf_attachment *); -+}; -+ -+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_list { -+ struct callback_head rcu; -+ u32 shared_count; -+ u32 shared_max; -+ struct dma_fence *shared[0]; -+}; -+ -+struct dma_buf_sync { -+ __u64 flags; -+}; -+ -+struct dma_buf_list { -+ struct list_head head; -+ struct mutex lock; -+}; -+ -+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; -+ u32 timeline; -+}; -+ -+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_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_chain { -+ struct dma_fence base; -+ spinlock_t lock; -+ struct dma_fence *prev; -+ u64 prev_seqno; -+ struct dma_fence *fence; -+ struct dma_fence_cb cb; -+ struct irq_work work; -+}; -+ -+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 seqno_fence_condition { -+ SEQNO_FENCE_WAIT_GEQUAL = 0, -+ SEQNO_FENCE_WAIT_NONZERO = 1, -+}; -+ -+struct seqno_fence { -+ struct dma_fence base; -+ const struct dma_fence_ops *ops; -+ struct dma_buf *sync_buf; -+ uint32_t seqno_ofs; -+ enum seqno_fence_condition condition; -+}; -+ -+struct dma_heap; -+ -+struct dma_heap_ops { -+ struct dma_buf * (*allocate)(struct dma_heap *, long unsigned int, long unsigned int, long unsigned int); -+}; -+ -+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_export_info { -+ const char *name; -+ const struct dma_heap_ops *ops; -+ void *priv; -+}; -+ -+struct dma_heap_allocation_data { -+ __u64 len; -+ __u32 fd; -+ __u32 fd_flags; -+ __u64 heap_flags; -+}; -+ -+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_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; -+}; -+ -+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_TARGET_FAILURE = 16, -+ DID_NEXUS_FAILURE = 17, -+ DID_ALLOC_FAILURE = 18, -+ DID_MEDIUM_ERROR = 19, -+ 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; -+ -+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; -+ unsigned char current_tag; -+ struct scsi_target *sdev_target; -+ blist_flags_t sdev_bflags; -+ unsigned int eh_timeout; -+ 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 no_report_opcodes: 1; -+ unsigned int no_write_same: 1; -+ unsigned int use_16_for_rw: 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 manage_start_stop: 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; -+ 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; -+ struct device sdev_gendev; -+ struct device sdev_dev; -+ struct execute_work ew; -+ struct work_struct requeue_work; -+ struct scsi_device_handler *handler; -+ void *handler_data; -+ size_t dma_drain_len; -+ void *dma_drain_buf; -+ 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_cmd_q; -+ struct task_struct *ehandler; -+ struct completion *eh_action; -+ wait_queue_head_t host_wait; -+ struct scsi_host_template *hostt; -+ struct scsi_transport_template *transportt; -+ 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 max_segment_size; -+ 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 short_inquiry: 1; -+ unsigned int no_scsi2_lun_in_cdb: 1; -+ char work_q_name[20]; -+ 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; -+ 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_host_cmd_pool; -+ -+struct scsi_cmnd; -+ -+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 (*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); -+ int (*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 blk_eh_timer_return (*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; -+ struct proc_dir_entry *proc_dir; -+ 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; -+ long unsigned int dma_boundary; -+ long unsigned int virt_boundary_mask; -+ short int cmd_per_lun; -+ unsigned char present; -+ 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 max_host_blocked; -+ struct device_attribute **shost_attrs; -+ struct device_attribute **sdev_attrs; -+ const struct attribute_group **sdev_groups; -+ u64 vendor_id; -+ struct scsi_host_cmd_pool *cmd_pool; -+ int rpm_autosuspend_delay; -+}; -+ -+struct scsi_data_buffer { -+ struct sg_table table; -+ unsigned int length; -+}; -+ -+struct scsi_pointer { -+ char *ptr; -+ int this_residual; -+ struct scatterlist *buffer; -+ int buffers_residual; -+ dma_addr_t dma_handle; -+ volatile int Status; -+ volatile int Message; -+ volatile int have_data_in; -+ volatile int sent_command; -+ volatile int phase; -+}; -+ -+struct scsi_cmnd { -+ struct scsi_request req; -+ 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; -+ short unsigned int cmd_len; -+ enum dma_data_direction sc_data_direction; -+ unsigned char *cmnd; -+ struct scsi_data_buffer sdb; -+ struct scsi_data_buffer *prot_sdb; -+ unsigned int underflow; -+ unsigned int transfersize; -+ struct request *request; -+ unsigned char *sense_buffer; -+ void (*scsi_done)(struct scsi_cmnd *); -+ struct scsi_pointer SCp; -+ unsigned char *host_scribble; -+ int result; -+ int flags; -+ long unsigned int state; -+ unsigned char tag; -+ unsigned int extra_len; -+}; -+ -+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; -+ 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 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; -+ 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; -+ 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; -+ unsigned int data_sglen; -+ unsigned int prot_sglen; -+ unsigned char prot_op; -+ u32 __data_loc_cmnd; -+ 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; -+}; -+ -+struct trace_event_data_offsets_scsi_dispatch_cmd_error { -+ u32 cmnd; -+}; -+ -+struct trace_event_data_offsets_scsi_cmd_done_timeout_template { -+ u32 cmnd; -+}; -+ -+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 *); -+ -+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 scsi_host_busy_iter_data { -+ bool (*fn)(struct scsi_cmnd *, void *, bool); -+ void *priv; -+}; -+ -+struct scsi_idlun { -+ __u32 dev_id; -+ __u32 host_unique_id; -+}; -+ -+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_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; -+ struct scsi_data_buffer sdb; -+ unsigned char eh_cmnd[16]; -+ struct scatterlist sense_sgl; -+}; -+ -+struct scsi_varlen_cdb_hdr { -+ __u8 opcode; -+ __u8 control; -+ __u8 misc[5]; -+ __u8 additional_cdb_length; -+ __be16 service_action; -+}; -+ -+struct scsi_mode_data { -+ __u32 length; -+ __u16 block_descriptor_length; -+ __u8 medium_type; -+ __u8 device_specific; -+ __u8 header_length; -+ __u8 longlba: 1; -+}; -+ -+struct scsi_event { -+ enum scsi_device_event evt_type; -+ struct list_head node; -+}; -+ -+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_RETRY = 2, -+ ACTION_DELAYED_RETRY = 3, -+}; -+ -+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_lun { -+ __u8 scsi_lun[8]; -+}; -+ -+enum scsi_timeouts { -+ SCSI_DEFAULT_EH_TIMEOUT = 1000, -+}; -+ -+enum scsi_scan_mode { -+ SCSI_SCAN_INITIAL = 0, -+ SCSI_SCAN_RESCAN = 1, -+ SCSI_SCAN_MANUAL = 2, -+}; -+ -+struct async_scan_data { -+ struct list_head list; -+ struct Scsi_Host *shost; -+ struct completion prev_finished; -+}; -+ -+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_nl_hdr { -+ __u8 version; -+ __u8 transport; -+ __u16 magic; -+ __u16 msgtype; -+ __u16 msglen; -+}; -+ -+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 rdac_mode_6_hdr { -+ u8 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u8 block_desc_len; -+}; -+ -+struct rdac_mode_10_hdr { -+ u16 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u16 reserved; -+ u16 block_desc_len; -+}; -+ -+struct rdac_mode_common { -+ u8 controller_serial[16]; -+ u8 alt_controller_serial[16]; -+ u8 rdac_mode[2]; -+ u8 alt_rdac_mode[2]; -+ u8 quiescence_timeout; -+ u8 rdac_options; -+}; -+ -+struct rdac_pg_legacy { -+ struct rdac_mode_6_hdr hdr; -+ u8 page_code; -+ u8 page_len; -+ struct rdac_mode_common common; -+ u8 lun_table[32]; -+ u8 reserved2[32]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct rdac_pg_expanded { -+ struct rdac_mode_10_hdr hdr; -+ u8 page_code; -+ u8 subpage_code; -+ u8 page_len[2]; -+ struct rdac_mode_common common; -+ u8 lun_table[256]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct c9_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 avte_cvp; -+ u8 path_prio; -+ u8 reserved2[38]; -+}; -+ -+struct c4_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 subsys_id[16]; -+ u8 revision[4]; -+ u8 slot_id[2]; -+ u8 reserved[2]; -+}; -+ -+struct c8_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 reserved2[3]; -+ u8 vol_uniq_id_len; -+ u8 vol_uniq_id[16]; -+ u8 vol_user_label_len; -+ u8 vol_user_label[60]; -+ u8 array_uniq_id_len; -+ u8 array_unique_id[16]; -+ u8 array_user_label_len; -+ u8 array_user_label[60]; -+ u8 lun[8]; -+}; -+ -+struct rdac_controller { -+ u8 array_id[16]; -+ int use_ms10; -+ struct kref kref; -+ struct list_head node; -+ union { -+ struct rdac_pg_legacy legacy; -+ struct rdac_pg_expanded expanded; -+ } mode_select; -+ u8 index; -+ u8 array_name[31]; -+ struct Scsi_Host *host; -+ spinlock_t ms_lock; -+ int ms_queued; -+ struct work_struct ms_work; -+ struct scsi_device *ms_sdev; -+ struct list_head ms_head; -+ struct list_head dh_list; -+}; -+ -+struct c2_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 sw_version[3]; -+ u8 sw_date[3]; -+ u8 features_enabled; -+ u8 max_lun_supported; -+ u8 partitions[239]; -+}; -+ -+struct rdac_dh_data { -+ struct list_head node; -+ struct rdac_controller *ctlr; -+ struct scsi_device *sdev; -+ unsigned int lun; -+ unsigned char mode; -+ unsigned char state; -+ char lun_state; -+ char preferred; -+ union { -+ struct c2_inquiry c2; -+ struct c4_inquiry c4; -+ struct c8_inquiry c8; -+ struct c9_inquiry c9; -+ } inq; -+}; -+ -+struct rdac_queue_data { -+ struct list_head entry; -+ struct rdac_dh_data *h; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+struct hp_sw_dh_data { -+ int path_state; -+ int retries; -+ int retry_cnt; -+ struct scsi_device *sdev; -+}; -+ -+struct clariion_dh_data { -+ unsigned int flags; -+ unsigned char buffer[252]; -+ int lun_state; -+ int port; -+ int default_sp; -+ int current_sp; -+}; -+ -+struct alua_port_group { -+ struct kref kref; -+ struct callback_head rcu; -+ struct list_head node; -+ struct list_head dh_list; -+ unsigned char device_id_str[256]; -+ int device_id_len; -+ int group_id; -+ int tpgs; -+ int state; -+ int pref; -+ int valid_states; -+ unsigned int flags; -+ unsigned char transition_tmo; -+ long unsigned int expiry; -+ long unsigned int interval; -+ struct delayed_work rtpg_work; -+ spinlock_t lock; -+ struct list_head rtpg_list; -+ struct scsi_device *rtpg_sdev; -+}; -+ -+struct alua_dh_data { -+ struct list_head node; -+ struct alua_port_group *pg; -+ int group_id; -+ spinlock_t pg_lock; -+ struct scsi_device *sdev; -+ int init_error; -+ struct mutex init_mutex; -+ bool disabled; -+}; -+ -+struct alua_queue_data { -+ struct list_head entry; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+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_driver *driver; -+ struct scsi_device *device; -+ struct device dev; -+ struct gendisk *disk; -+ struct opal_dev *opal_dev; -+ u32 nr_zones; -+ u32 rev_nr_zones; -+ u32 zone_blocks; -+ u32 rev_zone_blocks; -+ u32 zones_optimal_open; -+ u32 zones_optimal_nonseq; -+ u32 zones_max_open; -+ u32 *zones_wp_offset; -+ spinlock_t zones_wp_offset_lock; -+ u32 *rev_wp_offset; -+ struct mutex rev_mutex; -+ struct work_struct zone_wp_offset_work; -+ char *zone_wp_update_buf; -+ atomic_t openers; -+ sector_t capacity; -+ int max_retries; -+ u32 max_xfer_blocks; -+ u32 opt_xfer_blocks; -+ u32 max_ws_blocks; -+ u32 max_unmap_blocks; -+ u32 unmap_granularity; -+ u32 unmap_alignment; -+ u32 index; -+ unsigned int physical_block_size; -+ unsigned int max_medium_access_timeouts; -+ unsigned int medium_access_timed_out; -+ u8 media_present; -+ u8 write_prot; -+ u8 protection_type; -+ u8 provisioning_mode; -+ u8 zeroing_mode; -+ 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; -+}; -+ -+enum scsi_host_guard_type { -+ SHOST_DIX_GUARD_CRC = 1, -+ SHOST_DIX_GUARD_IP = 2, -+}; -+ -+enum zbc_zone_type { -+ ZBC_ZONE_TYPE_CONV = 1, -+ ZBC_ZONE_TYPE_SEQWRITE_REQ = 2, -+ ZBC_ZONE_TYPE_SEQWRITE_PREF = 3, -+}; -+ -+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 { -+ 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_IDENTIFY_DEVICE = 48, -+ 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, -+ 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, -+ 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; -+}; -+ -+enum { -+ ATA_MSG_DRV = 1, -+ ATA_MSG_INFO = 2, -+ ATA_MSG_PROBE = 4, -+ ATA_MSG_WARN = 8, -+ ATA_MSG_MALLOC = 16, -+ ATA_MSG_CTL = 32, -+ ATA_MSG_INTR = 64, -+ ATA_MSG_ERR = 128, -+}; -+ -+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 = 4294967295, -+ 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_DMADIR = 1024, -+ ATA_DFLAG_CFG_MASK = 4095, -+ ATA_DFLAG_PIO = 4096, -+ ATA_DFLAG_NCQ_OFF = 8192, -+ ATA_DFLAG_SLEEPING = 32768, -+ ATA_DFLAG_DUBIOUS_XFER = 65536, -+ ATA_DFLAG_NO_UNLOAD = 131072, -+ ATA_DFLAG_UNLOCK_HPA = 262144, -+ ATA_DFLAG_NCQ_SEND_RECV = 524288, -+ ATA_DFLAG_NCQ_PRIO = 1048576, -+ ATA_DFLAG_NCQ_PRIO_ENABLE = 2097152, -+ ATA_DFLAG_INIT_MASK = 16777215, -+ 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_ZAC = 1073741824, -+ 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_DB_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_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_IO = 8, -+ ATA_QCFLAG_RESULT_TF = 16, -+ ATA_QCFLAG_CLEAR_EXCL = 32, -+ ATA_QCFLAG_QUIET = 64, -+ ATA_QCFLAG_RETRY = 128, -+ ATA_QCFLAG_FAILED = 65536, -+ ATA_QCFLAG_SENSE_VALID = 131072, -+ ATA_QCFLAG_EH_SCHEDULED = 262144, -+ ATA_HOST_SIMPLEX = 1, -+ ATA_HOST_STARTED = 2, -+ ATA_HOST_PARALLEL_SCAN = 4, -+ ATA_HOST_IGNORE_ATA = 8, -+ ATA_TMOUT_BOOT = 30000, -+ ATA_TMOUT_BOOT_QUICK = 7000, -+ 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 = 5000, -+ 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_PERDEV_MASK = 33, -+ 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_RESET = 196608, -+ ATA_EHI_TO_SLAVE_MASK = 12, -+ ATA_EH_MAX_TRIES = 5, -+ ATA_LINK_RESUME_TRIES = 5, -+ ATA_PROBE_MAX_TRIES = 3, -+ 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 = 6, -+ ATA_HORKAGE_DIAGNOSTIC = 1, -+ ATA_HORKAGE_NODMA = 2, -+ ATA_HORKAGE_NONCQ = 4, -+ ATA_HORKAGE_MAX_SEC_128 = 8, -+ ATA_HORKAGE_BROKEN_HPA = 16, -+ ATA_HORKAGE_DISABLE = 32, -+ ATA_HORKAGE_HPA_SIZE = 64, -+ ATA_HORKAGE_IVB = 256, -+ ATA_HORKAGE_STUCK_ERR = 512, -+ ATA_HORKAGE_BRIDGE_OK = 1024, -+ ATA_HORKAGE_ATAPI_MOD16_DMA = 2048, -+ ATA_HORKAGE_FIRMWARE_WARN = 4096, -+ ATA_HORKAGE_1_5_GBPS = 8192, -+ ATA_HORKAGE_NOSETXFER = 16384, -+ ATA_HORKAGE_BROKEN_FPDMA_AA = 32768, -+ ATA_HORKAGE_DUMP_ID = 65536, -+ ATA_HORKAGE_MAX_SEC_LBA48 = 131072, -+ ATA_HORKAGE_ATAPI_DMADIR = 262144, -+ ATA_HORKAGE_NO_NCQ_TRIM = 524288, -+ ATA_HORKAGE_NOLPM = 1048576, -+ ATA_HORKAGE_WD_BROKEN_LPM = 2097152, -+ ATA_HORKAGE_ZERO_AFTER_TRIM = 4194304, -+ ATA_HORKAGE_NO_DMA_LOG = 8388608, -+ ATA_HORKAGE_NOTRIM = 16777216, -+ ATA_HORKAGE_MAX_SEC_1024 = 33554432, -+ ATA_HORKAGE_MAX_TRIM_128M = 67108864, -+ 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 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; -+ u8 feature; -+ u8 nsect; -+ u8 lbal; -+ u8 lbam; -+ u8 lbah; -+ u8 device; -+ 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[12]; -+ 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_device { -+ struct ata_link *link; -+ unsigned int devno; -+ unsigned int horkage; -+ 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; -+ long unsigned int pio_mask; -+ long unsigned int mwdma_mask; -+ long unsigned int udma_mask; -+ u16 cylinders; -+ u16 heads; -+ u16 sectors; -+ union { -+ u16 id[256]; -+ u32 gscr[128]; -+ }; -+ 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; -+ int spdn_cnt; -+ struct ata_ering ering; -+ long: 64; -+}; -+ -+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; -+ 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_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 *); -+ bool (*qc_fill_rtf)(struct ata_queued_cmd *); -+ int (*cable_detect)(struct ata_port *); -+ long unsigned int (*mode_filter)(struct ata_device *, long 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 *, u16 *); -+ void (*dev_config)(struct ata_device *); -+ void (*freeze)(struct ata_port *); -+ void (*thaw)(struct ata_port *); -+ ata_prereset_fn_t prereset; -+ ata_reset_fn_t softreset; -+ ata_reset_fn_t hardreset; -+ ata_postreset_fn_t postreset; -+ ata_prereset_fn_t pmp_prereset; -+ ata_reset_fn_t pmp_softreset; -+ ata_reset_fn_t pmp_hardreset; -+ ata_postreset_fn_t pmp_postreset; -+ 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); -+ void (*phy_reset)(struct ata_port *); -+ void (*eng_timeout)(struct ata_port *); -+ 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 local_port_no; -+ 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]; -+ long unsigned int sas_tag_allocated; -+ u64 qc_active; -+ int nr_active_links; -+ unsigned int sas_last_tag; -+ 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 work_struct scsi_rescan_task; -+ unsigned int hsm_task_state; -+ u32 msg_enable; -+ 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; -+ long unsigned int fastdrain_cnt; -+ async_cookie_t cookie; -+ int em_message_type; -+ void *private_data; -+ struct ata_acpi_gtm __acpi_init_gtm; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u8 sector_buf[512]; -+}; -+ -+struct ata_port_info { -+ long unsigned int flags; -+ long unsigned int link_flags; -+ long unsigned int pio_mask; -+ long unsigned int mwdma_mask; -+ long 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 { -+ 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_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_data_offsets_ata_qc_issue {}; -+ -+struct trace_event_data_offsets_ata_qc_complete_template {}; -+ -+struct trace_event_data_offsets_ata_eh_link_autopsy {}; -+ -+struct trace_event_data_offsets_ata_eh_link_autopsy_qc {}; -+ -+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_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 *); -+ -+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; -+ long unsigned int xfer_mask; -+ unsigned int horkage_on; -+ unsigned int horkage_off; -+ u16 lflags; -+}; -+ -+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_blacklist_entry { -+ const char *model_num; -+ const char *model_rev; -+ long unsigned int horkage; -+}; -+ -+typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *); -+ -+struct ata_scsi_args { -+ struct ata_device *dev; -+ u16 *id; -+ struct scsi_cmnd *cmd; -+}; -+ -+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 long unsigned int *timeouts; -+}; -+ -+struct speed_down_verdict_arg { -+ u64 since; -+ int xfer_ok; -+ int nr_errors[8]; -+}; -+ -+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 hsm_task_states { -+ HSM_ST_IDLE = 0, -+ HSM_ST_FIRST = 1, -+ HSM_ST = 2, -+ HSM_ST_LAST = 3, -+ HSM_ST_ERR = 4, -+}; -+ -+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 { -+ AHCI_MAX_PORTS = 32, -+ AHCI_MAX_CLKS = 5, -+ AHCI_MAX_SG = 168, -+ AHCI_DMA_BOUNDARY = 4294967295, -+ AHCI_MAX_CMDS = 32, -+ AHCI_CMD_SZ = 32, -+ AHCI_CMD_SLOT_SZ = 1024, -+ AHCI_RX_FIS_SZ = 256, -+ AHCI_CMD_TBL_CDB = 64, -+ AHCI_CMD_TBL_HDR_SZ = 128, -+ AHCI_CMD_TBL_SZ = 2816, -+ AHCI_CMD_TBL_AR_SZ = 90112, -+ AHCI_PORT_PRIV_DMA_SZ = 91392, -+ AHCI_PORT_PRIV_FBS_DMA_SZ = 95232, -+ AHCI_IRQ_ON_SG = 2147483648, -+ AHCI_CMD_ATAPI = 32, -+ AHCI_CMD_WRITE = 64, -+ AHCI_CMD_PREFETCH = 128, -+ AHCI_CMD_RESET = 256, -+ AHCI_CMD_CLR_BUSY = 1024, -+ RX_FIS_PIO_SETUP = 32, -+ RX_FIS_D2H_REG = 64, -+ RX_FIS_SDB = 88, -+ RX_FIS_UNK = 96, -+ HOST_CAP = 0, -+ HOST_CTL = 4, -+ HOST_IRQ_STAT = 8, -+ HOST_PORTS_IMPL = 12, -+ HOST_VERSION = 16, -+ HOST_EM_LOC = 28, -+ HOST_EM_CTL = 32, -+ HOST_CAP2 = 36, -+ HOST_RESET = 1, -+ HOST_IRQ_EN = 2, -+ HOST_MRSM = 4, -+ HOST_AHCI_EN = 2147483648, -+ HOST_CAP_SXS = 32, -+ HOST_CAP_EMS = 64, -+ HOST_CAP_CCC = 128, -+ HOST_CAP_PART = 8192, -+ HOST_CAP_SSC = 16384, -+ HOST_CAP_PIO_MULTI = 32768, -+ HOST_CAP_FBS = 65536, -+ HOST_CAP_PMP = 131072, -+ HOST_CAP_ONLY = 262144, -+ HOST_CAP_CLO = 16777216, -+ HOST_CAP_LED = 33554432, -+ HOST_CAP_ALPM = 67108864, -+ HOST_CAP_SSS = 134217728, -+ HOST_CAP_MPS = 268435456, -+ HOST_CAP_SNTF = 536870912, -+ HOST_CAP_NCQ = 1073741824, -+ HOST_CAP_64 = 2147483648, -+ HOST_CAP2_BOH = 1, -+ HOST_CAP2_NVMHCI = 2, -+ HOST_CAP2_APST = 4, -+ HOST_CAP2_SDS = 8, -+ HOST_CAP2_SADM = 16, -+ HOST_CAP2_DESO = 32, -+ PORT_LST_ADDR = 0, -+ PORT_LST_ADDR_HI = 4, -+ PORT_FIS_ADDR = 8, -+ PORT_FIS_ADDR_HI = 12, -+ PORT_IRQ_STAT = 16, -+ PORT_IRQ_MASK = 20, -+ PORT_CMD = 24, -+ PORT_TFDATA = 32, -+ PORT_SIG = 36, -+ PORT_CMD_ISSUE = 56, -+ PORT_SCR_STAT = 40, -+ PORT_SCR_CTL = 44, -+ PORT_SCR_ERR = 48, -+ PORT_SCR_ACT = 52, -+ PORT_SCR_NTF = 60, -+ PORT_FBS = 64, -+ PORT_DEVSLP = 68, -+ PORT_IRQ_COLD_PRES = 2147483648, -+ PORT_IRQ_TF_ERR = 1073741824, -+ PORT_IRQ_HBUS_ERR = 536870912, -+ PORT_IRQ_HBUS_DATA_ERR = 268435456, -+ PORT_IRQ_IF_ERR = 134217728, -+ PORT_IRQ_IF_NONFATAL = 67108864, -+ PORT_IRQ_OVERFLOW = 16777216, -+ PORT_IRQ_BAD_PMP = 8388608, -+ PORT_IRQ_PHYRDY = 4194304, -+ PORT_IRQ_DEV_ILCK = 128, -+ PORT_IRQ_CONNECT = 64, -+ PORT_IRQ_SG_DONE = 32, -+ PORT_IRQ_UNK_FIS = 16, -+ PORT_IRQ_SDB_FIS = 8, -+ PORT_IRQ_DMAS_FIS = 4, -+ PORT_IRQ_PIOS_FIS = 2, -+ PORT_IRQ_D2H_REG_FIS = 1, -+ PORT_IRQ_FREEZE = 683671632, -+ PORT_IRQ_ERROR = 2025848912, -+ DEF_PORT_IRQ = 2025848959, -+ PORT_CMD_ASP = 134217728, -+ PORT_CMD_ALPE = 67108864, -+ PORT_CMD_ATAPI = 16777216, -+ PORT_CMD_FBSCP = 4194304, -+ PORT_CMD_ESP = 2097152, -+ PORT_CMD_HPCP = 262144, -+ PORT_CMD_PMP = 131072, -+ PORT_CMD_LIST_ON = 32768, -+ PORT_CMD_FIS_ON = 16384, -+ PORT_CMD_FIS_RX = 16, -+ PORT_CMD_CLO = 8, -+ PORT_CMD_POWER_ON = 4, -+ PORT_CMD_SPIN_UP = 2, -+ PORT_CMD_START = 1, -+ PORT_CMD_ICC_MASK = 4026531840, -+ PORT_CMD_ICC_ACTIVE = 268435456, -+ PORT_CMD_ICC_PARTIAL = 536870912, -+ PORT_CMD_ICC_SLUMBER = 1610612736, -+ PORT_FBS_DWE_OFFSET = 16, -+ PORT_FBS_ADO_OFFSET = 12, -+ PORT_FBS_DEV_OFFSET = 8, -+ PORT_FBS_DEV_MASK = 3840, -+ PORT_FBS_SDE = 4, -+ PORT_FBS_DEC = 2, -+ PORT_FBS_EN = 1, -+ PORT_DEVSLP_DM_OFFSET = 25, -+ PORT_DEVSLP_DM_MASK = 503316480, -+ PORT_DEVSLP_DITO_OFFSET = 15, -+ PORT_DEVSLP_MDAT_OFFSET = 10, -+ PORT_DEVSLP_DETO_OFFSET = 2, -+ PORT_DEVSLP_DSP = 2, -+ PORT_DEVSLP_ADSE = 1, -+ AHCI_HFLAG_NO_NCQ = 1, -+ AHCI_HFLAG_IGN_IRQ_IF_ERR = 2, -+ AHCI_HFLAG_IGN_SERR_INTERNAL = 4, -+ AHCI_HFLAG_32BIT_ONLY = 8, -+ AHCI_HFLAG_MV_PATA = 16, -+ AHCI_HFLAG_NO_MSI = 32, -+ AHCI_HFLAG_NO_PMP = 64, -+ AHCI_HFLAG_SECT255 = 256, -+ AHCI_HFLAG_YES_NCQ = 512, -+ AHCI_HFLAG_NO_SUSPEND = 1024, -+ AHCI_HFLAG_SRST_TOUT_IS_OFFLINE = 2048, -+ AHCI_HFLAG_NO_SNTF = 4096, -+ AHCI_HFLAG_NO_FPDMA_AA = 8192, -+ AHCI_HFLAG_YES_FBS = 16384, -+ AHCI_HFLAG_DELAY_ENGINE = 32768, -+ AHCI_HFLAG_NO_DEVSLP = 131072, -+ AHCI_HFLAG_NO_FBS = 262144, -+ AHCI_HFLAG_MULTI_MSI = 1048576, -+ AHCI_HFLAG_WAKE_BEFORE_STOP = 4194304, -+ AHCI_HFLAG_YES_ALPM = 8388608, -+ AHCI_HFLAG_NO_WRITE_TO_RO = 16777216, -+ AHCI_HFLAG_IS_MOBILE = 33554432, -+ AHCI_HFLAG_SUSPEND_PHYS = 67108864, -+ AHCI_HFLAG_IGN_NOTSUPP_POWER_ON = 134217728, -+ AHCI_HFLAG_NO_SXS = 268435456, -+ AHCI_FLAG_COMMON = 393346, -+ ICH_MAP = 144, -+ PCS_6 = 146, -+ PCS_7 = 148, -+ EM_MAX_SLOTS = 8, -+ EM_MAX_RETRY = 5, -+ EM_CTL_RST = 512, -+ EM_CTL_TM = 256, -+ EM_CTL_MR = 1, -+ EM_CTL_ALHD = 67108864, -+ EM_CTL_XMT = 33554432, -+ EM_CTL_SMB = 16777216, -+ EM_CTL_SGPIO = 524288, -+ EM_CTL_SES = 262144, -+ EM_CTL_SAFTE = 131072, -+ EM_CTL_LED = 65536, -+ EM_MSG_TYPE_LED = 1, -+ EM_MSG_TYPE_SAFTE = 2, -+ EM_MSG_TYPE_SES2 = 4, -+ EM_MSG_TYPE_SGPIO = 8, -+}; -+ -+struct ahci_cmd_hdr { -+ __le32 opts; -+ __le32 status; -+ __le32 tbl_addr; -+ __le32 tbl_addr_hi; -+ __le32 reserved[4]; -+}; -+ -+struct ahci_em_priv { -+ enum sw_activity blink_policy; -+ struct timer_list timer; -+ long unsigned int saved_activity; -+ long unsigned int activity; -+ long unsigned int led_state; -+ struct ata_link *link; -+}; -+ -+struct ahci_port_priv { -+ struct ata_link *active_link; -+ struct ahci_cmd_hdr *cmd_slot; -+ dma_addr_t cmd_slot_dma; -+ void *cmd_tbl; -+ dma_addr_t cmd_tbl_dma; -+ void *rx_fis; -+ dma_addr_t rx_fis_dma; -+ unsigned int ncq_saw_d2h: 1; -+ unsigned int ncq_saw_dmas: 1; -+ unsigned int ncq_saw_sdb: 1; -+ spinlock_t lock; -+ u32 intr_mask; -+ bool fbs_supported; -+ bool fbs_enabled; -+ int fbs_last_dev; -+ struct ahci_em_priv em_priv[8]; -+ char *irq_desc; -+}; -+ -+struct ahci_host_priv { -+ unsigned int flags; -+ u32 force_port_map; -+ u32 mask_port_map; -+ void *mmio; -+ u32 cap; -+ u32 cap2; -+ u32 version; -+ u32 port_map; -+ u32 saved_cap; -+ u32 saved_cap2; -+ u32 saved_port_map; -+ u32 em_loc; -+ u32 em_buf_sz; -+ u32 em_msg_type; -+ u32 remapped_nvme; -+ bool got_runtime_pm; -+ struct clk *clks[5]; -+ struct reset_control *rsts; -+ struct regulator **target_pwrs; -+ struct regulator *ahci_regulator; -+ struct regulator *phy_regulator; -+ struct phy **phys; -+ unsigned int nports; -+ void *plat_data; -+ unsigned int irq; -+ void (*start_engine)(struct ata_port *); -+ int (*stop_engine)(struct ata_port *); -+ irqreturn_t (*irq_handler)(int, void *); -+ int (*get_irq_vector)(struct ata_host *, int); -+}; -+ -+enum { -+ AHCI_PCI_BAR_STA2X11 = 0, -+ AHCI_PCI_BAR_CAVIUM = 0, -+ AHCI_PCI_BAR_LOONGSON = 0, -+ AHCI_PCI_BAR_ENMOTUS = 2, -+ AHCI_PCI_BAR_CAVIUM_GEN5 = 4, -+ AHCI_PCI_BAR_STANDARD = 5, -+}; -+ -+enum board_ids { -+ board_ahci = 0, -+ board_ahci_ign_iferr = 1, -+ board_ahci_mobile = 2, -+ board_ahci_nomsi = 3, -+ board_ahci_noncq = 4, -+ board_ahci_nosntf = 5, -+ board_ahci_yes_fbs = 6, -+ board_ahci_al = 7, -+ board_ahci_avn = 8, -+ board_ahci_mcp65 = 9, -+ board_ahci_mcp77 = 10, -+ board_ahci_mcp89 = 11, -+ board_ahci_mv = 12, -+ board_ahci_sb600 = 13, -+ board_ahci_sb700 = 14, -+ board_ahci_vt8251 = 15, -+ board_ahci_pcs7 = 16, -+ board_ahci_mcp_linux = 9, -+ board_ahci_mcp67 = 9, -+ board_ahci_mcp73 = 9, -+ board_ahci_mcp79 = 10, -+}; -+ -+struct ahci_sg { -+ __le32 addr; -+ __le32 addr_hi; -+ __le32 reserved; -+ __le32 flags_size; -+}; -+ -+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 = 4294967295, -+ NA = 4294967294, -+ RV = 4294967293, -+ 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 spi_device_id { -+ char name[32]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct ptp_system_timestamp { -+ struct timespec64 pre_ts; -+ struct timespec64 post_ts; -+}; -+ -+struct spi_statistics { -+ spinlock_t lock; -+ long unsigned int messages; -+ long unsigned int transfers; -+ long unsigned int errors; -+ long unsigned int timedout; -+ long unsigned int spi_sync; -+ long unsigned int spi_sync_immediate; -+ long unsigned int spi_async; -+ long long unsigned int bytes; -+ long long unsigned int bytes_rx; -+ long long unsigned int bytes_tx; -+ long unsigned int transfer_bytes_histo[17]; -+ long unsigned int transfers_split_maxsize; -+}; -+ -+struct spi_delay { -+ u16 value; -+ u8 unit; -+}; -+ -+struct spi_controller; -+ -+struct spi_device { -+ struct device dev; -+ struct spi_controller *controller; -+ struct spi_controller *master; -+ u32 max_speed_hz; -+ u8 chip_select; -+ u8 bits_per_word; -+ bool rt; -+ u32 mode; -+ int irq; -+ void *controller_state; -+ void *controller_data; -+ char modalias[32]; -+ const char *driver_override; -+ int cs_gpio; -+ struct gpio_desc *cs_gpiod; -+ struct spi_delay word_delay; -+ struct spi_statistics statistics; -+}; -+ -+struct spi_message; -+ -+struct spi_transfer; -+ -+struct spi_controller_mem_ops; -+ -+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; -+ bool slave; -+ size_t (*max_transfer_size)(struct spi_device *); -+ size_t (*max_message_size)(struct spi_device *); -+ struct mutex io_mutex; -+ 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 *, struct spi_delay *, struct spi_delay *, struct spi_delay *); -+ 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; -+ bool queued; -+ struct kthread_worker *kworker; -+ struct kthread_work pump_messages; -+ spinlock_t queue_lock; -+ struct list_head queue; -+ struct spi_message *cur_msg; -+ bool idling; -+ bool busy; -+ bool running; -+ bool rt; -+ bool auto_runtime_pm; -+ bool cur_msg_prepared; -+ bool cur_msg_mapped; -+ bool last_cs_enable; -+ bool last_cs_mode_high; -+ bool fallback; -+ struct completion xfer_completion; -+ size_t max_dma_len; -+ 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 (*slave_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; -+ struct spi_delay cs_setup; -+ struct spi_delay cs_hold; -+ struct spi_delay cs_inactive; -+ int *cs_gpios; -+ struct gpio_desc **cs_gpiods; -+ bool use_gpio_descriptors; -+ s8 unused_native_cs; -+ s8 max_native_cs; -+ struct spi_statistics 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; -+}; -+ -+struct spi_driver { -+ const struct spi_device_id *id_table; -+ int (*probe)(struct spi_device *); -+ int (*remove)(struct spi_device *); -+ void (*shutdown)(struct spi_device *); -+ struct device_driver driver; -+}; -+ -+struct spi_message { -+ struct list_head transfers; -+ struct spi_device *spi; -+ unsigned int is_dma_mapped: 1; -+ void (*complete)(void *); -+ void *context; -+ unsigned int frame_length; -+ unsigned int actual_length; -+ int status; -+ struct list_head queue; -+ void *state; -+ struct list_head resources; -+}; -+ -+struct spi_transfer { -+ const void *tx_buf; -+ void *rx_buf; -+ unsigned int len; -+ dma_addr_t tx_dma; -+ dma_addr_t rx_dma; -+ struct sg_table tx_sg; -+ struct sg_table rx_sg; -+ unsigned int dummy_data: 1; -+ unsigned int cs_change: 1; -+ unsigned int tx_nbits: 3; -+ unsigned int rx_nbits: 3; -+ 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 ptp_sts_word_pre; -+ unsigned int ptp_sts_word_post; -+ struct ptp_system_timestamp *ptp_sts; -+ bool timestamped; -+ struct list_head transfer_list; -+ u16 error; -+}; -+ -+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); -+}; -+ -+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; -+ u16 opcode; -+ } cmd; -+ struct { -+ u8 nbytes; -+ u8 buswidth; -+ u8 dtr: 1; -+ u64 val; -+ } addr; -+ struct { -+ u8 nbytes; -+ u8 buswidth; -+ u8 dtr: 1; -+ } dummy; -+ struct { -+ u8 buswidth; -+ u8 dtr: 1; -+ enum spi_mem_data_dir dir; -+ unsigned int nbytes; -+ union { -+ void *in; -+ const void *out; -+ } buf; -+ } data; -+}; -+ -+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; -+ u32 tx_buf; -+}; -+ -+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; -+}; -+ -+struct spi_qup { -+ void *base; -+ struct device *dev; -+ struct clk *cclk; -+ struct clk *iclk; -+ int irq; -+ spinlock_t lock; -+ int in_fifo_sz; -+ int out_fifo_sz; -+ int in_blk_sz; -+ int out_blk_sz; -+ struct spi_transfer *xfer; -+ struct completion done; -+ int error; -+ int w_size; -+ int n_words; -+ int tx_bytes; -+ int rx_bytes; -+ const u8 *tx_buf; -+ u8 *rx_buf; -+ int qup_v1; -+ int mode; -+ struct dma_slave_config rx_conf; -+ struct dma_slave_config tx_conf; -+}; -+ -+struct amd_spi { -+ void *io_remap_addr; -+ long unsigned int io_base_addr; -+ u32 rom_addr; -+ u8 chip_select; -+}; -+ -+struct devprobe2 { -+ struct net_device * (*probe)(int); -+ int status; -+}; -+ -+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, -+ NETIF_F_LLTX_BIT = 12, -+ NETIF_F_NETNS_LOCAL_BIT = 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, -+ NETIF_F_FCOE_MTU_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, -+}; -+ -+typedef struct bio_vec skb_frag_t; -+ -+struct skb_shared_hwtstamps { -+ ktime_t hwtstamp; -+}; -+ -+enum { -+ SKBTX_HW_TSTAMP = 1, -+ SKBTX_SW_TSTAMP = 2, -+ SKBTX_IN_PROGRESS = 4, -+ SKBTX_WIFI_STATUS = 16, -+ SKBTX_SCHED_TSTAMP = 64, -+}; -+ -+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; -+ struct skb_shared_hwtstamps hwtstamps; -+ unsigned int gso_type; -+ u32 tskey; -+ atomic_t dataref; -+ void *destructor_arg; -+ skb_frag_t frags[17]; -+}; -+ -+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_LIVE_RENAME_OK = 1073741824, -+ IFF_TX_SKB_NO_LINEAR = 2147483648, -+}; -+ -+struct mdio_board_info { -+ const char *bus_id; -+ char modalias[32]; -+ int mdio_addr; -+ const void *platform_data; -+}; -+ -+struct mdio_board_entry { -+ struct list_head list; -+ struct mdio_board_info board_info; -+}; -+ -+struct mdiobus_devres { -+ struct mii_bus *mii; -+}; -+ -+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 mii_ioctl_data { -+ __u16 phy_id; -+ __u16 reg_num; -+ __u16 val_in; -+ __u16 val_out; -+}; -+ -+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_KERNEL_CNT = 35, -+ ETHTOOL_MSG_KERNEL_MAX = 34, -+}; -+ -+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_CNT = 5, -+ ETHTOOL_A_STATS_MAX = 4, -+}; -+ -+struct phy_led_trigger { -+ struct led_trigger trigger; -+ char name[76]; -+ unsigned int speed; -+}; -+ -+struct phy_setting { -+ u32 speed; -+ u8 duplex; -+ u8 bit; -+}; -+ -+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 (*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 *); -+}; -+ -+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 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 mdio_driver { -+ struct mdio_driver_common mdiodrv; -+ int (*probe)(struct mdio_device *); -+ void (*remove)(struct mdio_device *); -+}; -+ -+struct fixed_phy_status { -+ int link; -+ int speed; -+ int duplex; -+ int pause; -+ int asym_pause; -+}; -+ -+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 mii_timestamping_ctrl { -+ struct mii_timestamper * (*probe_channel)(struct device *, unsigned int); -+ void (*release_channel)(struct device *, struct mii_timestamper *); -+}; -+ -+struct mii_timestamping_desc { -+ struct list_head list; -+ struct mii_timestamping_ctrl *ctrl; -+ struct device *device; -+}; -+ -+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; -+}; -+ -+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_MAX = 58, -+}; -+ -+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 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_MAX = 5, -+ WWAN_PORT_MAX = 4, -+ WWAN_PORT_UNKNOWN = 5, -+}; -+ -+struct wwan_port; -+ -+struct wwan_port_ops { -+ int (*start)(struct wwan_port *); -+ void (*stop)(struct wwan_port *); -+ int (*tx)(struct wwan_port *, struct sk_buff *); -+ int (*tx_blocking)(struct wwan_port *, struct sk_buff *); -+ __poll_t (*tx_poll)(struct wwan_port *, struct file *, poll_table *); -+}; -+ -+struct wwan_port { -+ enum wwan_port_type type; -+ unsigned int start_count; -+ long unsigned int flags; -+ const struct wwan_port_ops *ops; -+ struct mutex ops_lock; -+ struct device dev; -+ struct sk_buff_head rxq; -+ wait_queue_head_t waitqueue; -+ struct mutex data_lock; -+ union { -+ struct { -+ struct ktermios termios; -+ int mdmbits; -+ } at_data; -+ }; -+}; -+ -+struct wwan_netdev_priv { -+ u32 link_id; -+ int: 32; -+ u8 drv_priv[0]; -+}; -+ -+struct wwan_ops { -+ unsigned int priv_size; -+ void (*setup)(struct net_device *); -+ int (*newlink)(void *, struct net_device *, u32, struct netlink_ext_ack *); -+ void (*dellink)(void *, struct net_device *, struct list_head *); -+}; -+ -+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 { -+ IFLA_WWAN_UNSPEC = 0, -+ IFLA_WWAN_LINK_ID = 1, -+ __IFLA_WWAN_MAX = 2, -+}; -+ -+struct wwan_device { -+ unsigned int id; -+ struct device dev; -+ atomic_t port_id; -+ const struct wwan_ops *ops; -+ void *ops_ctxt; -+}; -+ -+struct socket_state_t { -+ u_int flags; -+ u_int csc_mask; -+ u_char Vcc; -+ u_char Vpp; -+ u_char io_irq; -+}; -+ -+typedef struct socket_state_t socket_state_t; -+ -+struct pccard_io_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t start; -+ phys_addr_t stop; -+}; -+ -+struct pccard_mem_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t static_start; -+ u_int card_start; -+ struct resource *res; -+}; -+ -+typedef struct pccard_mem_map pccard_mem_map; -+ -+struct io_window_t { -+ u_int InUse; -+ u_int Config; -+ struct resource *res; -+}; -+ -+typedef struct io_window_t io_window_t; -+ -+struct pcmcia_socket; -+ -+struct pccard_operations { -+ int (*init)(struct pcmcia_socket *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*get_status)(struct pcmcia_socket *, u_int *); -+ int (*set_socket)(struct pcmcia_socket *, socket_state_t *); -+ int (*set_io_map)(struct pcmcia_socket *, struct pccard_io_map *); -+ int (*set_mem_map)(struct pcmcia_socket *, struct pccard_mem_map *); -+}; -+ -+struct pccard_resource_ops; -+ -+struct pcmcia_callback; -+ -+struct pcmcia_socket { -+ struct module *owner; -+ socket_state_t socket; -+ u_int state; -+ u_int suspended_state; -+ u_short functions; -+ u_short lock_count; -+ pccard_mem_map cis_mem; -+ void *cis_virt; -+ io_window_t io[2]; -+ pccard_mem_map win[4]; -+ struct list_head cis_cache; -+ size_t fake_cis_len; -+ u8 *fake_cis; -+ struct list_head socket_list; -+ struct completion socket_released; -+ unsigned int sock; -+ u_int features; -+ u_int irq_mask; -+ u_int map_size; -+ u_int io_offset; -+ u_int pci_irq; -+ struct pci_dev *cb_dev; -+ u8 resource_setup_done; -+ struct pccard_operations *ops; -+ struct pccard_resource_ops *resource_ops; -+ void *resource_data; -+ void (*zoom_video)(struct pcmcia_socket *, int); -+ int (*power_hook)(struct pcmcia_socket *, int); -+ void (*tune_bridge)(struct pcmcia_socket *, struct pci_bus *); -+ struct task_struct *thread; -+ struct completion thread_done; -+ unsigned int thread_events; -+ unsigned int sysfs_events; -+ struct mutex skt_mutex; -+ struct mutex ops_mutex; -+ spinlock_t thread_lock; -+ struct pcmcia_callback *callback; -+ struct device dev; -+ void *driver_data; -+ int resume_status; -+}; -+ -+struct pccard_resource_ops { -+ int (*validate_mem)(struct pcmcia_socket *); -+ int (*find_io)(struct pcmcia_socket *, unsigned int, unsigned int *, unsigned int, unsigned int, struct resource **); -+ struct resource * (*find_mem)(long unsigned int, long unsigned int, long unsigned int, int, struct pcmcia_socket *); -+ int (*init)(struct pcmcia_socket *); -+ void (*exit)(struct pcmcia_socket *); -+}; -+ -+struct pcmcia_callback { -+ struct module *owner; -+ int (*add)(struct pcmcia_socket *); -+ int (*remove)(struct pcmcia_socket *); -+ void (*requery)(struct pcmcia_socket *); -+ int (*validate)(struct pcmcia_socket *, unsigned int *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*early_resume)(struct pcmcia_socket *); -+ int (*resume)(struct pcmcia_socket *); -+}; -+ -+enum { -+ PCMCIA_IOPORT_0 = 0, -+ PCMCIA_IOPORT_1 = 1, -+ PCMCIA_IOMEM_0 = 2, -+ PCMCIA_IOMEM_1 = 3, -+ PCMCIA_IOMEM_2 = 4, -+ PCMCIA_IOMEM_3 = 5, -+ PCMCIA_NUM_RESOURCES = 6, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum usb_led_event { -+ USB_LED_EVENT_HOST = 0, -+ USB_LED_EVENT_GADGET = 1, -+}; -+ -+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_descriptor_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+}; -+ -+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_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; -+ __le32 bmSublinkSpeedAttr[1]; -+}; -+ -+struct usb_ptm_cap_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+enum usb3_link_state { -+ USB3_LPM_U0 = 0, -+ USB3_LPM_U1 = 1, -+ USB3_LPM_U2 = 2, -+ USB3_LPM_U3 = 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; -+ char: 8; -+ struct list_head urb_list; -+ void *hcpriv; -+ struct ep_device *ep_dev; -+ unsigned char *extra; -+ int extralen; -+ int enabled; -+ int streams; -+ int: 32; -+} __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, -+}; -+ -+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; -+ 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_devmap { -+ long unsigned int devicemap[2]; -+}; -+ -+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; -+ struct usb_devmap devmap; -+ 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; -+}; -+ -+struct wusb_dev; -+ -+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 have_langid: 1; -+ unsigned int authorized: 1; -+ unsigned int authenticated: 1; -+ unsigned int wusb: 1; -+ unsigned int lpm_capable: 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; -+ struct wusb_dev *wusb_dev; -+ 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; -+}; -+ -+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_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 usbdrv_wrap { -+ struct device_driver driver; -+ int for_devices; -+}; -+ -+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 *); -+ const struct usb_device_id *id_table; -+ const struct attribute_group **dev_groups; -+ struct usb_dynids dynids; -+ struct usbdrv_wrap drvwrap; -+ 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); -+ const struct attribute_group **dev_groups; -+ struct usbdrv_wrap drvwrap; -+ const struct usb_device_id *id_table; -+ unsigned int supports_autosuspend: 1; -+ unsigned int generic_subclass: 1; -+}; -+ -+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 giveback_urb_bh { -+ bool running; -+ spinlock_t lock; -+ struct list_head head; -+ struct tasklet_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 usb_phy_roothub; -+ -+struct dma_pool___2; -+ -+struct hc_driver; -+ -+struct usb_phy; -+ -+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 wireless: 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___2 *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 *, 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 *); -+ 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); -+}; -+ -+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 = 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_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 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 *); -+}; -+ -+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 work_struct events; -+ spinlock_t irq_urb_lock; -+ struct timer_list irq_urb_retry; -+ struct usb_port **ports; -+}; -+ -+struct usb_dev_state; -+ -+struct usb_port { -+ struct usb_device *child; -+ struct device dev; -+ struct usb_dev_state *port_owner; -+ struct usb_port *peer; -+ struct dev_pm_qos_request *req; -+ enum usb_port_connect_type connect_type; -+ usb_port_location_t location; -+ struct mutex status_lock; -+ u32 over_current_count; -+ u8 portnum; -+ u32 quirks; -+ unsigned int is_superspeed: 1; -+ unsigned int usb3_lpm_u1_permit: 1; -+ unsigned int usb3_lpm_u2_permit: 1; -+}; -+ -+struct find_interface_arg { -+ int minor; -+ struct device_driver *drv; -+}; -+ -+struct each_dev_arg { -+ void *data; -+ int (*fn)(struct usb_device *, void *); -+}; -+ -+struct each_hub_arg { -+ void *data; -+ int (*fn)(struct device *, void *); -+}; -+ -+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, -+}; -+ -+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_ctrlrequest { -+ __u8 bRequestType; -+ __u8 bRequest; -+ __le16 wValue; -+ __le16 wIndex; -+ __le16 wLength; -+}; -+ -+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); -+}; -+ -+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 usb_dynid { -+ struct list_head node; -+ struct usb_device_id id; -+}; -+ -+struct usb_dev_cap_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+struct usb_class_driver { -+ char *name; -+ char * (*devnode)(struct device *, umode_t *); -+ const struct file_operations *fops; -+ int minor_base; -+}; -+ -+struct usb_class { -+ struct kref kref; -+ struct class *class; -+}; -+ -+struct ep_device { -+ struct usb_endpoint_descriptor *desc; -+ struct usb_device *udev; -+ struct device dev; -+}; -+ -+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___2 { -+ 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___2 *ps; -+}; -+ -+struct async { -+ struct list_head asynclist; -+ struct usb_dev_state___2 *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 quirk_entry { -+ u16 vid; -+ u16 pid; -+ u32 flags; -+}; -+ -+struct class_info { -+ int class; -+ char *class_name; -+}; -+ -+struct usb_phy_roothub___2 { -+ struct phy *phy; -+ struct list_head list; -+}; -+ -+typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); -+ -+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 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 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 snap { -+ int slen; -+ char str[80]; -+}; -+ -+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 = 10, -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct ehci_stats { -+ long unsigned int normal; -+ long unsigned int error; -+ long unsigned int iaa; -+ long unsigned int lost_iaa; -+ long unsigned int complete; -+ long unsigned int unlink; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *qtd_pool; -+ struct dma_pool___2 *itd_pool; -+ struct dma_pool___2 *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 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; -+ __le32 *ohci_hcctrl_reg; -+ unsigned int has_hostpc: 1; -+ unsigned int has_tdi_phy_lpm: 1; -+ unsigned int has_ppcd: 1; -+ u8 sbrn; -+ struct ehci_stats stats; -+ struct dentry *debug_dir; -+ 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; -+ u32 port_status[0]; -+ u32 reserved3[9]; -+ u32 usbmode; -+ u32 reserved4[6]; -+ u32 hostpc[0]; -+ u32 reserved5[17]; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_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_tt { -+ u16 bandwidth[8]; -+ struct list_head tt_list; -+ struct list_head ps_list; -+ struct usb_tt *usb_tt; -+ int tt_port; -+}; -+ -+struct ehci_driver_overrides { -+ size_t extra_priv_size; -+ int (*reset)(struct usb_hcd *); -+ int (*port_power)(struct usb_hcd *, int, bool); -+}; -+ -+struct debug_buffer { -+ ssize_t (*fill_func)(struct debug_buffer *); -+ struct usb_bus *bus; -+ struct mutex mutex; -+ size_t count; -+ char *output_buf; -+ size_t alloc_size; -+}; -+ -+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; -+}; -+ -+struct urb_priv { -+ struct ed *ed; -+ u16 length; -+ u16 td_cnt; -+ struct list_head pending; -+ struct td *td[0]; -+}; -+ -+typedef struct urb_priv urb_priv_t; -+ -+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___2 *td_cache; -+ struct dma_pool___2 *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 debug_buffer___2 { -+ ssize_t (*fill_func)(struct debug_buffer___2 *); -+ struct ohci_hcd *ohci; -+ struct mutex mutex; -+ size_t count; -+ char *page; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *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; -+}; -+ -+struct uhci_debug { -+ int size; -+ char *data; -+}; -+ -+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]; -+}; -+ -+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]; -+}; -+ -+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; -+}; -+ -+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 err_count; -+ unsigned int stream_id; -+ unsigned int num_segs; -+ unsigned int num_trbs_free; -+ unsigned int num_trbs_free_temp; -+ unsigned int bounce_buf_len; -+ enum xhci_ring_type type; -+ bool last_td_was_short; -+ 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 ep_state; -+ struct list_head cancelled_td_list; -+ struct timer_list stop_cmd_timer; -+ 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; -+ int next_frame_id; -+ bool use_extended_tbc; -+}; -+ -+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]; -+ u8 fake_port; -+ u8 real_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_erst_entry; -+ -+struct xhci_erst { -+ struct xhci_erst_entry *entries; -+ unsigned int num_entries; -+ dma_addr_t erst_dma_addr; -+ unsigned int erst_size; -+}; -+ -+struct s3_save { -+ u32 command; -+ u32 dev_nt; -+ u64 dcbaa_ptr; -+ u32 config_reg; -+ u32 irq_pending; -+ u32 irq_control; -+ u32 erst_size; -+ u64 erst_base; -+ u64 erst_dequeue; -+}; -+ -+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 resume_done[31]; -+ long unsigned int resuming_ports; -+ long unsigned int rexit_ports; -+ struct completion rexit_done[31]; -+ struct completion u3exit_done[31]; -+}; -+ -+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_device_context_array; -+ -+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; -+ struct xhci_intr_reg *ir_set; -+ __u32 hcs_params1; -+ __u32 hcs_params2; -+ __u32 hcs_params3; -+ __u32 hcc_params; -+ __u32 hcc_params2; -+ spinlock_t lock; -+ u8 sbrn; -+ u16 hci_version; -+ u8 max_slots; -+ u8 max_interrupters; -+ u8 max_ports; -+ u8 isoc_threshold; -+ u32 imod_interval; -+ u32 isoc_bei_interval; -+ int event_ring_max; -+ int page_size; -+ int page_shift; -+ int msix_count; -+ struct clk *clk; -+ struct clk *reg_clk; -+ struct reset_control *reset; -+ struct xhci_device_context_array *dcbaa; -+ 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_ring *event_ring; -+ struct xhci_erst erst; -+ struct xhci_scratchpad *scratchpad; -+ struct list_head lpm_failed_devs; -+ struct mutex mutex; -+ struct xhci_command *lpm_command; -+ struct xhci_virt_device *devs[256]; -+ struct xhci_root_port_bw_info *rh_bw; -+ struct dma_pool___2 *device_pool; -+ struct dma_pool___2 *segment_pool; -+ struct dma_pool___2 *small_streams_pool; -+ struct dma_pool___2 *medium_streams_pool; -+ unsigned int xhc_state; -+ u32 command; -+ 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; -+ u32 *ext_caps; -+ unsigned int num_ext_caps; -+ 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; -+ 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_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_CLEARED = 3, -+}; -+ -+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; -+ unsigned int num_trbs; -+}; -+ -+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___3 { -+ 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; -+}; -+ -+struct xhci_port { -+ __le32 *addr; -+ int hw_portnum; -+ int hcd_portnum; -+ struct xhci_hub *rhub; -+ struct xhci_port_cap *port_cap; -+}; -+ -+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 *); -+}; -+ -+typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); -+ -+enum xhci_ep_reset_type { -+ EP_HARD_RESET = 0, -+ EP_SOFT_RESET = 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_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_STALLED = 5, -+}; -+ -+struct xhci_dbc; -+ -+struct dbc_ep { -+ struct xhci_dbc *dbc; -+ struct list_head list_pending; -+ struct xhci_ring *ring; -+ unsigned int direction: 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; -+ enum dbc_state state; -+ struct delayed_work event_work; -+ 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; -+ int slot_id; -+ 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; -+ u8 fake_port; -+ u8 real_port; -+ 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; -+ 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 num_trbs_free; -+ unsigned int bounce_buf_len; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xhci_log_portsc { -+ struct trace_entry ent; -+ 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; -+}; -+ -+struct trace_event_data_offsets_xhci_log_ctx { -+ u32 ctx_data; -+}; -+ -+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 {}; -+ -+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 *, u32, u32); -+ -+typedef void (*btf_trace_xhci_get_port_status)(void *, u32, u32); -+ -+typedef void (*btf_trace_xhci_hub_status_data)(void *, u32, 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 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 xhci_driver_data { -+ u64 quirks; -+ const char *firmware; -+}; -+ -+struct xhci_plat_priv { -+ const char *firmware_name; -+ long long unsigned int quirks; -+ int (*plat_setup)(struct usb_hcd *); -+ 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 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 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 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 *, struct ktermios *); -+ void (*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]; -+}; -+ -+struct usbcons_info { -+ int magic; -+ int break_flag; -+ struct usb_serial_port *port; -+}; -+ -+enum typec_port_type { -+ TYPEC_PORT_SRC = 0, -+ TYPEC_PORT_SNK = 1, -+ TYPEC_PORT_DRP = 2, -+}; -+ -+enum typec_port_data { -+ TYPEC_PORT_DFP = 0, -+ TYPEC_PORT_UFP = 1, -+ TYPEC_PORT_DRD = 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, -+}; -+ -+enum typec_orientation { -+ TYPEC_ORIENTATION_NONE = 0, -+ TYPEC_ORIENTATION_NORMAL = 1, -+ TYPEC_ORIENTATION_REVERSE = 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; -+}; -+ -+enum typec_plug_index { -+ TYPEC_PLUG_SOP_P = 0, -+ TYPEC_PLUG_SOP_PP = 1, -+}; -+ -+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_desc { -+ unsigned int usb_pd: 1; -+ enum typec_accessory accessory; -+ struct usb_pd_identity *identity; -+ u16 pd_revision; -+}; -+ -+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 typec_switch; -+ -+struct typec_mux; -+ -+struct typec_capability; -+ -+struct typec_port { -+ unsigned int id; -+ struct device dev; -+ struct ida mode_ids; -+ 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; -+ enum typec_orientation orientation; -+ struct typec_switch *sw; -+ struct typec_mux *mux; -+ const struct typec_capability *cap; -+ const struct typec_operations *ops; -+ struct list_head port_list; -+ struct mutex port_list_lock; -+ void *pld; -+}; -+ -+enum usb_pd_svdm_ver { -+ SVDM_VER_1_0 = 0, -+ SVDM_VER_2_0 = 1, -+ SVDM_VER_MAX = 1, -+}; -+ -+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; -+ const struct typec_operations *ops; -+}; -+ -+struct typec_altmode; -+ -+struct typec_mux_state { -+ struct typec_altmode *alt; -+ long unsigned int mode; -+ void *data; -+}; -+ -+struct typec_altmode_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; -+}; -+ -+struct typec_device_id { -+ __u16 svid; -+ __u8 mode; -+ kernel_ulong_t driver_data; -+}; -+ -+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); -+}; -+ -+enum { -+ TYPEC_STATE_SAFE = 0, -+ TYPEC_STATE_USB = 1, -+ TYPEC_STATE_MODAL = 2, -+}; -+ -+struct altmode { -+ unsigned int id; -+ struct typec_altmode adev; -+ struct typec_mux *mux; -+ 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_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; -+}; -+ -+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 typec_switch___2; -+ -+typedef int (*typec_switch_set_fn_t)(struct typec_switch___2 *, enum typec_orientation); -+ -+struct typec_switch___2 { -+ struct device dev; -+ typec_switch_set_fn_t set; -+}; -+ -+typedef int (*typec_mux_set_fn_t)(struct typec_mux *, struct typec_mux_state *); -+ -+struct typec_mux { -+ struct device dev; -+ typec_mux_set_fn_t set; -+}; -+ -+struct typec_switch_desc { -+ struct fwnode_handle *fwnode; -+ typec_switch_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+struct typec_mux_desc { -+ struct fwnode_handle *fwnode; -+ typec_mux_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+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 port_node { -+ struct list_head list; -+ struct device *dev; -+ void *pld; -+}; -+ -+enum usb_role { -+ USB_ROLE_NONE = 0, -+ USB_ROLE_HOST = 1, -+ USB_ROLE_DEVICE = 2, -+}; -+ -+struct usb_role_switch; -+ -+struct ucsi; -+ -+struct ucsi_altmode; -+ -+struct ucsi_operations { -+ int (*read)(struct ucsi *, unsigned int, void *, size_t); -+ int (*sync_write)(struct ucsi *, unsigned int, const void *, size_t); -+ int (*async_write)(struct ucsi *, unsigned int, const void *, size_t); -+ bool (*update_altmodes)(struct ucsi *, struct ucsi_altmode *, struct ucsi_altmode *); -+}; -+ -+struct driver_data; -+ -+struct ucsi_capability { -+ u32 attributes; -+ u8 num_connectors; -+ u8 features; -+ u16 reserved_1; -+ u8 num_alt_modes; -+ u8 reserved_2; -+ u16 bc_version; -+ u16 pd_version; -+ u16 typec_version; -+}; -+ -+struct ucsi_connector; -+ -+struct ucsi { -+ u16 version; -+ struct device *dev; -+ struct driver_data *driver_data; -+ const struct ucsi_operations *ops; -+ struct ucsi_capability cap; -+ struct ucsi_connector *connector; -+ struct work_struct work; -+ struct mutex ppm_lock; -+ u64 ntfy; -+ long unsigned int flags; -+}; -+ -+struct ucsi_altmode { -+ u16 svid; -+ u32 mid; -+} __attribute__((packed)); -+ -+struct ucsi_connector_capability { -+ u8 op_mode; -+ u8 flags; -+}; -+ -+struct ucsi_connector_status { -+ u16 change; -+ u16 flags; -+ u32 request_data_obj; -+ u8 pwr_status; -+} __attribute__((packed)); -+ -+struct typec_partner___2; -+ -+struct ucsi_connector { -+ int num; -+ int: 32; -+ struct ucsi *ucsi; -+ struct mutex lock; -+ struct work_struct work; -+ struct completion complete; -+ struct typec_port *port; -+ struct typec_partner___2 *partner; -+ struct typec_altmode *port_altmode[30]; -+ struct typec_altmode *partner_altmode[30]; -+ struct typec_capability typec_cap; -+ u16 unprocessed_changes; -+ struct ucsi_connector_status status; -+ struct ucsi_connector_capability cap; -+ int: 24; -+ struct power_supply *psy; -+ struct power_supply_desc psy_desc; -+ u32 rdo; -+ u32 src_pdos[7]; -+ int num_pdos; -+ int: 32; -+ struct usb_role_switch *usb_role_sw; -+} __attribute__((packed)); -+ -+struct trace_event_raw_ucsi_log_command { -+ struct trace_entry ent; -+ u64 ctrl; -+ int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_connector_status { -+ struct trace_entry ent; -+ int port; -+ u16 change; -+ u8 opmode; -+ u8 connected; -+ u8 pwr_dir; -+ u8 partner_flags; -+ u8 partner_type; -+ u32 request_data_obj; -+ u8 bc_status; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_register_altmode { -+ struct trace_entry ent; -+ u8 recipient; -+ u16 svid; -+ u8 mode; -+ u32 vdo; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ucsi_log_command {}; -+ -+struct trace_event_data_offsets_ucsi_log_connector_status {}; -+ -+struct trace_event_data_offsets_ucsi_log_register_altmode {}; -+ -+typedef void (*btf_trace_ucsi_run_command)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_reset_ppm)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_connector_change)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_port)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_altmode)(void *, u8, struct typec_altmode *); -+ -+enum ucsi_psy_online_states { -+ UCSI_PSY_OFFLINE = 0, -+ UCSI_PSY_FIXED_ONLINE = 1, -+ UCSI_PSY_PROG_ONLINE = 2, -+}; -+ -+struct typec_displayport_data { -+ u32 status; -+ u32 conf; -+}; -+ -+enum { -+ DP_PIN_ASSIGN_A = 0, -+ DP_PIN_ASSIGN_B = 1, -+ DP_PIN_ASSIGN_C = 2, -+ DP_PIN_ASSIGN_D = 3, -+ DP_PIN_ASSIGN_E = 4, -+ DP_PIN_ASSIGN_F = 5, -+}; -+ -+struct ucsi_dp { -+ struct typec_displayport_data data; -+ struct ucsi_connector *con; -+ struct typec_altmode *alt; -+ struct work_struct work; -+ int offset; -+ bool override; -+ bool initialized; -+ u32 header; -+ u32 *vdo_data; -+ u8 vdo_size; -+}; -+ -+struct ucsi_acpi { -+ struct device *dev; -+ struct ucsi *ucsi; -+ void *base; -+ struct completion complete; -+ long unsigned int flags; -+ guid_t guid; -+}; -+ -+struct usb_role_switch___2; -+ -+typedef int (*usb_role_switch_set_t)(struct usb_role_switch___2 *, enum usb_role); -+ -+typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch___2 *); -+ -+struct usb_role_switch___2 { -+ struct device dev; -+ struct mutex lock; -+ enum usb_role role; -+ 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; -+}; -+ -+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 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 amba_kmi_port { -+ struct serio *io; -+ struct clk *clk; -+ void *base; -+ unsigned int irq; -+ unsigned int divisor; -+ unsigned int open; -+}; -+ -+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; -+}; -+ -+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]; -+}; -+ -+union input_seq_state { -+ struct { -+ short unsigned int pos; -+ bool mutex_acquired; -+ }; -+ void *p; -+}; -+ -+struct input_devres { -+ struct input_dev *input; -+}; -+ -+struct input_event { -+ __kernel_ulong_t __sec; -+ __kernel_ulong_t __usec; -+ __u16 type; -+ __u16 code; -+ __s32 value; -+}; -+ -+struct input_mt_pos { -+ s16 x; -+ s16 y; -+}; -+ -+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 touchscreen_properties { -+ unsigned int max_x; -+ unsigned int max_y; -+ bool invert_x; -+ bool invert_y; -+ bool swap_x_y; -+}; -+ -+struct led_init_data { -+ struct fwnode_handle *fwnode; -+ const char *default_label; -+ const char *devicename; -+ bool devname_mandatory; -+}; -+ -+struct input_led { -+ struct led_classdev cdev; -+ struct input_handle *handle; -+ unsigned int code; -+}; -+ -+struct input_leds { -+ struct input_handle handle; -+ unsigned int num_leds; -+ struct input_led leds[0]; -+}; -+ -+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_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 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; -+ u32 function_row_physmap[24]; -+ int num_function_row_keys; -+}; -+ -+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 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 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; -+}; -+ -+struct i2c_devinfo { -+ struct list_head list; -+ int busnum; -+ struct i2c_board_info board_info; -+}; -+ -+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 *, const struct i2c_device_id *); -+ int (*remove)(struct i2c_client *); -+ int (*probe_new)(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; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_i2c_read {}; -+ -+struct trace_event_data_offsets_i2c_reply { -+ u32 buf; -+}; -+ -+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 class_compat___2; -+ -+struct i2c_cmd_arg { -+ unsigned int cmd; -+ void *arg; -+}; -+ -+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 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; -+ 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 qup_i2c_block { -+ int count; -+ int pos; -+ int tx_tag_len; -+ int rx_tag_len; -+ int data_len; -+ int cur_blk_len; -+ int total_tx_len; -+ int total_rx_len; -+ int tx_fifo_data_pos; -+ int tx_fifo_free; -+ int rx_fifo_data_pos; -+ int fifo_available; -+ u32 tx_fifo_data; -+ u32 rx_fifo_data; -+ u8 *cur_data; -+ u8 *cur_tx_tags; -+ bool tx_tags_sent; -+ bool send_last_word; -+ bool rx_tags_fetched; -+ bool rx_bytes_read; -+ bool is_tx_blk_mode; -+ bool is_rx_blk_mode; -+ u8 tags[6]; -+}; -+ -+struct qup_i2c_tag { -+ u8 *start; -+ dma_addr_t addr; -+}; -+ -+struct qup_i2c_bam { -+ struct qup_i2c_tag tag; -+ struct dma_chan *dma; -+ struct scatterlist *sg; -+ unsigned int sg_cnt; -+}; -+ -+struct qup_i2c_dev { -+ struct device *dev; -+ void *base; -+ int irq; -+ struct clk *clk; -+ struct clk *pclk; -+ struct i2c_adapter adap; -+ int clk_ctl; -+ int out_fifo_sz; -+ int in_fifo_sz; -+ int out_blk_sz; -+ int in_blk_sz; -+ int blk_xfer_limit; -+ long unsigned int one_byte_t; -+ long unsigned int xfer_timeout; -+ struct qup_i2c_block blk; -+ struct i2c_msg *msg; -+ int pos; -+ u32 bus_err; -+ u32 qup_err; -+ bool is_last; -+ bool is_smbus_read; -+ u32 config_run; -+ bool is_dma; -+ bool use_dma; -+ unsigned int max_xfer_sg_len; -+ unsigned int tag_buf_pos; -+ unsigned int blk_mode_threshold; -+ struct dma_pool___2 *dpool; -+ struct qup_i2c_tag start_tag; -+ struct qup_i2c_bam brx; -+ struct qup_i2c_bam btx; -+ struct completion xfer; -+ void (*write_tx_fifo)(struct qup_i2c_dev *); -+ void (*read_rx_fifo)(struct qup_i2c_dev *); -+ void (*write_rx_tags)(struct qup_i2c_dev *); -+}; -+ -+struct pps_ktime { -+ __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_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_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; -+ wait_queue_head_t queue; -+ unsigned int id; -+ const void *lookup_cookie; -+ struct cdev cdev; -+ struct device *dev; -+ struct fasync_struct *async_queue; -+ spinlock_t lock; -+}; -+ -+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 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; -+ struct ptp_pin_desc *pin_config; -+ int (*adjfine)(struct ptp_clock_info *, long int); -+ int (*adjfreq)(struct ptp_clock_info *, s32); -+ int (*adjphase)(struct ptp_clock_info *, s32); -+ 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 (*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_PPS = 2, -+ PTP_CLOCK_PPSUSR = 3, -+}; -+ -+struct ptp_clock_event { -+ int type; -+ int index; -+ union { -+ u64 timestamp; -+ struct pps_event_time pps_times; -+ }; -+}; -+ -+struct timestamp_event_queue { -+ struct ptp_extts_event buf[128]; -+ int head; -+ int tail; -+ spinlock_t lock; -+}; -+ -+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 timestamp_event_queue tsevq; -+ struct mutex tsevq_mux; -+ 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; -+}; -+ -+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 rsv[12]; -+}; -+ -+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; -+ unsigned int rsv[3]; -+ 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 ptp_vclock { -+ struct ptp_clock *pclock; -+ struct ptp_clock_info info; -+ struct ptp_clock *clock; -+ struct cyclecounter cc; -+ struct timecounter tc; -+ spinlock_t lock; -+}; -+ -+struct gpio_restart { -+ struct gpio_desc *reset_gpio; -+ struct notifier_block restart_handler; -+ u32 active_delay_ms; -+ u32 inactive_delay_ms; -+ u32 wait_delay_ms; -+}; -+ -+struct syscon_reboot_context { -+ struct regmap *map; -+ u32 offset; -+ u32 value; -+ u32 mask; -+ struct notifier_block restart_handler; -+}; -+ -+enum power_supply_notifier_events { -+ PSY_EVENT_PROP_CHANGED = 0, -+}; -+ -+struct power_supply_battery_ocv_table { -+ int ocv; -+ int capacity; -+}; -+ -+struct power_supply_resistance_temp_table { -+ int temp; -+ int resistance; -+}; -+ -+struct power_supply_battery_info { -+ 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; -+ int factory_internal_resistance_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; -+}; -+ -+struct psy_am_i_supplied_data { -+ struct power_supply *psy; -+ unsigned int count; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ POWER_SUPPLY_SCOPE_UNKNOWN = 0, -+ POWER_SUPPLY_SCOPE_SYSTEM = 1, -+ POWER_SUPPLY_SCOPE_DEVICE = 2, -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 **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 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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum hwmon_pwm_attributes { -+ hwmon_pwm_input = 0, -+ hwmon_pwm_enable = 1, -+ hwmon_pwm_mode = 2, -+ hwmon_pwm_freq = 3, -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_hwmon_attr_show_string { -+ u32 attr_name; -+ u32 label; -+}; -+ -+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; -+ 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 thermal_attr { -+ struct device_attribute attr; -+ char name[20]; -+}; -+ -+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_data_offsets_thermal_temperature { -+ u32 thermal_zone; -+}; -+ -+struct trace_event_data_offsets_cdev_update { -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_thermal_zone_trip { -+ u32 thermal_zone; -+}; -+ -+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); -+ -+struct thermal_instance { -+ int id; -+ char name[20]; -+ struct thermal_zone_device *tz; -+ struct thermal_cooling_device *cdev; -+ int 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 tz_node; -+ struct list_head cdev_node; -+ unsigned int weight; -+}; -+ -+struct genl_dumpit_info { -+ const struct genl_family *family; -+ struct genl_ops op; -+ struct nlattr **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_MAX = 20, -+}; -+ -+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_MAX = 14, -+}; -+ -+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_MAX = 7, -+}; -+ -+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 cdev_state; -+ int cdev_max_state; -+}; -+ -+typedef int (*cb_t)(struct param *); -+ -+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; -+ 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 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; -+ -+struct mddev; -+ -+struct md_rdev; -+ -+struct md_cluster_operations { -+ int (*join)(struct mddev *, int); -+ int (*leave)(struct mddev *); -+ int (*slot_number)(struct mddev *); -+ int (*resync_info_update)(struct mddev *, sector_t, sector_t); -+ 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); -+}; -+ -+struct md_cluster_info; -+ -+struct md_personality; -+ -+struct md_thread; -+ -+struct bitmap; -+ -+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; -+ atomic_t active_io; -+ int ro; -+ int sysfs_active; -+ struct gendisk *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; -+ char *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 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; -+ atomic_t recovery_active; -+ wait_queue_head_t recovery_wait; -+ sector_t recovery_cp; -+ 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; -+ 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; -+ struct request_queue *queue; -+ struct bitmap *bitmap; -+ 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_acct_set; -+ struct bio *flush_bio; -+ atomic_t flush_pending; -+ ktime_t start_flush; -+ ktime_t prev_flush_start; -+ struct work_struct flush_work; -+ struct work_struct event_work; -+ mempool_t *serial_info_pool; -+ void (*sync_super)(struct mddev *, struct md_rdev *); -+ struct md_cluster_info *cluster_info; -+ unsigned int good_device_nr; -+ unsigned int noio_flag; -+ bool has_superblocks: 1; -+ bool fail_last_dev: 1; -+ bool serialize_policy: 1; -+}; -+ -+struct serial_in_rdev; -+ -+struct md_rdev { -+ struct list_head same_set; -+ sector_t sectors; -+ struct mddev *mddev; -+ int last_events; -+ struct block_device *meta_bdev; -+ struct block_device *bdev; -+ 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 work_struct del_work; -+ 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 serial_in_rdev { -+ struct rb_root_cached serial_rb; -+ spinlock_t serial_lock; -+ wait_queue_head_t serial_io_wait; -+}; -+ -+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, -+ RemoveSynchronized = 14, -+ ExternalBbl = 15, -+ FailFast = 16, -+ LastDev = 17, -+ CollisionCheck = 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_ALLOW_SB_UPDATE = 8, -+ MD_UPDATING_SB = 9, -+ MD_NOT_READY = 10, -+ MD_BROKEN = 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, -+}; -+ -+struct md_personality { -+ char *name; -+ int level; -+ struct list_head list; -+ struct module *owner; -+ 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, 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 (*quiesce)(struct mddev *, int); -+ void * (*takeover)(struct mddev *); -+ int (*change_consistency_policy)(struct mddev *, const char *); -+}; -+ -+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 bitmap_page; -+ -+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; -+ 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 recovery_flags { -+ MD_RECOVERY_RUNNING = 0, -+ MD_RECOVERY_SYNC = 1, -+ MD_RECOVERY_RECOVER = 2, -+ MD_RECOVERY_INTR = 3, -+ MD_RECOVERY_DONE = 4, -+ MD_RECOVERY_NEEDED = 5, -+ MD_RECOVERY_REQUESTED = 6, -+ MD_RECOVERY_CHECK = 7, -+ MD_RECOVERY_RESHAPE = 8, -+ MD_RECOVERY_FROZEN = 9, -+ MD_RECOVERY_ERROR = 10, -+ MD_RECOVERY_WAIT = 11, -+ MD_RESYNCING_REMOTE = 12, -+}; -+ -+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_acct { -+ struct bio *orig_bio; -+ long unsigned int start_time; -+ struct bio bio_clone; -+}; -+ -+struct bitmap_page { -+ char *map; -+ unsigned int hijacked: 1; -+ unsigned int pending: 1; -+ unsigned int count: 30; -+}; -+ -+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 *); -+ 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 bitmap_counter_t; -+ -+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; -+ -+enum bitmap_page_attr { -+ BITMAP_PAGE_DIRTY = 0, -+ BITMAP_PAGE_PENDING = 1, -+ BITMAP_PAGE_NEEDWRITE = 2, -+}; -+ -+struct md_setup_args { -+ int minor; -+ int partitioned; -+ int level; -+ int chunk; -+ char *device_names; -+}; -+ -+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_MAX = 4, -+}; -+ -+struct dm_kobject_holder { -+ struct kobject kobj; -+ struct completion completion; -+}; -+ -+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_NVDIMM = 24, -+ MEM_WIO2 = 25, -+}; -+ -+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; -+ 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; -+}; -+ -+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_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; -+ 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; -+ struct completion removal_complete; -+ char name[32]; -+ u32 nr_instances; -+ struct edac_device_instance *instances; -+ struct edac_device_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_device_block; -+ -+struct edac_dev_sysfs_block_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct kobject *, struct attribute *, char *); -+ ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -+ struct edac_device_block *block; -+ unsigned int value; -+}; -+ -+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 dev_ch_attribute { -+ struct device_attribute attr; -+ unsigned int channel; -+}; -+ -+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); -+}; -+ -+struct edac_pci_counter { -+ atomic_t pe_count; -+ atomic_t npe_count; -+}; -+ -+struct edac_pci_ctl_info { -+ struct list_head link; -+ int pci_idx; -+ struct bus_type *edac_subsys; -+ 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; -+ struct completion complete; -+ char name[32]; -+ struct edac_pci_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_pci_gen_data { -+ int edac_idx; -+}; -+ -+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 ghes_pvt { -+ struct mem_ctl_info *mci; -+ char other_detail[400]; -+ char msg[80]; -+}; -+ -+struct ghes_hw_desc { -+ int num_dimms; -+ struct dimm_info *dimms; -+}; -+ -+struct memdev_dmi_entry { -+ u8 type; -+ u8 length; -+ u16 handle; -+ u16 phys_mem_array_handle; -+ u16 mem_err_info_handle; -+ u16 total_width; -+ u16 data_width; -+ u16 size; -+ u8 form_factor; -+ u8 device_set; -+ u8 device_locator; -+ u8 bank_locator; -+ u8 memory_type; -+ u16 type_detail; -+ u16 speed; -+ u8 manufacturer; -+ u8 serial_number; -+ u8 asset_tag; -+ u8 part_number; -+ u8 attributes; -+ u32 extended_size; -+ u16 conf_mem_clk_speed; -+} __attribute__((packed)); -+ -+enum opp_table_access { -+ OPP_TABLE_ACCESS_UNKNOWN = 0, -+ OPP_TABLE_ACCESS_EXCLUSIVE = 1, -+ OPP_TABLE_ACCESS_SHARED = 2, -+}; -+ -+struct icc_path; -+ -+struct dev_pm_opp___2; -+ -+struct dev_pm_set_opp_data; -+ -+struct dev_pm_opp_supply; -+ -+struct opp_table___2 { -+ 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; -+ struct dev_pm_opp___2 *current_opp; -+ struct dev_pm_opp___2 *suspend_opp; -+ struct mutex genpd_virt_dev_lock; -+ struct device **genpd_virt_devs; -+ struct opp_table___2 **required_opp_tables; -+ unsigned int required_opp_count; -+ unsigned int *supported_hw; -+ unsigned int supported_hw_count; -+ const char *prop_name; -+ struct clk *clk; -+ struct regulator **regulators; -+ int regulator_count; -+ struct icc_path **paths; -+ unsigned int path_count; -+ bool enabled; -+ bool genpd_performance_state; -+ bool is_genpd; -+ int (*set_opp)(struct dev_pm_set_opp_data *); -+ struct dev_pm_opp_supply *sod_supplies; -+ struct dev_pm_set_opp_data *set_opp_data; -+ struct dentry *dentry; -+ char dentry_name[255]; -+}; -+ -+struct dev_pm_opp_icc_bw; -+ -+struct dev_pm_opp___2 { -+ struct list_head node; -+ struct kref kref; -+ bool available; -+ bool dynamic; -+ bool turbo; -+ bool suspend; -+ bool removed; -+ unsigned int pstate; -+ long unsigned int rate; -+ 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___2 **required_opps; -+ struct opp_table___2 *opp_table; -+ struct device_node *np; -+ struct dentry *dentry; -+}; -+ -+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_supply { -+ long unsigned int u_volt; -+ long unsigned int u_volt_min; -+ long unsigned int u_volt_max; -+ long unsigned int u_amp; -+}; -+ -+struct dev_pm_opp_icc_bw { -+ u32 avg; -+ u32 peak; -+}; -+ -+struct dev_pm_opp_info { -+ long unsigned int rate; -+ struct dev_pm_opp_supply *supplies; -+}; -+ -+struct dev_pm_set_opp_data { -+ struct dev_pm_opp_info old_opp; -+ struct dev_pm_opp_info new_opp; -+ struct regulator **regulators; -+ unsigned int regulator_count; -+ struct clk *clk; -+ struct device *dev; -+}; -+ -+struct opp_device { -+ struct list_head node; -+ const struct device *dev; -+ struct dentry *dentry; -+}; -+ -+struct cpufreq_policy_data { -+ struct cpufreq_cpuinfo cpuinfo; -+ struct cpufreq_frequency_table *freq_table; -+ unsigned int cpu; -+ unsigned int min; -+ unsigned int max; -+}; -+ -+struct cpufreq_freqs { -+ struct cpufreq_policy *policy; -+ unsigned int old; -+ unsigned int new; -+ u8 flags; -+}; -+ -+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)(unsigned int); -+ int (*bios_limit)(int, unsigned int *); -+ int (*online)(struct cpufreq_policy *); -+ int (*offline)(struct cpufreq_policy *); -+ int (*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); -+}; -+ -+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 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_data { -+ struct gov_attr_set attr_set; -+ 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 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 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 (*free)(struct policy_dbs_info *); -+ int (*init)(struct dbs_data *); -+ void (*exit)(struct dbs_data *); -+ void (*start)(struct cpufreq_policy *); -+}; -+ -+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 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; -+}; -+ -+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 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_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 menu_device { -+ int needs_update; -+ int tick_wakeup; -+ u64 next_timer_ns; -+ unsigned int bucket; -+ unsigned int correction_factor[12]; -+ unsigned int intervals[8]; -+ int interval_ptr; -+}; -+ -+struct pci_dev___2; -+ -+struct sdhci_pci_data { -+ struct pci_dev___2 *pdev; -+ int slotno; -+ int rst_n_gpio; -+ int cd_gpio; -+ int (*setup)(struct sdhci_pci_data *); -+ void (*cleanup)(struct sdhci_pci_data *); -+}; -+ -+struct led_properties { -+ u32 color; -+ bool color_present; -+ const char *function; -+ u32 func_enum; -+ bool func_enum_present; -+ const char *label; -+}; -+ -+struct sdei_event { -+ struct list_head list; -+ bool reregister; -+ bool reenable; -+ u32 event_num; -+ u8 type; -+ u8 priority; -+ union { -+ struct sdei_registered_event___2 *registered; -+ struct sdei_registered_event___2 *private_registered; -+ }; -+}; -+ -+struct sdei_crosscall_args { -+ struct sdei_event *event; -+ atomic_t errors; -+ int first_error; -+}; -+ -+struct dmi_memdev_info { -+ const char *device; -+ const char *bank; -+ u64 size; -+ u16 handle; -+ u8 type; -+}; -+ -+struct dmi_sysfs_entry { -+ struct dmi_header dh; -+ struct kobject kobj; -+ int instance; -+ int position; -+ struct list_head list; -+ struct kobject *child; -+}; -+ -+struct dmi_sysfs_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct dmi_sysfs_entry *, char *); -+}; -+ -+struct dmi_sysfs_mapped_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct dmi_sysfs_entry *, const struct dmi_header *, char *); -+}; -+ -+typedef ssize_t (*dmi_callback)(struct dmi_sysfs_entry *, const struct dmi_header *, void *); -+ -+struct find_dmi_data { -+ struct dmi_sysfs_entry *entry; -+ dmi_callback callback; -+ void *private; -+ int instance_countdown; -+ ssize_t ret; -+}; -+ -+struct dmi_read_state { -+ char *buf; -+ loff_t pos; -+ size_t count; -+}; -+ -+struct dmi_entry_attr_show_data { -+ struct attribute *attr; -+ char *buf; -+}; -+ -+struct dmi_system_event_log { -+ struct dmi_header header; -+ u16 area_length; -+ u16 header_start_offset; -+ u16 data_start_offset; -+ u8 access_method; -+ u8 status; -+ u32 change_token; -+ union { -+ struct { -+ u16 index_addr; -+ u16 data_addr; -+ } io; -+ u32 phys_addr32; -+ u16 gpnv_handle; -+ u32 access_method_address; -+ }; -+ u8 header_format; -+ u8 type_descriptors_supported_count; -+ u8 per_log_type_descriptor_length; -+ u8 supported_log_type_descriptos[0]; -+} __attribute__((packed)); -+ -+typedef u8 (*sel_io_reader)(const struct dmi_system_event_log *, loff_t); -+ -+struct dmi_device_attribute { -+ struct device_attribute dev_attr; -+ int field; -+}; -+ -+struct mafield { -+ const char *prefix; -+ int field; -+}; -+ -+struct fw_cfg_file { -+ __be32 size; -+ __be16 select; -+ __u16 reserved; -+ char name[56]; -+}; -+ -+struct fw_cfg_dma_access { -+ __be32 control; -+ __be32 length; -+ __be64 address; -+}; -+ -+struct fw_cfg_vmcoreinfo { -+ __le16 host_format; -+ __le16 guest_format; -+ __le32 size; -+ __le64 paddr; -+}; -+ -+struct fw_cfg_sysfs_entry { -+ struct kobject kobj; -+ u32 size; -+ u16 select; -+ char name[56]; -+ struct list_head list; -+}; -+ -+struct fw_cfg_sysfs_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct fw_cfg_sysfs_entry *, char *); -+}; -+ -+struct scmi_event { -+ u8 id; -+ size_t max_payld_sz; -+ size_t max_report_sz; -+}; -+ -+struct scmi_event_ops { -+ int (*get_num_sources)(const struct scmi_protocol_handle *); -+ int (*set_notify_enabled)(const struct scmi_protocol_handle *, u8, u32, bool); -+ void * (*fill_custom_report)(const struct scmi_protocol_handle *, u8, ktime_t, const void *, size_t, void *, u32 *); -+}; -+ -+struct scmi_protocol_events { -+ size_t queue_sz; -+ const struct scmi_event_ops *ops; -+ const struct scmi_event *evts; -+ unsigned int num_events; -+ unsigned int num_sources; -+}; -+ -+struct scmi_msg_hdr { -+ u8 id; -+ u8 protocol_id; -+ u16 seq; -+ u32 status; -+ bool poll_completion; -+}; -+ -+struct scmi_msg { -+ void *buf; -+ size_t len; -+}; -+ -+struct scmi_xfer { -+ int transfer_id; -+ struct scmi_msg_hdr hdr; -+ struct scmi_msg tx; -+ struct scmi_msg rx; -+ struct completion done; -+ struct completion *async_done; -+}; -+ -+struct scmi_xfer_ops { -+ int (*version_get)(const struct scmi_protocol_handle *, u32 *); -+ int (*xfer_get_init)(const struct scmi_protocol_handle *, u8, size_t, size_t, struct scmi_xfer **); -+ void (*reset_rx_to_maxsz)(const struct scmi_protocol_handle *, struct scmi_xfer *); -+ int (*do_xfer)(const struct scmi_protocol_handle *, struct scmi_xfer *); -+ int (*do_xfer_with_response)(const struct scmi_protocol_handle *, struct scmi_xfer *); -+ void (*xfer_put)(const struct scmi_protocol_handle *, struct scmi_xfer *); -+}; -+ -+typedef int (*scmi_prot_init_ph_fn_t)(const struct scmi_protocol_handle *); -+ -+struct scmi_protocol { -+ const u8 id; -+ struct module *owner; -+ const scmi_prot_init_ph_fn_t instance_init; -+ const scmi_prot_init_ph_fn_t instance_deinit; -+ const void *ops; -+ const struct scmi_protocol_events *events; -+}; -+ -+enum scmi_common_cmd { -+ PROTOCOL_VERSION = 0, -+ PROTOCOL_ATTRIBUTES = 1, -+ PROTOCOL_MESSAGE_ATTRIBUTES = 2, -+}; -+ -+struct scmi_chan_info { -+ struct device *dev; -+ struct scmi_handle *handle; -+ void *transport_info; -+}; -+ -+struct scmi_transport_ops { -+ bool (*chan_available)(struct device *, int); -+ int (*chan_setup)(struct scmi_chan_info *, struct device *, bool); -+ int (*chan_free)(int, void *, void *); -+ int (*send_message)(struct scmi_chan_info *, struct scmi_xfer *); -+ void (*mark_txdone)(struct scmi_chan_info *, int); -+ void (*fetch_response)(struct scmi_chan_info *, struct scmi_xfer *); -+ void (*fetch_notification)(struct scmi_chan_info *, size_t, struct scmi_xfer *); -+ void (*clear_channel)(struct scmi_chan_info *); -+ bool (*poll_done)(struct scmi_chan_info *, struct scmi_xfer *); -+}; -+ -+struct scmi_desc { -+ const struct scmi_transport_ops *ops; -+ int max_rx_timeout_ms; -+ int max_msg; -+ int max_msg_size; -+}; -+ -+struct trace_event_raw_scmi_xfer_begin { -+ struct trace_entry ent; -+ int transfer_id; -+ u8 msg_id; -+ u8 protocol_id; -+ u16 seq; -+ bool poll; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_scmi_xfer_end { -+ struct trace_entry ent; -+ int transfer_id; -+ u8 msg_id; -+ u8 protocol_id; -+ u16 seq; -+ int status; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_scmi_rx_done { -+ struct trace_entry ent; -+ int transfer_id; -+ u8 msg_id; -+ u8 protocol_id; -+ u16 seq; -+ u8 msg_type; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_scmi_xfer_begin {}; -+ -+struct trace_event_data_offsets_scmi_xfer_end {}; -+ -+struct trace_event_data_offsets_scmi_rx_done {}; -+ -+typedef void (*btf_trace_scmi_xfer_begin)(void *, int, u8, u8, u16, bool); -+ -+typedef void (*btf_trace_scmi_xfer_end)(void *, int, u8, u8, u16, int); -+ -+typedef void (*btf_trace_scmi_rx_done)(void *, int, u8, u8, u16, u8); -+ -+enum scmi_error_codes { -+ SCMI_SUCCESS = 0, -+ SCMI_ERR_SUPPORT = 4294967295, -+ SCMI_ERR_PARAMS = 4294967294, -+ SCMI_ERR_ACCESS = 4294967293, -+ SCMI_ERR_ENTRY = 4294967292, -+ SCMI_ERR_RANGE = 4294967291, -+ SCMI_ERR_BUSY = 4294967290, -+ SCMI_ERR_COMMS = 4294967289, -+ SCMI_ERR_GENERIC = 4294967288, -+ SCMI_ERR_HARDWARE = 4294967287, -+ SCMI_ERR_PROTOCOL = 4294967286, -+}; -+ -+struct scmi_requested_dev { -+ const struct scmi_device_id *id_table; -+ struct list_head node; -+}; -+ -+struct scmi_xfers_info { -+ struct scmi_xfer *xfer_block; -+ long unsigned int *xfer_alloc_table; -+ spinlock_t xfer_lock; -+}; -+ -+struct scmi_protocol_instance { -+ const struct scmi_handle *handle; -+ const struct scmi_protocol *proto; -+ void *gid; -+ refcount_t users; -+ void *priv; -+ struct scmi_protocol_handle ph; -+}; -+ -+struct scmi_info { -+ struct device *dev; -+ const struct scmi_desc *desc; -+ struct scmi_revision_info version; -+ struct scmi_handle handle; -+ struct scmi_xfers_info tx_minfo; -+ struct scmi_xfers_info rx_minfo; -+ struct idr tx_idr; -+ struct idr rx_idr; -+ struct idr protocols; -+ struct mutex protocols_mtx; -+ u8 *protocols_imp; -+ struct idr active_protocols; -+ void *notify_priv; -+ struct list_head node; -+ int users; -+}; -+ -+struct scmi_protocol_devres { -+ const struct scmi_handle *handle; -+ u8 protocol_id; -+}; -+ -+struct scmi_registered_events_desc; -+ -+struct scmi_notify_instance { -+ void *gid; -+ struct scmi_handle *handle; -+ struct work_struct init_work; -+ struct workqueue_struct *notify_wq; -+ struct mutex pending_mtx; -+ struct scmi_registered_events_desc **registered_protocols; -+ struct hlist_head pending_events_handlers[16]; -+}; -+ -+struct events_queue { -+ size_t sz; -+ struct kfifo kfifo; -+ struct work_struct notify_work; -+ struct workqueue_struct *wq; -+}; -+ -+struct scmi_event_header; -+ -+struct scmi_registered_event; -+ -+struct scmi_registered_events_desc { -+ u8 id; -+ const struct scmi_event_ops *ops; -+ struct events_queue equeue; -+ struct scmi_notify_instance *ni; -+ struct scmi_event_header *eh; -+ size_t eh_sz; -+ void *in_flight; -+ int num_events; -+ struct scmi_registered_event **registered_events; -+ struct mutex registered_mtx; -+ const struct scmi_protocol_handle *ph; -+ struct hlist_head registered_events_handlers[64]; -+}; -+ -+struct scmi_event_header { -+ ktime_t timestamp; -+ size_t payld_sz; -+ unsigned char evt_id; -+ unsigned char payld[0]; -+}; -+ -+struct scmi_registered_event { -+ struct scmi_registered_events_desc *proto; -+ const struct scmi_event *evt; -+ void *report; -+ u32 num_sources; -+ refcount_t *sources; -+ struct mutex sources_mtx; -+}; -+ -+struct scmi_event_handler { -+ u32 key; -+ refcount_t users; -+ struct scmi_registered_event *r_evt; -+ struct blocking_notifier_head chain; -+ struct hlist_node hash; -+ bool enabled; -+}; -+ -+struct scmi_notifier_devres { -+ const struct scmi_handle *handle; -+ u8 proto_id; -+ u8 evt_id; -+ u32 __src_id; -+ u32 *src_id; -+ struct notifier_block *nb; -+}; -+ -+enum scmi_notification_events { -+ SCMI_EVENT_POWER_STATE_CHANGED = 0, -+ SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED = 0, -+ SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED = 1, -+ SCMI_EVENT_SENSOR_TRIP_POINT_EVENT = 0, -+ SCMI_EVENT_SENSOR_UPDATE = 1, -+ SCMI_EVENT_RESET_ISSUED = 0, -+ SCMI_EVENT_BASE_ERROR_EVENT = 0, -+ SCMI_EVENT_SYSTEM_POWER_STATE_NOTIFIER = 0, -+}; -+ -+struct scmi_base_error_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ bool fatal; -+ unsigned int cmd_count; -+ long long unsigned int reports[0]; -+}; -+ -+enum scmi_base_protocol_cmd { -+ BASE_DISCOVER_VENDOR = 3, -+ BASE_DISCOVER_SUB_VENDOR = 4, -+ BASE_DISCOVER_IMPLEMENT_VERSION = 5, -+ BASE_DISCOVER_LIST_PROTOCOLS = 6, -+ BASE_DISCOVER_AGENT = 7, -+ BASE_NOTIFY_ERRORS = 8, -+ BASE_SET_DEVICE_PERMISSIONS = 9, -+ BASE_SET_PROTOCOL_PERMISSIONS = 10, -+ BASE_RESET_AGENT_CONFIGURATION = 11, -+}; -+ -+struct scmi_msg_resp_base_attributes { -+ u8 num_protocols; -+ u8 num_agents; -+ __le16 reserved; -+}; -+ -+struct scmi_msg_base_error_notify { -+ __le32 event_control; -+}; -+ -+struct scmi_base_error_notify_payld { -+ __le32 agent_id; -+ __le32 error_status; -+ __le64 msg_reports[1024]; -+}; -+ -+struct scmi_clock_info { -+ char name[16]; -+ bool rate_discrete; -+ union { -+ struct { -+ int num_rates; -+ u64 rates[16]; -+ } list; -+ struct { -+ u64 min_rate; -+ u64 max_rate; -+ u64 step_size; -+ } range; -+ }; -+}; -+ -+struct scmi_clk_proto_ops { -+ int (*count_get)(const struct scmi_protocol_handle *); -+ const struct scmi_clock_info * (*info_get)(const struct scmi_protocol_handle *, u32); -+ int (*rate_get)(const struct scmi_protocol_handle *, u32, u64 *); -+ int (*rate_set)(const struct scmi_protocol_handle *, u32, u64); -+ int (*enable)(const struct scmi_protocol_handle *, u32); -+ int (*disable)(const struct scmi_protocol_handle *, u32); -+}; -+ -+enum scmi_clock_protocol_cmd { -+ CLOCK_ATTRIBUTES = 3, -+ CLOCK_DESCRIBE_RATES = 4, -+ CLOCK_RATE_SET = 5, -+ CLOCK_RATE_GET = 6, -+ CLOCK_CONFIG_SET = 7, -+}; -+ -+struct scmi_msg_resp_clock_protocol_attributes { -+ __le16 num_clocks; -+ u8 max_async_req; -+ u8 reserved; -+}; -+ -+struct scmi_msg_resp_clock_attributes { -+ __le32 attributes; -+ u8 name[16]; -+}; -+ -+struct scmi_clock_set_config { -+ __le32 id; -+ __le32 attributes; -+}; -+ -+struct scmi_msg_clock_describe_rates { -+ __le32 id; -+ __le32 rate_index; -+}; -+ -+struct scmi_msg_resp_clock_describe_rates { -+ __le32 num_rates_flags; -+ struct { -+ __le32 value_low; -+ __le32 value_high; -+ } rate[0]; -+}; -+ -+struct scmi_clock_set_rate { -+ __le32 flags; -+ __le32 id; -+ __le32 value_low; -+ __le32 value_high; -+}; -+ -+struct clock_info { -+ u32 version; -+ int num_clocks; -+ int max_async_req; -+ atomic_t cur_async_req; -+ struct scmi_clock_info *clk; -+}; -+ -+struct scmi_perf_proto_ops { -+ int (*limits_set)(const struct scmi_protocol_handle *, u32, u32, u32); -+ int (*limits_get)(const struct scmi_protocol_handle *, u32, u32 *, u32 *); -+ int (*level_set)(const struct scmi_protocol_handle *, u32, u32, bool); -+ int (*level_get)(const struct scmi_protocol_handle *, u32, u32 *, bool); -+ int (*device_domain_id)(struct device *); -+ int (*transition_latency_get)(const struct scmi_protocol_handle *, struct device *); -+ int (*device_opps_add)(const struct scmi_protocol_handle *, struct device *); -+ int (*freq_set)(const struct scmi_protocol_handle *, u32, long unsigned int, bool); -+ int (*freq_get)(const struct scmi_protocol_handle *, u32, long unsigned int *, bool); -+ int (*est_power_get)(const struct scmi_protocol_handle *, u32, long unsigned int *, long unsigned int *); -+ bool (*fast_switch_possible)(const struct scmi_protocol_handle *, struct device *); -+ bool (*power_scale_mw_get)(const struct scmi_protocol_handle *); -+}; -+ -+struct scmi_perf_limits_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int domain_id; -+ unsigned int range_max; -+ unsigned int range_min; -+}; -+ -+struct scmi_perf_level_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int domain_id; -+ unsigned int performance_level; -+}; -+ -+enum scmi_performance_protocol_cmd { -+ PERF_DOMAIN_ATTRIBUTES = 3, -+ PERF_DESCRIBE_LEVELS = 4, -+ PERF_LIMITS_SET = 5, -+ PERF_LIMITS_GET = 6, -+ PERF_LEVEL_SET = 7, -+ PERF_LEVEL_GET = 8, -+ PERF_NOTIFY_LIMITS = 9, -+ PERF_NOTIFY_LEVEL = 10, -+ PERF_DESCRIBE_FASTCHANNEL = 11, -+}; -+ -+struct scmi_opp { -+ u32 perf; -+ u32 power; -+ u32 trans_latency_us; -+}; -+ -+struct scmi_msg_resp_perf_attributes { -+ __le16 num_domains; -+ __le16 flags; -+ __le32 stats_addr_low; -+ __le32 stats_addr_high; -+ __le32 stats_size; -+}; -+ -+struct scmi_msg_resp_perf_domain_attributes { -+ __le32 flags; -+ __le32 rate_limit_us; -+ __le32 sustained_freq_khz; -+ __le32 sustained_perf_level; -+ u8 name[16]; -+}; -+ -+struct scmi_msg_perf_describe_levels { -+ __le32 domain; -+ __le32 level_index; -+}; -+ -+struct scmi_perf_set_limits { -+ __le32 domain; -+ __le32 max_level; -+ __le32 min_level; -+}; -+ -+struct scmi_perf_get_limits { -+ __le32 max_level; -+ __le32 min_level; -+}; -+ -+struct scmi_perf_set_level { -+ __le32 domain; -+ __le32 level; -+}; -+ -+struct scmi_perf_notify_level_or_limits { -+ __le32 domain; -+ __le32 notify_enable; -+}; -+ -+struct scmi_perf_limits_notify_payld { -+ __le32 agent_id; -+ __le32 domain_id; -+ __le32 range_max; -+ __le32 range_min; -+}; -+ -+struct scmi_perf_level_notify_payld { -+ __le32 agent_id; -+ __le32 domain_id; -+ __le32 performance_level; -+}; -+ -+struct scmi_msg_resp_perf_describe_levels { -+ __le16 num_returned; -+ __le16 num_remaining; -+ struct { -+ __le32 perf_val; -+ __le32 power; -+ __le16 transition_latency_us; -+ __le16 reserved; -+ } opp[0]; -+}; -+ -+struct scmi_perf_get_fc_info { -+ __le32 domain; -+ __le32 message_id; -+}; -+ -+struct scmi_msg_resp_perf_desc_fc { -+ __le32 attr; -+ __le32 rate_limit; -+ __le32 chan_addr_low; -+ __le32 chan_addr_high; -+ __le32 chan_size; -+ __le32 db_addr_low; -+ __le32 db_addr_high; -+ __le32 db_set_lmask; -+ __le32 db_set_hmask; -+ __le32 db_preserve_lmask; -+ __le32 db_preserve_hmask; -+}; -+ -+struct scmi_fc_db_info { -+ int width; -+ u64 set; -+ u64 mask; -+ void *addr; -+}; -+ -+struct scmi_fc_info { -+ void *level_set_addr; -+ void *limit_set_addr; -+ void *level_get_addr; -+ void *limit_get_addr; -+ struct scmi_fc_db_info *level_set_db; -+ struct scmi_fc_db_info *limit_set_db; -+}; -+ -+struct perf_dom_info { -+ bool set_limits; -+ bool set_perf; -+ bool perf_limit_notify; -+ bool perf_level_notify; -+ bool perf_fastchannels; -+ u32 opp_count; -+ u32 sustained_freq_khz; -+ u32 sustained_perf_level; -+ u32 mult_factor; -+ char name[16]; -+ struct scmi_opp opp[16]; -+ struct scmi_fc_info *fc_info; -+}; -+ -+struct scmi_perf_info { -+ u32 version; -+ int num_domains; -+ bool power_scale_mw; -+ u64 stats_addr; -+ u32 stats_size; -+ struct perf_dom_info *dom_info; -+}; -+ -+struct scmi_power_proto_ops { -+ int (*num_domains_get)(const struct scmi_protocol_handle *); -+ char * (*name_get)(const struct scmi_protocol_handle *, u32); -+ int (*state_set)(const struct scmi_protocol_handle *, u32, u32); -+ int (*state_get)(const struct scmi_protocol_handle *, u32, u32 *); -+}; -+ -+struct scmi_power_state_changed_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int domain_id; -+ unsigned int power_state; -+}; -+ -+enum scmi_power_protocol_cmd { -+ POWER_DOMAIN_ATTRIBUTES = 3, -+ POWER_STATE_SET = 4, -+ POWER_STATE_GET = 5, -+ POWER_STATE_NOTIFY = 6, -+}; -+ -+struct scmi_msg_resp_power_attributes { -+ __le16 num_domains; -+ __le16 reserved; -+ __le32 stats_addr_low; -+ __le32 stats_addr_high; -+ __le32 stats_size; -+}; -+ -+struct scmi_msg_resp_power_domain_attributes { -+ __le32 flags; -+ u8 name[16]; -+}; -+ -+struct scmi_power_set_state { -+ __le32 flags; -+ __le32 domain; -+ __le32 state; -+}; -+ -+struct scmi_power_state_notify { -+ __le32 domain; -+ __le32 notify_enable; -+}; -+ -+struct scmi_power_state_notify_payld { -+ __le32 agent_id; -+ __le32 domain_id; -+ __le32 power_state; -+}; -+ -+struct power_dom_info { -+ bool state_set_sync; -+ bool state_set_async; -+ bool state_set_notify; -+ char name[16]; -+}; -+ -+struct scmi_power_info { -+ u32 version; -+ int num_domains; -+ u64 stats_addr; -+ u32 stats_size; -+ struct power_dom_info *dom_info; -+}; -+ -+struct scmi_reset_issued_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int domain_id; -+ unsigned int reset_state; -+}; -+ -+enum scmi_reset_protocol_cmd { -+ RESET_DOMAIN_ATTRIBUTES = 3, -+ RESET = 4, -+ RESET_NOTIFY = 5, -+}; -+ -+struct scmi_msg_resp_reset_domain_attributes { -+ __le32 attributes; -+ __le32 latency; -+ u8 name[16]; -+}; -+ -+struct scmi_msg_reset_domain_reset { -+ __le32 domain_id; -+ __le32 flags; -+ __le32 reset_state; -+}; -+ -+struct scmi_msg_reset_notify { -+ __le32 id; -+ __le32 event_control; -+}; -+ -+struct scmi_reset_issued_notify_payld { -+ __le32 agent_id; -+ __le32 domain_id; -+ __le32 reset_state; -+}; -+ -+struct reset_dom_info { -+ bool async_reset; -+ bool reset_notify; -+ u32 latency_us; -+ char name[16]; -+}; -+ -+struct scmi_reset_info { -+ u32 version; -+ int num_domains; -+ struct reset_dom_info *dom_info; -+}; -+ -+struct scmi_sensor_reading { -+ long long int value; -+ long long unsigned int timestamp; -+}; -+ -+struct scmi_range_attrs { -+ long long int min_range; -+ long long int max_range; -+}; -+ -+struct scmi_sensor_axis_info { -+ unsigned int id; -+ unsigned int type; -+ int scale; -+ char name[16]; -+ bool extended_attrs; -+ unsigned int resolution; -+ int exponent; -+ struct scmi_range_attrs attrs; -+}; -+ -+struct scmi_sensor_intervals_info { -+ bool segmented; -+ unsigned int count; -+ unsigned int *desc; -+ unsigned int prealloc_pool[16]; -+}; -+ -+struct scmi_sensor_info { -+ unsigned int id; -+ unsigned int type; -+ int scale; -+ unsigned int num_trip_points; -+ bool async; -+ bool update; -+ bool timestamped; -+ int tstamp_scale; -+ unsigned int num_axis; -+ struct scmi_sensor_axis_info *axis; -+ struct scmi_sensor_intervals_info intervals; -+ unsigned int sensor_config; -+ char name[16]; -+ bool extended_scalar_attrs; -+ unsigned int sensor_power; -+ unsigned int resolution; -+ int exponent; -+ struct scmi_range_attrs scalar_attrs; -+}; -+ -+struct scmi_sensor_proto_ops { -+ int (*count_get)(const struct scmi_protocol_handle *); -+ const struct scmi_sensor_info * (*info_get)(const struct scmi_protocol_handle *, u32); -+ int (*trip_point_config)(const struct scmi_protocol_handle *, u32, u8, u64); -+ int (*reading_get)(const struct scmi_protocol_handle *, u32, u64 *); -+ int (*reading_get_timestamped)(const struct scmi_protocol_handle *, u32, u8, struct scmi_sensor_reading *); -+ int (*config_get)(const struct scmi_protocol_handle *, u32, u32 *); -+ int (*config_set)(const struct scmi_protocol_handle *, u32, u32); -+}; -+ -+struct scmi_sensor_trip_point_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int sensor_id; -+ unsigned int trip_point_desc; -+}; -+ -+struct scmi_sensor_update_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int sensor_id; -+ unsigned int readings_count; -+ struct scmi_sensor_reading readings[0]; -+}; -+ -+enum scmi_sensor_protocol_cmd { -+ SENSOR_DESCRIPTION_GET = 3, -+ SENSOR_TRIP_POINT_NOTIFY = 4, -+ SENSOR_TRIP_POINT_CONFIG = 5, -+ SENSOR_READING_GET = 6, -+ SENSOR_AXIS_DESCRIPTION_GET = 7, -+ SENSOR_LIST_UPDATE_INTERVALS = 8, -+ SENSOR_CONFIG_GET = 9, -+ SENSOR_CONFIG_SET = 10, -+ SENSOR_CONTINUOUS_UPDATE_NOTIFY = 11, -+}; -+ -+struct scmi_msg_resp_sensor_attributes { -+ __le16 num_sensors; -+ u8 max_requests; -+ u8 reserved; -+ __le32 reg_addr_low; -+ __le32 reg_addr_high; -+ __le32 reg_size; -+}; -+ -+struct scmi_msg_resp_attrs { -+ __le32 min_range_low; -+ __le32 min_range_high; -+ __le32 max_range_low; -+ __le32 max_range_high; -+}; -+ -+struct scmi_sensor_descriptor { -+ __le32 id; -+ __le32 attributes_low; -+ __le32 attributes_high; -+ u8 name[16]; -+ __le32 power; -+ __le32 resolution; -+ struct scmi_msg_resp_attrs scalar_attrs; -+}; -+ -+struct scmi_msg_resp_sensor_description { -+ __le16 num_returned; -+ __le16 num_remaining; -+ struct scmi_sensor_descriptor desc[0]; -+}; -+ -+struct scmi_msg_sensor_axis_description_get { -+ __le32 id; -+ __le32 axis_desc_index; -+}; -+ -+struct scmi_axis_descriptor { -+ __le32 id; -+ __le32 attributes_low; -+ __le32 attributes_high; -+ u8 name[16]; -+ __le32 resolution; -+ struct scmi_msg_resp_attrs attrs; -+}; -+ -+struct scmi_msg_resp_sensor_axis_description { -+ __le32 num_axis_flags; -+ struct scmi_axis_descriptor desc[0]; -+}; -+ -+struct scmi_msg_sensor_list_update_intervals { -+ __le32 id; -+ __le32 index; -+}; -+ -+struct scmi_msg_resp_sensor_list_update_intervals { -+ __le32 num_intervals_flags; -+ __le32 intervals[0]; -+}; -+ -+struct scmi_msg_sensor_request_notify { -+ __le32 id; -+ __le32 event_control; -+}; -+ -+struct scmi_msg_set_sensor_trip_point { -+ __le32 id; -+ __le32 event_control; -+ __le32 value_low; -+ __le32 value_high; -+}; -+ -+struct scmi_msg_sensor_config_set { -+ __le32 id; -+ __le32 sensor_config; -+}; -+ -+struct scmi_msg_sensor_reading_get { -+ __le32 id; -+ __le32 flags; -+}; -+ -+struct scmi_resp_sensor_reading_complete { -+ __le32 id; -+ __le32 readings_low; -+ __le32 readings_high; -+}; -+ -+struct scmi_sensor_reading_resp { -+ __le32 sensor_value_low; -+ __le32 sensor_value_high; -+ __le32 timestamp_low; -+ __le32 timestamp_high; -+}; -+ -+struct scmi_resp_sensor_reading_complete_v3 { -+ __le32 id; -+ struct scmi_sensor_reading_resp readings[0]; -+}; -+ -+struct scmi_sensor_trip_notify_payld { -+ __le32 agent_id; -+ __le32 sensor_id; -+ __le32 trip_point_desc; -+}; -+ -+struct scmi_sensor_update_notify_payld { -+ __le32 agent_id; -+ __le32 sensor_id; -+ struct scmi_sensor_reading_resp readings[0]; -+}; -+ -+struct sensors_info { -+ u32 version; -+ int num_sensors; -+ int max_requests; -+ u64 reg_addr; -+ u32 reg_size; -+ struct scmi_sensor_info *sensors; -+}; -+ -+struct scmi_system_power_state_notifier_report { -+ ktime_t timestamp; -+ unsigned int agent_id; -+ unsigned int flags; -+ unsigned int system_state; -+}; -+ -+enum scmi_system_protocol_cmd { -+ SYSTEM_POWER_STATE_NOTIFY = 5, -+}; -+ -+struct scmi_system_power_state_notify { -+ __le32 notify_enable; -+}; -+ -+struct scmi_system_power_state_notifier_payld { -+ __le32 agent_id; -+ __le32 flags; -+ __le32 system_state; -+}; -+ -+struct scmi_system_info { -+ u32 version; -+}; -+ -+struct scmi_voltage_info { -+ unsigned int id; -+ bool segmented; -+ bool negative_volts_allowed; -+ unsigned int attributes; -+ char name[16]; -+ unsigned int num_levels; -+ int *levels_uv; -+}; -+ -+struct scmi_voltage_proto_ops { -+ int (*num_domains_get)(const struct scmi_protocol_handle *); -+ const struct scmi_voltage_info * (*info_get)(const struct scmi_protocol_handle *, u32); -+ int (*config_set)(const struct scmi_protocol_handle *, u32, u32); -+ int (*config_get)(const struct scmi_protocol_handle *, u32, u32 *); -+ int (*level_set)(const struct scmi_protocol_handle *, u32, u32, s32); -+ int (*level_get)(const struct scmi_protocol_handle *, u32, s32 *); -+}; -+ -+enum scmi_voltage_protocol_cmd { -+ VOLTAGE_DOMAIN_ATTRIBUTES = 3, -+ VOLTAGE_DESCRIBE_LEVELS = 4, -+ VOLTAGE_CONFIG_SET = 5, -+ VOLTAGE_CONFIG_GET = 6, -+ VOLTAGE_LEVEL_SET = 7, -+ VOLTAGE_LEVEL_GET = 8, -+}; -+ -+struct scmi_msg_resp_domain_attributes { -+ __le32 attr; -+ u8 name[16]; -+}; -+ -+struct scmi_msg_cmd_describe_levels { -+ __le32 domain_id; -+ __le32 level_index; -+}; -+ -+struct scmi_msg_resp_describe_levels { -+ __le32 flags; -+ __le32 voltage[0]; -+}; -+ -+struct scmi_msg_cmd_config_set { -+ __le32 domain_id; -+ __le32 config; -+}; -+ -+struct scmi_msg_cmd_level_set { -+ __le32 domain_id; -+ __le32 flags; -+ __le32 voltage_level; -+}; -+ -+struct voltage_info { -+ unsigned int version; -+ unsigned int num_domains; -+ struct scmi_voltage_info *domains; -+}; -+ -+struct scmi_shared_mem { -+ __le32 reserved; -+ __le32 channel_status; -+ __le32 reserved1[2]; -+ __le32 flags; -+ __le32 length; -+ __le32 msg_header; -+ u8 msg_payload[0]; -+}; -+ -+struct scmi_shared_mem___2; -+ -+struct scmi_mailbox { -+ struct mbox_client cl; -+ struct mbox_chan___2 *chan; -+ struct scmi_chan_info *cinfo; -+ struct scmi_shared_mem___2 *shmem; -+}; -+ -+struct scmi_smc { -+ struct scmi_chan_info *cinfo; -+ struct scmi_shared_mem___2 *shmem; -+ struct mutex shmem_lock; -+ u32 func_id; -+ int irq; -+ struct completion tx_complete; -+}; -+ -+struct bmp_header { -+ u16 id; -+ u32 size; -+} __attribute__((packed)); -+ -+typedef efi_status_t efi_query_variable_store_t(u32, long unsigned int, bool); -+ -+typedef struct { -+ efi_guid_t guid; -+ u64 table; -+} efi_config_table_64_t; -+ -+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 { -+ u16 version; -+ u16 length; -+ u32 runtime_services_supported; -+} efi_rt_properties_table_t; -+ -+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; -+}; -+ -+struct efivars { -+ struct kset *kset; -+ struct kobject *kobject; -+ const struct efivar_operations *ops; -+}; -+ -+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 efi_error_code { -+ efi_status_t status; -+ int errno; -+ const char *description; -+}; -+ -+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); -+}; -+ -+typedef struct { -+ u32 version; -+ u32 num_entries; -+ u32 desc_size; -+ u32 reserved; -+ efi_memory_desc_t entry[0]; -+} efi_memory_attributes_table_t; -+ -+typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_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; -+}; -+ -+struct efi_mem_range { -+ struct range range; -+ u64 attribute; -+}; -+ -+enum { -+ SYSTAB = 0, -+ MMBASE = 1, -+ MMSIZE = 2, -+ DCSIZE = 3, -+ DCVERS = 4, -+ PARAMCOUNT = 5, -+}; -+ -+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 *); -+ ssize_t (*store)(struct esre_entry *, const char *, size_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_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 cper_sec_fw_err_rec_ref { -+ u8 record_type; -+ u8 revision; -+ u8 reserved[6]; -+ u64 record_identifier; -+ guid_t record_identifier_guid; -+}; -+ -+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, -+}; -+ -+struct efi_runtime_work { -+ void *arg1; -+ void *arg2; -+ void *arg3; -+ void *arg4; -+ void *arg5; -+ efi_status_t status; -+ struct work_struct work; -+ enum efi_rts_ids efi_rts_id; -+ struct completion efi_rts_comp; -+}; -+ -+struct efi_mokvar_sysfs_attr { -+ struct bin_attribute bin_attr; -+ struct list_head node; -+}; -+ -+typedef u64 efi_physical_addr_t; -+ -+typedef void *efi_event_t; -+ -+typedef void (*efi_event_notify_t)(efi_event_t, void *); -+ -+typedef enum { -+ EfiTimerCancel = 0, -+ EfiTimerPeriodic = 1, -+ EfiTimerRelative = 2, -+} EFI_TIMER_DELAY; -+ -+typedef void *efi_handle_t; -+ -+typedef struct efi_generic_dev_path efi_device_path_protocol_t; -+ -+union efi_boot_services { -+ struct { -+ efi_table_hdr_t hdr; -+ void *raise_tpl; -+ void *restore_tpl; -+ efi_status_t (*allocate_pages)(int, int, long unsigned int, efi_physical_addr_t *); -+ efi_status_t (*free_pages)(efi_physical_addr_t, long unsigned int); -+ efi_status_t (*get_memory_map)(long unsigned int *, void *, long unsigned int *, long unsigned int *, u32 *); -+ efi_status_t (*allocate_pool)(int, long unsigned int, void **); -+ efi_status_t (*free_pool)(void *); -+ efi_status_t (*create_event)(u32, long unsigned int, efi_event_notify_t, void *, efi_event_t *); -+ efi_status_t (*set_timer)(efi_event_t, EFI_TIMER_DELAY, u64); -+ efi_status_t (*wait_for_event)(long unsigned int, efi_event_t *, long unsigned int *); -+ void *signal_event; -+ efi_status_t (*close_event)(efi_event_t); -+ void *check_event; -+ void *install_protocol_interface; -+ void *reinstall_protocol_interface; -+ void *uninstall_protocol_interface; -+ efi_status_t (*handle_protocol)(efi_handle_t, efi_guid_t *, void **); -+ void *__reserved; -+ void *register_protocol_notify; -+ efi_status_t (*locate_handle)(int, efi_guid_t *, void *, long unsigned int *, efi_handle_t *); -+ efi_status_t (*locate_device_path)(efi_guid_t *, efi_device_path_protocol_t **, efi_handle_t *); -+ efi_status_t (*install_configuration_table)(efi_guid_t *, void *); -+ void *load_image; -+ void *start_image; -+ efi_status_t (*exit)(efi_handle_t, efi_status_t, long unsigned int, efi_char16_t *); -+ void *unload_image; -+ efi_status_t (*exit_boot_services)(efi_handle_t, long unsigned int); -+ void *get_next_monotonic_count; -+ efi_status_t (*stall)(long unsigned int); -+ void *set_watchdog_timer; -+ void *connect_controller; -+ efi_status_t (*disconnect_controller)(efi_handle_t, efi_handle_t, efi_handle_t); -+ void *open_protocol; -+ void *close_protocol; -+ void *open_protocol_information; -+ void *protocols_per_handle; -+ void *locate_handle_buffer; -+ efi_status_t (*locate_protocol)(efi_guid_t *, void *, void **); -+ void *install_multiple_protocol_interfaces; -+ void *uninstall_multiple_protocol_interfaces; -+ void *calculate_crc32; -+ void *copy_mem; -+ void *set_mem; -+ void *create_event_ex; -+ }; -+ struct { -+ efi_table_hdr_t hdr; -+ u32 raise_tpl; -+ u32 restore_tpl; -+ u32 allocate_pages; -+ u32 free_pages; -+ u32 get_memory_map; -+ u32 allocate_pool; -+ u32 free_pool; -+ u32 create_event; -+ u32 set_timer; -+ u32 wait_for_event; -+ u32 signal_event; -+ u32 close_event; -+ u32 check_event; -+ u32 install_protocol_interface; -+ u32 reinstall_protocol_interface; -+ u32 uninstall_protocol_interface; -+ u32 handle_protocol; -+ u32 __reserved; -+ u32 register_protocol_notify; -+ u32 locate_handle; -+ u32 locate_device_path; -+ u32 install_configuration_table; -+ u32 load_image; -+ u32 start_image; -+ u32 exit; -+ u32 unload_image; -+ u32 exit_boot_services; -+ u32 get_next_monotonic_count; -+ u32 stall; -+ u32 set_watchdog_timer; -+ u32 connect_controller; -+ u32 disconnect_controller; -+ u32 open_protocol; -+ u32 close_protocol; -+ u32 open_protocol_information; -+ u32 protocols_per_handle; -+ u32 locate_handle_buffer; -+ u32 locate_protocol; -+ u32 install_multiple_protocol_interfaces; -+ u32 uninstall_multiple_protocol_interfaces; -+ u32 calculate_crc32; -+ u32 copy_mem; -+ u32 set_mem; -+ u32 create_event_ex; -+ } mixed_mode; -+}; -+ -+typedef union efi_boot_services efi_boot_services_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; -+ -+typedef struct { -+ u16 scan_code; -+ efi_char16_t unicode_char; -+} efi_input_key_t; -+ -+union efi_simple_text_input_protocol; -+ -+typedef union efi_simple_text_input_protocol efi_simple_text_input_protocol_t; -+ -+union efi_simple_text_input_protocol { -+ struct { -+ void *reset; -+ efi_status_t (*read_keystroke)(efi_simple_text_input_protocol_t *, efi_input_key_t *); -+ efi_event_t wait_for_key; -+ }; -+ struct { -+ u32 reset; -+ u32 read_keystroke; -+ u32 wait_for_key; -+ } mixed_mode; -+}; -+ -+union efi_simple_text_output_protocol; -+ -+typedef union efi_simple_text_output_protocol efi_simple_text_output_protocol_t; -+ -+union efi_simple_text_output_protocol { -+ struct { -+ void *reset; -+ efi_status_t (*output_string)(efi_simple_text_output_protocol_t *, efi_char16_t *); -+ void *test_string; -+ }; -+ struct { -+ u32 reset; -+ u32 output_string; -+ u32 test_string; -+ } mixed_mode; -+}; -+ -+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; -+ -+struct cper_arm_ctx_info { -+ u16 version; -+ u16 type; -+ u32 size; -+}; -+ -+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 of_timer_irq { -+ int irq; -+ int index; -+ int percpu; -+ 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; -+}; -+ -+typedef int (*of_init_fn_1_ret)(struct device_node *); -+ -+struct clocksource_mmio { -+ void *reg; -+ struct clocksource clksrc; -+}; -+ -+enum arch_timer_reg { -+ ARCH_TIMER_REG_CTRL = 0, -+ ARCH_TIMER_REG_TVAL = 1, -+}; -+ -+enum arch_timer_spi_nr { -+ ARCH_TIMER_PHYS_SPI = 0, -+ ARCH_TIMER_VIRT_SPI = 1, -+ ARCH_TIMER_MAX_TIMER_SPI = 2, -+}; -+ -+enum arch_timer_erratum_match_type { -+ ate_match_dt = 0, -+ ate_match_local_cap_id = 1, -+ ate_match_acpi_oem_info = 2, -+}; -+ -+struct arch_timer_erratum_workaround { -+ enum arch_timer_erratum_match_type match_type; -+ const void *id; -+ const char *desc; -+ u32 (*read_cntp_tval_el0)(); -+ u32 (*read_cntv_tval_el0)(); -+ u64 (*read_cntpct_el0)(); -+ u64 (*read_cntvct_el0)(); -+ int (*set_next_event_phys)(long unsigned int, struct clock_event_device *); -+ int (*set_next_event_virt)(long unsigned int, struct clock_event_device *); -+ bool disable_compat_vdso; -+}; -+ -+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 ate_acpi_oem_info { -+ char oem_id[7]; -+ char oem_table_id[9]; -+ u32 oem_revision; -+}; -+ -+typedef bool (*ate_match_fn_t)(const struct arch_timer_erratum_workaround *, const void *); -+ -+struct sp804_timer { -+ int load; -+ int load_h; -+ int value; -+ int value_h; -+ int ctrl; -+ int intclr; -+ int ris; -+ int mis; -+ int bgload; -+ int bgload_h; -+ int timer_base[2]; -+ int width; -+}; -+ -+struct sp804_clkevt { -+ void *base; -+ void *load; -+ void *load_h; -+ void *value; -+ void *value_h; -+ void *ctrl; -+ void *intclr; -+ void *ris; -+ void *mis; -+ void *bgload; -+ void *bgload_h; -+ long unsigned int reload; -+ int width; -+}; -+ -+struct hid_device_id { -+ __u16 bus; -+ __u16 group; -+ __u32 vendor; -+ __u32 product; -+ kernel_ulong_t driver_data; -+}; -+ -+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; -+ __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_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; -+ __s8 hat_min; -+ __s8 hat_max; -+ __s8 hat_dir; -+ __s16 wheel_accumulated; -+}; -+ -+struct hid_report; -+ -+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 logical_minimum; -+ __s32 logical_maximum; -+ __s32 physical_minimum; -+ __s32 physical_maximum; -+ __s32 unit_exponent; -+ unsigned int unit; -+ struct hid_report *report; -+ unsigned int index; -+ struct hid_input *hidinput; -+ __u16 dpad; -+}; -+ -+struct hid_device; -+ -+struct hid_report { -+ struct list_head list; -+ struct list_head hidinput_list; -+ unsigned int id; -+ unsigned int type; -+ unsigned int application; -+ struct hid_field *field[256]; -+ unsigned int maxfield; -+ unsigned int size; -+ struct hid_device *device; -+}; -+ -+struct hid_input { -+ struct list_head list; -+ struct hid_report *report; -+ struct input_dev *input; -+ const char *name; -+ bool registered; -+ struct list_head reports; -+ unsigned int application; -+}; -+ -+enum hid_type { -+ HID_TYPE_OTHER = 0, -+ HID_TYPE_USBMOUSE = 1, -+ HID_TYPE_USBNONE = 2, -+}; -+ -+struct hid_report_enum { -+ unsigned int numbered; -+ struct list_head report_list; -+ struct hid_report *report_id_hash[256]; -+}; -+ -+enum hid_battery_status { -+ HID_BATTERY_UNKNOWN = 0, -+ HID_BATTERY_QUERIED = 1, -+ HID_BATTERY_REPORTED = 2, -+}; -+ -+struct hid_driver; -+ -+struct hid_ll_driver; -+ -+struct hid_device { -+ __u8 *dev_rdesc; -+ unsigned int dev_rsize; -+ __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; -+ struct hid_ll_driver *ll_driver; -+ struct mutex ll_open_lock; -+ unsigned int ll_open_count; -+ struct power_supply *battery; -+ __s32 battery_capacity; -+ __s32 battery_min; -+ __s32 battery_max; -+ __s32 battery_report_type; -+ __s32 battery_report_id; -+ enum hid_battery_status battery_status; -+ bool battery_avoid_query; -+ ktime_t battery_ratelimit_time; -+ long unsigned int status; -+ unsigned int claimed; -+ unsigned int 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 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 *); -+ __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 *); -+}; -+ -+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 hid_report_id { -+ __u32 report_type; -+}; -+ -+struct hid_usage_id { -+ __u32 usage_hid; -+ __u32 usage_type; -+ __u32 usage_code; -+}; -+ -+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 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; -+}; -+ -+typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); -+ -+struct quirks_list_struct { -+ struct hid_device_id hid_bl_item; -+ struct list_head node; -+}; -+ -+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 hidraw_devinfo { -+ __u32 bustype; -+ __s16 vendor; -+ __s16 product; -+}; -+ -+struct hidraw_report { -+ __u8 *value; -+ int len; -+}; -+ -+struct hidraw_list { -+ struct hidraw_report buffer[64]; -+ int head; -+ int tail; -+ struct fasync_struct *fasync; -+ struct hidraw *hidraw; -+ struct list_head node; -+ struct mutex read_mutex; -+}; -+ -+struct magicmouse_sc { -+ struct input_dev *input; -+ long unsigned int quirks; -+ int ntouches; -+ int scroll_accel; -+ long unsigned int scroll_jiffies; -+ struct { -+ short int x; -+ short int y; -+ short int scroll_x; -+ short int scroll_y; -+ u8 size; -+ } touches[16]; -+ int tracking_ids[16]; -+ struct hid_device *hdev; -+ struct delayed_work work; -+}; -+ -+struct ntrig_data { -+ __u16 x; -+ __u16 y; -+ __u16 w; -+ __u16 h; -+ __u16 id; -+ bool tipswitch; -+ bool confidence; -+ bool first_contact_touch; -+ bool reading_mt; -+ __u8 mt_footer[4]; -+ __u8 mt_foot_count; -+ __s8 act_state; -+ __s8 deactivate_slack; -+ __s8 activate_slack; -+ __u16 min_width; -+ __u16 min_height; -+ __u16 activation_width; -+ __u16 activation_height; -+ __u16 sensor_logical_width; -+ __u16 sensor_logical_height; -+ __u16 sensor_physical_width; -+ __u16 sensor_physical_height; -+}; -+ -+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 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 desc[1]; -+} __attribute__((packed)); -+ -+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_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_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 pidff_usage { -+ struct hid_field *field; -+ s32 *value; -+}; -+ -+struct pidff_device { -+ struct hid_device *hid; -+ struct hid_report *reports[13]; -+ struct pidff_usage set_effect[7]; -+ struct pidff_usage set_envelope[5]; -+ struct pidff_usage set_condition[8]; -+ struct pidff_usage set_periodic[5]; -+ struct pidff_usage set_constant[2]; -+ struct pidff_usage set_ramp[3]; -+ struct pidff_usage device_gain[1]; -+ struct pidff_usage block_load[2]; -+ struct pidff_usage pool[3]; -+ struct pidff_usage effect_operation[2]; -+ struct pidff_usage block_free[1]; -+ struct hid_field *create_new_effect_type; -+ struct hid_field *set_effect_type; -+ struct hid_field *effect_direction; -+ struct hid_field *device_control; -+ struct hid_field *block_load_status; -+ struct hid_field *effect_operation_status; -+ int control_id[2]; -+ int type_id[11]; -+ int status_id[2]; -+ int operation_id[2]; -+ int pid_id[64]; -+}; -+ -+struct alias_prop { -+ struct list_head link; -+ const char *alias; -+ struct device_node *np; -+ int id; -+ char stem[0]; -+}; -+ -+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); -+ bool optional; -+ bool node_not_dev; -+}; -+ -+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_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 (*translate)(__be32 *, u64, int); -+ bool has_flags; -+ unsigned int (*get_flags)(const __be32 *); -+}; -+ -+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 nvmem_cell; -+ -+struct rmem_assigned_device { -+ struct device *dev; -+ struct reserved_mem *rmem; -+ struct list_head list; -+}; -+ -+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_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 hi3660_chan_info { -+ unsigned int dst_irq; -+ unsigned int ack_irq; -+}; -+ -+struct hi3660_mbox { -+ struct device *dev; -+ void *base; -+ struct mbox_chan chan[32]; -+ struct hi3660_chan_info mchan[32]; -+ struct mbox_controller controller; -+}; -+ -+struct hi6220_mbox; -+ -+struct hi6220_mbox_chan { -+ unsigned int dir; -+ unsigned int dst_irq; -+ unsigned int ack_irq; -+ unsigned int slot; -+ struct hi6220_mbox *parent; -+}; -+ -+struct hi6220_mbox { -+ struct device *dev; -+ int irq; -+ bool tx_irq_mode; -+ void *ipc; -+ void *base; -+ unsigned int chan_num; -+ struct hi6220_mbox_chan *mchan; -+ void *irq_map_chan[32]; -+ struct mbox_chan *chan; -+ struct mbox_controller controller; -+}; -+ -+struct hwspinlock___2; -+ -+struct hwspinlock_ops { -+ int (*trylock)(struct hwspinlock___2 *); -+ void (*unlock)(struct hwspinlock___2 *); -+ void (*relax)(struct hwspinlock___2 *); -+}; -+ -+struct hwspinlock_device; -+ -+struct hwspinlock___2 { -+ 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___2 lock[0]; -+}; -+ -+union extcon_property_value { -+ int intval; -+}; -+ -+struct extcon_cable; -+ -+struct extcon_dev___2 { -+ const char *name; -+ const unsigned int *supported_cable; -+ const u32 *mutually_exclusive; -+ struct device dev; -+ 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_cable { -+ struct extcon_dev___2 *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 extcon_dev_notifier_devres { -+ struct extcon_dev___2 *edev; -+ unsigned int id; -+ struct notifier_block *nb; -+}; -+ -+struct arm_ccn_component { -+ void *base; -+ u32 type; -+ long unsigned int pmu_events_mask[1]; -+ union { -+ struct { -+ long unsigned int dt_cmp_mask[1]; -+ } xp; -+ }; -+}; -+ -+struct arm_ccn_dt { -+ int id; -+ void *base; -+ spinlock_t config_lock; -+ long unsigned int pmu_counters_mask[1]; -+ struct { -+ struct arm_ccn_component *source; -+ struct perf_event *event; -+ } pmu_counters[9]; -+ struct { -+ u64 l; -+ u64 h; -+ } cmp_mask[12]; -+ struct hrtimer hrtimer; -+ unsigned int cpu; -+ struct hlist_node node; -+ struct pmu pmu; -+}; -+ -+struct arm_ccn { -+ struct device *dev; -+ void *base; -+ unsigned int irq; -+ unsigned int sbas_present: 1; -+ unsigned int sbsx_present: 1; -+ int num_nodes; -+ struct arm_ccn_component *node; -+ int num_xps; -+ struct arm_ccn_component *xp; -+ struct arm_ccn_dt dt; -+ int mn_id; -+}; -+ -+struct arm_ccn_pmu_event { -+ struct device_attribute attr; -+ u32 type; -+ u32 event; -+ int num_ports; -+ int num_vcs; -+ const char *def; -+ int mask; -+}; -+ -+struct pmu_irq_ops { -+ void (*enable_pmuirq)(unsigned int); -+ void (*disable_pmuirq)(unsigned int); -+ void (*free_pmuirq)(unsigned int, int, void *); -+}; -+ -+struct hisi_pmu; -+ -+struct hisi_uncore_ops { -+ void (*write_evtype)(struct hisi_pmu *, int, u32); -+ int (*get_event_idx)(struct perf_event *); -+ u64 (*read_counter)(struct hisi_pmu *, struct hw_perf_event *); -+ void (*write_counter)(struct hisi_pmu *, struct hw_perf_event *, u64); -+ void (*enable_counter)(struct hisi_pmu *, struct hw_perf_event *); -+ void (*disable_counter)(struct hisi_pmu *, struct hw_perf_event *); -+ void (*enable_counter_int)(struct hisi_pmu *, struct hw_perf_event *); -+ void (*disable_counter_int)(struct hisi_pmu *, struct hw_perf_event *); -+ void (*start_counters)(struct hisi_pmu *); -+ void (*stop_counters)(struct hisi_pmu *); -+ u32 (*get_int_status)(struct hisi_pmu *); -+ void (*clear_int_status)(struct hisi_pmu *, int); -+ void (*enable_filter)(struct perf_event *); -+ void (*disable_filter)(struct perf_event *); -+}; -+ -+struct hisi_pmu_hwevents { -+ struct perf_event *hw_events[16]; -+ long unsigned int used_mask[1]; -+ const struct attribute_group **attr_groups; -+}; -+ -+struct hisi_pmu { -+ struct pmu pmu; -+ const struct hisi_uncore_ops *ops; -+ struct hisi_pmu_hwevents pmu_events; -+ cpumask_t associated_cpus; -+ int on_cpu; -+ int irq; -+ struct device *dev; -+ struct hlist_node node; -+ int sccl_id; -+ int ccl_id; -+ void *base; -+ u32 index_id; -+ u32 sub_id; -+ int num_counters; -+ int counter_bits; -+ int check_event; -+ u32 identifier; -+}; -+ -+struct cluster_pmu; -+ -+struct l2cache_pmu { -+ struct hlist_node node; -+ u32 num_pmus; -+ struct pmu pmu; -+ int num_counters; -+ cpumask_t cpumask; -+ struct platform_device *pdev; -+ struct cluster_pmu **pmu_cluster; -+ struct list_head clusters; -+}; -+ -+struct cluster_pmu { -+ struct list_head next; -+ struct perf_event *events[9]; -+ struct l2cache_pmu *l2cache_pmu; -+ long unsigned int used_counters[1]; -+ long unsigned int used_groups[1]; -+ int irq; -+ int cluster_id; -+ int on_cpu; -+ cpumask_t cluster_cpus; -+ spinlock_t pmu_lock; -+}; -+ -+struct l3cache_pmu { -+ struct pmu pmu; -+ struct hlist_node node; -+ void *regs; -+ struct perf_event *events[8]; -+ long unsigned int used_mask[1]; -+ cpumask_t cpumask; -+}; -+ -+struct l3cache_event_ops { -+ void (*start)(struct perf_event *); -+ void (*stop)(struct perf_event *, int); -+ void (*update)(struct perf_event *); -+}; -+ -+struct hw_pmu_info { -+ u32 type; -+ u32 enable_mask; -+ void *csr; -+}; -+ -+struct xgene_pmu; -+ -+struct xgene_pmu_dev { -+ struct hw_pmu_info *inf; -+ struct xgene_pmu *parent; -+ struct pmu pmu; -+ u8 max_counters; -+ long unsigned int cntr_assign_mask[1]; -+ u64 max_period; -+ const struct attribute_group **attr_groups; -+ struct perf_event *pmu_counter_event[4]; -+}; -+ -+struct xgene_pmu_ops; -+ -+struct xgene_pmu { -+ struct device *dev; -+ struct hlist_node node; -+ int version; -+ void *pcppmu_csr; -+ u32 mcb_active_mask; -+ u32 mc_active_mask; -+ u32 l3c_active_mask; -+ cpumask_t cpu; -+ int irq; -+ raw_spinlock_t lock; -+ const struct xgene_pmu_ops *ops; -+ struct list_head l3cpmus; -+ struct list_head iobpmus; -+ struct list_head mcbpmus; -+ struct list_head mcpmus; -+}; -+ -+struct xgene_pmu_ops { -+ void (*mask_int)(struct xgene_pmu *); -+ void (*unmask_int)(struct xgene_pmu *); -+ u64 (*read_counter)(struct xgene_pmu_dev *, int); -+ void (*write_counter)(struct xgene_pmu_dev *, int, u64); -+ void (*write_evttype)(struct xgene_pmu_dev *, int, u32); -+ void (*write_agentmsk)(struct xgene_pmu_dev *, u32); -+ void (*write_agent1msk)(struct xgene_pmu_dev *, u32); -+ void (*enable_counter)(struct xgene_pmu_dev *, int); -+ void (*disable_counter)(struct xgene_pmu_dev *, int); -+ void (*enable_counter_int)(struct xgene_pmu_dev *, int); -+ void (*disable_counter_int)(struct xgene_pmu_dev *, int); -+ void (*reset_counters)(struct xgene_pmu_dev *); -+ void (*start_counters)(struct xgene_pmu_dev *); -+ void (*stop_counters)(struct xgene_pmu_dev *); -+}; -+ -+struct xgene_pmu_dev_ctx { -+ char *name; -+ struct list_head next; -+ struct xgene_pmu_dev *pmu_dev; -+ struct hw_pmu_info inf; -+}; -+ -+struct xgene_pmu_data { -+ int id; -+ u32 data; -+}; -+ -+enum xgene_pmu_version { -+ PCP_PMU_V1 = 1, -+ PCP_PMU_V2 = 2, -+ PCP_PMU_V3 = 3, -+}; -+ -+enum xgene_pmu_dev_type { -+ PMU_TYPE_L3C = 0, -+ PMU_TYPE_IOB = 1, -+ PMU_TYPE_IOB_SLOW = 2, -+ PMU_TYPE_MCB = 3, -+ PMU_TYPE_MC = 4, -+}; -+ -+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; -+ 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[4]; -+ 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_mc_event { -+ u32 msg; -+ u32 label; -+ u32 driver_detail; -+}; -+ -+struct trace_event_data_offsets_arm_event {}; -+ -+struct trace_event_data_offsets_non_standard_event { -+ u32 fru_text; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_aer_event { -+ u32 dev_name; -+}; -+ -+struct trace_event_data_offsets_memory_failure_event {}; -+ -+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 *); -+ -+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 aer_header_log_regs *); -+ -+typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); -+ -+enum tb_cfg_pkg_type { -+ TB_CFG_PKG_READ = 1, -+ TB_CFG_PKG_WRITE = 2, -+ TB_CFG_PKG_ERROR = 3, -+ TB_CFG_PKG_NOTIFY_ACK = 4, -+ TB_CFG_PKG_EVENT = 5, -+ TB_CFG_PKG_XDOMAIN_REQ = 6, -+ TB_CFG_PKG_XDOMAIN_RESP = 7, -+ TB_CFG_PKG_OVERRIDE = 8, -+ TB_CFG_PKG_RESET = 9, -+ TB_CFG_PKG_ICM_EVENT = 10, -+ TB_CFG_PKG_ICM_CMD = 11, -+ TB_CFG_PKG_ICM_RESP = 12, -+ TB_CFG_PKG_PREPARE_TO_SLEEP = 13, -+}; -+ -+enum tb_security_level { -+ TB_SECURITY_NONE = 0, -+ TB_SECURITY_USER = 1, -+ TB_SECURITY_SECURE = 2, -+ TB_SECURITY_DPONLY = 3, -+ TB_SECURITY_USBONLY = 4, -+ TB_SECURITY_NOPCIE = 5, -+}; -+ -+struct tb_nhi; -+ -+struct tb_ctl; -+ -+struct tb_switch; -+ -+struct tb_cm_ops; -+ -+struct tb { -+ struct device dev; -+ struct mutex lock; -+ struct tb_nhi *nhi; -+ struct tb_ctl *ctl; -+ struct workqueue_struct *wq; -+ struct tb_switch *root_switch; -+ const struct tb_cm_ops *cm_ops; -+ int index; -+ enum tb_security_level security_level; -+ size_t nboot_acl; -+ long unsigned int privdata[0]; -+}; -+ -+struct tb_nhi_ops; -+ -+struct tb_ring; -+ -+struct tb_nhi { -+ spinlock_t lock; -+ struct pci_dev *pdev; -+ const struct tb_nhi_ops *ops; -+ void *iobase; -+ struct tb_ring **tx_rings; -+ struct tb_ring **rx_rings; -+ struct ida msix_ida; -+ bool going_away; -+ struct work_struct interrupt_work; -+ u32 hop_count; -+}; -+ -+struct tb_regs_switch_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 upstream_port_number: 6; -+ u32 max_port_number: 6; -+ u32 depth: 3; -+ u32 __unknown1: 1; -+ u32 revision: 8; -+ u32 route_lo; -+ u32 route_hi: 31; -+ bool enabled: 1; -+ u32 plug_events_delay: 8; -+ u32 cmuv: 8; -+ u32 __unknown4: 8; -+ u32 thunderbolt_version: 8; -+}; -+ -+enum tb_switch_tmu_rate { -+ TB_SWITCH_TMU_RATE_OFF = 0, -+ TB_SWITCH_TMU_RATE_HIFI = 16, -+ TB_SWITCH_TMU_RATE_NORMAL = 1000, -+}; -+ -+struct tb_switch_tmu { -+ int cap; -+ bool has_ucap; -+ enum tb_switch_tmu_rate rate; -+ bool unidirectional; -+}; -+ -+struct tb_port; -+ -+struct tb_dma_port; -+ -+struct tb_nvm; -+ -+struct tb_switch { -+ struct device dev; -+ struct tb_regs_switch_header config; -+ struct tb_port *ports; -+ struct tb_dma_port *dma_port; -+ struct tb_switch_tmu tmu; -+ struct tb *tb; -+ u64 uid; -+ uuid_t *uuid; -+ u16 vendor; -+ u16 device; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool link_usb4; -+ unsigned int generation; -+ int cap_plug_events; -+ int cap_lc; -+ bool is_unplugged; -+ u8 *drom; -+ struct tb_nvm *nvm; -+ bool no_nvm_upgrade; -+ bool safe_mode; -+ bool boot; -+ bool rpm; -+ unsigned int authorized; -+ enum tb_security_level security_level; -+ struct dentry *debugfs_dir; -+ u8 *key; -+ u8 connection_id; -+ u8 connection_key; -+ u8 link; -+ u8 depth; -+ struct completion rpm_complete; -+ long unsigned int quirks; -+ bool credit_allocation; -+ unsigned int max_usb3_credits; -+ unsigned int min_dp_aux_credits; -+ unsigned int min_dp_main_credits; -+ unsigned int max_pcie_credits; -+ unsigned int max_dma_credits; -+}; -+ -+struct tb_xdomain; -+ -+struct tb_cm_ops { -+ int (*driver_ready)(struct tb *); -+ int (*start)(struct tb *); -+ void (*stop)(struct tb *); -+ int (*suspend_noirq)(struct tb *); -+ int (*resume_noirq)(struct tb *); -+ int (*suspend)(struct tb *); -+ int (*freeze_noirq)(struct tb *); -+ int (*thaw_noirq)(struct tb *); -+ void (*complete)(struct tb *); -+ int (*runtime_suspend)(struct tb *); -+ int (*runtime_resume)(struct tb *); -+ int (*runtime_suspend_switch)(struct tb_switch *); -+ int (*runtime_resume_switch)(struct tb_switch *); -+ void (*handle_event)(struct tb *, enum tb_cfg_pkg_type, const void *, size_t); -+ int (*get_boot_acl)(struct tb *, uuid_t *, size_t); -+ int (*set_boot_acl)(struct tb *, const uuid_t *, size_t); -+ int (*disapprove_switch)(struct tb *, struct tb_switch *); -+ int (*approve_switch)(struct tb *, struct tb_switch *); -+ int (*add_switch_key)(struct tb *, struct tb_switch *); -+ int (*challenge_switch_key)(struct tb *, struct tb_switch *, const u8 *, u8 *); -+ int (*disconnect_pcie_paths)(struct tb *); -+ int (*approve_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*disconnect_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*usb4_switch_op)(struct tb_switch *, u16, u32 *, u8 *, const void *, size_t, void *, size_t); -+ int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *, u32 *); -+}; -+ -+struct tb_property_dir { -+ const uuid_t *uuid; -+ struct list_head properties; -+}; -+ -+struct tb_xdomain { -+ struct device dev; -+ struct tb *tb; -+ uuid_t *remote_uuid; -+ const uuid_t *local_uuid; -+ u64 route; -+ u16 vendor; -+ u16 device; -+ unsigned int local_max_hopid; -+ unsigned int remote_max_hopid; -+ struct mutex lock; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool is_unplugged; -+ bool needs_uuid; -+ struct ida service_ids; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ u32 *local_property_block; -+ u32 local_property_block_gen; -+ u32 local_property_block_len; -+ struct tb_property_dir *remote_properties; -+ u32 remote_property_block_gen; -+ struct delayed_work get_uuid_work; -+ int uuid_retries; -+ struct delayed_work get_properties_work; -+ int properties_retries; -+ struct delayed_work properties_changed_work; -+ int properties_changed_retries; -+ u8 link; -+ u8 depth; -+}; -+ -+struct tb_nhi_ops { -+ int (*init)(struct tb_nhi *); -+ int (*suspend_noirq)(struct tb_nhi *, bool); -+ int (*resume_noirq)(struct tb_nhi *); -+ int (*runtime_suspend)(struct tb_nhi *); -+ int (*runtime_resume)(struct tb_nhi *); -+ void (*shutdown)(struct tb_nhi *); -+}; -+ -+struct ring_desc; -+ -+struct tb_ring { -+ spinlock_t lock; -+ struct tb_nhi *nhi; -+ int size; -+ int hop; -+ int head; -+ int tail; -+ struct ring_desc *descriptors; -+ dma_addr_t descriptors_dma; -+ struct list_head queue; -+ struct list_head in_flight; -+ struct work_struct work; -+ bool is_tx: 1; -+ bool running: 1; -+ int irq; -+ u8 vector; -+ unsigned int flags; -+ int e2e_tx_hop; -+ u16 sof_mask; -+ u16 eof_mask; -+ void (*start_poll)(void *); -+ void *poll_data; -+}; -+ -+enum ring_desc_flags { -+ RING_DESC_ISOCH = 1, -+ RING_DESC_CRC_ERROR = 1, -+ RING_DESC_COMPLETED = 2, -+ RING_DESC_POSTED = 4, -+ RING_DESC_BUFFER_OVERRUN = 4, -+ RING_DESC_INTERRUPT = 8, -+}; -+ -+struct ring_desc { -+ u64 phys; -+ u32 length: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+ enum ring_desc_flags flags: 12; -+ u32 time; -+}; -+ -+struct ring_frame; -+ -+typedef void (*ring_cb)(struct tb_ring *, struct ring_frame *, bool); -+ -+struct ring_frame { -+ dma_addr_t buffer_phy; -+ ring_cb callback; -+ struct list_head list; -+ u32 size: 12; -+ u32 flags: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+}; -+ -+enum nhi_fw_mode { -+ NHI_FW_SAFE_MODE = 0, -+ NHI_FW_AUTH_MODE = 1, -+ NHI_FW_EP_MODE = 2, -+ NHI_FW_CM_MODE = 3, -+}; -+ -+enum nhi_mailbox_cmd { -+ NHI_MAILBOX_SAVE_DEVS = 5, -+ NHI_MAILBOX_DISCONNECT_PCIE_PATHS = 6, -+ NHI_MAILBOX_DRV_UNLOADS = 7, -+ NHI_MAILBOX_DISCONNECT_PA = 16, -+ NHI_MAILBOX_DISCONNECT_PB = 17, -+ NHI_MAILBOX_ALLOW_ALL_DEVS = 35, -+}; -+ -+enum ring_flags { -+ RING_FLAG_ISOCH_ENABLE = 134217728, -+ RING_FLAG_E2E_FLOW_CONTROL = 268435456, -+ RING_FLAG_PCI_NO_SNOOP = 536870912, -+ RING_FLAG_RAW = 1073741824, -+ RING_FLAG_ENABLE = 2147483648, -+}; -+ -+enum tb_port_type { -+ TB_TYPE_INACTIVE = 0, -+ TB_TYPE_PORT = 1, -+ TB_TYPE_NHI = 2, -+ TB_TYPE_DP_HDMI_IN = 917761, -+ TB_TYPE_DP_HDMI_OUT = 917762, -+ TB_TYPE_PCIE_DOWN = 1048833, -+ TB_TYPE_PCIE_UP = 1048834, -+ TB_TYPE_USB3_DOWN = 2097409, -+ TB_TYPE_USB3_UP = 2097410, -+}; -+ -+struct tb_regs_port_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 max_counters: 11; -+ u32 counters_support: 1; -+ u32 __unknown1: 4; -+ u32 revision: 8; -+ enum tb_port_type type: 24; -+ u32 thunderbolt_version: 8; -+ u32 __unknown2: 20; -+ u32 port_number: 6; -+ u32 __unknown3: 6; -+ u32 nfc_credits; -+ u32 max_in_hop_id: 11; -+ u32 max_out_hop_id: 11; -+ u32 __unknown4: 10; -+ u32 __unknown5; -+ u32 __unknown6; -+}; -+ -+struct tb_nvm { -+ struct device *dev; -+ u8 major; -+ u8 minor; -+ int id; -+ struct nvmem_device *active; -+ struct nvmem_device *non_active; -+ void *buf; -+ size_t buf_data_size; -+ bool authenticating; -+ bool flushed; -+}; -+ -+struct usb4_port; -+ -+struct tb_port { -+ struct tb_regs_port_header config; -+ struct tb_switch *sw; -+ struct tb_port *remote; -+ struct tb_xdomain *xdomain; -+ int cap_phy; -+ int cap_tmu; -+ int cap_adap; -+ int cap_usb4; -+ struct usb4_port *usb4; -+ u8 port; -+ bool disabled; -+ bool bonded; -+ struct tb_port *dual_link_port; -+ u8 link_nr: 1; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ struct list_head list; -+ unsigned int total_credits; -+ unsigned int ctl_credits; -+ unsigned int dma_credits; -+}; -+ -+struct usb4_port { -+ struct device dev; -+ struct tb_port *port; -+ bool can_offline; -+ bool offline; -+}; -+ -+enum icl_lc_mailbox_cmd { -+ ICL_LC_GO2SX = 2, -+ ICL_LC_GO2SX_NO_WAKE = 3, -+ ICL_LC_PREPARE_FOR_RESET = 33, -+}; -+ -+typedef bool (*event_cb)(void *, enum tb_cfg_pkg_type, const void *, size_t); -+ -+struct ctl_pkg; -+ -+struct tb_ctl { -+ struct tb_nhi *nhi; -+ struct tb_ring *tx; -+ struct tb_ring *rx; -+ struct dma_pool___2 *frame_pool; -+ struct ctl_pkg *rx_packets[10]; -+ struct mutex request_queue_lock; -+ struct list_head request_queue; -+ bool running; -+ int timeout_msec; -+ event_cb callback; -+ void *callback_data; -+}; -+ -+enum tb_cfg_space { -+ TB_CFG_HOPS = 0, -+ TB_CFG_PORT = 1, -+ TB_CFG_SWITCH = 2, -+ TB_CFG_COUNTERS = 3, -+}; -+ -+enum tb_cfg_error { -+ TB_CFG_ERROR_PORT_NOT_CONNECTED = 0, -+ TB_CFG_ERROR_LINK_ERROR = 1, -+ TB_CFG_ERROR_INVALID_CONFIG_SPACE = 2, -+ TB_CFG_ERROR_NO_SUCH_PORT = 4, -+ TB_CFG_ERROR_ACK_PLUG_EVENT = 7, -+ TB_CFG_ERROR_LOOP = 8, -+ TB_CFG_ERROR_HEC_ERROR_DETECTED = 12, -+ TB_CFG_ERROR_FLOW_CONTROL_ERROR = 13, -+ TB_CFG_ERROR_LOCK = 15, -+}; -+ -+struct tb_cfg_header { -+ u32 route_hi: 22; -+ u32 unknown: 10; -+ u32 route_lo; -+}; -+ -+struct tb_cfg_address { -+ u32 offset: 13; -+ u32 length: 6; -+ u32 port: 6; -+ enum tb_cfg_space space: 2; -+ u32 seq: 2; -+ u32 zero: 3; -+}; -+ -+struct cfg_read_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+}; -+ -+struct cfg_write_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+ u32 data[64]; -+}; -+ -+struct cfg_error_pkg { -+ struct tb_cfg_header header; -+ enum tb_cfg_error error: 4; -+ u32 zero1: 4; -+ u32 port: 6; -+ u32 zero2: 2; -+ u32 zero3: 14; -+ u32 pg: 2; -+}; -+ -+struct cfg_reset_pkg { -+ struct tb_cfg_header header; -+}; -+ -+struct tb_cfg_result { -+ u64 response_route; -+ u32 response_port; -+ int err; -+ enum tb_cfg_error tb_error; -+}; -+ -+struct ctl_pkg { -+ struct tb_ctl *ctl; -+ void *buffer; -+ struct ring_frame frame; -+}; -+ -+struct tb_cfg_request { -+ struct kref kref; -+ struct tb_ctl *ctl; -+ const void *request; -+ size_t request_size; -+ enum tb_cfg_pkg_type request_type; -+ void *response; -+ size_t response_size; -+ enum tb_cfg_pkg_type response_type; -+ size_t npackets; -+ bool (*match)(const struct tb_cfg_request *, const struct ctl_pkg *); -+ bool (*copy)(struct tb_cfg_request *, const struct ctl_pkg *); -+ void (*callback)(void *); -+ void *callback_data; -+ long unsigned int flags; -+ struct work_struct work; -+ struct tb_cfg_result result; -+ struct list_head list; -+}; -+ -+struct cfg_event_pkg { -+ struct tb_cfg_header header; -+ u32 port: 6; -+ u32 zero: 25; -+ bool unplug: 1; -+}; -+ -+struct tb_path_hop { -+ struct tb_port *in_port; -+ struct tb_port *out_port; -+ int in_hop_index; -+ int in_counter_index; -+ int next_hop_index; -+ unsigned int initial_credits; -+ unsigned int nfc_credits; -+}; -+ -+enum tb_path_port { -+ TB_PATH_NONE = 0, -+ TB_PATH_SOURCE = 1, -+ TB_PATH_INTERNAL = 2, -+ TB_PATH_DESTINATION = 4, -+ TB_PATH_ALL = 7, -+}; -+ -+struct tb_path { -+ struct tb *tb; -+ const char *name; -+ enum tb_path_port ingress_shared_buffer; -+ enum tb_path_port egress_shared_buffer; -+ enum tb_path_port ingress_fc_enable; -+ enum tb_path_port egress_fc_enable; -+ unsigned int priority: 3; -+ int weight: 4; -+ bool drop_packages; -+ bool activated; -+ bool clear_fc; -+ struct tb_path_hop *hops; -+ int path_length; -+}; -+ -+enum tb_tunnel_type { -+ TB_TUNNEL_PCI = 0, -+ TB_TUNNEL_DP = 1, -+ TB_TUNNEL_DMA = 2, -+ TB_TUNNEL_USB3 = 3, -+}; -+ -+struct tb_tunnel { -+ struct tb *tb; -+ struct tb_port *src_port; -+ struct tb_port *dst_port; -+ struct tb_path **paths; -+ size_t npaths; -+ int (*init)(struct tb_tunnel *); -+ void (*deinit)(struct tb_tunnel *); -+ int (*activate)(struct tb_tunnel *, bool); -+ int (*consumed_bandwidth)(struct tb_tunnel *, int *, int *); -+ int (*release_unused_bandwidth)(struct tb_tunnel *); -+ void (*reclaim_available_bandwidth)(struct tb_tunnel *, int *, int *); -+ struct list_head list; -+ enum tb_tunnel_type type; -+ int max_up; -+ int max_down; -+ int allocated_up; -+ int allocated_down; -+}; -+ -+struct tb_cm { -+ struct list_head tunnel_list; -+ struct list_head dp_resources; -+ bool hotplug_active; -+ struct delayed_work remove_work; -+}; -+ -+struct tb_hotplug_event { -+ struct work_struct work; -+ struct tb *tb; -+ u64 route; -+ u8 port; -+ bool unplug; -+}; -+ -+enum tb_switch_vse_cap { -+ TB_VSE_CAP_PLUG_EVENTS = 1, -+ TB_VSE_CAP_TIME2 = 3, -+ TB_VSE_CAP_IECS = 4, -+ TB_VSE_CAP_LINK_CONTROLLER = 6, -+}; -+ -+enum tb_port_cap { -+ TB_PORT_CAP_PHY = 1, -+ TB_PORT_CAP_POWER = 2, -+ TB_PORT_CAP_TIME1 = 3, -+ TB_PORT_CAP_ADAP = 4, -+ TB_PORT_CAP_VSE = 5, -+ TB_PORT_CAP_USB4 = 6, -+}; -+ -+enum tb_port_state { -+ TB_PORT_DISABLED = 0, -+ TB_PORT_CONNECTING = 1, -+ TB_PORT_UP = 2, -+ TB_PORT_UNPLUGGED = 7, -+}; -+ -+struct tb_cap_basic { -+ u8 next; -+ u8 cap; -+}; -+ -+struct tb_cap_phy { -+ struct tb_cap_basic cap_header; -+ u32 unknown1: 16; -+ u32 unknown2: 14; -+ bool disable: 1; -+ u32 unknown3: 11; -+ enum tb_port_state state: 4; -+ u32 unknown4: 2; -+}; -+ -+struct tb_regs_hop { -+ u32 next_hop: 11; -+ u32 out_port: 6; -+ u32 initial_credits: 8; -+ u32 unknown1: 6; -+ bool enable: 1; -+ u32 weight: 4; -+ u32 unknown2: 4; -+ u32 priority: 3; -+ bool drop_packages: 1; -+ u32 counter: 11; -+ bool counter_enable: 1; -+ bool ingress_fc: 1; -+ bool egress_fc: 1; -+ bool ingress_shared_buffer: 1; -+ bool egress_shared_buffer: 1; -+ bool pending: 1; -+ u32 unknown3: 3; -+}; -+ -+enum tb_nvm_write_ops { -+ WRITE_AND_AUTHENTICATE = 1, -+ WRITE_ONLY = 2, -+ AUTHENTICATE_ONLY = 3, -+}; -+ -+struct nvm_auth_status { -+ struct list_head list; -+ uuid_t uuid; -+ u32 status; -+}; -+ -+struct tb_sw_lookup { -+ struct tb *tb; -+ u8 link; -+ u8 depth; -+ const uuid_t *uuid; -+ u64 route; -+}; -+ -+enum tb_switch_cap { -+ TB_SWITCH_CAP_TMU = 3, -+ TB_SWITCH_CAP_VSE = 5, -+}; -+ -+struct tb_cap_extended_short { -+ u8 next; -+ u8 cap; -+ u8 vsec_id; -+ u8 length; -+}; -+ -+struct tb_cap_extended_long { -+ u8 zero1; -+ u8 cap; -+ u8 vsec_id; -+ u8 zero2; -+ u16 next; -+ u16 length; -+}; -+ -+struct tb_cap_any { -+ union { -+ struct tb_cap_basic basic; -+ struct tb_cap_extended_short extended_short; -+ struct tb_cap_extended_long extended_long; -+ }; -+}; -+ -+struct tb_eeprom_ctl { -+ bool clock: 1; -+ bool access_low: 1; -+ bool data_out: 1; -+ bool data_in: 1; -+ bool access_high: 1; -+ bool not_present: 1; -+ bool unknown1: 1; -+ bool present: 1; -+ u32 unknown2: 24; -+}; -+ -+struct tb_cap_plug_events { -+ struct tb_cap_extended_short cap_header; -+ u32 __unknown1: 2; -+ u32 plug_events: 5; -+ u32 __unknown2: 25; -+ u32 __unknown3; -+ u32 __unknown4; -+ struct tb_eeprom_ctl eeprom_ctl; -+ u32 __unknown5[7]; -+ u32 drom_offset; -+}; -+ -+enum tb_eeprom_transfer { -+ TB_EEPROM_IN = 0, -+ TB_EEPROM_OUT = 1, -+}; -+ -+struct tb_drom_header { -+ u8 uid_crc8; -+ u64 uid; -+ u32 data_crc32; -+ u8 device_rom_revision; -+ u16 data_len: 12; -+ u8 reserved: 4; -+ u16 vendor_id; -+ u16 model_id; -+ u8 model_rev; -+ u8 eeprom_rev; -+} __attribute__((packed)); -+ -+enum tb_drom_entry_type { -+ TB_DROM_ENTRY_GENERIC = 0, -+ TB_DROM_ENTRY_PORT = 1, -+}; -+ -+struct tb_drom_entry_header { -+ u8 len; -+ u8 index: 6; -+ bool port_disabled: 1; -+ enum tb_drom_entry_type type: 1; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_generic { -+ struct tb_drom_entry_header header; -+ u8 data[0]; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_port { -+ struct tb_drom_entry_header header; -+ u8 dual_link_port_rid: 4; -+ u8 link_nr: 1; -+ u8 unknown1: 2; -+ bool has_dual_link_port: 1; -+ u8 dual_link_port_nr: 6; -+ u8 unknown2: 2; -+ u8 micro2: 4; -+ u8 micro1: 4; -+ u8 micro3; -+ u8 peer_port_rid: 4; -+ u8 unknown3: 3; -+ bool has_peer_port: 1; -+ u8 peer_port_nr: 6; -+ u8 unknown4: 2; -+}; -+ -+struct tb_drom_entry_desc { -+ struct tb_drom_entry_header header; -+ u16 bcdUSBSpec; -+ u16 idVendor; -+ u16 idProduct; -+ u16 bcdProductFWRevision; -+ u32 TID; -+ u8 productHWRevision; -+}; -+ -+struct tb_service_id { -+ __u32 match_flags; -+ char protocol_key[9]; -+ __u32 protocol_id; -+ __u32 protocol_version; -+ __u32 protocol_revision; -+ kernel_ulong_t driver_data; -+}; -+ -+struct tb_service { -+ struct device dev; -+ int id; -+ const char *key; -+ u32 prtcid; -+ u32 prtcvers; -+ u32 prtcrevs; -+ u32 prtcstns; -+ struct dentry *debugfs_dir; -+}; -+ -+struct tb_service_driver { -+ struct device_driver driver; -+ int (*probe)(struct tb_service *, const struct tb_service_id *); -+ void (*remove)(struct tb_service *); -+ void (*shutdown)(struct tb_service *); -+ const struct tb_service_id *id_table; -+}; -+ -+struct tb_dma_port { -+ struct tb_switch *sw; -+ u8 port; -+ u32 base; -+ u8 *buf; -+}; -+ -+typedef int (*read_block_fn)(void *, unsigned int, void *, size_t); -+ -+typedef int (*write_block_fn)(void *, unsigned int, const void *, size_t); -+ -+enum icm_pkg_code { -+ ICM_GET_TOPOLOGY = 1, -+ ICM_DRIVER_READY = 3, -+ ICM_APPROVE_DEVICE = 4, -+ ICM_CHALLENGE_DEVICE = 5, -+ ICM_ADD_DEVICE_KEY = 6, -+ ICM_GET_ROUTE = 10, -+ ICM_APPROVE_XDOMAIN = 16, -+ ICM_DISCONNECT_XDOMAIN = 17, -+ ICM_PREBOOT_ACL = 24, -+ ICM_USB4_SWITCH_OP = 32, -+}; -+ -+enum icm_event_code { -+ ICM_EVENT_DEVICE_CONNECTED = 3, -+ ICM_EVENT_DEVICE_DISCONNECTED = 4, -+ ICM_EVENT_XDOMAIN_CONNECTED = 6, -+ ICM_EVENT_XDOMAIN_DISCONNECTED = 7, -+ ICM_EVENT_RTD3_VETO = 10, -+}; -+ -+struct icm_pkg_header { -+ u8 code; -+ u8 flags; -+ u8 packet_id; -+ u8 total_packets; -+}; -+ -+struct icm_pkg_driver_ready { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 security_level; -+}; -+ -+struct icm_fr_pkg_get_topology { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_get_topology_response { -+ struct icm_pkg_header hdr; -+ u32 route_lo; -+ u32 route_hi; -+ u8 first_data; -+ u8 second_data; -+ u8 drom_i2c_address_index; -+ u8 switch_index; -+ u32 reserved[2]; -+ u32 ports[16]; -+ u32 port_hop_info[16]; -+}; -+ -+struct icm_fr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_fr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_fr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_fr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_fr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 key[8]; -+}; -+ -+struct icm_fr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+}; -+ -+struct icm_fr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_fr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_fr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_ar_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 info; -+}; -+ -+struct icm_ar_pkg_get_route { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_ar_pkg_get_route_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_ar_boot_acl_entry { -+ u32 uuid_lo; -+ u32 uuid_hi; -+}; -+ -+struct icm_ar_pkg_preboot_acl { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_ar_pkg_preboot_acl_response { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_tr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u16 reserved1; -+ u16 info; -+ u32 nvm_version; -+ u16 device_id; -+ u16 reserved2; -+}; -+ -+struct icm_tr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_tr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_tr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_tr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved1[3]; -+}; -+ -+struct icm_tr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 key[8]; -+}; -+ -+struct icm_tr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_tr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain_response { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_icl_event_rtd3_veto { -+ struct icm_pkg_header hdr; -+ u32 veto_reason; -+}; -+ -+struct icm_usb4_switch_op { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 data_len_valid; -+ u32 data[16]; -+}; -+ -+struct icm_usb4_switch_op_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 status; -+ u32 data[16]; -+}; -+ -+enum usb4_switch_op { -+ USB4_SWITCH_OP_QUERY_DP_RESOURCE = 16, -+ USB4_SWITCH_OP_ALLOC_DP_RESOURCE = 17, -+ USB4_SWITCH_OP_DEALLOC_DP_RESOURCE = 18, -+ USB4_SWITCH_OP_NVM_WRITE = 32, -+ USB4_SWITCH_OP_NVM_AUTH = 33, -+ USB4_SWITCH_OP_NVM_READ = 34, -+ USB4_SWITCH_OP_NVM_SET_OFFSET = 35, -+ USB4_SWITCH_OP_DROM_READ = 36, -+ USB4_SWITCH_OP_NVM_SECTOR_SIZE = 37, -+ USB4_SWITCH_OP_BUFFER_ALLOC = 51, -+}; -+ -+struct icm; -+ -+struct usb4_switch_nvm_auth { -+ struct icm_usb4_switch_op_response reply; -+ struct icm_usb4_switch_op request; -+ struct icm *icm; -+}; -+ -+struct icm { -+ struct mutex request_lock; -+ struct delayed_work rescan_work; -+ struct pci_dev *upstream_port; -+ int vnd_cap; -+ bool safe_mode; -+ size_t max_boot_acl; -+ bool rpm; -+ bool can_upgrade_nvm; -+ u8 proto_version; -+ struct usb4_switch_nvm_auth *last_nvm_auth; -+ bool veto; -+ bool (*is_supported)(struct tb *); -+ int (*cio_reset)(struct tb *); -+ int (*get_mode)(struct tb *); -+ int (*get_route)(struct tb *, u8, u8, u64 *); -+ void (*save_devices)(struct tb *); -+ int (*driver_ready)(struct tb *, enum tb_security_level *, u8 *, size_t *, bool *); -+ void (*set_uuid)(struct tb *); -+ void (*device_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*device_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*rtd3_veto)(struct tb *, const struct icm_pkg_header *); -+}; -+ -+struct icm_notification { -+ struct work_struct work; -+ struct icm_pkg_header *pkg; -+ struct tb *tb; -+}; -+ -+struct ep_name_entry { -+ u8 len; -+ u8 type; -+ u8 data[0]; -+}; -+ -+struct intel_vss { -+ u16 vendor; -+ u16 model; -+ u8 mc; -+ u8 flags; -+ u16 pci_devid; -+ u32 nvm_version; -+}; -+ -+enum tb_property_type { -+ TB_PROPERTY_TYPE_UNKNOWN = 0, -+ TB_PROPERTY_TYPE_DIRECTORY = 68, -+ TB_PROPERTY_TYPE_DATA = 100, -+ TB_PROPERTY_TYPE_TEXT = 116, -+ TB_PROPERTY_TYPE_VALUE = 118, -+}; -+ -+struct tb_property { -+ struct list_head list; -+ char key[9]; -+ enum tb_property_type type; -+ size_t length; -+ union { -+ struct tb_property_dir *dir; -+ u8 *data; -+ char *text; -+ u32 immediate; -+ } value; -+}; -+ -+struct tb_property_entry { -+ u32 key_hi; -+ u32 key_lo; -+ u16 length; -+ u8 reserved; -+ u8 type; -+ u32 value; -+}; -+ -+struct tb_property_rootdir_entry { -+ u32 magic; -+ u32 length; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_property_dir_entry { -+ u32 uuid[4]; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_protocol_handler { -+ const uuid_t *uuid; -+ int (*callback)(const void *, size_t, void *); -+ void *data; -+ struct list_head list; -+}; -+ -+struct tb_xdomain_header { -+ u32 route_hi; -+ u32 route_lo; -+ u32 length_sn; -+}; -+ -+enum tb_xdp_type { -+ UUID_REQUEST_OLD = 1, -+ UUID_RESPONSE = 2, -+ PROPERTIES_REQUEST = 3, -+ PROPERTIES_RESPONSE = 4, -+ PROPERTIES_CHANGED_REQUEST = 5, -+ PROPERTIES_CHANGED_RESPONSE = 6, -+ ERROR_RESPONSE = 7, -+ UUID_REQUEST = 12, -+}; -+ -+struct tb_xdp_header { -+ struct tb_xdomain_header xd_hdr; -+ uuid_t uuid; -+ u32 type; -+}; -+ -+struct tb_xdp_uuid { -+ struct tb_xdp_header hdr; -+}; -+ -+struct tb_xdp_uuid_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ u32 src_route_hi; -+ u32 src_route_lo; -+}; -+ -+struct tb_xdp_properties { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 reserved; -+}; -+ -+struct tb_xdp_properties_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 data_length; -+ u32 generation; -+ u32 data[0]; -+}; -+ -+struct tb_xdp_properties_changed { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+}; -+ -+struct tb_xdp_properties_changed_response { -+ struct tb_xdp_header hdr; -+}; -+ -+enum tb_xdp_error { -+ ERROR_SUCCESS = 0, -+ ERROR_UNKNOWN_PACKET = 1, -+ ERROR_UNKNOWN_DOMAIN = 2, -+ ERROR_NOT_SUPPORTED = 3, -+ ERROR_NOT_READY = 4, -+}; -+ -+struct tb_xdp_error_response { -+ struct tb_xdp_header hdr; -+ u32 error; -+}; -+ -+struct xdomain_request_work { -+ struct work_struct work; -+ struct tb_xdp_header *pkg; -+ struct tb *tb; -+}; -+ -+struct tb_xdomain_lookup { -+ const uuid_t *uuid; -+ u8 link; -+ u8 depth; -+ u64 route; -+}; -+ -+enum usb4_sb_opcode { -+ USB4_SB_OPCODE_ERR = 542265925, -+ USB4_SB_OPCODE_ONS = 1145914145, -+ USB4_SB_OPCODE_ROUTER_OFFLINE = 1313166156, -+ USB4_SB_OPCODE_ENUMERATE_RETIMERS = 1297436229, -+ USB4_SB_OPCODE_SET_INBOUND_SBTX = 1347769164, -+ USB4_SB_OPCODE_QUERY_LAST_RETIMER = 1414742348, -+ USB4_SB_OPCODE_GET_NVM_SECTOR_SIZE = 1397968455, -+ USB4_SB_OPCODE_NVM_SET_OFFSET = 1397772098, -+ USB4_SB_OPCODE_NVM_BLOCK_WRITE = 1464552514, -+ USB4_SB_OPCODE_NVM_AUTH_WRITE = 1213486401, -+ USB4_SB_OPCODE_NVM_READ = 1381123649, -+}; -+ -+enum usb4_sb_target { -+ USB4_SB_TARGET_ROUTER = 0, -+ USB4_SB_TARGET_PARTNER = 1, -+ USB4_SB_TARGET_RETIMER = 2, -+}; -+ -+enum usb4_ba_index { -+ USB4_BA_MAX_USB3 = 1, -+ USB4_BA_MIN_DP_AUX = 2, -+ USB4_BA_MIN_DP_MAIN = 3, -+ USB4_BA_MAX_PCIE = 4, -+ USB4_BA_MAX_HI = 5, -+}; -+ -+struct retimer_info { -+ struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_retimer { -+ struct device dev; -+ struct tb *tb; -+ u8 index; -+ u32 vendor; -+ u32 device; -+ struct tb_port *port; -+ struct tb_nvm *nvm; -+ u32 auth_status; -+}; -+ -+struct tb_retimer_lookup { -+ const struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_quirk { -+ u16 hw_vendor_id; -+ u16 hw_device_id; -+ u16 vendor; -+ u16 device; -+ void (*hook)(struct tb_switch *); -+}; -+ -+enum { -+ NVMEM_ADD = 1, -+ NVMEM_REMOVE = 2, -+ NVMEM_CELL_ADD = 3, -+ NVMEM_CELL_REMOVE = 4, -+}; -+ -+struct nvmem_cell_table { -+ const char *nvmem_name; -+ const struct nvmem_cell_info *cells; -+ size_t ncells; -+ struct list_head node; -+}; -+ -+struct nvmem_device___2 { -+ struct module *owner; -+ struct device dev; -+ 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; -+ 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; -+ void *priv; -+}; -+ -+struct nvmem_cell___2 { -+ const char *name; -+ int offset; -+ int bytes; -+ int bit_offset; -+ int nbits; -+ struct device_node *np; -+ struct nvmem_device___2 *nvmem; -+ struct list_head node; -+}; -+ -+struct net_device_devres { -+ struct net_device *ndev; -+}; -+ -+struct __kernel_old_timespec { -+ __kernel_old_time_t tv_sec; -+ long int tv_nsec; -+}; -+ -+struct __kernel_sock_timeval { -+ __s64 tv_sec; -+ __s64 tv_usec; -+}; -+ -+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 scm_timestamping_internal { -+ struct timespec64 ts[3]; -+}; -+ -+struct ifconf { -+ int ifc_len; -+ union { -+ char *ifcu_buf; -+ struct ifreq *ifcu_req; -+ } ifc_ifcu; -+}; -+ -+typedef s32 compat_int_t; -+ -+typedef u32 compat_ulong_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; -+}; -+ -+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_LAST = 32768, -+ SOF_TIMESTAMPING_MASK = 65535, -+}; -+ -+struct scm_ts_pktinfo { -+ __u32 if_index; -+ __u32 pkt_length; -+ __u32 reserved[2]; -+}; -+ -+struct sock_skb_cb { -+ u32 dropcount; -+}; -+ -+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 net_bridge; -+ -+struct used_address { -+ struct __kernel_sockaddr_storage name; -+ unsigned int name_len; -+}; -+ -+struct linger { -+ int l_onoff; -+ int l_linger; -+}; -+ -+struct ucred { -+ __u32 pid; -+ __u32 uid; -+ __u32 gid; -+}; -+ -+struct mmpin { -+ struct user_struct *user; -+ unsigned int num_pg; -+}; -+ -+struct ubuf_info { -+ void (*callback)(struct sk_buff *, struct ubuf_info *, bool); -+ union { -+ struct { -+ long unsigned int desc; -+ void *ctx; -+ }; -+ struct { -+ u32 id; -+ u16 len; -+ u16 zerocopy: 1; -+ u32 bytelen; -+ }; -+ }; -+ refcount_t refcnt; -+ u8 flags; -+ struct mmpin mmp; -+}; -+ -+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 prot_inuse { -+ int val[64]; -+}; -+ -+struct gro_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct napi_struct { -+ struct list_head poll_list; -+ long unsigned int state; -+ int weight; -+ int defer_hard_irqs_count; -+ long unsigned int gro_bitmask; -+ int (*poll)(struct napi_struct *, int); -+ int poll_owner; -+ struct net_device *dev; -+ struct gro_list gro_hash[8]; -+ struct sk_buff *skb; -+ struct list_head rx_list; -+ int rx_count; -+ struct hrtimer timer; -+ struct list_head dev_list; -+ struct hlist_node napi_hash_node; -+ unsigned int napi_id; -+ struct task_struct *thread; -+}; -+ -+struct sd_flow_limit { -+ u64 count; -+ unsigned int num_buckets; -+ unsigned int history_head; -+ u16 history[128]; -+ u8 buckets[0]; -+}; -+ -+struct softnet_data { -+ struct list_head poll_list; -+ struct sk_buff_head process_queue; -+ unsigned int processed; -+ unsigned int time_squeeze; -+ unsigned int received_rps; -+ struct softnet_data *rps_ipi_list; -+ 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 { -+ u16 recursion; -+ u8 more; -+ } xmit; -+ int: 32; -+ unsigned int input_queue_head; -+ long: 32; -+ 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; -+ unsigned int dropped; -+ struct sk_buff_head input_pkt_queue; -+ struct napi_struct backlog; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 sockcm_cookie { -+ u64 transmit_time; -+ u32 mark; -+ u16 tsflags; -+}; -+ -+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 net_frag_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 inet_bind_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; -+ 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); -+ struct hlist_node icsk_listen_portaddr_node; -+ 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; -+ 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 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 owners; -+}; -+ -+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)(const 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_sock_af_ops; -+ -+struct tcp_md5sig_info; -+ -+struct tcp_fastopen_request; -+ -+struct tcp_sock { -+ struct inet_connection_sock inet_conn; -+ u16 tcp_header_len; -+ u16 gso_segs; -+ __be32 pred_flags; -+ u64 bytes_received; -+ u32 segs_in; -+ u32 data_segs_in; -+ u32 rcv_nxt; -+ u32 copied_seq; -+ u32 rcv_wup; -+ u32 snd_nxt; -+ u32 segs_out; -+ u32 data_segs_out; -+ u64 bytes_sent; -+ u64 bytes_acked; -+ u32 dsack_dups; -+ u32 snd_una; -+ u32 snd_sml; -+ u32 rcv_tstamp; -+ u32 lsndtime; -+ u32 last_oow_ack_time; -+ u32 compressed_ack_rcv_nxt; -+ u32 tsoffset; -+ struct list_head tsq_node; -+ struct list_head tsorted_sent_queue; -+ u32 snd_wl1; -+ u32 snd_wnd; -+ u32 max_window; -+ u32 mss_cache; -+ u32 window_clamp; -+ u32 rcv_ssthresh; -+ struct tcp_rack rack; -+ u16 advmss; -+ u8 compressed_ack; -+ u8 dup_ack_counter: 2; -+ u8 tlp_retrans: 1; -+ u8 unused: 5; -+ u32 chrono_start; -+ u32 chrono_stat[3]; -+ u8 chrono_type: 2; -+ u8 rate_app_limited: 1; -+ u8 fastopen_connect: 1; -+ u8 fastopen_no_cookie: 1; -+ u8 is_sack_reneg: 1; -+ u8 fastopen_client_fail: 2; -+ u8 nonagle: 4; -+ u8 thin_lto: 1; -+ u8 recvmsg_inq: 1; -+ u8 repair: 1; -+ 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 is_cwnd_limited: 1; -+ u32 tlp_high_seq; -+ u32 tcp_tx_delay; -+ u64 tcp_wstamp_ns; -+ u64 tcp_clock_cache; -+ u64 tcp_mstamp; -+ u32 srtt_us; -+ u32 mdev_us; -+ u32 mdev_max_us; -+ u32 rttvar_us; -+ u32 rtt_seq; -+ struct minmax rtt_min; -+ u32 packets_out; -+ u32 retrans_out; -+ u32 max_packets_out; -+ u32 max_packets_seq; -+ u16 urg_data; -+ u8 ecn_flags; -+ u8 keepalive_probes; -+ u32 reordering; -+ u32 reord_seen; -+ u32 snd_up; -+ struct tcp_options_received rx_opt; -+ u32 snd_ssthresh; -+ u32 snd_cwnd; -+ u32 snd_cwnd_cnt; -+ u32 snd_cwnd_clamp; -+ u32 snd_cwnd_used; -+ u32 snd_cwnd_stamp; -+ u32 prior_cwnd; -+ u32 prr_delivered; -+ u32 prr_out; -+ u32 delivered; -+ u32 delivered_ce; -+ u32 lost; -+ u32 app_limited; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ u32 rate_delivered; -+ u32 rate_interval_us; -+ u32 rcv_wnd; -+ u32 write_seq; -+ u32 notsent_lowat; -+ u32 pushed_seq; -+ u32 lost_out; -+ u32 sacked_out; -+ struct hrtimer pacing_timer; -+ struct hrtimer compressed_ack_timer; -+ struct sk_buff *lost_skb_hint; -+ struct sk_buff *retransmit_skb_hint; -+ struct rb_root out_of_order_queue; -+ 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]; -+ struct sk_buff *highest_sack; -+ 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 urg_seq; -+ unsigned int keepalive_time; -+ unsigned int keepalive_intvl; -+ int linger2; -+ u8 bpf_sock_ops_cb_flags; -+ u16 timeout_rehash; -+ u32 rcv_ooopack; -+ u32 rcv_rtt_last_tsecr; -+ struct { -+ u32 rtt_us; -+ u32 seq; -+ u64 time; -+ } rcv_rtt_est; -+ struct { -+ u32 space; -+ u32 seq; -+ u64 time; -+ } rcvq_space; -+ struct { -+ u32 probe_seq_start; -+ u32 probe_seq_end; -+ } mtu_probe; -+ u32 mtu_info; -+ bool is_mptcp; -+ const struct tcp_sock_af_ops *af_specific; -+ struct tcp_md5sig_info *md5sig_info; -+ struct tcp_fastopen_request *fastopen_req; -+ struct request_sock *fastopen_rsk; -+ struct saved_syn *saved_syn; -+}; -+ -+struct tcp_md5sig_key; -+ -+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); -+}; -+ -+struct tcp_md5sig_info { -+ struct hlist_head head; -+ 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_md5_addr { -+ struct in_addr a4; -+ struct in6_addr a6; -+}; -+ -+struct tcp_md5sig_key { -+ struct hlist_node node; -+ u8 keylen; -+ u8 family; -+ u8 prefixlen; -+ union tcp_md5_addr addr; -+ int l3index; -+ u8 key[80]; -+ struct callback_head rcu; -+}; -+ -+struct net_protocol { -+ int (*early_demux)(struct sk_buff *); -+ int (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, u32); -+ unsigned int no_policy: 1; -+ unsigned int icmp_strict_tag_validation: 1; -+}; -+ -+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 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 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 drop_req; -+ 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; -+ 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 *); -+ __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 (*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 nf_conntrack { -+ atomic_t use; -+}; -+ -+enum { -+ SKBFL_ZEROCOPY_ENABLE = 1, -+ SKBFL_SHARED_FRAG = 2, -+}; -+ -+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 skb_checksum_ops { -+ __wsum (*update)(const void *, int, __wsum); -+ __wsum (*combine)(__wsum, __wsum, int, int); -+}; -+ -+struct skb_gso_cb { -+ union { -+ int mac_offset; -+ int data_offset; -+ }; -+ int encap_level; -+ __wsum csum; -+ __u16 csum_start; -+}; -+ -+struct napi_gro_cb { -+ void *frag0; -+ unsigned int frag0_len; -+ int data_offset; -+ u16 flush; -+ u16 flush_id; -+ u16 count; -+ u16 gro_remcsum_start; -+ long unsigned int age; -+ u16 proto; -+ 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 is_atomic: 1; -+ u8 recursion_counter: 4; -+ u8 is_flist: 1; -+ __wsum csum; -+ struct sk_buff *last; -+}; -+ -+enum skb_free_reason { -+ SKB_REASON_CONSUMED = 0, -+ SKB_REASON_DROPPED = 1, -+}; -+ -+struct vlan_hdr { -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct vlan_ethhdr { -+ unsigned char h_dest[6]; -+ unsigned char h_source[6]; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct qdisc_walker { -+ int stop; -+ int skip; -+ int count; -+ int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); -+}; -+ -+struct ip_auth_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __be16 reserved; -+ __be32 spi; -+ __be32 seq_no; -+ __u8 auth_data[0]; -+}; -+ -+struct frag_hdr { -+ __u8 nexthdr; -+ __u8 reserved; -+ __be16 frag_off; -+ __be32 identification; -+}; -+ -+enum { -+ SCM_TSTAMP_SND = 0, -+ SCM_TSTAMP_SCHED = 1, -+ SCM_TSTAMP_ACK = 2, -+}; -+ -+struct mpls_shim_hdr { -+ __be32 label_stack_entry; -+}; -+ -+struct napi_alloc_cache { -+ struct page_frag_cache page; -+ unsigned int skb_count; -+ void *skb_cache[64]; -+}; -+ -+typedef int (*sendmsg_func)(struct sock *, struct msghdr *, struct kvec *, size_t, size_t); -+ -+typedef int (*sendpage_func)(struct sock *, struct page *, int, size_t, int); -+ -+struct ahash_request___2; -+ -+struct scm_fp_list { -+ short int count; -+ short int max; -+ 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 { -+ 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 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_packed *bstats; -+ spinlock_t *stats_lock; -+ seqcount_t *running; -+ struct gnet_stats_basic_cpu *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 rtgenmsg { -+ unsigned char rtgen_family; -+}; -+ -+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_MAX = 34, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ -+typedef u32 u_int32_t; -+ -+typedef u64 u_int64_t; -+ -+struct flow_dissector_key_control { -+ u16 thoff; -+ u16 addr_type; -+ u32 flags; -+}; -+ -+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_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; -+}; -+ -+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; -+ __be16 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_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_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_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; -+}; -+ -+struct flow_dissector_key_ct { -+ u16 ct_state; -+ u16 ct_zone; -+ u32 ct_mark; -+ u32 ct_labels[4]; -+}; -+ -+struct flow_dissector_key_hash { -+ u32 hash; -+}; -+ -+struct flow_dissector_key { -+ enum flow_dissector_key_id key_id; -+ size_t offset; -+}; -+ -+struct flow_dissector { -+ unsigned int used_keys; -+ short unsigned int offset[28]; -+}; -+ -+struct flow_keys_basic { -+ struct flow_dissector_key_control control; -+ struct flow_dissector_key_basic basic; -+}; -+ -+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; -+ int: 32; -+}; -+ -+struct flow_keys_digest { -+ u8 data[16]; -+}; -+ -+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, -+}; -+ -+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 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; -+}; -+ -+struct ip_ct_sctp { -+ enum sctp_conntrack state; -+ __be32 vtag[2]; -+ u8 last_dir; -+ u8 flags; -+}; -+ -+struct nf_ct_event; -+ -+struct nf_ct_event_notifier { -+ int (*fcn)(unsigned int, struct nf_ct_event *); -+}; -+ -+struct nf_exp_event; -+ -+struct nf_exp_event_notifier { -+ int (*fcn)(unsigned int, struct nf_exp_event *); -+}; -+ -+enum bpf_ret_code { -+ BPF_OK = 0, -+ BPF_DROP = 2, -+ BPF_REDIRECT = 7, -+ BPF_LWT_REROUTE = 128, -+}; -+ -+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, -+}; -+ -+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 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; -+ 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; -+ -+struct devlink_rate; -+ -+struct devlink_port { -+ struct list_head list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct devlink *devlink; -+ unsigned int index; -+ bool registered; -+ spinlock_t type_lock; -+ enum devlink_port_type type; -+ enum devlink_port_type desired_type; -+ void *type_dev; -+ struct devlink_port_attrs attrs; -+ u8 attrs_set: 1; -+ u8 switch_port: 1; -+ struct delayed_work type_warn_dw; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_rate *devlink_rate; -+}; -+ -+struct ip_tunnel_parm { -+ char name[16]; -+ int link; -+ __be16 i_flags; -+ __be16 o_flags; -+ __be32 i_key; -+ __be32 o_key; -+ struct iphdr iph; -+}; -+ -+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; -+ __be16 tun_flags; -+ u8 tos; -+ u8 ttl; -+ __be32 label; -+ __be16 tp_src; -+ __be16 tp_dst; -+}; -+ -+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 dst_cache dst_cache; -+ u8 options_len; -+ u8 mode; -+}; -+ -+union tcp_word_hdr { -+ struct tcphdr hdr; -+ __be32 words[5]; -+}; -+ -+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_eswitch_encap_mode { -+ DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, -+ DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, -+}; -+ -+enum devlink_rate_type { -+ DEVLINK_RATE_TYPE_LEAF = 0, -+ DEVLINK_RATE_TYPE_NODE = 1, -+}; -+ -+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, -+}; -+ -+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_dev_stats { -+ u32 reload_stats[6]; -+ u32 remote_reload_stats[6]; -+}; -+ -+struct devlink_dpipe_headers; -+ -+struct devlink_ops; -+ -+struct devlink { -+ struct list_head list; -+ struct list_head port_list; -+ struct list_head rate_list; -+ struct list_head sb_list; -+ struct list_head dpipe_table_list; -+ struct list_head resource_list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_dpipe_headers *dpipe_headers; -+ struct list_head trap_list; -+ struct list_head trap_group_list; -+ struct list_head trap_policer_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; -+ u8 reload_failed: 1; -+ u8 reload_enabled: 1; -+ u8 registered: 1; -+ long: 61; -+ long: 64; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct devlink_dpipe_header; -+ -+struct devlink_dpipe_headers { -+ struct devlink_dpipe_header **headers; -+ unsigned int headers_count; -+}; -+ -+struct devlink_sb_pool_info; -+ -+struct devlink_info_req; -+ -+struct devlink_flash_update_params; -+ -+struct devlink_trap; -+ -+struct devlink_trap_group; -+ -+struct devlink_trap_policer; -+ -+struct devlink_port_new_attrs; -+ -+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 (*port_type_set)(struct devlink_port *, enum devlink_port_type); -+ int (*port_split)(struct devlink *, unsigned int, unsigned int, struct netlink_ext_ack *); -+ int (*port_unsplit)(struct devlink *, unsigned int, 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_function_hw_addr_get)(struct devlink *, struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); -+ int (*port_function_hw_addr_set)(struct devlink *, struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); -+ int (*port_new)(struct devlink *, const struct devlink_port_new_attrs *, struct netlink_ext_ack *, unsigned int *); -+ int (*port_del)(struct devlink *, unsigned int, struct netlink_ext_ack *); -+ int (*port_fn_state_get)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); -+ int (*port_fn_state_set)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); -+ 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_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_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 *); -+}; -+ -+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; -+ }; -+ }; -+}; -+ -+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_sb_pool_info { -+ enum devlink_sb_pool_type pool_type; -+ u32 size; -+ enum devlink_sb_threshold_type threshold_type; -+ u32 cell_size; -+}; -+ -+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_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 arphdr { -+ __be16 ar_hrd; -+ __be16 ar_pro; -+ unsigned char ar_hln; -+ unsigned char ar_pln; -+ __be16 ar_op; -+}; -+ -+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; -+ int 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; -+ 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; -+ }; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 { -+ struct nexthop *nh; -+ u8 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; -+}; -+ -+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_group { -+ struct nh_group *spare; -+ u16 num_nh; -+ bool is_multipath; -+ bool hash_threshold; -+ bool resilient; -+ bool fdb_nh; -+ bool has_v4; -+ struct nh_res_table *res_table; -+ struct nh_grp_entry nh_entries[0]; -+}; -+ -+enum metadata_type { -+ METADATA_IP_TUNNEL = 0, -+ METADATA_HW_PORT_MUX = 1, -+}; -+ -+struct hw_port_info { -+ struct net_device *lower_dev; -+ u32 port_id; -+}; -+ -+struct metadata_dst { -+ struct dst_entry dst; -+ enum metadata_type type; -+ union { -+ struct ip_tunnel_info tun_info; -+ struct hw_port_info port_info; -+ } u; -+}; -+ -+struct gre_base_hdr { -+ __be16 flags; -+ __be16 protocol; -+}; -+ -+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 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 l2tp_debug_flags { -+ L2TP_MSG_DEBUG = 1, -+ L2TP_MSG_CONTROL = 2, -+ L2TP_MSG_SEQ = 4, -+ L2TP_MSG_DATA = 8, -+}; -+ -+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 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_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_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; -+ 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; -+ u16 cpu; -+ 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_conntrack_tuple_mask { -+ struct { -+ union nf_inet_addr u3; -+ union nf_conntrack_man_proto u; -+ } src; -+}; -+ -+struct nf_ct_ext { -+ u8 offset[9]; -+ u8 len; -+ 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; -+ void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); -+ struct nf_conntrack_helper *helper; -+ struct nf_conn *master; -+ struct timer_list timeout; -+ refcount_t use; -+ unsigned int flags; -+ unsigned int class; -+ 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_NUM = 9, -+}; -+ -+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 rps_sock_flow_table { -+ u32 mask; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 ents[0]; -+}; -+ -+struct tc_skb_ext { -+ __u32 chain; -+ __u16 mru; -+ bool post_ct; -+}; -+ -+struct ipv4_devconf { -+ void *sysctl; -+ int data[32]; -+ long unsigned int state[1]; -+}; -+ -+enum nf_dev_hooks { -+ NF_NETDEV_INGRESS = 0, -+ NF_NETDEV_NUMHOOKS = 1, -+}; -+ -+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 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 netdev_boot_setup { -+ char name[16]; -+ struct ifmap map; -+}; -+ -+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; -+ -+enum netdev_queue_state_t { -+ __QUEUE_STATE_DRV_XOFF = 0, -+ __QUEUE_STATE_STACK_XOFF = 1, -+ __QUEUE_STATE_FROZEN = 2, -+}; -+ -+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 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; -+}; -+ -+struct in_ifaddr; -+ -+struct ip_mc_list; -+ -+struct in_device { -+ struct net_device *dev; -+ 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 packet_type { -+ __be16 type; -+ bool ignore_outgoing; -+ struct net_device *dev; -+ 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 *); -+ void *af_packet_priv; -+ struct list_head list; -+}; -+ -+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 netdev_notifier_info_ext { -+ struct netdev_notifier_info info; -+ union { -+ u32 mtu; -+ } ext; -+}; -+ -+struct netdev_notifier_change_info { -+ struct netdev_notifier_info info; -+ unsigned int flags_changed; -+}; -+ -+struct netdev_notifier_changeupper_info { -+ struct netdev_notifier_info info; -+ struct net_device *upper_dev; -+ bool master; -+ bool linking; -+ void *upper_info; -+}; -+ -+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; -+}; -+ -+typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); -+ -+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; -+}; -+ -+union inet_addr { -+ __u32 all[4]; -+ __be32 ip; -+ __be32 ip6[4]; -+ struct in_addr in; -+ struct in6_addr in6; -+}; -+ -+struct netpoll { -+ struct net_device *dev; -+ char dev_name[16]; -+ 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]; -+}; -+ -+enum qdisc_state_t { -+ __QDISC_STATE_SCHED = 0, -+ __QDISC_STATE_DEACTIVATED = 1, -+ __QDISC_STATE_MISSED = 2, -+ __QDISC_STATE_DRAINING = 3, -+}; -+ -+struct tcf_walker { -+ int stop; -+ int skip; -+ int count; -+ bool nonempty; -+ long unsigned int cookie; -+ int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); -+}; -+ -+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_MAX = 33, -+}; -+ -+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; -+ __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 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 dev_kfree_skb_cb { -+ enum skb_free_reason reason; -+}; -+ -+struct netdev_adjacent { -+ struct net_device *dev; -+ bool master; -+ bool ignore; -+ u16 ref_nr; -+ void *private; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netdev_hw_addr { -+ struct list_head list; -+ unsigned char addr[32]; -+ unsigned char type; -+ bool global_use; -+ int sync_cnt; -+ int refcount; -+ int synced; -+ struct callback_head callback_head; -+}; -+ -+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_MAX = 15, -+}; -+ -+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_MAX = 19, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ NEIGH_ARP_TABLE = 0, -+ NEIGH_ND_TABLE = 1, -+ NEIGH_DN_TABLE = 2, -+ NEIGH_NR_TABLES = 3, -+ NEIGH_LINK_TABLE = 3, -+}; -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+struct netlink_dump_control { -+ int (*start)(struct netlink_callback *); -+ int (*dump)(struct sk_buff *, struct netlink_callback *); -+ int (*done)(struct netlink_callback *); -+ void *data; -+ struct module *module; -+ u32 min_dump_alloc; -+}; -+ -+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_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_MAX = 39, -+}; -+ -+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_OFFLOAD_XSTATS_UNSPEC = 0, -+ IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, -+ __IFLA_OFFLOAD_XSTATS_MAX = 2, -+}; -+ -+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, -+}; -+ -+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_MAX = 6, -+}; -+ -+enum { -+ BR_MCAST_DIR_RX = 0, -+ BR_MCAST_DIR_TX = 1, -+ BR_MCAST_DIR_SIZE = 2, -+}; -+ -+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 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 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 *); -+ 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 rtnl_link { -+ rtnl_doit_func doit; -+ rtnl_dumpit_func dumpit; -+ struct module *owner; -+ unsigned int flags; -+ struct callback_head rcu; -+}; -+ -+enum { -+ IF_LINK_MODE_DEFAULT = 0, -+ IF_LINK_MODE_DORMANT = 1, -+ IF_LINK_MODE_TESTING = 2, -+}; -+ -+enum lw_bits { -+ LW_URGENT = 0, -+}; -+ -+struct seg6_pernet_data { -+ struct mutex lock; -+ struct in6_addr *tun_src; -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_F_INGRESS = 1, -+}; -+ -+enum { -+ BPF_F_TUNINFO_IPV6 = 1, -+}; -+ -+enum { -+ BPF_F_ZERO_CSUM_TX = 2, -+ BPF_F_DONT_FRAGMENT = 4, -+ BPF_F_SEQ_NUMBER = 8, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct bpf_tunnel_key { -+ __u32 tunnel_id; -+ union { -+ __u32 remote_ipv4; -+ __u32 remote_ipv6[4]; -+ }; -+ __u8 tunnel_tos; -+ __u8 tunnel_ttl; -+ __u16 tunnel_ext; -+ __u32 tunnel_label; -+}; -+ -+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 { -+ 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, -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_LOAD_HDR_OPT_TCP_SYN = 1, -+}; -+ -+enum { -+ BPF_FIB_LOOKUP_DIRECT = 1, -+ BPF_FIB_LOOKUP_OUTPUT = 2, -+}; -+ -+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, -+}; -+ -+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]; -+ }; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __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, -+}; -+ -+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 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 nl_info { -+ struct nlmsghdr *nlh; -+ struct net *nl_net; -+ u32 portid; -+ u8 skip_notify: 1; -+ u8 skip_notify_kernel: 1; -+}; -+ -+struct compat_sock_fprog { -+ u16 len; -+ compat_uptr_t filter; -+}; -+ -+struct inet_timewait_sock { -+ struct sock_common __tw_common; -+ __u32 tw_mark; -+ volatile unsigned char tw_substate; -+ unsigned char tw_rcv_wscale; -+ __be16 tw_sport; -+ unsigned int tw_kill: 1; -+ unsigned int tw_transparent: 1; -+ unsigned int tw_flowlabel: 20; -+ 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 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 udp_sock { -+ struct inet_sock inet; -+ int pending; -+ unsigned int corkflag; -+ __u8 encap_type; -+ unsigned char no_check6_tx: 1; -+ unsigned char no_check6_rx: 1; -+ unsigned char encap_enabled: 1; -+ unsigned char gro_enabled: 1; -+ unsigned char accept_udp_l4: 1; -+ unsigned char accept_udp_fraglist: 1; -+ __u16 len; -+ __u16 gso_size; -+ __u16 pcslen; -+ __u16 pcrlen; -+ __u8 pcflag; -+ __u8 unused[3]; -+ int (*encap_rcv)(struct sock *, struct sk_buff *); -+ 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; -+ struct sk_buff_head reader_queue; -+ int forward_deficit; -+ long: 32; -+ long: 64; -+ 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; -+ long: 64; -+}; -+ -+struct tcp6_sock { -+ struct tcp_sock tcp; -+ struct ipv6_pinfo inet6; -+}; -+ -+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_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 (*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 *); -+ 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 *); -+}; -+ -+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 ipv6_bpf_stub { -+ int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); -+ struct sock * (*udp6_lib_lookup)(struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); -+}; -+ -+struct fib_result { -+ __be32 prefix; -+ unsigned char prefixlen; -+ unsigned char nh_sel; -+ unsigned char type; -+ unsigned char scope; -+ u32 tclassid; -+ struct fib_nh_common *nhc; -+ struct fib_info *fi; -+ struct fib_table *table; -+ struct hlist_head *fa_head; -+}; -+ -+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 tcp_skb_cb { -+ __u32 seq; -+ __u32 end_seq; -+ union { -+ __u32 tcp_tw_isn; -+ 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 in_flight: 30; -+ __u32 is_app_limited: 1; -+ __u32 unused: 1; -+ __u32 delivered; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ } tx; -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ } header; -+ }; -+}; -+ -+struct strp_msg { -+ int full_len; -+ int offset; -+}; -+ -+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; -+ bool zc; -+ struct page **pgs; -+ int id; -+ struct list_head xsk_dma_list; -+ struct work_struct work; -+}; -+ -+struct xsk_queue; -+ -+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; -+ enum { -+ XSK_READY = 0, -+ XSK_BOUND = 1, -+ XSK_UNBOUND = 2, -+ } state; -+ long: 64; -+ struct xsk_queue *tx; -+ struct list_head tx_list; -+ spinlock_t rx_lock; -+ u64 rx_dropped; -+ u64 rx_queue_full; -+ struct list_head map_list; -+ spinlock_t map_list_lock; -+ struct mutex mutex; -+ struct xsk_queue *fq_tmp; -+ struct xsk_queue *cq_tmp; -+ long: 64; -+}; -+ -+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 tls_sw_context_rx { -+ struct crypto_aead *aead_recv; -+ struct crypto_wait async_wait; -+ struct strparser strp; -+ struct sk_buff_head rx_list; -+ void (*saved_data_ready)(struct sock *); -+ struct sk_buff *recv_pkt; -+ u8 control; -+ u8 async_capable: 1; -+ u8 decrypted: 1; -+ atomic_t decrypt_pending; -+ spinlock_t decrypt_compl_lock; -+ bool async_notify; -+}; -+ -+struct cipher_context { -+ char *iv; -+ char *rec_seq; -+}; -+ -+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 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 tls_context { -+ struct tls_prot_info prot_info; -+ u8 tx_conf: 3; -+ u8 rx_conf: 3; -+ 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 in_tcp_sendpages; -+ 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]; -+ }; -+}; -+ -+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 = 2, -+ BPF_F_PEER = 4, -+ BPF_F_NEXTHOP = 8, -+}; -+ -+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)(); -+ -+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_adjust_head)(struct xdp_buff *, int); -+ -+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 *, u32, 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_socket_uid)(struct sk_buff *); -+ -+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_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_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_sock_from_file)(struct file *); -+ -+struct bpf_dtab_netdev___2; -+ -+struct bpf_cpu_map_entry___2; -+ -+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; -+}; -+ -+struct sock_diag_handler { -+ __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 broadcast_sk { -+ struct sock *sk; -+ struct work_struct work; -+}; -+ -+struct hwtstamp_config { -+ int flags; -+ int tx_type; -+ int rx_filter; -+}; -+ -+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 compat_ifconf { -+ compat_int_t ifc_len; -+ compat_caddr_t ifcbuf; -+}; -+ -+struct tso_t { -+ int next_frag_idx; -+ int size; -+ void *data; -+ u16 ip_id; -+ u8 tlen; -+ bool ipv6; -+ u32 tcp_seq; -+}; -+ -+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 xdp_frame_bulk { -+ int count; -+ void *xa; -+ void *q[16]; -+}; -+ -+struct xdp_attachment_info { -+ struct bpf_prog *prog; -+ u32 flags; -+}; -+ -+struct xdp_buff_xsk; -+ -+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; -+ struct list_head free_list; -+ u32 heads_cnt; -+ u16 queue_id; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xsk_queue *fq; -+ struct xsk_queue *cq; -+ dma_addr_t *dma_pages; -+ struct xdp_buff_xsk *heads; -+ u64 chunk_mask; -+ u64 addrs_cnt; -+ u32 free_list_cnt; -+ u32 dma_pages_cnt; -+ u32 free_heads_cnt; -+ u32 headroom; -+ u32 chunk_size; -+ u32 frame_len; -+ u8 cached_need_wakeup; -+ bool uses_need_wakeup; -+ bool dma_need_sync; -+ bool unaligned; -+ void *addrs; -+ spinlock_t cq_lock; -+ struct xdp_buff_xsk *free_heads[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_buff_xsk { -+ struct xdp_buff xdp; -+ dma_addr_t dma; -+ dma_addr_t frame_dma; -+ struct xsk_buff_pool *pool; -+ bool unaligned; -+ u64 orig_addr; -+ struct list_head free_list_node; -+}; -+ -+struct flow_match { -+ struct flow_dissector *dissector; -+ void *mask; -+ void *key; -+}; -+ -+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_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_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_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; -+}; -+ -+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_WAKE = 19, -+ FLOW_ACTION_QUEUE = 20, -+ FLOW_ACTION_SAMPLE = 21, -+ FLOW_ACTION_POLICE = 22, -+ FLOW_ACTION_CT = 23, -+ FLOW_ACTION_CT_METADATA = 24, -+ FLOW_ACTION_MPLS_PUSH = 25, -+ FLOW_ACTION_MPLS_POP = 26, -+ FLOW_ACTION_MPLS_MANGLE = 27, -+ FLOW_ACTION_GATE = 28, -+ FLOW_ACTION_PPPOE_PUSH = 29, -+ NUM_FLOW_ACTIONS = 30, -+}; -+ -+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 nf_flowtable; -+ -+struct psample_group; -+ -+struct action_gate_entry; -+ -+struct flow_action_entry { -+ enum flow_action_id id; -+ 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 { -+ 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; -+ 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 index; -+ u32 burst; -+ u64 rate_bytes_ps; -+ u64 burst_pkt; -+ u64 rate_pkt_ps; -+ u32 mtu; -+ } 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 { -+ u32 index; -+ 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 *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; -+}; -+ -+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 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 flow_indr_dev { -+ struct list_head list; -+ flow_indr_block_bind_cb_t *cb; -+ void *cb_priv; -+ refcount_t refcnt; -+ struct callback_head rcu; -+}; -+ -+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_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct netdev_queue *, char *); -+ ssize_t (*store)(struct netdev_queue *, const char *, size_t); -+}; -+ -+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 tmp_list; -+ struct inet6_ifaddr *ifpub; -+ int regen_count; -+ bool tokenized; -+ struct callback_head rcu; -+ struct in6_addr peer_addr; -+}; -+ -+struct fib_rule_uid_range { -+ __u32 start; -+ __u32 end; -+}; -+ -+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_MAX = 25, -+}; -+ -+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 fib_rule_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_rule *rule; -+}; -+ -+struct trace_event_raw_kfree_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ void *location; -+ short unsigned int protocol; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_consume_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ 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 *); -+ -+typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *); -+ -+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; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit_timeout { -+ u32 name; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_net_dev_template { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_rx_verbose_template { -+ u32 name; -+}; -+ -+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_netif_rx_ni_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_rx_ni_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_data_offsets_napi_poll { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); -+ -+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 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; -+ 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_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 {}; -+ -+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 *); -+ -+struct trace_event_raw_udp_fail_queue_rcv_skb { -+ struct trace_entry ent; -+ int rc; -+ __u16 lport; -+ 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 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_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; -+ 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_data_offsets_tcp_event_sk_skb {}; -+ -+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 {}; -+ -+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 *); -+ -+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 *); -+ -+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; -+ u32 __data_loc_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib_table_lookup { -+ u32 name; -+}; -+ -+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; -+ 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; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_destroy { -+ u32 dev; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_create { -+ u32 dev; -+ u32 kind; -+}; -+ -+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; -+ long unsigned int delay_time; -+}; -+ -+struct net_bridge_port; -+ -+struct bridge_mcast_querier { -+ struct br_ip addr; -+ struct net_bridge_port *port; -+}; -+ -+struct net_bridge___2; -+ -+struct net_bridge_vlan_group; -+ -+struct bridge_mcast_stats; -+ -+struct net_bridge_port { -+ struct net_bridge___2 *br; -+ struct net_device *dev; -+ struct list_head list; -+ long unsigned int flags; -+ struct net_bridge_vlan_group *vlgrp; -+ struct net_bridge_port *backup_port; -+ 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 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; -+ u32 multicast_eht_hosts_limit; -+ u32 multicast_eht_hosts_cnt; -+ unsigned char multicast_router; -+ struct bridge_mcast_stats *mcast_stats; -+ struct hlist_head mglist; -+ char sysfs_name[16]; -+ struct netpoll *np; -+ int offload_fwd_mark; -+ u16 group_fwd_mask; -+ u16 backup_redirected_cnt; -+ struct bridge_stp_xstats stp_xstats; -+}; -+ -+struct bridge_mcast_stats { -+ struct br_mcast_stats mstats; -+ struct u64_stats_sync syncp; -+}; -+ -+struct net_bridge___2 { -+ 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; -+ }; -+ 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; -+ u32 hash_max; -+ u32 multicast_last_member_count; -+ u32 multicast_startup_query_count; -+ u8 multicast_igmp_version; -+ u8 multicast_router; -+ u8 multicast_mld_version; -+ spinlock_t multicast_lock; -+ 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 rhashtable mdb_hash_tbl; -+ struct rhashtable sg_port_tbl; -+ struct hlist_head mcast_gc_list; -+ struct hlist_head mdb_list; -+ 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 bridge_mcast_stats *mcast_stats; -+ 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 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; -+ int offload_fwd_mark; -+ struct hlist_head fdb_list; -+}; -+ -+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_data_offsets_br_fdb_add { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_external_learn_add { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_fdb_delete { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_update { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+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___2 *, struct net_bridge_port *, const unsigned char *, u16); -+ -+typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge___2 *, struct net_bridge_fdb_entry *); -+ -+typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge___2 *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); -+ -+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; -+ const struct page *page; -+ 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; -+ const struct page *page; -+ 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 *, const struct page *, u32); -+ -+typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, const struct page *, 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; -+}; -+ -+struct trace_event_data_offsets_neigh_update { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_neigh__update { -+ u32 dev; -+}; -+ -+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 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_MAX = 23, -+ NET_DM_ATTR_MAX = 22, -+}; -+ -+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, -+}; -+ -+struct devlink_trap_metadata { -+ const char *trap_name; -+ const char *trap_group_name; -+ struct net_device *input_dev; -+ const struct flow_action_cookie *fa_cookie; -+ enum devlink_trap_type trap_type; -+}; -+ -+struct net_dm_stats { -+ u64 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 { -+ 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 dm_hw_stat_delta { -+ struct net_device *dev; -+ long unsigned int last_rx; -+ struct list_head list; -+ struct callback_head rcu; -+ long unsigned int last_drop_val; -+}; -+ -+struct net_dm_alert_ops { -+ void (*kfree_skb_probe)(void *, struct sk_buff *, void *); -+ 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 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 { -+ unsigned char *src; -+ 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 update_classid_context { -+ u32 classid; -+ unsigned int batch; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum { -+ LWTUNNEL_XMIT_DONE = 0, -+ LWTUNNEL_XMIT_CONTINUE = 1, -+}; -+ -+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 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 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_MAX = 78, -+ DEVLINK_CMD_MAX = 77, -+}; -+ -+enum devlink_eswitch_mode { -+ DEVLINK_ESWITCH_MODE_LEGACY = 0, -+ DEVLINK_ESWITCH_MODE_SWITCHDEV = 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, -+}; -+ -+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_FLASH_OVERWRITE_SETTINGS_BIT = 0, -+ DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT = 1, -+ __DEVLINK_FLASH_OVERWRITE_MAX_BIT = 2, -+ DEVLINK_FLASH_OVERWRITE_MAX_BIT = 1, -+}; -+ -+enum { -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, -+}; -+ -+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_MAX = 170, -+ DEVLINK_ATTR_MAX = 169, -+}; -+ -+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, -+}; -+ -+enum devlink_resource_unit { -+ DEVLINK_RESOURCE_UNIT_ENTRY = 0, -+}; -+ -+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_FUNCTION_ATTR_MAX = 4, -+ DEVLINK_PORT_FUNCTION_ATTR_MAX = 3, -+}; -+ -+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; -+ 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_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_param_type { -+ DEVLINK_PARAM_TYPE_U8 = 0, -+ DEVLINK_PARAM_TYPE_U16 = 1, -+ DEVLINK_PARAM_TYPE_U32 = 2, -+ DEVLINK_PARAM_TYPE_STRING = 3, -+ DEVLINK_PARAM_TYPE_BOOL = 4, -+}; -+ -+union devlink_param_value { -+ u8 vu8; -+ u16 vu16; -+ u32 vu32; -+ char vstr[32]; -+ bool vbool; -+}; -+ -+struct devlink_param_gset_ctx { -+ union devlink_param_value val; -+ enum devlink_param_cmode cmode; -+}; -+ -+struct devlink_flash_notify { -+ const char *status_msg; -+ const char *component; -+ long unsigned int done; -+ long unsigned int total; -+ long unsigned int timeout; -+}; -+ -+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 *); -+ 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; -+ bool published; -+}; -+ -+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_MAX = 11, -+ DEVLINK_PARAM_GENERIC_ID_MAX = 10, -+}; -+ -+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 **); -+ 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 **); -+ void *priv; -+}; -+ -+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; -+ struct mutex dump_lock; -+ 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; -+ refcount_t refcount; -+}; -+ -+struct devlink_fmsg { -+ struct list_head item_list; -+ bool putting_binary; -+}; -+ -+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_MAX = 92, -+ DEVLINK_TRAP_GENERIC_ID_MAX = 91, -+}; -+ -+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_MAX = 26, -+ DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 25, -+}; -+ -+struct devlink_info_req { -+ struct sk_buff *msg; -+}; -+ -+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; -+ u32 __data_loc_input_dev_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devlink_hwmsg { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_devlink_hwerr { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_recover_aborted { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_health_reporter_state_update { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_trap_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 trap_name; -+ u32 trap_group_name; -+ u32 input_dev_name; -+}; -+ -+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 *); -+ -+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; -+}; -+ -+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 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; -+}; -+ -+enum devlink_multicast_groups { -+ DEVLINK_MCGRP_CONFIG = 0, -+}; -+ -+struct devlink_reload_combination { -+ enum devlink_reload_action action; -+ enum devlink_reload_limit limit; -+}; -+ -+struct devlink_fmsg_item { -+ struct list_head list; -+ int attrtype; -+ u8 nla_type; -+ u16 len; -+ int value[0]; -+}; -+ -+struct devlink_stats { -+ u64 rx_bytes; -+ u64 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; -+}; -+ -+struct gro_cell; -+ -+struct gro_cells { -+ struct gro_cell *cells; -+}; -+ -+struct gro_cell { -+ struct sk_buff_head napi_skbs; -+ struct napi_struct napi; -+}; -+ -+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, -+}; -+ -+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; -+ raw_spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+ raw_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; -+ long: 32; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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); -+ -+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); -+ -+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; -+ }; -+}; -+ -+struct fch_hdr { -+ __u8 daddr[6]; -+ __u8 saddr[6]; -+}; -+ -+struct fcllc { -+ __u8 dsap; -+ __u8 ssap; -+ __u8 llc; -+ __u8 protid[3]; -+ __be16 ethertype; -+}; -+ -+enum macvlan_mode { -+ MACVLAN_MODE_PRIVATE = 1, -+ MACVLAN_MODE_VEPA = 2, -+ MACVLAN_MODE_BRIDGE = 4, -+ MACVLAN_MODE_PASSTHRU = 8, -+ MACVLAN_MODE_SOURCE = 16, -+}; -+ -+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]; -+}; -+ -+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_MAX = 16, -+}; -+ -+struct vlan_pcpu_stats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 rx_multicast; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+ u32 rx_errors; -+ u32 tx_dropped; -+}; -+ -+struct netpoll___2; -+ -+struct skb_array { -+ struct ptr_ring ring; -+}; -+ -+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; -+ 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 netpoll___2 *netpoll; -+}; -+ -+struct psched_ratecfg { -+ u64 rate_bytes_ps; -+ u32 mult; -+ u16 overhead; -+ u8 linklayer; -+ u8 shift; -+}; -+ -+struct psched_pktrate { -+ u64 rate_pkts_ps; -+ u32 mult; -+ u8 shift; -+}; -+ -+struct mini_Qdisc_pair { -+ struct mini_Qdisc miniq1; -+ struct mini_Qdisc miniq2; -+ struct mini_Qdisc **p_miniq; -+}; -+ -+struct pfifo_fast_priv { -+ struct skb_array q[3]; -+}; -+ -+struct tc_qopt_offload_stats { -+ struct gnet_stats_basic_packed *bstats; -+ struct gnet_stats_queue *qstats; -+}; -+ -+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 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 *); -+}; -+ -+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; -+ struct hlist_node hnode; -+}; -+ -+struct Qdisc_class_hash { -+ struct hlist_head *hash; -+ unsigned int hashsize; -+ unsigned int hashmask; -+ unsigned int hashelems; -+}; -+ -+struct qdisc_watchdog { -+ u64 last_expires; -+ struct hrtimer timer; -+ struct Qdisc *qdisc; -+}; -+ -+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 net_xmit_qdisc_t { -+ __NET_XMIT_STOLEN = 65536, -+ __NET_XMIT_BYPASS = 131072, -+}; -+ -+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_MAX = 10, -+}; -+ -+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 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_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; -+ struct gnet_stats_basic_packed tcfa_bstats; -+ struct gnet_stats_basic_packed tcfa_bstats_hw; -+ struct gnet_stats_queue tcfa_qstats; -+ struct net_rate_estimator *tcfa_rate_est; -+ spinlock_t tcfa_lock; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_basic_cpu *cpu_bstats_hw; -+ struct gnet_stats_queue *cpu_qstats; -+ struct tc_cookie *act_cookie; -+ struct tcf_chain *goto_chain; -+ u32 tcfa_flags; -+ u8 hw_stats; -+ u8 used_hw_stats; -+ bool used_hw_stats_valid; -+}; -+ -+typedef void (*tc_action_priv_destructor)(void *); -+ -+struct tc_action_ops { -+ struct list_head head; -+ char kind[16]; -+ enum tca_id 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 **, int, int, bool, 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 *); -+}; -+ -+struct tc_cookie { -+ u8 *data; -+ u32 len; -+ struct callback_head rcu; -+}; -+ -+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 { -+ __u32 type; -+ int nr_actions; -+ struct tc_action **actions; -+ struct net *net; -+ int action; -+ int police; -+}; -+ -+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 { -+ struct tc_action common; -+ unsigned char tcfp_nkeys; -+ unsigned char tcfp_flags; -+ struct tc_pedit_key *tcfp_keys; -+ struct tcf_pedit_key_ex *tcfp_keys_ex; -+}; -+ -+struct tcf_mirred { -+ struct tc_action common; -+ int tcfm_eaction; -+ bool tcfm_mac_header_xmit; -+ struct net_device *tcfm_dev; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_vlan_params { -+ int tcfv_action; -+ unsigned char tcfv_push_dst[6]; -+ unsigned char tcfv_push_src[6]; -+ u16 tcfv_push_vid; -+ __be16 tcfv_push_proto; -+ u8 tcfv_push_prio; -+ bool tcfv_push_prio_exists; -+ struct callback_head rcu; -+}; -+ -+struct tcf_vlan { -+ struct tc_action common; -+ struct tcf_vlan_params *vlan_p; -+}; -+ -+struct tcf_tunnel_key_params { -+ struct callback_head rcu; -+ int tcft_action; -+ struct metadata_dst *tcft_enc_metadata; -+}; -+ -+struct tcf_tunnel_key { -+ struct tc_action common; -+ struct tcf_tunnel_key_params *params; -+}; -+ -+struct tcf_csum_params { -+ u32 update_flags; -+ struct callback_head rcu; -+}; -+ -+struct tcf_csum { -+ struct tc_action common; -+ struct tcf_csum_params *params; -+}; -+ -+struct tcf_gact { -+ struct tc_action common; -+ u16 tcfg_ptype; -+ u16 tcfg_pval; -+ int tcfg_paction; -+ atomic_t packets; -+}; -+ -+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; -+ 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; -+}; -+ -+struct tcf_sample { -+ struct tc_action common; -+ u32 rate; -+ bool truncate; -+ u32 trunc_size; -+ struct psample_group *psample_group; -+ u32 psample_group_num; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_skbedit_params { -+ u32 flags; -+ u32 priority; -+ u32 mark; -+ u32 mask; -+ u16 queue_mapping; -+ u16 ptype; -+ struct callback_head rcu; -+}; -+ -+struct tcf_skbedit { -+ struct tc_action common; -+ struct tcf_skbedit_params *params; -+}; -+ -+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; -+}; -+ -+struct tcf_ct_flow_table; -+ -+struct tcf_ct_params { -+ struct nf_conn *tmpl; -+ u16 zone; -+ u32 mark; -+ u32 mark_mask; -+ u32 labels[4]; -+ u32 labels_mask[4]; -+ struct nf_nat_range2 range; -+ bool ipv4_range; -+ u16 ct_action; -+ struct callback_head rcu; -+ struct tcf_ct_flow_table *ct_ft; -+ struct nf_flowtable *nf_ft; -+}; -+ -+struct tcf_ct { -+ struct tc_action common; -+ struct tcf_ct_params *params; -+}; -+ -+struct tcf_mpls_params { -+ int tcfm_action; -+ u32 tcfm_label; -+ u8 tcfm_tc; -+ u8 tcfm_ttl; -+ u8 tcfm_bos; -+ __be16 tcfm_proto; -+ struct callback_head rcu; -+}; -+ -+struct tcf_mpls { -+ struct tc_action common; -+ struct tcf_mpls_params *mpls_p; -+}; -+ -+struct tcfg_gate_entry { -+ int index; -+ u8 gate_state; -+ u32 interval; -+ s32 ipv; -+ s32 maxoctets; -+ struct list_head list; -+}; -+ -+struct tcf_gate_params { -+ s32 tcfg_priority; -+ u64 tcfg_basetime; -+ u64 tcfg_cycletime; -+ u64 tcfg_cycletime_ext; -+ u32 tcfg_flags; -+ s32 tcfg_clockid; -+ size_t num_entries; -+ struct list_head entries; -+}; -+ -+struct tcf_gate { -+ struct tc_action common; -+ struct tcf_gate_params param; -+ u8 current_gate_status; -+ ktime_t current_close_time; -+ u32 current_entry_octets; -+ s32 current_max_octets; -+ struct tcfg_gate_entry *next_entry; -+ struct hrtimer hitimer; -+ enum tk_offsets tk_offset; -+}; -+ -+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 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_MAX = 5, -+}; -+ -+struct tc_action_net { -+ struct tcf_idrinfo *idrinfo; -+ const struct tc_action_ops *ops; -+}; -+ -+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_FQ_CODEL_UNSPEC = 0, -+ TCA_FQ_CODEL_TARGET = 1, -+ TCA_FQ_CODEL_LIMIT = 2, -+ TCA_FQ_CODEL_INTERVAL = 3, -+ TCA_FQ_CODEL_ECN = 4, -+ TCA_FQ_CODEL_FLOWS = 5, -+ TCA_FQ_CODEL_QUANTUM = 6, -+ TCA_FQ_CODEL_CE_THRESHOLD = 7, -+ TCA_FQ_CODEL_DROP_BATCH_SIZE = 8, -+ TCA_FQ_CODEL_MEMORY_LIMIT = 9, -+ __TCA_FQ_CODEL_MAX = 10, -+}; -+ -+enum { -+ TCA_FQ_CODEL_XSTATS_QDISC = 0, -+ TCA_FQ_CODEL_XSTATS_CLASS = 1, -+}; -+ -+struct tc_fq_codel_qd_stats { -+ __u32 maxpacket; -+ __u32 drop_overlimit; -+ __u32 ecn_mark; -+ __u32 new_flow_count; -+ __u32 new_flows_len; -+ __u32 old_flows_len; -+ __u32 ce_mark; -+ __u32 memory_usage; -+ __u32 drop_overmemory; -+}; -+ -+struct tc_fq_codel_cl_stats { -+ __s32 deficit; -+ __u32 ldelay; -+ __u32 count; -+ __u32 lastcount; -+ __u32 dropping; -+ __s32 drop_next; -+}; -+ -+struct tc_fq_codel_xstats { -+ __u32 type; -+ union { -+ struct tc_fq_codel_qd_stats qdisc_stats; -+ struct tc_fq_codel_cl_stats class_stats; -+ }; -+}; -+ -+typedef u32 codel_time_t; -+ -+typedef s32 codel_tdiff_t; -+ -+struct codel_params { -+ codel_time_t target; -+ codel_time_t ce_threshold; -+ codel_time_t interval; -+ u32 mtu; -+ bool ecn; -+}; -+ -+struct codel_vars { -+ u32 count; -+ u32 lastcount; -+ bool dropping; -+ u16 rec_inv_sqrt; -+ codel_time_t first_above_time; -+ codel_time_t drop_next; -+ codel_time_t ldelay; -+}; -+ -+struct codel_stats { -+ u32 maxpacket; -+ u32 drop_count; -+ u32 drop_len; -+ u32 ecn_mark; -+ u32 ce_mark; -+}; -+ -+typedef u32 (*codel_skb_len_t)(const struct sk_buff *); -+ -+typedef codel_time_t (*codel_skb_time_t)(const struct sk_buff *); -+ -+typedef void (*codel_skb_drop_t)(struct sk_buff *, void *); -+ -+typedef struct sk_buff * (*codel_skb_dequeue_t)(struct codel_vars *, void *); -+ -+struct codel_skb_cb { -+ codel_time_t enqueue_time; -+ unsigned int mem_usage; -+}; -+ -+struct fq_codel_flow { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ struct list_head flowchain; -+ int deficit; -+ struct codel_vars cvars; -+}; -+ -+struct fq_codel_sched_data { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct fq_codel_flow *flows; -+ u32 *backlogs; -+ u32 flows_cnt; -+ u32 quantum; -+ u32 drop_batch_size; -+ u32 memory_limit; -+ struct codel_params cparams; -+ struct codel_stats cstats; -+ u32 memory_usage; -+ u32 drop_overmemory; -+ u32 drop_overlimit; -+ u32 new_flow_count; -+ struct list_head new_flows; -+ struct list_head old_flows; -+}; -+ -+enum { -+ TCA_CGROUP_UNSPEC = 0, -+ TCA_CGROUP_ACT = 1, -+ TCA_CGROUP_POLICE = 2, -+ TCA_CGROUP_EMATCHES = 3, -+ __TCA_CGROUP_MAX = 4, -+}; -+ -+struct tcf_ematch_tree {}; -+ -+struct cls_cgroup_head { -+ u32 handle; -+ struct tcf_exts exts; -+ struct tcf_ematch_tree ematches; -+ struct tcf_proto *tp; -+ struct rcu_work rwork; -+}; -+ -+struct sockaddr_nl { -+ __kernel_sa_family_t nl_family; -+ short unsigned int nl_pad; -+ __u32 nl_pid; -+ __u32 nl_groups; -+}; -+ -+struct nlmsgerr { -+ int error; -+ struct nlmsghdr msg; -+}; -+ -+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_MAX = 5, -+ NLMSGERR_ATTR_MAX = 4, -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_netlink_extack)(void *, const char *); -+ -+struct netlink_sock { -+ struct sock sk; -+ u32 portid; -+ u32 dst_portid; -+ u32 dst_group; -+ u32 flags; -+ 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 *cb_mutex; -+ struct mutex cb_def_mutex; -+ void (*netlink_rcv)(struct sk_buff *); -+ int (*netlink_bind)(struct net *, int); -+ void (*netlink_unbind)(struct net *, int); -+ struct module *module; -+ struct rhash_head node; -+ struct callback_head rcu; -+ struct work_struct work; -+}; -+ -+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); -+ bool (*compare)(struct net *, struct sock *); -+ 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 { -+ 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_start_context { -+ const struct genl_family *family; -+ struct nlmsghdr *nlh; -+ struct netlink_ext_ack *extack; -+ const struct genl_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; -+ unsigned int opidx; -+ u32 op; -+ u16 fam_id; -+ u8 policies: 1; -+ u8 single_op: 1; -+}; -+ -+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, -+}; -+ -+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___2 { -+ unsigned int policy_idx; -+ unsigned int attr_idx; -+ unsigned int n_alloc; -+ struct { -+ const struct nla_policy *policy; -+ unsigned int maxtype; -+ } policies[0]; -+}; -+ -+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, -+}; -+ -+struct trace_event_raw_bpf_test_finish { -+ struct trace_entry ent; -+ int err; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_bpf_test_finish {}; -+ -+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 bpf_fentry_test_t { -+ struct bpf_fentry_test_t *a; -+}; -+ -+struct bpf_raw_tp_test_run_info { -+ struct bpf_prog *prog; -+ void *ctx; -+ u32 retval; -+}; -+ -+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_id { -+ ETHTOOL_ID_UNSPEC = 0, -+ ETHTOOL_RX_COPYBREAK = 1, -+ ETHTOOL_TX_COPYBREAK = 2, -+ ETHTOOL_PFC_PREVENTION_TOUT = 3, -+ __ETHTOOL_TUNABLE_COUNT = 4, -+}; -+ -+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, -+}; -+ -+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 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 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 rsvd8[3]; -+ __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]; -+}; -+ -+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]; -+}; -+ -+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 { -+ ETH_RSS_HASH_TOP_BIT = 0, -+ ETH_RSS_HASH_XOR_BIT = 1, -+ ETH_RSS_HASH_CRC32_BIT = 2, -+ ETH_RSS_HASH_FUNCS_COUNT = 3, -+}; -+ -+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_link_usettings { -+ struct ethtool_link_settings base; -+ struct { -+ __u32 supported[3]; -+ __u32 advertising[3]; -+ __u32 lp_advertising[3]; -+ } 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; -+ long: 48; -+}; -+ -+struct ethtool_rx_flow_match { -+ struct flow_dissector dissector; -+ int: 32; -+ struct ethtool_rx_flow_key key; -+ struct ethtool_rx_flow_key mask; -+}; -+ -+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 link_mode_info { -+ int speed; -+ u8 lanes; -+ u8 duplex; -+}; -+ -+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_USER_CNT = 34, -+ ETHTOOL_MSG_USER_MAX = 33, -+}; -+ -+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_CNT = 4, -+ ETHTOOL_A_HEADER_MAX = 3, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_LINKMODES_MAX = 9, -+}; -+ -+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_CNT = 7, -+ ETHTOOL_A_LINKSTATE_MAX = 6, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_RINGS_MAX = 9, -+}; -+ -+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_CNT = 24, -+ ETHTOOL_A_COALESCE_MAX = 23, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_PAUSE_MAX = 5, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_TSINFO_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_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_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_multicast_groups { -+ ETHNL_MCGRP_MONITOR = 0, -+}; -+ -+struct ethnl_req_info { -+ struct net_device *dev; -+ u32 flags; -+}; -+ -+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; -+ 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 *, 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 *); -+}; -+ -+struct ethnl_dump_ctx { -+ const struct ethnl_request_ops *ops; -+ struct ethnl_req_info *req_info; -+ struct ethnl_reply_data *reply_data; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); -+ -+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, -+}; -+ -+typedef const char (* const ethnl_string_array_t)[32]; -+ -+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[21]; -+}; -+ -+struct linkinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+}; -+ -+struct linkmodes_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+ bool peer_empty; -+}; -+ -+struct linkstate_reply_data { -+ struct ethnl_reply_data base; -+ int link; -+ int sqi; -+ int sqi_max; -+ bool link_ext_state_provided; -+ struct ethtool_link_ext_state_info ethtool_link_ext_state_info; -+}; -+ -+struct debug_reply_data { -+ struct ethnl_reply_data base; -+ u32 msg_mask; -+}; -+ -+struct wol_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_wolinfo wol; -+ bool show_sopass; -+}; -+ -+struct features_reply_data { -+ struct ethnl_reply_data base; -+ u32 hw[2]; -+ u32 wanted[2]; -+ u32 active[2]; -+ u32 nochange[2]; -+ u32 all[2]; -+}; -+ -+struct privflags_reply_data { -+ struct ethnl_reply_data base; -+ const char (*priv_flag_names)[32]; -+ unsigned int n_priv_flags; -+ u32 priv_flags; -+}; -+ -+struct rings_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ringparam ringparam; -+}; -+ -+struct channels_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_channels channels; -+}; -+ -+struct coalesce_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_coalesce coalesce; -+ u32 supported_params; -+}; -+ -+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_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_pauseparam pauseparam; -+ struct ethtool_pause_stats pausestat; -+}; -+ -+struct eee_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_eee eee; -+}; -+ -+struct tsinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ts_info ts_info; -+}; -+ -+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_RESULT_UNSPEC = 0, -+ ETHTOOL_A_CABLE_RESULT_PAIR = 1, -+ ETHTOOL_A_CABLE_RESULT_CODE = 2, -+ __ETHTOOL_A_CABLE_RESULT_CNT = 3, -+ ETHTOOL_A_CABLE_RESULT_MAX = 2, -+}; -+ -+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_CNT = 3, -+ ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 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_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 { -+ 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, -+}; -+ -+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, -+}; -+ -+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_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 *); -+}; -+ -+struct ethnl_tunnel_info_dump_ctx { -+ struct ethnl_req_info req_info; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+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; -+}; -+ -+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_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 = 4, -+}; -+ -+struct stats_req_info { -+ struct ethnl_req_info base; -+ long unsigned int stat_mask[1]; -+}; -+ -+struct stats_reply_data { -+ struct ethnl_reply_data base; -+ 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; -+ const struct ethtool_rmon_hist_range *rmon_ranges; -+}; -+ -+struct phc_vclocks_reply_data { -+ struct ethnl_reply_data base; -+ int num; -+ int *index; -+}; -+ -+struct nf_hook_entries_rcu_head { -+ struct callback_head head; -+ void *allocation; -+}; -+ -+struct nf_conn___2; -+ -+enum nf_nat_manip_type; -+ -+struct nf_nat_hook { -+ int (*parse_nat_setup)(struct nf_conn___2 *, enum nf_nat_manip_type, const struct nlattr *); -+ void (*decode_session)(struct sk_buff *, struct flowi *); -+ unsigned int (*manip_pkt)(struct sk_buff *, struct nf_conn___2 *, enum nf_nat_manip_type, enum ip_conntrack_dir); -+}; -+ -+struct nf_conntrack_tuple___2; -+ -+struct nf_ct_hook { -+ int (*update)(struct net *, struct sk_buff *); -+ void (*destroy)(struct nf_conntrack *); -+ bool (*get_tuple_skb)(struct nf_conntrack_tuple___2 *, const struct sk_buff *); -+}; -+ -+struct nfnl_ct_hook { -+ size_t (*build_size)(const struct nf_conn___2 *); -+ int (*build)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, u_int16_t, u_int16_t); -+ int (*parse)(const struct nlattr *, struct nf_conn___2 *); -+ int (*attach_expect)(const struct nlattr *, struct nf_conn___2 *, u32, u32); -+ void (*seq_adjust)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, s32); -+}; -+ -+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_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; -+}; -+ -+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 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; -+ __u16 frag_max_size; -+ struct net_device *physindev; -+ 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; -+}; -+ -+struct ip6_rt_info { -+ struct in6_addr daddr; -+ struct in6_addr saddr; -+ u_int32_t mark; -+}; -+ -+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 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_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_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_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 xt_error_target { -+ struct xt_entry_target target; -+ char errorname[30]; -+}; -+ -+struct xt_counters { -+ __u64 pcnt; -+ __u64 bcnt; -+}; -+ -+struct xt_counters_info { -+ char name[32]; -+ unsigned int num_counters; -+ struct xt_counters counters[0]; -+}; -+ -+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 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; -+ int (*table_init)(struct net *); -+ 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 xt_percpu_counter_alloc_state { -+ unsigned int off; -+ const char *mem; -+}; -+ -+struct xt_pernet { -+ struct list_head tables[13]; -+}; -+ -+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, -+}; -+ -+struct xt_tcp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 option; -+ __u8 flg_mask; -+ __u8 flg_cmp; -+ __u8 invflags; -+}; -+ -+struct xt_udp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 invflags; -+}; -+ -+struct ip_mreqn { -+ struct in_addr imr_multiaddr; -+ struct in_addr imr_address; -+ int imr_ifindex; -+}; -+ -+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 rtvia { -+ __kernel_sa_family_t rtvia_family; -+ __u8 rtvia_addr[0]; -+}; -+ -+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; -+}; -+ -+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 fib_rt_info { -+ struct fib_info *fi; -+ u32 tb_id; -+ __be32 dst; -+ int dst_len; -+ u8 tos; -+ u8 type; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+}; -+ -+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 fib_alias { -+ struct hlist_node fa_list; -+ struct fib_info *fa_info; -+ u8 fa_tos; -+ u8 fa_type; -+ u8 fa_state; -+ u8 fa_slen; -+ u32 tb_id; -+ s16 fa_default; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+ struct callback_head rcu; -+}; -+ -+struct fib_prop { -+ int error; -+ u8 scope; -+}; -+ -+struct net_offload { -+ struct offload_callbacks callbacks; -+ unsigned int flags; -+}; -+ -+struct raw_hashinfo { -+ rwlock_t lock; -+ struct hlist_head ht[256]; -+}; -+ -+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_FRAG_FIRST_IN = 1, -+ INET_FRAG_LAST_IN = 2, -+ INET_FRAG_COMPLETE = 4, -+ INET_FRAG_HASH_DEAD = 8, -+}; -+ -+struct ipq { -+ struct inet_frag_queue q; -+ u8 ecn; -+ u16 max_df_size; -+ int iif; -+ unsigned int rid; -+ struct inet_peer *peer; -+}; -+ -+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 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; -+}; -+ -+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; -+ __be32 imsf_slist[1]; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+}; -+ -+struct in_pktinfo { -+ int ipi_ifindex; -+ struct in_addr ipi_spec_dst; -+ struct in_addr ipi_addr; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+} __attribute__((packed)); -+ -+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 { -+ 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_MAX_STATES = 13, -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+struct tcp_md5sig_pool { -+ struct ahash_request *md5_req; -+ void *scratch; -+}; -+ -+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 { -+ TCP_CMSG_INQ = 1, -+ TCP_CMSG_TS = 2, -+}; -+ -+struct tcp_splice_state { -+ struct pipe_inode_info *pipe; -+ size_t len; -+ unsigned int flags; -+}; -+ -+enum tcp_fastopen_client_fail { -+ TFO_STATUS_UNSPEC = 0, -+ TFO_COOKIE_UNAVAILABLE = 1, -+ TFO_DATA_NOT_ACKED = 2, -+ TFO_SYN_RETRANSMITTED = 3, -+}; -+ -+struct tcp_sack_block_wire { -+ __be32 start_seq; -+ __be32 end_seq; -+}; -+ -+struct static_key_false_deferred { -+ struct static_key_false key; -+ long unsigned int timeout; -+ struct delayed_work work; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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 pkt_hash_types { -+ PKT_HASH_TYPE_NONE = 0, -+ PKT_HASH_TYPE_L2 = 1, -+ PKT_HASH_TYPE_L3 = 2, -+ PKT_HASH_TYPE_L4 = 3, -+}; -+ -+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, -+}; -+ -+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_out_options { -+ u16 suboptions; -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 ahmac; -+ struct mptcp_addr_info addr; -+ 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; -+ u32 nonce; -+ u64 thmac; -+ u32 token; -+ u8 hmac[20]; -+ struct mptcp_ext ext_copy; -+}; -+ -+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 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 icmp_err { -+ int errno; -+ unsigned int fatal: 1; -+}; -+ -+enum tcp_tw_status { -+ TCP_TW_SUCCESS = 0, -+ TCP_TW_RST = 1, -+ TCP_TW_ACK = 2, -+ TCP_TW_SYN = 3, -+}; -+ -+struct tcp4_pseudohdr { -+ __be32 saddr; -+ __be32 daddr; -+ __u8 pad; -+ __u8 protocol; -+ __be16 len; -+}; -+ -+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; -+ struct tcp_seq_afinfo *bpf_seq_afinfo; -+ int bucket; -+ int offset; -+ int sbucket; -+ int num; -+ loff_t last_pos; -+}; -+ -+struct bpf_iter__tcp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct sock_common *sk_common; -+ }; -+ uid_t uid; -+}; -+ -+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; -+ possible_net_t 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 icmp_filter { -+ __u32 data; -+}; -+ -+struct raw_iter_state { -+ struct seq_net_private p; -+ int bucket; -+}; -+ -+struct raw_sock { -+ struct inet_sock inet; -+ struct icmp_filter filter; -+ u32 ipmr_table; -+}; -+ -+struct raw_frag_vec { -+ struct msghdr *msg; -+ union { -+ struct icmphdr icmph; -+ char c[1]; -+ } hdr; -+ int hlen; -+}; -+ -+struct ip_tunnel_encap { -+ u16 type; -+ u16 flags; -+ __be16 sport; -+ __be16 dport; -+}; -+ -+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 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; -+ struct udp_seq_afinfo *bpf_seq_afinfo; -+}; -+ -+struct bpf_iter__udp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct udp_sock *udp_sk; -+ }; -+ uid_t uid; -+ int: 32; -+ int bucket; -+}; -+ -+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; -+}; -+ -+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 *); -+ -+typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); -+ -+struct arpreq { -+ struct sockaddr arp_pa; -+ struct sockaddr arp_ha; -+ int arp_flags; -+ struct sockaddr arp_netmask; -+ char arp_dev[16]; -+}; -+ -+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, -+}; -+ -+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 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 { -+ bool (*handler)(struct sk_buff *); -+ short int error; -+}; -+ -+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_MAX = 11, -+}; -+ -+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 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 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 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 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; -+}; -+ -+struct fib_config { -+ u8 fc_dst_len; -+ u8 fc_tos; -+ 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_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 fib_dump_filter { -+ u32 table_id; -+ bool filter_set; -+ bool dump_routes; -+ bool dump_exceptions; -+ unsigned char protocol; -+ unsigned char rt_type; -+ unsigned int flags; -+ struct net_device *dev; -+}; -+ -+struct fib_nh_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_nh *fib_nh; -+}; -+ -+struct fib_entry_notifier_info { -+ struct fib_notifier_info info; -+ u32 dst; -+ int dst_len; -+ struct fib_info *fi; -+ u8 tos; -+ 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 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 ipfrag_skb_cb { -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ }; -+ struct sk_buff *next_frag; -+ int frag_run_len; -+}; -+ -+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 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_nulls_head hash[64]; -+ rwlock_t lock; -+}; -+ -+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 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 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 resvd1; -+ __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_MAX = 14, -+}; -+ -+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, -+}; -+ -+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; -+ 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, -+}; -+ -+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, -+}; -+ -+struct nh_notifier_single_info { -+ struct net_device *dev; -+ u8 gw_family; -+ union { -+ __be32 ipv4; -+ struct in6_addr ipv6; -+ }; -+ u8 is_reject: 1; -+ u8 is_fdb: 1; -+ u8 has_encap: 1; -+}; -+ -+struct nh_notifier_grp_entry_info { -+ u8 weight; -+ u32 id; -+ struct nh_notifier_single_info nh; -+}; -+ -+struct nh_notifier_grp_info { -+ u16 num_nh; -+ bool is_fdb; -+ 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; -+ struct nh_notifier_single_info nhs[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_dump_filter { -+ u32 nh_id; -+ int dev_idx; -+ int master_idx; -+ bool group_filter; -+ bool fdb_filter; -+ u32 res_bucket_nh_id; -+}; -+ -+struct rtm_dump_nh_ctx { -+ u32 idx; -+}; -+ -+struct rtm_dump_res_bucket_ctx { -+ struct rtm_dump_nh_ctx nh; -+ u16 bucket_index; -+ u32 done_nh_idx; -+}; -+ -+struct rtm_dump_nexthop_bucket_data { -+ struct rtm_dump_res_bucket_ctx *ctx; -+ struct nh_dump_filter filter; -+}; -+ -+struct inet6_protocol { -+ void (*early_demux)(struct sk_buff *); -+ void (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -+ unsigned int flags; -+}; -+ -+struct snmp_mib { -+ const char *name; -+ int entry; -+}; -+ -+struct fib4_rule { -+ struct fib_rule common; -+ u8 dst_len; -+ u8 src_len; -+ u8 tos; -+ __be32 src; -+ __be32 srcmask; -+ __be32 dst; -+ __be32 dstmask; -+ u32 tclassid; -+}; -+ -+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_device { -+ struct net_device *dev; -+ 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; -+ long unsigned int bytes; -+ long unsigned int pkt; -+ long unsigned int 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 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 ipmr_result { -+ struct mr_table *mrt; -+}; -+ -+struct rta_mfc_stats { -+ __u64 mfcs_packets; -+ __u64 mfcs_bytes; -+ __u64 mfcs_wrong_if; -+}; -+ -+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 { -+ __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_req_v2 { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 pad; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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_handler { -+ 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 bpf_sk_storage_diag___2; -+ -+struct inet_diag_dump_data { -+ struct nlattr *req_nlas[4]; -+ struct bpf_sk_storage_diag___2 *bpf_stg_diag; -+}; -+ -+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; -+}; -+ -+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 tcp_diag_md5sig { -+ __u8 tcpm_family; -+ __u8 tcpm_prefixlen; -+ __u16 tcpm_keylen; -+ __be32 tcpm_addr[4]; -+ __u8 tcpm_key[80]; -+}; -+ -+struct inet_diag_req_raw { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 sdiag_raw_protocol; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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 tls_rec { -+ struct list_head list; -+ int tx_ready; -+ int tx_flags; -+ struct sk_msg msg_plaintext; -+ struct sk_msg msg_encrypted; -+ struct scatterlist sg_aead_in[2]; -+ struct scatterlist sg_aead_out[2]; -+ char content_type; -+ struct scatterlist sg_content_type; -+ char aad_space[13]; -+ u8 iv_data[16]; -+ long: 24; -+ long: 64; -+ long: 64; -+ struct aead_request aead_req; -+ u8 aead_req_ctx[0]; -+}; -+ -+struct tx_work { -+ struct delayed_work work; -+ struct sock *sk; -+}; -+ -+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; -+ spinlock_t encrypt_compl_lock; -+ int async_notify; -+ 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_NUM_CFGS = 2, -+}; -+ -+enum { -+ UDP_BPF_IPV4 = 0, -+ UDP_BPF_IPV6 = 1, -+ UDP_BPF_NUM_PROTS = 2, -+}; -+ -+struct netlbl_audit { -+ u32 secid; -+ kuid_t loginuid; -+ unsigned int sessionid; -+}; -+ -+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 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; -+}; -+ -+struct xfrm_policy_afinfo { -+ struct dst_ops *dst_ops; -+ struct dst_entry * (*dst_lookup)(struct net *, int, int, const xfrm_address_t *, const xfrm_address_t *, u32); -+ int (*get_saddr)(struct net *, int, xfrm_address_t *, xfrm_address_t *, u32); -+ int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); -+ struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); -+}; -+ -+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 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_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 xfrm_input_afinfo { -+ u8 family; -+ bool is_ipip; -+ int (*callback)(struct sk_buff *, u8, int); -+}; -+ -+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; -+}; -+ -+typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); -+ -+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 xfrm_if; -+ -+struct xfrm_if_cb { -+ struct xfrm_if * (*decode_session)(struct sk_buff *, short unsigned int); -+}; -+ -+struct xfrm_if_parms { -+ int link; -+ u32 if_id; -+}; -+ -+struct xfrm_if { -+ struct xfrm_if *next; -+ struct net_device *dev; -+ struct net *net; -+ struct xfrm_if_parms p; -+ struct gro_cells gro_cells; -+}; -+ -+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 xfrmk_spdinfo { -+ u32 incnt; -+ u32 outcnt; -+ u32 fwdcnt; -+ u32 inscnt; -+ u32 outscnt; -+ u32 fwdscnt; -+ u32 spdhcnt; -+ u32 spdhmcnt; -+}; -+ -+struct ip6_mh { -+ __u8 ip6mh_proto; -+ __u8 ip6mh_hdrlen; -+ __u8 ip6mh_type; -+ __u8 ip6mh_reserved; -+ __u16 ip6mh_cksum; -+ __u8 data[0]; -+}; -+ -+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]; -+}; -+ -+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_MODE_FLAG_TUNNEL = 1, -+}; -+ -+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_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 ip_beet_phdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __u8 padlen; -+ __u8 reserved; -+}; -+ -+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 { -+ struct ip_tunnel *next; -+ struct hlist_node hash_node; -+ struct net_device *dev; -+ struct net *net; -+ long unsigned int err_time; -+ int err_count; -+ u32 i_seqno; -+ u32 o_seqno; -+ int tun_hlen; -+ u32 index; -+ u8 erspan_ver; -+ u8 dir; -+ u16 hwid; -+ struct dst_cache dst_cache; -+ struct ip_tunnel_parm 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 __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; -+ __be16 i_flags; -+ __be16 o_flags; -+ __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; -+ 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; -+ __u32 o_seqno; -+ int hlen; -+ int tun_hlen; -+ int encap_hlen; -+ struct ip_tunnel_encap encap; -+ int mlink; -+}; -+ -+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 ip_tunnel_prl_entry { -+ struct ip_tunnel_prl_entry *next; -+ __be32 addr; -+ u16 flags; -+ struct callback_head callback_head; -+}; -+ -+struct xfrm_trans_tasklet { -+ struct tasklet_struct tasklet; -+ 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 xfrm_user_offload { -+ int ifindex; -+ __u8 flags; -+}; -+ -+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_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 xfrm_algo_list { -+ struct xfrm_algo_desc *algs; -+ int entries; -+ u32 type; -+ u32 mask; -+}; -+ -+struct xfrm_aead_name { -+ const char *name; -+ int icvbits; -+}; -+ -+enum { -+ XFRM_SHARE_ANY = 0, -+ XFRM_SHARE_SESSION = 1, -+ XFRM_SHARE_USER = 2, -+ XFRM_SHARE_UNIQUE = 3, -+}; -+ -+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; -+}; -+ -+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_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 **); -+ 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; -+}; -+ -+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 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 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 ipv6_params { -+ __s32 disable_ipv6; -+ __s32 autoconf; -+}; -+ -+enum flowlabel_reflect { -+ FLOWLABEL_REFLECT_ESTABLISHED = 1, -+ FLOWLABEL_REFLECT_TCP_RESET = 2, -+ FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, -+}; -+ -+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 ac6_iter_state { -+ struct seq_net_private p; -+ struct net_device *dev; -+ struct inet6_dev *idev; -+}; -+ -+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; -+ __s8 dontfrag; -+ struct ipv6_txoptions *opt; -+ __u16 gso_size; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 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 promiscuous_mode; -+ bool ackreq; -+}; -+ -+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_MAX = 53, -+}; -+ -+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, -+}; -+ -+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; -+ u32 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; -+ u8 symbol_duration; -+ u16 lifs_period; -+ u16 sifs_period; -+ struct device dev; -+ possible_net_t _net; -+ long: 64; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct ieee802154_addr { -+ u8 mode; -+ __le16 pan_id; -+ union { -+ __le16 short_addr; -+ __le64 extended_addr; -+ }; -+}; -+ -+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; -+ __be16 fifo_hi; -+ __be32 fifo_lo; -+ } uc; -+}; -+ -+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; -+ const struct in6_addr *peer_pfx; -+ u32 rt_priority; -+ u32 ifa_flags; -+ u32 preferred_lft; -+ u32 valid_lft; -+ u16 scope; -+}; -+ -+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 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 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 rd_msg { -+ struct icmp6hdr icmph; -+ struct in6_addr target; -+ struct in6_addr dest; -+ __u8 opt[0]; -+}; -+ -+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 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; -+}; -+ -+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; -+ u32 __data_loc_name; -+ __u8 gw[16]; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib6_table_lookup { -+ u32 name; -+}; -+ -+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 = 4294967293, -+ RT6_NUD_FAIL_PROBE = 4294967294, -+ RT6_NUD_FAIL_DO_RR = 4294967295, -+ 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; -+}; -+ -+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_device *dev; -+ 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; -+}; -+ -+enum fib6_walk_state { -+ FWS_L = 0, -+ FWS_R = 1, -+ FWS_C = 2, -+ FWS_U = 3, -+}; -+ -+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 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 ip6_mtuinfo { -+ struct sockaddr_in6 ip6m_addr; -+ __u32 ip6m_mtu; -+}; -+ -+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 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 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 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; -+}; -+ -+typedef int mh_filter_t(struct sock *, struct sk_buff *); -+ -+struct raw6_frag_vec { -+ struct msghdr *msg; -+ int hlen; -+ char c[4]; -+}; -+ -+struct ipv6_destopt_hao { -+ __u8 type; -+ __u8 length; -+ struct in6_addr addr; -+} __attribute__((packed)); -+ -+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 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 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 tcp6_pseudohdr { -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+ __be32 len; -+ __be32 protocol; -+}; -+ -+struct rt0_hdr { -+ struct ipv6_rt_hdr rt_hdr; -+ __u32 reserved; -+ struct in6_addr addr[0]; -+}; -+ -+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 in6_addr addr[0]; -+ __u8 data[0]; -+ } segments; -+}; -+ -+struct tlvtype_proc { -+ int type; -+ bool (*func)(struct sk_buff *, int); -+}; -+ -+struct ip6fl_iter_state { -+ struct seq_net_private p; -+ struct pid_namespace *pid_ns; -+ int bucket; -+}; -+ -+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, -+}; -+ -+typedef short unsigned int mifi_t; -+ -+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 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 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 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 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; -+ int offload_fwd_mark; -+}; -+ -+struct nf_bridge_frag_data; -+ -+struct fib6_rule { -+ struct fib_rule common; -+ struct rt6key src; -+ struct rt6key dst; -+ u8 tclass; -+}; -+ -+struct calipso_doi; -+ -+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)(); -+ int (*cache_add)(const unsigned char *, const struct netlbl_lsm_secattr *); -+}; -+ -+struct calipso_doi { -+ u32 doi; -+ u32 type; -+ refcount_t refcount; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+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 { -+ IP6_FH_F_FRAG = 1, -+ IP6_FH_F_AUTH = 2, -+ IP6_FH_F_SKIP_RH = 4, -+}; -+ -+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 virtio_net_hdr { -+ __u8 flags; -+ __u8 gso_type; -+ __virtio16 hdr_len; -+ __virtio16 gso_size; -+ __virtio16 csum_start; -+ __virtio16 csum_offset; -+}; -+ -+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]; -+}; -+ -+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; -+ unsigned int running; -+ unsigned int auxdata: 1; -+ unsigned int origdev: 1; -+ unsigned int has_vnet_hdr: 1; -+ unsigned int tp_loss: 1; -+ unsigned int tp_tx_has_off: 1; -+ int pressure; -+ int ifindex; -+ __be16 num; -+ struct packet_rollover *rollover; -+ struct packet_mclist *mclist; -+ atomic_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; -+ int (*xmit)(struct sk_buff *); -+ struct packet_type prot_hook; -+ atomic_t tp_drops; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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 _strp_msg { -+ struct strp_msg strp; -+ int accum_len; -+}; -+ -+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; -+ 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_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; -+ 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; -+}; -+ -+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; -+ u16 family; -+ struct netlbl_dommap_def def; -+ u32 valid; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netlbl_domhsh_tbl { -+ struct list_head *tbl; -+ u32 size; -+}; -+ -+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 { -+ struct netlink_callback *nl_cb; -+ struct sk_buff *skb; -+ u32 seq; -+}; -+ -+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 { -+ 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; -+}; -+ -+struct netlbl_domhsh_walk_arg___2 { -+ struct netlbl_audit *audit_info; -+ u32 doi; -+}; -+ -+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 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_IEEE_MAX = 11, -+}; -+ -+enum ieee_attrs_app { -+ DCB_ATTR_IEEE_APP_UNSPEC = 0, -+ DCB_ATTR_IEEE_APP = 1, -+ __DCB_ATTR_IEEE_APP_MAX = 2, -+}; -+ -+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_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 *); -+}; -+ -+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 switchdev_attr_id { -+ SWITCHDEV_ATTR_ID_UNDEFINED = 0, -+ SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, -+ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 2, -+ SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 3, -+ SWITCHDEV_ATTR_ID_PORT_MROUTER = 4, -+ SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 5, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 6, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 7, -+ SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 8, -+ SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 9, -+ SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 10, -+}; -+ -+struct switchdev_brport_flags { -+ long unsigned int val; -+ long unsigned int mask; -+}; -+ -+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_brport_flags brport_flags; -+ bool mrouter; -+ clock_t ageing_time; -+ bool vlan_filtering; -+ u16 vlan_protocol; -+ bool mc_disabled; -+ u8 mrp_port_role; -+ } u; -+}; -+ -+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 *); -+}; -+ -+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, -+}; -+ -+struct switchdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+ const void *ctx; -+}; -+ -+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; -+}; -+ -+typedef void switchdev_deferred_func_t(struct net_device *, const void *); -+ -+struct switchdev_deferred_item { -+ struct list_head list; -+ struct net_device *dev; -+ switchdev_deferred_func_t *func; -+ long unsigned int data[0]; -+}; -+ -+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 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; -+}; -+ -+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_desc { -+ __u64 addr; -+ __u32 len; -+ __u32 options; -+}; -+ -+struct xsk_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct xdp_sock *xsk_map[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 pad1; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 consumer; -+ long: 32; -+ 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: 32; -+ 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 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; -+ bool dma_need_sync; -+}; -+ -+struct mptcp_mib { -+ long unsigned int mibs[37]; -+}; -+ -+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, -+}; -+ -+struct mptcp_options_received { -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 data_ack; -+ u64 data_seq; -+ u32 subflow_seq; -+ u16 data_len; -+ __sum16 csum; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 fastclose: 1; -+ u16 reset: 1; -+ u16 dss: 1; -+ u16 add_addr: 1; -+ u16 rm_addr: 1; -+ u16 mp_prio: 1; -+ u16 echo: 1; -+ u16 csum_reqd: 1; -+ u16 backup: 1; -+ u16 deny_join_id0: 1; -+ u32 token; -+ u32 nonce; -+ u64 thmac; -+ u8 hmac[20]; -+ u8 join_id; -+ u8 use_map: 1; -+ u8 dsn64: 1; -+ u8 data_fin: 1; -+ u8 use_ack: 1; -+ u8 ack64: 1; -+ u8 mpc_map: 1; -+ u8 __unused: 2; -+ struct mptcp_addr_info addr; -+ struct mptcp_rm_list rm_list; -+ u64 ahmac; -+ u8 reset_reason: 4; -+ u8 reset_transient: 1; -+}; -+ -+struct mptcp_pm_data { -+ struct mptcp_addr_info local; -+ struct mptcp_addr_info remote; -+ struct list_head anno_list; -+ spinlock_t lock; -+ 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 subflows; -+ u8 status; -+ struct mptcp_rm_list rm_list_tx; -+ struct mptcp_rm_list rm_list_rx; -+}; -+ -+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_sock { -+ struct inet_connection_sock sk; -+ u64 local_key; -+ u64 remote_key; -+ u64 write_seq; -+ u64 snd_nxt; -+ u64 ack_seq; -+ u64 rcv_wnd_sent; -+ u64 rcv_data_fin_seq; -+ int wmem_reserved; -+ struct sock *last_snd; -+ int snd_burst; -+ int old_wspace; -+ u64 snd_una; -+ u64 wnd_end; -+ long unsigned int timer_ival; -+ u32 token; -+ int rmem_released; -+ long unsigned int flags; -+ 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; -+ spinlock_t join_list_lock; -+ struct work_struct work; -+ struct sk_buff *ooo_last_skb; -+ struct rb_root out_of_order_queue; -+ struct sk_buff_head receive_queue; -+ int tx_pending_data; -+ struct list_head conn_list; -+ struct list_head rtx_queue; -+ struct mptcp_data_frag *first_pending; -+ struct list_head join_list; -+ struct socket *subflow; -+ struct sock *first; -+ struct mptcp_pm_data pm; -+ struct { -+ u32 space; -+ u32 copied; -+ u64 time; -+ u64 rtt_us; -+ } rcvq_space; -+ u32 setsockopt_seq; -+ char ca_name[16]; -+}; -+ -+struct mptcp_subflow_request_sock { -+ struct tcp_request_sock sk; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 backup: 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; -+}; -+ -+enum mptcp_data_avail { -+ MPTCP_SUBFLOW_NODATA = 0, -+ MPTCP_SUBFLOW_DATA_AVAIL = 1, -+}; -+ -+struct mptcp_delegated_action { -+ struct napi_struct napi; -+ struct list_head head; -+}; -+ -+struct mptcp_subflow_context { -+ struct list_head node; -+ u64 local_key; -+ u64 remote_key; -+ u64 idsn; -+ u64 map_seq; -+ 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 fully_established: 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 rx_eof: 1; -+ u32 can_ack: 1; -+ u32 disposable: 1; -+ enum mptcp_data_avail data_avail; -+ u32 remote_nonce; -+ u64 thmac; -+ u32 local_nonce; -+ u32 remote_token; -+ u8 hmac[20]; -+ u8 local_id; -+ u8 remote_id; -+ u8 reset_seen: 1; -+ u8 reset_transient: 1; -+ u8 reset_reason: 4; -+ long int delegated_status; -+ struct list_head delegated_node; -+ u32 setsockopt_seq; -+ struct sock *tcp_sock; -+ struct sock *conn; -+ const struct inet_connection_sock_af_ops *icsk_af_ops; -+ void (*tcp_data_ready)(struct sock *); -+ void (*tcp_state_change)(struct sock *); -+ void (*tcp_write_space)(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_TOKENFALLBACKINIT = 7, -+ MPTCP_MIB_RETRANSSEGS = 8, -+ MPTCP_MIB_JOINNOTOKEN = 9, -+ MPTCP_MIB_JOINSYNRX = 10, -+ MPTCP_MIB_JOINSYNACKRX = 11, -+ MPTCP_MIB_JOINSYNACKMAC = 12, -+ MPTCP_MIB_JOINACKRX = 13, -+ MPTCP_MIB_JOINACKMAC = 14, -+ MPTCP_MIB_DSSNOMATCH = 15, -+ MPTCP_MIB_INFINITEMAPRX = 16, -+ MPTCP_MIB_DSSTCPMISMATCH = 17, -+ MPTCP_MIB_DATACSUMERR = 18, -+ MPTCP_MIB_OFOQUEUETAIL = 19, -+ MPTCP_MIB_OFOQUEUE = 20, -+ MPTCP_MIB_OFOMERGE = 21, -+ MPTCP_MIB_NODSSWINDOW = 22, -+ MPTCP_MIB_DUPDATA = 23, -+ MPTCP_MIB_ADDADDR = 24, -+ MPTCP_MIB_ECHOADD = 25, -+ MPTCP_MIB_PORTADD = 26, -+ MPTCP_MIB_JOINPORTSYNRX = 27, -+ MPTCP_MIB_JOINPORTSYNACKRX = 28, -+ MPTCP_MIB_JOINPORTACKRX = 29, -+ MPTCP_MIB_MISMATCHPORTSYNRX = 30, -+ MPTCP_MIB_MISMATCHPORTACKRX = 31, -+ MPTCP_MIB_RMADDR = 32, -+ MPTCP_MIB_RMSUBFLOW = 33, -+ MPTCP_MIB_MPPRIOTX = 34, -+ MPTCP_MIB_MPPRIORX = 35, -+ MPTCP_MIB_RCVPRUNED = 36, -+ __MPTCP_MIB_MAX = 37, -+}; -+ -+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; -+ 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_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 mptcp_skb_cb { -+ u64 map_seq; -+ u64 end_seq; -+ u32 offset; -+ u8 has_rxtstamp: 1; -+}; -+ -+enum { -+ MPTCP_CMSG_TS = 1, -+}; -+ -+struct mptcp_sendmsg_info { -+ int mss_now; -+ int size_goal; -+ u16 limit; -+ u16 sent; -+ unsigned int flags; -+}; -+ -+struct subflow_send_info { -+ struct sock *ssk; -+ u64 ratio; -+}; -+ -+struct csum_pseudo_header { -+ __be64 data_seq; -+ __be32 subflow_seq; -+ __be16 data_len; -+ __sum16 csum; -+}; -+ -+enum mapping_status { -+ MAPPING_OK = 0, -+ MAPPING_INVALID = 1, -+ MAPPING_EMPTY = 2, -+ MAPPING_DATA_FIN = 3, -+ MAPPING_DUMMY = 4, -+}; -+ -+enum mptcp_addr_signal_status { -+ MPTCP_ADD_ADDR_SIGNAL = 0, -+ MPTCP_ADD_ADDR_ECHO = 1, -+ MPTCP_ADD_ADDR_IPV6 = 2, -+ MPTCP_ADD_ADDR_PORT = 3, -+ MPTCP_RM_ADDR_SIGNAL = 4, -+}; -+ -+struct mptcp_pm_add_entry; -+ -+struct token_bucket { -+ spinlock_t lock; -+ int chain_len; -+ struct hlist_nulls_head req_chain; -+ struct hlist_nulls_head msk_chain; -+}; -+ -+struct mptcp_pernet { -+ struct ctl_table_header *ctl_table_hdr; -+ u8 mptcp_enabled; -+ unsigned int add_addr_timeout; -+ u8 checksum_enabled; -+ u8 allow_join_initial_addr_port; -+}; -+ -+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_ALREADY_ESTABLISHED = 4, -+ MPTCP_PM_SUBFLOW_ESTABLISHED = 5, -+}; -+ -+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, -+}; -+ -+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_MAX = 4, -+}; -+ -+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_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_AFTER_LAST = 8, -+}; -+ -+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_AFTER_LAST = 18, -+}; -+ -+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___2 { -+ struct list_head list; -+ struct mptcp_addr_info addr; -+ struct timer_list add_timer; -+ struct mptcp_sock *sock; -+ u8 retrans_times; -+}; -+ -+struct pm_nl_pernet { -+ spinlock_t lock; -+ struct list_head local_addr_list; -+ unsigned int addrs; -+ 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]; -+}; -+ -+struct join_entry { -+ u32 token; -+ u32 remote_nonce; -+ u32 local_nonce; -+ u8 join_id; -+ u8 local_id; -+ u8 backup; -+ u8 valid; -+}; -+ -+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; -+}; -+ -+typedef struct { -+ u32 version; -+ u32 length; -+ u64 memory_protection_attribute; -+} efi_properties_table_t; -+ -+typedef union { -+ struct { -+ u32 revision; -+ efi_handle_t parent_handle; -+ efi_system_table_t *system_table; -+ efi_handle_t device_handle; -+ void *file_path; -+ void *reserved; -+ u32 load_options_size; -+ void *load_options; -+ void *image_base; -+ __u64 image_size; -+ unsigned int image_code_type; -+ unsigned int image_data_type; -+ efi_status_t (*unload)(efi_handle_t); -+ }; -+ struct { -+ u32 revision; -+ u32 parent_handle; -+ u32 system_table; -+ u32 device_handle; -+ u32 file_path; -+ u32 reserved; -+ u32 load_options_size; -+ u32 load_options; -+ u32 image_base; -+ __u64 image_size; -+ u32 image_code_type; -+ u32 image_data_type; -+ u32 unload; -+ } mixed_mode; -+} efi_loaded_image_t; -+ -+struct efi_boot_memmap { -+ efi_memory_desc_t **map; -+ long unsigned int *map_size; -+ long unsigned int *desc_size; -+ u32 *desc_ver; -+ long unsigned int *key_ptr; -+ long unsigned int *buff_size; -+}; -+ -+typedef efi_status_t (*efi_exit_boot_map_processing)(struct efi_boot_memmap *, void *); -+ -+struct exit_boot_struct { -+ efi_memory_desc_t *runtime_map; -+ int *runtime_entry_count; -+ void *new_fdt_addr; -+}; -+ -+typedef struct { -+ u32 red_mask; -+ u32 green_mask; -+ u32 blue_mask; -+ u32 reserved_mask; -+} efi_pixel_bitmask_t; -+ -+typedef struct { -+ u32 version; -+ u32 horizontal_resolution; -+ u32 vertical_resolution; -+ int pixel_format; -+ efi_pixel_bitmask_t pixel_information; -+ u32 pixels_per_scan_line; -+} efi_graphics_output_mode_info_t; -+ -+union efi_graphics_output_protocol_mode { -+ struct { -+ u32 max_mode; -+ u32 mode; -+ efi_graphics_output_mode_info_t *info; -+ long unsigned int size_of_info; -+ efi_physical_addr_t frame_buffer_base; -+ long unsigned int frame_buffer_size; -+ }; -+ struct { -+ u32 max_mode; -+ u32 mode; -+ u32 info; -+ u32 size_of_info; -+ u64 frame_buffer_base; -+ u32 frame_buffer_size; -+ } mixed_mode; -+}; -+ -+typedef union efi_graphics_output_protocol_mode efi_graphics_output_protocol_mode_t; -+ -+union efi_graphics_output_protocol; -+ -+typedef union efi_graphics_output_protocol efi_graphics_output_protocol_t; -+ -+union efi_graphics_output_protocol { -+ struct { -+ efi_status_t (*query_mode)(efi_graphics_output_protocol_t *, u32, long unsigned int *, efi_graphics_output_mode_info_t **); -+ efi_status_t (*set_mode)(efi_graphics_output_protocol_t *, u32); -+ void *blt; -+ efi_graphics_output_protocol_mode_t *mode; -+ }; -+ struct { -+ u32 query_mode; -+ u32 set_mode; -+ u32 blt; -+ u32 mode; -+ } mixed_mode; -+}; -+ -+enum efi_cmdline_option { -+ EFI_CMDLINE_NONE = 0, -+ EFI_CMDLINE_MODE_NUM = 1, -+ EFI_CMDLINE_RES = 2, -+ EFI_CMDLINE_AUTO = 3, -+ EFI_CMDLINE_LIST = 4, -+}; -+ -+union efi_rng_protocol; -+ -+typedef union efi_rng_protocol efi_rng_protocol_t; -+ -+union efi_rng_protocol { -+ struct { -+ efi_status_t (*get_info)(efi_rng_protocol_t *, long unsigned int *, efi_guid_t *); -+ efi_status_t (*get_rng)(efi_rng_protocol_t *, efi_guid_t *, long unsigned int, u8 *); -+ }; -+ struct { -+ u32 get_info; -+ u32 get_rng; -+ } mixed_mode; -+}; -+ -+typedef u32 efi_tcg2_event_log_format; -+ -+union efi_tcg2_protocol; -+ -+typedef union efi_tcg2_protocol efi_tcg2_protocol_t; -+ -+union efi_tcg2_protocol { -+ struct { -+ void *get_capability; -+ efi_status_t (*get_event_log)(efi_tcg2_protocol_t *, efi_tcg2_event_log_format, efi_physical_addr_t *, efi_physical_addr_t *, efi_bool_t *); -+ void *hash_log_extend_event; -+ void *submit_command; -+ void *get_active_pcr_banks; -+ void *set_active_pcr_banks; -+ void *get_result_of_set_active_pcr_banks; -+ }; -+ struct { -+ u32 get_capability; -+ u32 get_event_log; -+ u32 hash_log_extend_event; -+ u32 submit_command; -+ u32 get_active_pcr_banks; -+ u32 set_active_pcr_banks; -+ u32 get_result_of_set_active_pcr_banks; -+ } mixed_mode; -+}; -+ -+struct efi_vendor_dev_path { -+ struct efi_generic_dev_path header; -+ efi_guid_t vendorguid; -+ u8 vendordata[0]; -+}; -+ -+union efi_load_file_protocol; -+ -+typedef union efi_load_file_protocol efi_load_file_protocol_t; -+ -+union efi_load_file_protocol { -+ struct { -+ efi_status_t (*load_file)(efi_load_file_protocol_t *, efi_device_path_protocol_t *, bool, long unsigned int *, void *); -+ }; -+ struct { -+ u32 load_file; -+ } mixed_mode; -+}; -+ -+typedef union efi_load_file_protocol efi_load_file2_protocol_t; -+ -+typedef struct { -+ u32 attributes; -+ u16 file_path_list_length; -+ u8 variable_data[0]; -+} __attribute__((packed)) efi_load_option_t; -+ -+typedef struct { -+ u32 attributes; -+ u16 file_path_list_length; -+ const efi_char16_t *description; -+ const efi_device_path_protocol_t *file_path_list; -+ size_t optional_data_size; -+ const void *optional_data; -+} efi_load_option_unpacked_t; -+ -+typedef struct { -+ u64 size; -+ u64 file_size; -+ u64 phys_size; -+ efi_time_t create_time; -+ efi_time_t last_access_time; -+ efi_time_t modification_time; -+ __u64 attribute; -+ efi_char16_t filename[0]; -+} efi_file_info_t; -+ -+struct efi_file_protocol; -+ -+typedef struct efi_file_protocol efi_file_protocol_t; -+ -+struct efi_file_protocol { -+ u64 revision; -+ efi_status_t (*open)(efi_file_protocol_t *, efi_file_protocol_t **, efi_char16_t *, u64, u64); -+ efi_status_t (*close)(efi_file_protocol_t *); -+ efi_status_t (*delete)(efi_file_protocol_t *); -+ efi_status_t (*read)(efi_file_protocol_t *, long unsigned int *, void *); -+ efi_status_t (*write)(efi_file_protocol_t *, long unsigned int, void *); -+ efi_status_t (*get_position)(efi_file_protocol_t *, u64 *); -+ efi_status_t (*set_position)(efi_file_protocol_t *, u64); -+ efi_status_t (*get_info)(efi_file_protocol_t *, efi_guid_t *, long unsigned int *, void *); -+ efi_status_t (*set_info)(efi_file_protocol_t *, efi_guid_t *, long unsigned int, void *); -+ efi_status_t (*flush)(efi_file_protocol_t *); -+}; -+ -+struct efi_simple_file_system_protocol; -+ -+typedef struct efi_simple_file_system_protocol efi_simple_file_system_protocol_t; -+ -+struct efi_simple_file_system_protocol { -+ u64 revision; -+ int (*open_volume)(efi_simple_file_system_protocol_t *, efi_file_protocol_t **); -+}; -+ -+struct finfo { -+ efi_file_info_t info; -+ efi_char16_t filename[256]; -+}; -+ -+typedef enum { -+ EfiPciIoWidthUint8 = 0, -+ EfiPciIoWidthUint16 = 1, -+ EfiPciIoWidthUint32 = 2, -+ EfiPciIoWidthUint64 = 3, -+ EfiPciIoWidthFifoUint8 = 4, -+ EfiPciIoWidthFifoUint16 = 5, -+ EfiPciIoWidthFifoUint32 = 6, -+ EfiPciIoWidthFifoUint64 = 7, -+ EfiPciIoWidthFillUint8 = 8, -+ EfiPciIoWidthFillUint16 = 9, -+ EfiPciIoWidthFillUint32 = 10, -+ EfiPciIoWidthFillUint64 = 11, -+ EfiPciIoWidthMaximum = 12, -+} EFI_PCI_IO_PROTOCOL_WIDTH; -+ -+typedef struct { -+ u32 read; -+ u32 write; -+} efi_pci_io_protocol_access_32_t; -+ -+typedef struct { -+ void *read; -+ void *write; -+} efi_pci_io_protocol_access_t; -+ -+union efi_pci_io_protocol; -+ -+typedef union efi_pci_io_protocol efi_pci_io_protocol_t; -+ -+typedef efi_status_t (*efi_pci_io_protocol_cfg_t)(efi_pci_io_protocol_t *, EFI_PCI_IO_PROTOCOL_WIDTH, u32, long unsigned int, void *); -+ -+typedef struct { -+ efi_pci_io_protocol_cfg_t read; -+ efi_pci_io_protocol_cfg_t write; -+} efi_pci_io_protocol_config_access_t; -+ -+union efi_pci_io_protocol { -+ struct { -+ void *poll_mem; -+ void *poll_io; -+ efi_pci_io_protocol_access_t mem; -+ efi_pci_io_protocol_access_t io; -+ efi_pci_io_protocol_config_access_t pci; -+ void *copy_mem; -+ void *map; -+ void *unmap; -+ void *allocate_buffer; -+ void *free_buffer; -+ void *flush; -+ efi_status_t (*get_location)(efi_pci_io_protocol_t *, long unsigned int *, long unsigned int *, long unsigned int *, long unsigned int *); -+ void *attributes; -+ void *get_bar_attributes; -+ void *set_bar_attributes; -+ uint64_t romsize; -+ void *romimage; -+ }; -+ struct { -+ u32 poll_mem; -+ u32 poll_io; -+ efi_pci_io_protocol_access_32_t mem; -+ efi_pci_io_protocol_access_32_t io; -+ efi_pci_io_protocol_access_32_t pci; -+ u32 copy_mem; -+ u32 map; -+ u32 unmap; -+ u32 allocate_buffer; -+ u32 free_buffer; -+ u32 flush; -+ u32 get_location; -+ u32 attributes; -+ u32 get_bar_attributes; -+ u32 set_bar_attributes; -+ u64 romsize; -+ u32 romimage; -+ } mixed_mode; -+}; -+ -+#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -+#pragma clang attribute pop -+#endif -+ -+#endif /* __VMLINUX_H__ */ -diff --git a/src/pmdas/bpf/vendor/vmlinux/powerpc/vmlinux.h b/src/pmdas/bpf/vendor/vmlinux/powerpc/vmlinux.h -new file mode 100644 -index 000000000..6007b660d ---- /dev/null -+++ b/src/pmdas/bpf/vendor/vmlinux/powerpc/vmlinux.h -@@ -0,0 +1,118288 @@ -+#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 char *__gnuc_va_list; -+ -+typedef __gnuc_va_list va_list; -+ -+typedef signed char __s8; -+ -+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 __s8 s8; -+ -+typedef __u8 u8; -+ -+typedef __s16 s16; -+ -+typedef __u16 u16; -+ -+typedef __s32 s32; -+ -+typedef __u32 u32; -+ -+typedef __s64 s64; -+ -+typedef __u64 u64; -+ -+typedef struct { -+ __u32 u[4]; -+} __vector128; -+ -+typedef __vector128 vector128; -+ -+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 unsigned int __kernel_gid32_t; -+ -+typedef __kernel_ulong_t __kernel_size_t; -+ -+typedef __kernel_long_t __kernel_ssize_t; -+ -+typedef long long int __kernel_loff_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 __u16 __be16; -+ -+typedef __u32 __be32; -+ -+typedef __u64 __be64; -+ -+typedef unsigned int __poll_t; -+ -+typedef u32 __kernel_dev_t; -+ -+typedef __kernel_dev_t dev_t; -+ -+typedef short unsigned int umode_t; -+ -+typedef __kernel_pid_t pid_t; -+ -+typedef __kernel_clockid_t clockid_t; -+ -+typedef _Bool bool; -+ -+typedef __kernel_uid32_t uid_t; -+ -+typedef __kernel_gid32_t gid_t; -+ -+typedef __kernel_loff_t loff_t; -+ -+typedef __kernel_size_t size_t; -+ -+typedef __kernel_ssize_t ssize_t; -+ -+typedef long unsigned int ulong; -+ -+typedef s32 int32_t; -+ -+typedef u32 uint32_t; -+ -+typedef u64 uint64_t; -+ -+typedef u64 sector_t; -+ -+typedef u64 blkcnt_t; -+ -+typedef unsigned int gfp_t; -+ -+typedef unsigned int fmode_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 kernel_symbol { -+ long unsigned int value; -+ const char *name; -+ const char *namespace; -+}; -+ -+struct user_pt_regs { -+ long unsigned int gpr[32]; -+ long unsigned int nip; -+ long unsigned int msr; -+ long unsigned int orig_gpr3; -+ long unsigned int ctr; -+ long unsigned int link; -+ long unsigned int xer; -+ long unsigned int ccr; -+ long unsigned int softe; -+ long unsigned int trap; -+ long unsigned int dar; -+ long unsigned int dsisr; -+ long unsigned int result; -+}; -+ -+struct pt_regs { -+ union { -+ struct user_pt_regs user_regs; -+ struct { -+ long unsigned int gpr[32]; -+ long unsigned int nip; -+ long unsigned int msr; -+ long unsigned int orig_gpr3; -+ long unsigned int ctr; -+ long unsigned int link; -+ long unsigned int xer; -+ long unsigned int ccr; -+ long unsigned int softe; -+ long unsigned int trap; -+ long unsigned int dar; -+ long unsigned int dsisr; -+ long unsigned int result; -+ }; -+ }; -+ union { -+ struct { -+ long unsigned int ppr; -+ long unsigned int exit_result; -+ union { -+ long unsigned int kuap; -+ long unsigned int amr; -+ }; -+ long unsigned int iamr; -+ }; -+ long unsigned int __pad[4]; -+ }; -+}; -+ -+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 i_mutex_dir_key; -+}; -+ -+struct qspinlock { -+ union { -+ atomic_t val; -+ struct { -+ u8 locked; -+ u8 pending; -+ }; -+ struct { -+ u16 locked_pending; -+ u16 tail; -+ }; -+ }; -+}; -+ -+typedef struct qspinlock arch_spinlock_t; -+ -+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 raw_spinlock { -+ arch_spinlock_t raw_lock; -+}; -+ -+typedef struct raw_spinlock raw_spinlock_t; -+ -+struct spinlock { -+ union { -+ struct raw_spinlock rlock; -+ }; -+}; -+ -+typedef struct spinlock spinlock_t; -+ -+typedef struct { -+ arch_rwlock_t raw_lock; -+} rwlock_t; -+ -+struct ratelimit_state { -+ raw_spinlock_t lock; -+ int interval; -+ int burst; -+ int printed; -+ int missed; -+ long unsigned int begin; -+ long unsigned int flags; -+}; -+ -+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 void *fl_owner_t; -+ -+struct file; -+ -+struct kiocb; -+ -+struct iov_iter; -+ -+struct dir_context; -+ -+struct poll_table_struct; -+ -+struct vm_area_struct; -+ -+struct inode; -+ -+struct file_lock; -+ -+struct page; -+ -+struct pipe_inode_info; -+ -+struct seq_file; -+ -+struct file_operations { -+ struct module *owner; -+ 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 *, bool); -+ int (*iterate)(struct file *, struct dir_context *); -+ 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 *); -+ long unsigned int mmap_supported_flags; -+ 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 *); -+ ssize_t (*sendpage)(struct file *, struct page *, int, size_t, loff_t *, int); -+ 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); -+ int (*setlease)(struct file *, long int, struct file_lock **, 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); -+}; -+ -+struct static_call_key { -+ void *func; -+}; -+ -+struct bug_entry { -+ int bug_addr_disp; -+ int file_disp; -+ short unsigned int line; -+ short unsigned int flags; -+}; -+ -+typedef __s64 time64_t; -+ -+struct __kernel_timespec { -+ __kernel_time64_t tv_sec; -+ long long int tv_nsec; -+}; -+ -+struct timespec64 { -+ time64_t tv_sec; -+ long int tv_nsec; -+}; -+ -+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; -+ }; -+}; -+ -+typedef struct { -+ __be64 pte; -+} pte_t; -+ -+typedef struct { -+ __be64 pmd; -+} pmd_t; -+ -+typedef struct { -+ __be64 pud; -+} pud_t; -+ -+typedef struct { -+ __be64 pgd; -+} pgd_t; -+ -+typedef struct { -+ long unsigned int pgprot; -+} pgprot_t; -+ -+typedef pte_t *pgtable_t; -+ -+struct address_space; -+ -+struct page_pool; -+ -+struct kmem_cache; -+ -+struct mm_struct; -+ -+struct dev_pagemap; -+ -+struct page { -+ long unsigned int flags; -+ union { -+ struct { -+ struct list_head lru; -+ struct address_space *mapping; -+ long unsigned int index; -+ 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[2]; -+ }; -+ struct { -+ union { -+ struct list_head slab_list; -+ struct { -+ struct page *next; -+ int pages; -+ int pobjects; -+ }; -+ }; -+ struct kmem_cache *slab_cache; -+ void *freelist; -+ union { -+ void *s_mem; -+ long unsigned int counters; -+ struct { -+ unsigned int inuse: 16; -+ unsigned int objects: 15; -+ unsigned int frozen: 1; -+ }; -+ }; -+ }; -+ struct { -+ long unsigned int compound_head; -+ unsigned char compound_dtor; -+ unsigned char compound_order; -+ atomic_t compound_mapcount; -+ unsigned int compound_nr; -+ }; -+ struct { -+ long unsigned int _compound_pad_1; -+ atomic_t hpage_pinned_refcount; -+ struct list_head deferred_list; -+ }; -+ struct { -+ long unsigned int _pt_pad_1; -+ pgtable_t pmd_huge_pte; -+ long unsigned int _pt_pad_2; -+ union { -+ struct mm_struct *pt_mm; -+ atomic_t pt_frag_refcount; -+ }; -+ spinlock_t ptl; -+ }; -+ struct { -+ struct dev_pagemap *pgmap; -+ void *zone_device_data; -+ }; -+ struct callback_head callback_head; -+ }; -+ union { -+ atomic_t _mapcount; -+ unsigned int page_type; -+ unsigned int active; -+ int units; -+ }; -+ atomic_t _refcount; -+ long unsigned int memcg_data; -+}; -+ -+struct slb_entry { -+ u64 esid; -+ u64 vsid; -+}; -+ -+struct subpage_prot_table { -+ long unsigned int maxaddr; -+ unsigned int **protptrs[512]; -+ unsigned int *low_prot[4]; -+}; -+ -+struct slice_mask { -+ u64 low_slices; -+ long unsigned int high_slices[64]; -+}; -+ -+struct hash_mm_context { -+ u16 user_psize; -+ unsigned char low_slices_psize[8]; -+ unsigned char high_slices_psize[2048]; -+ long unsigned int slb_addr_limit; -+ struct slice_mask mask_64k; -+ struct slice_mask mask_4k; -+ struct slice_mask mask_16m; -+ struct slice_mask mask_16g; -+ struct subpage_prot_table *spt; -+}; -+ -+typedef long unsigned int mm_context_id_t; -+ -+typedef struct { -+ union { -+ mm_context_id_t id; -+ mm_context_id_t extended_id[8]; -+ }; -+ atomic_t active_cpus; -+ atomic_t copros; -+ atomic_t vas_windows; -+ struct hash_mm_context *hash_context; -+ void *vdso; -+ void *pte_frag; -+ void *pmd_frag; -+ struct list_head iommu_group_mem_list; -+ u32 pkey_allocation_map; -+ s16 execute_only_pkey; -+} mm_context_t; -+ -+struct lppaca { -+ __be32 desc; -+ __be16 size; -+ u8 reserved1[3]; -+ u8 __old_status; -+ u8 reserved3[14]; -+ volatile __be32 dyn_hw_node_id; -+ volatile __be32 dyn_hw_proc_id; -+ u8 reserved4[56]; -+ volatile u8 vphn_assoc_counts[8]; -+ u8 reserved5[32]; -+ u8 reserved6[48]; -+ u8 cede_latency_hint; -+ u8 ebb_regs_in_use; -+ u8 reserved7[6]; -+ u8 dtl_enable_mask; -+ u8 donate_dedicated_cpu; -+ u8 fpregs_in_use; -+ u8 pmcregs_in_use; -+ u8 reserved8[28]; -+ __be64 wait_state_cycles; -+ u8 reserved9[28]; -+ __be16 slb_count; -+ u8 idle; -+ u8 vmxregs_in_use; -+ volatile __be32 yield_count; -+ volatile __be32 dispersion_count; -+ volatile __be64 cmo_faults; -+ volatile __be64 cmo_fault_time; -+ u8 reserved10[104]; -+ __be32 page_ins; -+ u8 reserved11[148]; -+ volatile __be64 dtl_idx; -+ u8 reserved12[96]; -+}; -+ -+struct slb_shadow { -+ __be32 persistent; -+ __be32 buffer_length; -+ __be64 reserved; -+ struct { -+ __be64 esid; -+ __be64 vsid; -+ } save_area[2]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct kvmppc_vcore; -+ -+struct kvm_split_mode { -+ long unsigned int rpr; -+ long unsigned int pmmar; -+ long unsigned int ldbar; -+ u8 subcore_size; -+ u8 do_nap; -+ u8 napped[8]; -+ struct kvmppc_vcore *vc[4]; -+}; -+ -+struct kvm_vcpu; -+ -+struct kvmppc_host_state { -+ ulong host_r1; -+ ulong host_r2; -+ ulong host_msr; -+ ulong vmhandler; -+ ulong scratch0; -+ ulong scratch1; -+ ulong scratch2; -+ u8 in_guest; -+ u8 restore_hid5; -+ u8 napping; -+ u8 hwthread_req; -+ u8 hwthread_state; -+ u8 host_ipi; -+ u8 ptid; -+ u8 fake_suspend; -+ struct kvm_vcpu *kvm_vcpu; -+ struct kvmppc_vcore *kvm_vcore; -+ void *xics_phys; -+ void *xive_tima_phys; -+ void *xive_tima_virt; -+ u32 saved_xirr; -+ u64 dabr; -+ u64 host_mmcr[10]; -+ u32 host_pmc[8]; -+ u64 host_purr; -+ u64 host_spurr; -+ u64 host_dscr; -+ u64 dec_expires; -+ struct kvm_split_mode *kvm_split_mode; -+ u64 cfar; -+ u64 ppr; -+ u64 host_fscr; -+}; -+ -+struct cpu_accounting_data { -+ long unsigned int utime; -+ long unsigned int stime; -+ long unsigned int gtime; -+ long unsigned int hardirq_time; -+ long unsigned int softirq_time; -+ long unsigned int steal_time; -+ long unsigned int idle_time; -+ long unsigned int starttime; -+ long unsigned int starttime_user; -+}; -+ -+struct sibling_subcore_state { -+ long unsigned int flags; -+ u8 in_guest[4]; -+}; -+ -+enum MCE_Version { -+ MCE_V1 = 1, -+}; -+ -+enum MCE_Severity { -+ MCE_SEV_NO_ERROR = 0, -+ MCE_SEV_WARNING = 1, -+ MCE_SEV_SEVERE = 2, -+ MCE_SEV_FATAL = 3, -+}; -+ -+enum MCE_Disposition { -+ MCE_DISPOSITION_RECOVERED = 0, -+ MCE_DISPOSITION_NOT_RECOVERED = 1, -+}; -+ -+enum MCE_Initiator { -+ MCE_INITIATOR_UNKNOWN = 0, -+ MCE_INITIATOR_CPU = 1, -+ MCE_INITIATOR_PCI = 2, -+ MCE_INITIATOR_ISA = 3, -+ MCE_INITIATOR_MEMORY = 4, -+ MCE_INITIATOR_POWERMGM = 5, -+}; -+ -+enum MCE_ErrorType { -+ MCE_ERROR_TYPE_UNKNOWN = 0, -+ MCE_ERROR_TYPE_UE = 1, -+ MCE_ERROR_TYPE_SLB = 2, -+ MCE_ERROR_TYPE_ERAT = 3, -+ MCE_ERROR_TYPE_TLB = 4, -+ MCE_ERROR_TYPE_USER = 5, -+ MCE_ERROR_TYPE_RA = 6, -+ MCE_ERROR_TYPE_LINK = 7, -+ MCE_ERROR_TYPE_DCACHE = 8, -+ MCE_ERROR_TYPE_ICACHE = 9, -+}; -+ -+enum MCE_ErrorClass { -+ MCE_ECLASS_UNKNOWN = 0, -+ MCE_ECLASS_HARDWARE = 1, -+ MCE_ECLASS_HARD_INDETERMINATE = 2, -+ MCE_ECLASS_SOFTWARE = 3, -+ MCE_ECLASS_SOFT_INDETERMINATE = 4, -+}; -+ -+enum MCE_UeErrorType { -+ MCE_UE_ERROR_INDETERMINATE = 0, -+ MCE_UE_ERROR_IFETCH = 1, -+ MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH = 2, -+ MCE_UE_ERROR_LOAD_STORE = 3, -+ MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE = 4, -+}; -+ -+enum MCE_SlbErrorType { -+ MCE_SLB_ERROR_INDETERMINATE = 0, -+ MCE_SLB_ERROR_PARITY = 1, -+ MCE_SLB_ERROR_MULTIHIT = 2, -+}; -+ -+enum MCE_EratErrorType { -+ MCE_ERAT_ERROR_INDETERMINATE = 0, -+ MCE_ERAT_ERROR_PARITY = 1, -+ MCE_ERAT_ERROR_MULTIHIT = 2, -+}; -+ -+enum MCE_TlbErrorType { -+ MCE_TLB_ERROR_INDETERMINATE = 0, -+ MCE_TLB_ERROR_PARITY = 1, -+ MCE_TLB_ERROR_MULTIHIT = 2, -+}; -+ -+enum MCE_UserErrorType { -+ MCE_USER_ERROR_INDETERMINATE = 0, -+ MCE_USER_ERROR_TLBIE = 1, -+ MCE_USER_ERROR_SCV = 2, -+}; -+ -+enum MCE_RaErrorType { -+ MCE_RA_ERROR_INDETERMINATE = 0, -+ MCE_RA_ERROR_IFETCH = 1, -+ MCE_RA_ERROR_IFETCH_FOREIGN = 2, -+ MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH = 3, -+ MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH_FOREIGN = 4, -+ MCE_RA_ERROR_LOAD = 5, -+ MCE_RA_ERROR_STORE = 6, -+ MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE = 7, -+ MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE_FOREIGN = 8, -+ MCE_RA_ERROR_LOAD_STORE_FOREIGN = 9, -+}; -+ -+enum MCE_LinkErrorType { -+ MCE_LINK_ERROR_INDETERMINATE = 0, -+ MCE_LINK_ERROR_IFETCH_TIMEOUT = 1, -+ MCE_LINK_ERROR_PAGE_TABLE_WALK_IFETCH_TIMEOUT = 2, -+ MCE_LINK_ERROR_LOAD_TIMEOUT = 3, -+ MCE_LINK_ERROR_STORE_TIMEOUT = 4, -+ MCE_LINK_ERROR_PAGE_TABLE_WALK_LOAD_STORE_TIMEOUT = 5, -+}; -+ -+struct machine_check_event { -+ enum MCE_Version version: 8; -+ u8 in_use; -+ enum MCE_Severity severity: 8; -+ enum MCE_Initiator initiator: 8; -+ enum MCE_ErrorType error_type: 8; -+ enum MCE_ErrorClass error_class: 8; -+ enum MCE_Disposition disposition: 8; -+ bool sync_error; -+ u16 cpu; -+ u64 gpr3; -+ u64 srr0; -+ u64 srr1; -+ union { -+ struct { -+ enum MCE_UeErrorType ue_error_type: 8; -+ u8 effective_address_provided; -+ u8 physical_address_provided; -+ u8 ignore_event; -+ u8 reserved_1[4]; -+ u64 effective_address; -+ u64 physical_address; -+ u8 reserved_2[8]; -+ } ue_error; -+ struct { -+ enum MCE_SlbErrorType slb_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } slb_error; -+ struct { -+ enum MCE_EratErrorType erat_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } erat_error; -+ struct { -+ enum MCE_TlbErrorType tlb_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } tlb_error; -+ struct { -+ enum MCE_UserErrorType user_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } user_error; -+ struct { -+ enum MCE_RaErrorType ra_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } ra_error; -+ struct { -+ enum MCE_LinkErrorType link_error_type: 8; -+ u8 effective_address_provided; -+ u8 reserved_1[6]; -+ u64 effective_address; -+ u8 reserved_2[16]; -+ } link_error; -+ } u; -+}; -+ -+struct mce_info { -+ int mce_nest_count; -+ struct machine_check_event mce_event[10]; -+ int mce_queue_count; -+ struct machine_check_event mce_event_queue[10]; -+ int mce_ue_count; -+ struct machine_check_event mce_ue_event_queue[10]; -+}; -+ -+struct mmiowb_state { -+ u16 nesting_count; -+ u16 mmiowb_pending; -+}; -+ -+struct dtl_entry; -+ -+struct task_struct; -+ -+struct rtas_args; -+ -+struct paca_struct { -+ struct lppaca *lppaca_ptr; -+ u16 paca_index; -+ u16 lock_token; -+ u64 kernel_toc; -+ u64 kernelbase; -+ u64 kernel_msr; -+ void *emergency_sp; -+ u64 data_offset; -+ s16 hw_cpu_id; -+ u8 cpu_start; -+ u8 kexec_state; -+ struct slb_shadow *slb_shadow_ptr; -+ struct dtl_entry *dispatch_log; -+ struct dtl_entry *dispatch_log_end; -+ u64 dscr_default; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u64 exgen[10]; -+ u16 vmalloc_sllp; -+ u8 slb_cache_ptr; -+ u8 stab_rr; -+ u32 slb_used_bitmap; -+ u32 slb_kern_bitmap; -+ u32 slb_cache[8]; -+ unsigned char mm_ctx_low_slices_psize[8]; -+ unsigned char mm_ctx_high_slices_psize[2048]; -+ struct task_struct *__current; -+ u64 kstack; -+ u64 saved_r1; -+ u64 saved_msr; -+ u64 exit_save_r1; -+ u8 hsrr_valid; -+ u8 srr_valid; -+ u8 irq_soft_mask; -+ u8 irq_happened; -+ u8 irq_work_pending; -+ u8 pmcregs_in_use; -+ u64 sprg_vdso; -+ u64 tm_scratch; -+ long unsigned int idle_state; -+ union { -+ struct { -+ u8 thread_idle_state; -+ u8 subcore_sibling_mask; -+ }; -+ struct { -+ u64 requested_psscr; -+ atomic_t dont_stop; -+ }; -+ }; -+ u64 exnmi[10]; -+ u64 exmc[10]; -+ void *nmi_emergency_sp; -+ void *mc_emergency_sp; -+ u16 in_nmi; -+ u16 in_mce; -+ u8 hmi_event_available; -+ u8 hmi_p9_special_emu; -+ u32 hmi_irqs; -+ u8 ftrace_enabled; -+ struct cpu_accounting_data accounting; -+ u64 dtl_ridx; -+ struct dtl_entry *dtl_curr; -+ struct kvmppc_host_state kvm_hstate; -+ struct sibling_subcore_state *sibling_subcore_state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u64 exrfi[10]; -+ void *rfi_flush_fallback_area; -+ u64 l1d_flush_size; -+ struct rtas_args *rtas_args_reentrant; -+ u8 *mce_data_buf; -+ struct slb_entry *mce_faulty_slbs; -+ u16 slb_save_cache_ptr; -+ long unsigned int canary; -+ struct mmiowb_state mmiowb_state; -+ struct mce_info *mce_info; -+ long: 64; -+ 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 thread_info { -+ int preempt_count; -+ long unsigned int local_flags; -+ long unsigned int *livepatch_sp; -+ unsigned char slb_preload_nr; -+ unsigned char slb_preload_tail; -+ u32 slb_preload_esid[16]; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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_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; -+ u64 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; -+}; -+ -+struct util_est { -+ unsigned int enqueued; -+ unsigned int ewma; -+}; -+ -+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; -+ struct util_est util_est; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct cfs_rq; -+ -+struct sched_entity { -+ struct load_weight load; -+ struct rb_node run_node; -+ struct list_head group_node; -+ unsigned int on_rq; -+ u64 exec_start; -+ u64 sum_exec_runtime; -+ u64 vruntime; -+ u64 prev_sum_exec_runtime; -+ u64 nr_migrations; -+ struct sched_statistics statistics; -+ int depth; -+ struct sched_entity *parent; -+ struct cfs_rq *cfs_rq; -+ struct cfs_rq *my_q; -+ long unsigned int runnable_weight; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+typedef s64 ktime_t; -+ -+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 { -+ 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; -+ struct hrtimer dl_timer; -+ struct hrtimer inactive_timer; -+ struct sched_dl_entity *pi_se; -+}; -+ -+struct cpumask { -+ long unsigned int bits[32]; -+}; -+ -+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 last_arrival; -+ long long unsigned int last_queued; -+}; -+ -+struct plist_node { -+ int prio; -+ struct list_head prio_list; -+ struct list_head node_list; -+}; -+ -+struct vmacache { -+ u64 seqnum; -+ struct vm_area_struct *vmas[4]; -+}; -+ -+struct task_rss_stat { -+ int events; -+ int count[4]; -+}; -+ -+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 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 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[4]; -+} nodemask_t; -+ -+struct seqcount_spinlock { -+ seqcount_t seqcount; -+}; -+ -+typedef struct seqcount_spinlock seqcount_spinlock_t; -+ -+typedef atomic64_t atomic_long_t; -+ -+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 tlbflush_unmap_batch {}; -+ -+struct page_frag { -+ struct page *page; -+ __u32 offset; -+ __u32 size; -+}; -+ -+struct kmap_ctrl {}; -+ -+struct llist_head { -+ struct llist_node *first; -+}; -+ -+struct debug_reg {}; -+ -+struct thread_fp_state { -+ u64 fpr[64]; -+ u64 fpscr; -+ long: 64; -+}; -+ -+struct arch_hw_breakpoint { -+ long unsigned int address; -+ u16 type; -+ u16 len; -+ u16 hw_len; -+ u8 flags; -+}; -+ -+struct thread_vr_state { -+ vector128 vr[32]; -+ vector128 vscr; -+}; -+ -+struct perf_event; -+ -+struct thread_struct { -+ long unsigned int ksp; -+ long unsigned int ksp_vsid; -+ struct pt_regs *regs; -+ struct debug_reg debug; -+ long: 64; -+ struct thread_fp_state fp_state; -+ struct thread_fp_state *fp_save_area; -+ int fpexc_mode; -+ unsigned int align_ctl; -+ struct perf_event *ptrace_bps[2]; -+ struct perf_event *last_hit_ubp[2]; -+ struct arch_hw_breakpoint hw_brk[2]; -+ long unsigned int trap_nr; -+ u8 load_slb; -+ u8 load_fp; -+ u8 load_vec; -+ long: 40; -+ struct thread_vr_state vr_state; -+ struct thread_vr_state *vr_save_area; -+ long unsigned int vrsave; -+ int used_vr; -+ int used_vsr; -+ u8 load_tm; -+ u64 tm_tfhar; -+ u64 tm_texasr; -+ u64 tm_tfiar; -+ struct pt_regs ckpt_regs; -+ long unsigned int tm_tar; -+ long unsigned int tm_ppr; -+ long unsigned int tm_dscr; -+ long unsigned int tm_amr; -+ long: 64; -+ struct thread_fp_state ckfp_state; -+ struct thread_vr_state ckvr_state; -+ long unsigned int ckvrsave; -+ long unsigned int dscr; -+ long unsigned int fscr; -+ int dscr_inherit; -+ long unsigned int tidr; -+ long unsigned int tar; -+ long unsigned int ebbrr; -+ long unsigned int ebbhr; -+ long unsigned int bescr; -+ long unsigned int siar; -+ long unsigned int sdar; -+ long unsigned int sier; -+ long unsigned int mmcr2; -+ unsigned int mmcr0; -+ unsigned int used_ebb; -+ long unsigned int mmcr3; -+ long unsigned int sier2; -+ long unsigned int sier3; -+ long: 64; -+}; -+ -+struct sched_class; -+ -+struct task_group; -+ -+struct pid; -+ -+struct completion; -+ -+struct cred; -+ -+struct key; -+ -+struct nameidata; -+ -+struct fs_struct; -+ -+struct files_struct; -+ -+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 backing_dev_info; -+ -+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 mempolicy; -+ -+struct numa_group; -+ -+struct rseq; -+ -+struct task_delay_info; -+ -+struct ftrace_ret_stack; -+ -+struct mem_cgroup; -+ -+struct request_queue; -+ -+struct uprobe_task; -+ -+struct bpf_local_storage; -+ -+struct task_struct { -+ struct thread_info thread_info; -+ unsigned int __state; -+ void *stack; -+ refcount_t usage; -+ unsigned int flags; -+ unsigned int ptrace; -+ int on_cpu; -+ struct __call_single_node wake_entry; -+ unsigned int cpu; -+ 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; -+ const struct sched_class *sched_class; -+ long: 64; -+ long: 64; -+ struct sched_entity se; -+ struct sched_rt_entity rt; -+ struct sched_dl_entity dl; -+ struct rb_node core_node; -+ long unsigned int core_cookie; -+ unsigned int core_occupation; -+ struct task_group *sched_task_group; -+ struct hlist_head preempt_notifiers; -+ unsigned int btrace_seq; -+ unsigned int policy; -+ 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; -+ long unsigned int rcu_tasks_nvcsw; -+ u8 rcu_tasks_holdout; -+ u8 rcu_tasks_idx; -+ int rcu_tasks_idle_cpu; -+ struct list_head rcu_tasks_holdout_list; -+ int trc_reader_nesting; -+ int trc_ipi_to_cpu; -+ union rcu_special trc_reader_special; -+ bool trc_reader_checked; -+ struct list_head trc_holdout_list; -+ 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 vmacache vmacache; -+ struct task_rss_stat rss_stat; -+ 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_psi_wake_requeue: 1; -+ int: 28; -+ unsigned int sched_remote_wakeup: 1; -+ unsigned int in_execve: 1; -+ unsigned int in_iowait: 1; -+ unsigned int restore_sigmask: 1; -+ unsigned int in_user_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_page_owner: 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_group; -+ struct list_head thread_node; -+ struct completion *vfork_done; -+ int *set_child_tid; -+ int *clear_child_tid; -+ void *pf_io_worker; -+ 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; -+ 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 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 backing_dev_info *backing_dev_info; -+ 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; -+ int cpuset_slab_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; -+ struct perf_event_context *perf_event_ctxp[2]; -+ struct mutex perf_event_mutex; -+ struct list_head perf_event_list; -+ struct mempolicy *mempolicy; -+ short int il_prev; -+ 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_sig; -+ long unsigned int rseq_event_mask; -+ struct tlbflush_unmap_batch tlb_ubc; -+ union { -+ refcount_t rcu_users; -+ struct callback_head rcu; -+ }; -+ 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; -+ int curr_ret_stack; -+ int curr_ret_depth; -+ struct ftrace_ret_stack *ret_stack; -+ long long unsigned int ftrace_timestamp; -+ atomic_t trace_overrun; -+ atomic_t tracing_graph_pause; -+ long unsigned int trace; -+ long unsigned int trace_recursion; -+ struct mem_cgroup *memcg_in_oom; -+ gfp_t memcg_oom_gfp_mask; -+ int memcg_oom_order; -+ unsigned int memcg_nr_pages_over_high; -+ struct mem_cgroup *active_memcg; -+ struct request_queue *throttle_queue; -+ struct uprobe_task *utask; -+ struct kmap_ctrl kmap_ctrl; -+ int pagefault_disabled; -+ struct task_struct *oom_reaper_list; -+ refcount_t stack_refcount; -+ int patch_state; -+ void *security; -+ struct bpf_local_storage *bpf_storage; -+ struct llist_head kretprobe_instances; -+ struct thread_struct thread; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef __be32 rtas_arg_t; -+ -+struct rtas_args { -+ __be32 token; -+ __be32 nargs; -+ __be32 nret; -+ rtas_arg_t args[16]; -+ rtas_arg_t *rets; -+}; -+ -+typedef struct { -+ __u8 b[16]; -+} uuid_t; -+ -+enum pcpu_fc { -+ PCPU_FC_AUTO = 0, -+ PCPU_FC_EMBED = 1, -+ PCPU_FC_PAGE = 2, -+ PCPU_FC_NR = 3, -+}; -+ -+struct wait_queue_head { -+ spinlock_t lock; -+ struct list_head head; -+}; -+ -+typedef struct wait_queue_head wait_queue_head_t; -+ -+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; -+ -+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 userfaultfd_ctx; -+ -+struct vm_userfaultfd_ctx { -+ struct userfaultfd_ctx *ctx; -+}; -+ -+struct anon_vma; -+ -+struct vm_operations_struct; -+ -+struct vm_area_struct { -+ long unsigned int vm_start; -+ long unsigned int vm_end; -+ struct vm_area_struct *vm_next; -+ struct vm_area_struct *vm_prev; -+ struct rb_node vm_rb; -+ long unsigned int rb_subtree_gap; -+ struct mm_struct *vm_mm; -+ pgprot_t vm_page_prot; -+ long unsigned int vm_flags; -+ 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 mempolicy *vm_policy; -+ struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -+}; -+ -+enum { -+ MM_FILEPAGES = 0, -+ MM_ANONPAGES = 1, -+ MM_SWAPENTS = 2, -+ MM_SHMEMPAGES = 3, -+ NR_MM_COUNTERS = 4, -+}; -+ -+struct mm_rss_stat { -+ atomic_long_t count[4]; -+}; -+ -+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 swait_queue_head { -+ raw_spinlock_t lock; -+ struct list_head task_list; -+}; -+ -+struct completion { -+ unsigned int done; -+ struct swait_queue_head wait; -+}; -+ -+struct xol_area; -+ -+struct uprobes_state { -+ struct xol_area *xol_area; -+}; -+ -+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 linux_binfmt; -+ -+struct core_state; -+ -+struct kioctx_table; -+ -+struct user_namespace; -+ -+struct mmu_notifier_subscriptions; -+ -+struct mm_struct { -+ struct { -+ struct vm_area_struct *mmap; -+ struct rb_root mm_rb; -+ u64 vmacache_seqnum; -+ long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ long unsigned int mmap_base; -+ long unsigned int mmap_legacy_base; -+ long unsigned int task_size; -+ long unsigned int highest_vm_end; -+ pgd_t *pgd; -+ atomic_t membarrier_state; -+ atomic_t mm_users; -+ atomic_t mm_count; -+ atomic_long_t pgtables_bytes; -+ int map_count; -+ spinlock_t page_table_lock; -+ struct rw_semaphore mmap_lock; -+ struct list_head mmlist; -+ 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[70]; -+ struct mm_rss_stat rss_stat; -+ struct linux_binfmt *binfmt; -+ mm_context_t context; -+ long unsigned int flags; -+ struct core_state *core_state; -+ 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; -+ struct uprobes_state uprobes_state; -+ atomic_long_t hugetlb_usage; -+ struct work_struct async_put_work; -+ u32 pasid; -+ }; -+ long unsigned int cpu_bitmap[0]; -+}; -+ -+struct timer_list { -+ struct hlist_node entry; -+ long unsigned int expires; -+ void (*function)(struct timer_list *); -+ u32 flags; -+}; -+ -+struct workqueue_struct; -+ -+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_node; -+ -+struct srcu_struct; -+ -+struct srcu_data { -+ long unsigned int srcu_lock_count[2]; -+ long unsigned int srcu_unlock_count[2]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ 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_struct { -+ struct srcu_node node[131]; -+ struct srcu_node *level[4]; -+ struct mutex srcu_cb_mutex; -+ spinlock_t lock; -+ struct mutex srcu_gp_mutex; -+ unsigned int srcu_idx; -+ 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_last_gp_end; -+ struct srcu_data *sda; -+ long unsigned int srcu_barrier_seq; -+ struct mutex srcu_barrier_mutex; -+ struct completion srcu_barrier_completion; -+ atomic_t srcu_barrier_cpu_cnt; -+ struct delayed_work work; -+ struct lockdep_map dep_map; -+}; -+ -+struct arch_uprobe_task { -+ long unsigned int saved_trap_nr; -+}; -+ -+enum uprobe_task_state { -+ UTASK_RUNNING = 0, -+ UTASK_SSTEP = 1, -+ UTASK_SSTEP_ACK = 2, -+ UTASK_SSTEP_TRAPPED = 3, -+}; -+ -+struct 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 return_instance *return_instances; -+ unsigned int depth; -+}; -+ -+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 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; -+ gfp_t gfp_mask; -+ atomic_t i_mmap_writable; -+ struct rb_root_cached i_mmap; -+ struct rw_semaphore i_mmap_rwsem; -+ 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 private_lock; -+ struct list_head private_list; -+ void *private_data; -+}; -+ -+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; -+}; -+ -+struct percpu_ref_data; -+ -+struct percpu_ref { -+ long unsigned int percpu_count_ptr; -+ struct percpu_ref_data *data; -+}; -+ -+enum memory_type { -+ MEMORY_DEVICE_PRIVATE = 1, -+ MEMORY_DEVICE_FS_DAX = 2, -+ MEMORY_DEVICE_GENERIC = 3, -+ MEMORY_DEVICE_PCI_P2PDMA = 4, -+}; -+ -+struct range { -+ u64 start; -+ u64 end; -+}; -+ -+struct dev_pagemap_ops; -+ -+struct dev_pagemap { -+ struct vmem_altmap altmap; -+ struct percpu_ref *ref; -+ struct percpu_ref internal_ref; -+ struct completion done; -+ enum memory_type type; -+ unsigned int flags; -+ const struct dev_pagemap_ops *ops; -+ void *owner; -+ int nr_range; -+ union { -+ struct range range; -+ struct range ranges[0]; -+ }; -+}; -+ -+struct vfsmount; -+ -+struct path { -+ struct vfsmount *mnt; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+enum pid_type { -+ PIDTYPE_PID = 0, -+ PIDTYPE_TGID = 1, -+ PIDTYPE_PGID = 2, -+ PIDTYPE_SID = 3, -+ PIDTYPE_MAX = 4, -+}; -+ -+struct fown_struct { -+ rwlock_t lock; -+ struct pid *pid; -+ enum pid_type pid_type; -+ kuid_t uid; -+ kuid_t euid; -+ int signum; -+}; -+ -+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; -+}; -+ -+struct file { -+ union { -+ struct llist_node fu_llist; -+ struct callback_head fu_rcuhead; -+ } f_u; -+ struct path f_path; -+ struct inode *f_inode; -+ const struct file_operations *f_op; -+ spinlock_t f_lock; -+ enum rw_hint f_write_hint; -+ atomic_long_t f_count; -+ unsigned int f_flags; -+ fmode_t f_mode; -+ struct mutex f_pos_lock; -+ loff_t f_pos; -+ struct fown_struct f_owner; -+ const struct cred *f_cred; -+ struct file_ra_state f_ra; -+ u64 f_version; -+ void *f_security; -+ void *private_data; -+ struct hlist_head *f_ep; -+ struct address_space *f_mapping; -+ errseq_t f_wb_err; -+ errseq_t f_sb_err; -+}; -+ -+typedef unsigned int vm_fault_t; -+ -+enum page_entry_size { -+ PE_SIZE_PTE = 0, -+ PE_SIZE_PMD = 1, -+ PE_SIZE_PUD = 2, -+}; -+ -+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 *, enum page_entry_size); -+ 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); -+ struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct vm_fault { -+ const struct { -+ struct vm_area_struct *vma; -+ gfp_t gfp_mask; -+ long unsigned int pgoff; -+ long unsigned int 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; -+}; -+ -+enum migratetype { -+ MIGRATE_UNMOVABLE = 0, -+ MIGRATE_MOVABLE = 1, -+ MIGRATE_RECLAIMABLE = 2, -+ MIGRATE_PCPTYPES = 3, -+ MIGRATE_HIGHATOMIC = 3, -+ MIGRATE_CMA = 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_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_KERNEL_MISC_RECLAIMABLE = 33, -+ NR_FOLL_PIN_ACQUIRED = 34, -+ NR_FOLL_PIN_RELEASED = 35, -+ NR_KERNEL_STACK_KB = 36, -+ NR_PAGETABLE = 37, -+ NR_SWAPCACHE = 38, -+ NR_VM_NODE_STAT_ITEMS = 39, -+}; -+ -+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, -+}; -+ -+typedef unsigned int isolate_mode_t; -+ -+enum zone_watermarks { -+ WMARK_MIN = 0, -+ WMARK_LOW = 1, -+ WMARK_HIGH = 2, -+ NR_WMARK = 3, -+}; -+ -+enum { -+ ZONELIST_FALLBACK = 0, -+ ZONELIST_NOFALLBACK = 1, -+ MAX_ZONELISTS = 2, -+}; -+ -+struct idr { -+ struct xarray idr_rt; -+ unsigned int idr_base; -+ unsigned int idr_next; -+}; -+ -+typedef struct { -+ gid_t val; -+} kgid_t; -+ -+struct kernfs_root; -+ -+struct kernfs_elem_dir { -+ long unsigned int subdirs; -+ struct rb_root children; -+ struct kernfs_root *root; -+}; -+ -+struct kernfs_node; -+ -+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 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; -+ union { -+ struct kernfs_elem_dir dir; -+ struct kernfs_elem_symlink symlink; -+ struct kernfs_elem_attr attr; -+ }; -+ void *priv; -+ u64 id; -+ short unsigned int flags; -+ umode_t mode; -+ struct kernfs_iattrs *iattr; -+}; -+ -+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 *); -+}; -+ -+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 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 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 * (*grab_current_ns)(); -+ const void * (*netlink_ns)(struct sock *); -+ const void * (*initial_ns)(); -+ 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; -+}; -+ -+struct attribute { -+ const char *name; -+ umode_t mode; -+}; -+ -+struct kobject; -+ -+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 kref { -+ refcount_t refcount; -+}; -+ -+struct kset; -+ -+struct kobj_type; -+ -+struct kobject { -+ const char *name; -+ struct list_head entry; -+ struct kobject *parent; -+ struct kset *kset; -+ 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 bin_attribute { -+ struct attribute attr; -+ size_t size; -+ void *private; -+ struct address_space *mapping; -+ 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); -+ 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; -+ struct attribute **default_attrs; -+ const struct attribute_group **default_groups; -+ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject *); -+ const void * (*namespace)(struct kobject *); -+ void (*get_ownership)(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)(struct kset *, struct kobject *); -+ const char * (* const name)(struct kset *, struct kobject *); -+ int (* const uevent)(struct kset *, struct kobject *, struct kobj_uevent_env *); -+}; -+ -+struct pid_namespace; -+ -+struct upid { -+ int nr; -+ struct pid_namespace *ns; -+}; -+ -+struct proc_ns_operations; -+ -+struct ns_common { -+ atomic_long_t stashed; -+ const struct proc_ns_operations *ops; -+ unsigned int inum; -+ refcount_t count; -+}; -+ -+struct fs_pin; -+ -+struct ucounts; -+ -+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; -+}; -+ -+struct pid { -+ refcount_t count; -+ unsigned int level; -+ spinlock_t lock; -+ struct hlist_head tasks[4]; -+ struct hlist_head inodes; -+ wait_queue_head_t wait_pidfd; -+ struct callback_head rcu; -+ struct upid numbers[1]; -+}; -+ -+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)(); -+ ktime_t offset; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct hrtimer_clock_base clock_base[8]; -+}; -+ -+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, -+}; -+ -+struct rlimit { -+ __kernel_ulong_t rlim_cur; -+ __kernel_ulong_t rlim_max; -+}; -+ -+typedef void __signalfn_t(int); -+ -+typedef __signalfn_t *__sighandler_t; -+ -+typedef void __restorefn_t(); -+ -+typedef __restorefn_t *__sigrestore_t; -+ -+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; -+ } _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 sigaction { -+ __sighandler_t sa_handler; -+ long unsigned int sa_flags; -+ __sigrestore_t sa_restorer; -+ sigset_t sa_mask; -+}; -+ -+struct k_sigaction { -+ struct sigaction sa; -+}; -+ -+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 tty_struct; -+ -+struct autogroup; -+ -+struct taskstats; -+ -+struct tty_audit_buf; -+ -+struct signal_struct { -+ refcount_t sigcnt; -+ atomic_t live; -+ int nr_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_exit_task; -+ int group_stop_count; -+ unsigned int flags; -+ unsigned int is_child_subreaper: 1; -+ unsigned int has_child_subreaper: 1; -+ int posix_timer_id; -+ struct list_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]; -+ 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; -+}; -+ -+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 rseq { -+ __u32 cpu_id_start; -+ __u32 cpu_id; -+ union { -+ __u64 ptr64; -+ __u64 ptr; -+ } rseq_cs; -+ __u32 flags; -+ long: 32; -+ long: 64; -+}; -+ -+enum perf_event_task_context { -+ perf_invalid_context = 4294967295, -+ perf_hw_context = 0, -+ perf_sw_context = 1, -+ perf_nr_task_contexts = 2, -+}; -+ -+struct rq; -+ -+struct rq_flags; -+ -+struct sched_class { -+ void (*enqueue_task)(struct rq *, struct task_struct *, int); -+ void (*dequeue_task)(struct rq *, struct task_struct *, int); -+ void (*yield_task)(struct rq *); -+ bool (*yield_to_task)(struct rq *, struct task_struct *); -+ void (*check_preempt_curr)(struct rq *, struct task_struct *, int); -+ struct task_struct * (*pick_next_task)(struct rq *); -+ void (*put_prev_task)(struct rq *, struct task_struct *); -+ void (*set_next_task)(struct rq *, struct task_struct *, bool); -+ int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); -+ int (*select_task_rq)(struct task_struct *, int, int); -+ struct task_struct * (*pick_task)(struct rq *); -+ void (*migrate_task_rq)(struct task_struct *, int); -+ void (*task_woken)(struct rq *, struct task_struct *); -+ void (*set_cpus_allowed)(struct task_struct *, const struct cpumask *, u32); -+ 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 (*switched_from)(struct rq *, struct task_struct *); -+ void (*switched_to)(struct rq *, struct task_struct *); -+ 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); -+}; -+ -+struct kernel_cap_struct { -+ __u32 cap[2]; -+}; -+ -+typedef struct kernel_cap_struct kernel_cap_t; -+ -+struct user_struct; -+ -+struct group_info; -+ -+struct cred { -+ atomic_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; -+ }; -+}; -+ -+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 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 uts_namespace; -+ -+struct ipc_namespace; -+ -+struct mnt_namespace; -+ -+struct net; -+ -+struct time_namespace; -+ -+struct cgroup_namespace; -+ -+struct nsproxy { -+ atomic_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 sighand_struct { -+ spinlock_t siglock; -+ refcount_t count; -+ wait_queue_head_t signalfd_wqh; -+ struct k_sigaction action[64]; -+}; -+ -+struct io_cq; -+ -+struct io_context { -+ atomic_long_t refcount; -+ atomic_t active_ref; -+ atomic_t nr_tasks; -+ spinlock_t lock; -+ short unsigned int ioprio; -+ struct xarray icq_tree; -+ struct io_cq *icq_hint; -+ struct hlist_head icq_list; -+ struct work_struct release_work; -+}; -+ -+enum rseq_event_mask_bits { -+ RSEQ_EVENT_PREEMPT_BIT = 0, -+ RSEQ_EVENT_SIGNAL_BIT = 1, -+ RSEQ_EVENT_MIGRATE_BIT = 2, -+}; -+ -+enum cpu_idle_type { -+ CPU_IDLE = 0, -+ CPU_NOT_IDLE = 1, -+ CPU_NEWLY_IDLE = 2, -+ CPU_MAX_IDLE_TYPES = 3, -+}; -+ -+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_SHARE_PKG_RESOURCES = 8, -+ __SD_SERIALIZE = 9, -+ __SD_ASYM_PACKING = 10, -+ __SD_PREFER_SIBLING = 11, -+ __SD_OVERLAP = 12, -+ __SD_NUMA = 13, -+ __SD_FLAG_CNT = 14, -+}; -+ -+enum module_state { -+ MODULE_STATE_LIVE = 0, -+ MODULE_STATE_COMING = 1, -+ MODULE_STATE_GOING = 2, -+ MODULE_STATE_UNFORMED = 3, -+}; -+ -+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_layout { -+ void *base; -+ unsigned int size; -+ unsigned int text_size; -+ unsigned int ro_size; -+ unsigned int ro_after_init_size; -+ struct mod_tree_node mtn; -+}; -+ -+struct mod_arch_specific { -+ unsigned int stubs_section; -+ unsigned int toc_section; -+ bool toc_fixed; -+ long unsigned int start_opd; -+ long unsigned int end_opd; -+ long unsigned int tramp; -+ long unsigned int tramp_regs; -+ struct list_head bug_list; -+ struct bug_entry *bug_table; -+ unsigned int num_bugs; -+}; -+ -+struct elf64_sym; -+ -+typedef struct elf64_sym Elf64_Sym; -+ -+struct mod_kallsyms { -+ Elf64_Sym *symtab; -+ unsigned int num_symtab; -+ char *strtab; -+ char *typetab; -+}; -+ -+struct module_attribute; -+ -+struct kernel_param; -+ -+struct exception_table_entry; -+ -+struct module_sect_attrs; -+ -+struct module_notes_attrs; -+ -+struct tracepoint; -+ -+typedef struct tracepoint * const tracepoint_ptr_t; -+ -+struct bpf_raw_event_map; -+ -+struct trace_event_call; -+ -+struct trace_eval_map; -+ -+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; -+ const char *rhelversion; -+ 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 sig_ok; -+ bool async_probe_requested; -+ unsigned int num_exentries; -+ struct exception_table_entry *extable; -+ int (*init)(); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct module_layout core_layout; -+ struct module_layout init_layout; -+ 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; -+ void *btf_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; -+ bool klp; -+ bool klp_alive; -+ struct klp_modinfo *klp_info; -+ struct list_head source_list; -+ struct list_head target_list; -+ void (*exit)(); -+ atomic_t refcnt; -+ struct error_injection_entry *ei_funcs; -+ unsigned int num_ei_funcs; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+ int (*regfunc)(); -+ void (*unregfunc)(); -+ struct tracepoint_func *funcs; -+}; -+ -+struct bpf_raw_event_map { -+ struct tracepoint *tp; -+ void *bpf_func; -+ u32 num_args; -+ u32 writable_size; -+ long: 64; -+}; -+ -+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 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; -+ struct list_head list; -+ int id; -+ atomic_long_t *nr_deferred; -+}; -+ -+struct dev_pagemap_ops { -+ void (*page_free)(struct page *); -+ void (*kill)(struct dev_pagemap *); -+ void (*cleanup)(struct dev_pagemap *); -+ vm_fault_t (*migrate_to_ram)(struct vm_fault *); -+}; -+ -+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 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[32]; -+ struct lockref d_lockref; -+ const struct dentry_operations *d_op; -+ struct super_block *d_sb; -+ long unsigned int d_time; -+ void *d_fsdata; -+ union { -+ struct list_head d_lru; -+ wait_queue_head_t *d_wait; -+ }; -+ struct list_head d_child; -+ struct list_head d_subdirs; -+ union { -+ struct hlist_node d_alias; -+ struct hlist_bl_node d_in_lookup_hash; -+ struct callback_head d_rcu; -+ } d_u; -+}; -+ -+struct posix_acl; -+ -+struct inode_operations; -+ -+struct bdi_writeback; -+ -+struct file_lock_context; -+ -+struct cdev; -+ -+struct fsnotify_mark_connector; -+ -+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; -+ struct timespec64 i_atime; -+ struct timespec64 i_mtime; -+ struct timespec64 i_ctime; -+ spinlock_t i_lock; -+ short unsigned int i_bytes; -+ u8 i_blkbits; -+ u8 i_write_hint; -+ blkcnt_t i_blocks; -+ long unsigned int 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_generation; -+ __u32 i_fsnotify_mask; -+ struct fsnotify_mark_connector *i_fsnotify_marks; -+ void *i_private; -+}; -+ -+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 *, const struct inode *); -+ 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 rcuwait { -+ struct task_struct *task; -+}; -+ -+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 { -+ int frozen; -+ wait_queue_head_t wait_unfrozen; -+ struct percpu_rw_semaphore rw_sem[3]; -+}; -+ -+struct list_lru_node; -+ -+struct list_lru { -+ struct list_lru_node *node; -+ struct list_head list; -+ int shrinker_id; -+ bool memcg_aware; -+}; -+ -+struct super_operations; -+ -+struct dquot_operations; -+ -+struct quotactl_ops; -+ -+struct export_operations; -+ -+struct xattr_handler; -+ -+struct block_device; -+ -+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 **s_xattr; -+ struct hlist_bl_head s_roots; -+ struct list_head s_mounts; -+ struct block_device *s_bdev; -+ 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_mark_connector *s_fsnotify_marks; -+ char s_id[32]; -+ uuid_t s_uuid; -+ unsigned int s_max_links; -+ fmode_t s_mode; -+ struct mutex s_vfs_rename_mutex; -+ const char *s_subtype; -+ const struct dentry_operations *s_d_op; -+ int cleancache_poolid; -+ struct shrinker s_shrink; -+ atomic_long_t s_remove_count; -+ atomic_long_t s_fsnotify_inode_refs; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct vfsmount { -+ struct dentry *mnt_root; -+ struct super_block *mnt_sb; -+ int mnt_flags; -+ struct user_namespace *mnt_userns; -+}; -+ -+struct list_lru_one { -+ struct list_head list; -+ long int nr_items; -+}; -+ -+struct list_lru_memcg { -+ struct callback_head rcu; -+ struct list_lru_one *lru[0]; -+}; -+ -+struct list_lru_node { -+ spinlock_t lock; -+ struct list_lru_one lru; -+ struct list_lru_memcg *memcg_lrus; -+ long int nr_items; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum migrate_mode { -+ MIGRATE_ASYNC = 0, -+ MIGRATE_SYNC_LIGHT = 1, -+ MIGRATE_SYNC = 2, -+ MIGRATE_SYNC_NO_COPY = 3, -+}; -+ -+struct exception_table_entry { -+ int insn; -+ int fixup; -+}; -+ -+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; -+ atomic_long_t 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 { -+ atomic_t usage; -+ int ngroups; -+ kgid_t gid[0]; -+}; -+ -+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; -+}; -+ -+struct wait_page_queue; -+ -+struct kiocb { -+ struct file *ki_filp; -+ loff_t ki_pos; -+ void (*ki_complete)(struct kiocb *, long int, long int); -+ void *private; -+ int ki_flags; -+ u16 ki_hint; -+ u16 ki_ioprio; -+ union { -+ unsigned int ki_cookie; -+ struct wait_page_queue *ki_waitq; -+ }; -+}; -+ -+struct iattr { -+ unsigned int ia_valid; -+ umode_t ia_mode; -+ kuid_t ia_uid; -+ kgid_t ia_gid; -+ 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; -+}; -+ -+enum { -+ DQF_ROOT_SQUASH_B = 0, -+ DQF_SYS_FILE_B = 16, -+ DQF_PRIVATE = 17, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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 (*writepage)(struct page *, struct writeback_control *); -+ int (*readpage)(struct file *, struct page *); -+ int (*writepages)(struct address_space *, struct writeback_control *); -+ int (*set_page_dirty)(struct page *); -+ int (*readpages)(struct file *, struct address_space *, struct list_head *, unsigned int); -+ void (*readahead)(struct readahead_control *); -+ int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page **, void **); -+ int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page *, void *); -+ sector_t (*bmap)(struct address_space *, sector_t); -+ void (*invalidatepage)(struct page *, unsigned int, unsigned int); -+ int (*releasepage)(struct page *, gfp_t); -+ void (*freepage)(struct page *); -+ ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); -+ int (*migratepage)(struct address_space *, struct page *, struct page *, enum migrate_mode); -+ bool (*isolate_page)(struct page *, isolate_mode_t); -+ void (*putback_page)(struct page *); -+ int (*launder_page)(struct page *); -+ int (*is_partially_uptodate)(struct page *, long unsigned int, long unsigned int); -+ void (*is_dirty_writeback)(struct page *, bool *, bool *); -+ int (*error_remove_page)(struct address_space *, struct page *); -+ int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); -+ void (*swap_deactivate)(struct file *); -+}; -+ -+struct fiemap_extent_info; -+ -+struct fileattr; -+ -+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 user_namespace *, struct inode *, int); -+ struct posix_acl * (*get_acl)(struct inode *, int); -+ int (*readlink)(struct dentry *, char *, int); -+ int (*create)(struct user_namespace *, struct inode *, struct dentry *, umode_t, bool); -+ int (*link)(struct dentry *, struct inode *, struct dentry *); -+ int (*unlink)(struct inode *, struct dentry *); -+ int (*symlink)(struct user_namespace *, struct inode *, struct dentry *, const char *); -+ int (*mkdir)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*rmdir)(struct inode *, struct dentry *); -+ int (*mknod)(struct user_namespace *, struct inode *, struct dentry *, umode_t, dev_t); -+ int (*rename)(struct user_namespace *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); -+ int (*setattr)(struct user_namespace *, struct dentry *, struct iattr *); -+ int (*getattr)(struct user_namespace *, 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 *, struct timespec64 *, int); -+ int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); -+ int (*tmpfile)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*set_acl)(struct user_namespace *, struct inode *, struct posix_acl *, int); -+ int (*fileattr_set)(struct user_namespace *, struct dentry *, struct fileattr *); -+ int (*fileattr_get)(struct dentry *, struct fileattr *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_operations { -+ void (*fl_copy_lock)(struct file_lock *, struct file_lock *); -+ void (*fl_release_private)(struct file_lock *); -+}; -+ -+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 fasync_struct; -+ -+struct lock_manager_operations; -+ -+struct file_lock { -+ struct file_lock *fl_blocker; -+ struct list_head fl_list; -+ struct hlist_node fl_link; -+ struct list_head fl_blocked_requests; -+ struct list_head fl_blocked_member; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ unsigned int fl_pid; -+ int fl_link_cpu; -+ wait_queue_head_t fl_wait; -+ struct file *fl_file; -+ loff_t fl_start; -+ loff_t fl_end; -+ struct fasync_struct *fl_fasync; -+ long unsigned int fl_break_time; -+ long unsigned int fl_downgrade_time; -+ 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; -+ } fl_u; -+}; -+ -+struct lock_manager_operations { -+ 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_break)(struct file_lock *); -+ int (*lm_change)(struct file_lock *, int, struct list_head *); -+ void (*lm_setup)(struct file_lock *, void **); -+ bool (*lm_breaker_owns_lease)(struct file_lock *); -+}; -+ -+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 { -+ SB_UNFROZEN = 0, -+ SB_FREEZE_WRITE = 1, -+ SB_FREEZE_PAGEFAULT = 2, -+ SB_FREEZE_FS = 3, -+ SB_FREEZE_COMPLETE = 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 *); -+ int (*freeze_fs)(struct super_block *); -+ int (*thaw_super)(struct super_block *); -+ 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 *); -+}; -+ -+struct iomap; -+ -+struct fid; -+ -+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 *); -+ u64 (*fetch_iversion)(struct inode *); -+ 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 user_namespace *, struct dentry *, struct inode *, const char *, const void *, size_t, int); -+}; -+ -+typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); -+ -+struct dir_context { -+ filldir_t actor; -+ loff_t pos; -+}; -+ -+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; -+}; -+ -+enum compound_dtor_id { -+ NULL_COMPOUND_DTOR = 0, -+ COMPOUND_PAGE_DTOR = 1, -+ HUGETLB_PAGE_DTOR = 2, -+ TRANSHUGE_PAGE_DTOR = 3, -+ NR_COMPOUND_DTORS = 4, -+}; -+ -+enum vm_event_item { -+ PGPGIN = 0, -+ PGPGOUT = 1, -+ PSWPIN = 2, -+ PSWPOUT = 3, -+ PGALLOC_NORMAL = 4, -+ PGALLOC_MOVABLE = 5, -+ ALLOCSTALL_NORMAL = 6, -+ ALLOCSTALL_MOVABLE = 7, -+ PGSCAN_SKIP_NORMAL = 8, -+ PGSCAN_SKIP_MOVABLE = 9, -+ PGFREE = 10, -+ PGACTIVATE = 11, -+ PGDEACTIVATE = 12, -+ PGLAZYFREE = 13, -+ PGFAULT = 14, -+ PGMAJFAULT = 15, -+ PGLAZYFREED = 16, -+ PGREFILL = 17, -+ PGREUSE = 18, -+ PGSTEAL_KSWAPD = 19, -+ PGSTEAL_DIRECT = 20, -+ PGSCAN_KSWAPD = 21, -+ PGSCAN_DIRECT = 22, -+ PGSCAN_DIRECT_THROTTLE = 23, -+ PGSCAN_ANON = 24, -+ PGSCAN_FILE = 25, -+ PGSTEAL_ANON = 26, -+ PGSTEAL_FILE = 27, -+ PGSCAN_ZONE_RECLAIM_FAILED = 28, -+ PGINODESTEAL = 29, -+ SLABS_SCANNED = 30, -+ KSWAPD_INODESTEAL = 31, -+ KSWAPD_LOW_WMARK_HIT_QUICKLY = 32, -+ KSWAPD_HIGH_WMARK_HIT_QUICKLY = 33, -+ PAGEOUTRUN = 34, -+ PGROTATED = 35, -+ DROP_PAGECACHE = 36, -+ DROP_SLAB = 37, -+ OOM_KILL = 38, -+ NUMA_PTE_UPDATES = 39, -+ NUMA_HUGE_PTE_UPDATES = 40, -+ NUMA_HINT_FAULTS = 41, -+ NUMA_HINT_FAULTS_LOCAL = 42, -+ NUMA_PAGE_MIGRATE = 43, -+ PGMIGRATE_SUCCESS = 44, -+ PGMIGRATE_FAIL = 45, -+ THP_MIGRATION_SUCCESS = 46, -+ THP_MIGRATION_FAIL = 47, -+ THP_MIGRATION_SPLIT = 48, -+ COMPACTMIGRATE_SCANNED = 49, -+ COMPACTFREE_SCANNED = 50, -+ COMPACTISOLATED = 51, -+ COMPACTSTALL = 52, -+ COMPACTFAIL = 53, -+ COMPACTSUCCESS = 54, -+ KCOMPACTD_WAKE = 55, -+ KCOMPACTD_MIGRATE_SCANNED = 56, -+ KCOMPACTD_FREE_SCANNED = 57, -+ HTLB_BUDDY_PGALLOC = 58, -+ HTLB_BUDDY_PGALLOC_FAIL = 59, -+ CMA_ALLOC_SUCCESS = 60, -+ CMA_ALLOC_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_SPLIT_PMD = 81, -+ THP_ZERO_PAGE_ALLOC = 82, -+ THP_ZERO_PAGE_ALLOC_FAILED = 83, -+ THP_SWPOUT = 84, -+ THP_SWPOUT_FALLBACK = 85, -+ BALLOON_INFLATE = 86, -+ BALLOON_DEFLATE = 87, -+ BALLOON_MIGRATE = 88, -+ SWAP_RA = 89, -+ SWAP_RA_HIT = 90, -+ NR_VM_EVENT_ITEMS = 91, -+}; -+ -+enum kmalloc_cache_type { -+ KMALLOC_NORMAL = 0, -+ KMALLOC_DMA = 0, -+ KMALLOC_CGROUP = 1, -+ KMALLOC_RECLAIM = 2, -+ NR_KMALLOC_TYPES = 3, -+}; -+ -+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; -+ -+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 { -+ 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, -+}; -+ -+typedef unsigned int pci_channel_state_t; -+ -+typedef unsigned int pcie_reset_state_t; -+ -+typedef short unsigned int pci_dev_flags_t; -+ -+typedef short unsigned int pci_bus_flags_t; -+ -+typedef unsigned int pci_ers_result_t; -+ -+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 *); -+}; -+ -+typedef u32 phandle; -+ -+typedef u32 ihandle; -+ -+struct boot_param_header { -+ __be32 magic; -+ __be32 totalsize; -+ __be32 off_dt_struct; -+ __be32 off_dt_strings; -+ __be32 off_mem_rsvmap; -+ __be32 version; -+ __be32 last_comp_version; -+ __be32 boot_cpuid_phys; -+ __be32 dt_strings_size; -+ __be32 dt_struct_size; -+}; -+ -+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 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; -+}; -+ -+struct error_injection_entry { -+ long unsigned int addr; -+ int etype; -+}; -+ -+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 klp_modinfo { -+ Elf64_Ehdr hdr; -+ Elf64_Shdr *sechdrs; -+ char *secstrings; -+ unsigned int symndx; -+}; -+ -+struct linux_logo { -+ int type; -+ unsigned int width; -+ unsigned int height; -+ unsigned int clutsize; -+ const unsigned char *clut; -+ const unsigned char *data; -+}; -+ -+typedef u32 prom_arg_t; -+ -+struct prom_args { -+ __be32 service; -+ __be32 nargs; -+ __be32 nret; -+ __be32 args[10]; -+}; -+ -+struct prom_t { -+ ihandle root; -+ phandle chosen; -+ int cpu; -+ ihandle stdout; -+ ihandle mmumap; -+ ihandle memory; -+}; -+ -+struct mem_map_entry { -+ __be64 base; -+ __be64 size; -+}; -+ -+typedef __be32 cell_t; -+ -+struct platform_support { -+ bool hash_mmu; -+ bool radix_mmu; -+ bool radix_gtse; -+ bool xive; -+}; -+ -+struct option_vector1 { -+ u8 byte1; -+ u8 arch_versions; -+ u8 arch_versions3; -+}; -+ -+struct option_vector2 { -+ u8 byte1; -+ __be16 reserved; -+ __be32 real_base; -+ __be32 real_size; -+ __be32 virt_base; -+ __be32 virt_size; -+ __be32 load_base; -+ __be32 min_rma; -+ __be32 min_load; -+ u8 min_rma_percent; -+ u8 max_pft_size; -+} __attribute__((packed)); -+ -+struct option_vector3 { -+ u8 byte1; -+ u8 byte2; -+}; -+ -+struct option_vector4 { -+ u8 byte1; -+ u8 min_vp_cap; -+}; -+ -+struct option_vector5 { -+ u8 byte1; -+ u8 byte2; -+ u8 byte3; -+ u8 cmo; -+ u8 associativity; -+ u8 bin_opts; -+ u8 micro_checkpoint; -+ u8 reserved0; -+ __be32 max_cpus; -+ __be16 papr_level; -+ __be16 reserved1; -+ u8 platform_facilities; -+ u8 reserved2; -+ __be16 reserved3; -+ u8 subprocessors; -+ u8 byte22; -+ u8 intarch; -+ u8 mmu; -+ u8 hash_ext; -+ u8 radix_ext; -+} __attribute__((packed)); -+ -+struct option_vector6 { -+ u8 reserved; -+ u8 secondary_pteg; -+ u8 os_name; -+}; -+ -+struct option_vector7 { -+ u8 os_id[256]; -+}; -+ -+struct ibm_arch_vec { -+ struct { -+ u32 mask; -+ u32 val; -+ } pvrs[14]; -+ u8 num_vectors; -+ u8 vec1_len; -+ struct option_vector1 vec1; -+ u8 vec2_len; -+ struct option_vector2 vec2; -+ u8 vec3_len; -+ struct option_vector3 vec3; -+ u8 vec4_len; -+ struct option_vector4 vec4; -+ u8 vec5_len; -+ struct option_vector5 vec5; -+ u8 vec6_len; -+ struct option_vector6 vec6; -+ u8 vec7_len; -+ struct option_vector7 vec7; -+} __attribute__((packed)); -+ -+typedef __u32 __le32; -+ -+typedef u64 dma_addr_t; -+ -+typedef u64 phys_addr_t; -+ -+typedef long unsigned int irq_hw_number_t; -+ -+typedef int (*initcall_t)(); -+ -+typedef initcall_t initcall_entry_t; -+ -+struct obs_kernel_param { -+ const char *str; -+ int (*setup_func)(char *); -+ int early; -+}; -+ -+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 flags: 8; -+ union { -+ struct static_key_true dd_key_true; -+ struct static_key_false dd_key_false; -+ } key; -+}; -+ -+enum system_states { -+ SYSTEM_BOOTING = 0, -+ SYSTEM_SCHEDULING = 1, -+ SYSTEM_RUNNING = 2, -+ SYSTEM_HALT = 3, -+ SYSTEM_POWER_OFF = 4, -+ SYSTEM_RESTART = 5, -+ SYSTEM_SUSPEND = 6, -+}; -+ -+struct uid_gid_extent { -+ u32 first; -+ u32 lower_first; -+ u32 count; -+}; -+ -+struct uid_gid_map { -+ u32 nr_extents; -+ union { -+ struct uid_gid_extent extent[5]; -+ 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 used; -+ int count; -+ int nreg; -+ }; -+ struct callback_head rcu; -+ }; -+ struct completion *unregistering; -+ 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; -+}; -+ -+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 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[16]; -+}; -+ -+typedef struct cpumask cpumask_var_t[1]; -+ -+struct pollfd { -+ int fd; -+ short int events; -+ short int revents; -+}; -+ -+struct device; -+ -+struct perf_cpu_context; -+ -+struct perf_output_handle; -+ -+struct pmu { -+ struct list_head entry; -+ struct module *module; -+ struct device *dev; -+ const struct attribute_group **attr_groups; -+ const struct attribute_group **attr_update; -+ const char *name; -+ int type; -+ int capabilities; -+ int *pmu_disable_count; -+ struct perf_cpu_context *pmu_cpu_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_context *, bool); -+ struct kmem_cache *task_ctx_cache; -+ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_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 *); -+ int (*filter_match)(struct perf_event *); -+ int (*check_period)(struct perf_event *, u64); -+}; -+ -+enum perf_event_state { -+ PERF_EVENT_STATE_DEAD = 4294967292, -+ PERF_EVENT_STATE_EXIT = 4294967293, -+ PERF_EVENT_STATE_ERROR = 4294967294, -+ PERF_EVENT_STATE_OFF = 4294967295, -+ PERF_EVENT_STATE_INACTIVE = 0, -+ PERF_EVENT_STATE_ACTIVE = 1, -+}; -+ -+typedef struct { -+ long int v; -+} 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; -+ __u32 __reserved_3; -+ __u64 sig_data; -+}; -+ -+struct hw_perf_event_extra { -+ u64 config; -+ unsigned int reg; -+ int alloc; -+ int idx; -+}; -+ -+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 { -+ struct hrtimer hrtimer; -+ }; -+ struct { -+ struct list_head tp_list; -+ }; -+ struct { -+ u64 pwr_acc; -+ u64 ptsc; -+ }; -+ struct { -+ struct arch_hw_breakpoint info; -+ struct list_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 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; -+}; -+ -+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 perf_buffer; -+ -+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; -+ 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; -+ u64 shadow_ctx_time; -+ 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; -+ 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; -+ int pending_wakeup; -+ int pending_kill; -+ int pending_disable; -+ long unsigned int pending_addr; -+ struct irq_work pending; -+ 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; -+ u64 (*clock)(); -+ perf_overflow_handler_t overflow_handler; -+ void *overflow_handler_context; -+ perf_overflow_handler_t orig_overflow_handler; -+ struct bpf_prog *prog; -+ 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; -+}; -+ -+typedef void (*smp_call_func_t)(void *); -+ -+struct __call_single_data { -+ struct __call_single_node node; -+ smp_call_func_t func; -+ void *info; -+}; -+ -+enum irqreturn { -+ IRQ_NONE = 0, -+ IRQ_HANDLED = 1, -+ IRQ_WAKE_THREAD = 2, -+}; -+ -+typedef enum irqreturn irqreturn_t; -+ -+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 rcu_work { -+ struct work_struct work; -+ struct callback_head rcu; -+ struct workqueue_struct *wq; -+}; -+ -+struct anon_vma { -+ struct anon_vma *root; -+ struct rw_semaphore rwsem; -+ atomic_t refcount; -+ unsigned int degree; -+ struct anon_vma *parent; -+ struct rb_root_cached rb_root; -+}; -+ -+struct mempolicy { -+ atomic_t refcnt; -+ short unsigned int mode; -+ short unsigned int flags; -+ nodemask_t nodes; -+ union { -+ nodemask_t cpuset_mems_allowed; -+ nodemask_t user_nodemask; -+ } w; -+}; -+ -+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 free_area { -+ struct list_head free_list[6]; -+ long unsigned int nr_free; -+}; -+ -+struct zone_padding { -+ char x[0]; -+}; -+ -+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 pglist_data *pgdat; -+}; -+ -+struct per_cpu_pages; -+ -+struct per_cpu_zonestat; -+ -+struct zone { -+ long unsigned int _watermark[3]; -+ long unsigned int watermark_boost; -+ long unsigned int nr_reserved_highatomic; -+ long int lowmem_reserve[3]; -+ int node; -+ struct pglist_data *zone_pgdat; -+ struct per_cpu_pages *per_cpu_pageset; -+ struct per_cpu_zonestat *per_cpu_zonestats; -+ int pageset_high; -+ 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 cma_pages; -+ const char *name; -+ long unsigned int nr_isolate_pageblock; -+ seqlock_t span_seqlock; -+ int initialized; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct free_area free_area[9]; -+ long unsigned int flags; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_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: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad3_; -+ atomic_long_t vm_stat[11]; -+ atomic_long_t vm_numa_event[6]; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 zoneref { -+ struct zone *zone; -+ int zone_idx; -+}; -+ -+struct zonelist { -+ struct zoneref _zonerefs[769]; -+}; -+ -+enum zone_type { -+ ZONE_NORMAL = 0, -+ ZONE_MOVABLE = 1, -+ ZONE_DEVICE = 2, -+ __MAX_NR_ZONES = 3, -+}; -+ -+struct deferred_split { -+ spinlock_t split_queue_lock; -+ struct list_head split_queue; -+ long unsigned int split_queue_len; -+}; -+ -+struct per_cpu_nodestat; -+ -+struct pglist_data { -+ struct zone node_zones[3]; -+ 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; -+ 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; -+ long unsigned int totalreserve_pages; -+ long unsigned int min_unmapped_pages; -+ long unsigned int min_slab_pages; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ struct deferred_split deferred_split_queue; -+ struct lruvec __lruvec; -+ long unsigned int flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad2_; -+ struct per_cpu_nodestat *per_cpu_nodestats; -+ atomic_long_t vm_stat[39]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct per_cpu_pages { -+ int count; -+ int high; -+ int batch; -+ short int free_factor; -+ short int expire; -+ struct list_head lists[15]; -+}; -+ -+struct per_cpu_zonestat { -+ s8 vm_stat_diff[11]; -+ s8 stat_threshold; -+ long unsigned int vm_numa_event[6]; -+}; -+ -+struct per_cpu_nodestat { -+ s8 stat_threshold; -+ s8 vm_node_stat_diff[39]; -+}; -+ -+typedef struct pglist_data pg_data_t; -+ -+typedef int proc_handler(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; -+ struct ctl_table *child; -+ 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 *, struct ctl_table *, kuid_t *, kgid_t *); -+ int (*permissions)(struct ctl_table_header *, struct ctl_table *); -+}; -+ -+enum umh_disable_depth { -+ UMH_ENABLED = 0, -+ UMH_FREEZING = 1, -+ UMH_DISABLED = 2, -+}; -+ -+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 task_cputime { -+ u64 stime; -+ u64 utime; -+ long long unsigned int sum_exec_runtime; -+}; -+ -+struct ucounts { -+ struct hlist_node node; -+ struct user_namespace *ns; -+ kuid_t uid; -+ atomic_t count; -+ atomic_long_t ucount[16]; -+}; -+ -+struct bio; -+ -+struct bio_list { -+ struct bio *head; -+ struct bio *tail; -+}; -+ -+struct blk_plug { -+ struct list_head mq_list; -+ struct list_head cb_list; -+ short unsigned int rq_count; -+ bool multiple_queues; -+ bool nowait; -+}; -+ -+struct reclaim_state { -+ long unsigned int reclaimed_slab; -+}; -+ -+struct percpu_counter { -+ raw_spinlock_t lock; -+ s64 count; -+ struct list_head list; -+ s32 *counters; -+}; -+ -+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 cgroup_subsys_state; -+ -+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; -+ struct percpu_counter stat[4]; -+ long unsigned int congested; -+ 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; -+ long unsigned int dirty_sleep; -+ 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 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; -+ 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; -+}; -+ -+struct cgroup; -+ -+struct css_set { -+ struct cgroup_subsys_state *subsys[14]; -+ 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[14]; -+ struct list_head threaded_csets; -+ struct list_head threaded_csets_node; -+ struct hlist_node hlist; -+ struct list_head cgrp_links; -+ struct list_head mg_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 { -+ struct pmu *pmu; -+ raw_spinlock_t lock; -+ struct mutex mutex; -+ struct list_head active_ctx_list; -+ struct perf_event_groups pinned_groups; -+ struct perf_event_groups flexible_groups; -+ struct list_head event_list; -+ struct list_head pinned_active; -+ struct list_head flexible_active; -+ int nr_events; -+ int nr_active; -+ int is_active; -+ int nr_stat; -+ int nr_freq; -+ int rotate_disable; -+ int rotate_necessary; -+ refcount_t refcount; -+ struct task_struct *task; -+ u64 time; -+ u64 timestamp; -+ struct perf_event_context *parent_ctx; -+ u64 parent_gen; -+ u64 generation; -+ int pin_count; -+ int nr_cgroups; -+ void *task_ctx_data; -+ struct callback_head callback_head; -+}; -+ -+struct task_delay_info { -+ raw_spinlock_t lock; -+ unsigned int flags; -+ u64 blkio_start; -+ u64 blkio_delay; -+ u64 swapin_delay; -+ u32 blkio_count; -+ u32 swapin_count; -+ u64 freepages_start; -+ u64 freepages_delay; -+ u64 thrashing_start; -+ u64 thrashing_delay; -+ u32 freepages_count; -+ u32 thrashing_count; -+}; -+ -+struct ftrace_ret_stack { -+ long unsigned int ret; -+ long unsigned int func; -+ long long unsigned int calltime; -+ long long unsigned int subtime; -+ long unsigned int *retp; -+}; -+ -+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; -+}; -+ -+struct mem_cgroup_id { -+ int id; -+ refcount_t ref; -+}; -+ -+struct page_counter { -+ atomic_long_t usage; -+ long unsigned int min; -+ long unsigned int low; -+ long unsigned int high; -+ long unsigned int max; -+ 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 failcnt; -+ struct page_counter *parent; -+}; -+ -+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 cgroup_file { -+ struct kernfs_node *kn; -+ long unsigned int notified_at; -+ struct timer_list notify_timer; -+}; -+ -+struct mem_cgroup_threshold_ary; -+ -+struct mem_cgroup_thresholds { -+ struct mem_cgroup_threshold_ary *primary; -+ struct mem_cgroup_threshold_ary *spare; -+}; -+ -+struct memcg_padding { -+ char x[0]; -+}; -+ -+struct memcg_vmstats { -+ long int state[42]; -+ long unsigned int events[91]; -+ long int state_pending[42]; -+ long unsigned int events_pending[91]; -+}; -+ -+enum memcg_kmem_state { -+ KMEM_NONE = 0, -+ KMEM_ALLOCATED = 1, -+ KMEM_ONLINE = 2, -+}; -+ -+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 obj_cgroup; -+ -+struct memcg_vmstats_percpu; -+ -+struct mem_cgroup_per_node; -+ -+struct mem_cgroup { -+ struct cgroup_subsys_state css; -+ struct mem_cgroup_id id; -+ struct page_counter memory; -+ union { -+ struct page_counter swap; -+ struct page_counter memsw; -+ }; -+ struct page_counter kmem; -+ struct page_counter tcpmem; -+ struct work_struct high_work; -+ long unsigned int soft_limit; -+ struct vmpressure vmpressure; -+ bool oom_group; -+ bool oom_lock; -+ int under_oom; -+ int swappiness; -+ int oom_kill_disable; -+ struct cgroup_file events_file; -+ struct cgroup_file events_local_file; -+ struct cgroup_file swap_events_file; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad1_; -+ struct memcg_vmstats vmstats; -+ atomic_long_t memory_events[8]; -+ atomic_long_t memory_events_local[8]; -+ long unsigned int socket_pressure; -+ bool tcpmem_active; -+ int tcpmem_pressure; -+ int kmemcg_id; -+ enum memcg_kmem_state kmem_state; -+ struct obj_cgroup *objcg; -+ struct list_head objcg_list; -+ struct memcg_padding _pad2_; -+ atomic_t moving_account; -+ struct task_struct *move_lock_task; -+ struct memcg_vmstats_percpu *vmstats_percpu; -+ struct list_head cgwb_list; -+ struct wb_domain cgwb_domain; -+ struct memcg_cgwb_frn cgwb_frn[4]; -+ struct list_head event_list; -+ spinlock_t event_list_lock; -+ struct deferred_split deferred_split_queue; -+ struct mem_cgroup_per_node *nodeinfo[0]; -+ long: 64; -+}; -+ -+struct blk_integrity_profile; -+ -+struct blk_integrity { -+ const struct blk_integrity_profile *profile; -+ unsigned char flags; -+ unsigned char tuple_size; -+ unsigned char interval_exp; -+ unsigned char tag_size; -+}; -+ -+enum rpm_status { -+ RPM_ACTIVE = 0, -+ RPM_RESUMING = 1, -+ RPM_SUSPENDED = 2, -+ RPM_SUSPENDING = 3, -+}; -+ -+struct blk_rq_stat { -+ u64 mean; -+ u64 min; -+ u64 max; -+ u32 nr_samples; -+ u64 batch; -+}; -+ -+struct sbitmap_word; -+ -+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; -+ -+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; -+}; -+ -+enum blk_bounce { -+ BLK_BOUNCE_NONE = 0, -+ BLK_BOUNCE_HIGH = 1, -+}; -+ -+enum blk_zoned_model { -+ BLK_ZONED_NONE = 0, -+ BLK_ZONED_HA = 1, -+ BLK_ZONED_HM = 2, -+}; -+ -+struct queue_limits { -+ enum blk_bounce bounce; -+ 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_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_write_same_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; -+ short unsigned int max_segments; -+ short unsigned int max_integrity_segments; -+ short unsigned int max_discard_segments; -+ unsigned char misaligned; -+ unsigned char discard_misaligned; -+ unsigned char raid_partial_stripes_expensive; -+ enum blk_zoned_model zoned; -+}; -+ -+struct bsg_ops; -+ -+struct bsg_class_device { -+ struct device *class_dev; -+ int minor; -+ struct request_queue *queue; -+ const struct bsg_ops *ops; -+}; -+ -+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_set { -+ struct kmem_cache *bio_slab; -+ unsigned int front_pad; -+ mempool_t bio_pool; -+ mempool_t bvec_pool; -+ mempool_t bio_integrity_pool; -+ mempool_t bvec_integrity_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 request; -+ -+struct elevator_queue; -+ -+struct blk_queue_stats; -+ -+struct rq_qos; -+ -+struct blk_mq_ops; -+ -+struct blk_mq_ctx; -+ -+struct blk_mq_hw_ctx; -+ -+struct blk_stat_callback; -+ -+struct blkcg_gq; -+ -+struct blk_trace; -+ -+struct blk_flush_queue; -+ -+struct throtl_data; -+ -+struct blk_mq_tag_set; -+ -+struct request_queue { -+ struct request *last_merge; -+ struct elevator_queue *elevator; -+ struct percpu_ref q_usage_counter; -+ struct blk_queue_stats *stats; -+ struct rq_qos *rq_qos; -+ const struct blk_mq_ops *mq_ops; -+ struct blk_mq_ctx *queue_ctx; -+ unsigned int queue_depth; -+ struct blk_mq_hw_ctx **queue_hw_ctx; -+ unsigned int nr_hw_queues; -+ struct backing_dev_info *backing_dev_info; -+ void *queuedata; -+ long unsigned int queue_flags; -+ atomic_t pm_only; -+ int id; -+ spinlock_t queue_lock; -+ struct kobject kobj; -+ struct kobject *mq_kobj; -+ struct blk_integrity integrity; -+ struct device *dev; -+ enum rpm_status rpm_status; -+ long unsigned int nr_requests; -+ unsigned int dma_pad_mask; -+ unsigned int dma_alignment; -+ unsigned int rq_timeout; -+ int poll_nsec; -+ struct blk_stat_callback *poll_cb; -+ struct blk_rq_stat poll_stat[16]; -+ struct timer_list timeout; -+ struct work_struct timeout_work; -+ atomic_t nr_active_requests_shared_sbitmap; -+ struct sbitmap_queue sched_bitmap_tags; -+ struct sbitmap_queue sched_breserved_tags; -+ struct list_head icq_list; -+ long unsigned int blkcg_pols[1]; -+ struct blkcg_gq *root_blkg; -+ struct list_head blkg_list; -+ struct queue_limits limits; -+ unsigned int required_elevator_features; -+ unsigned int nr_zones; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int max_open_zones; -+ unsigned int max_active_zones; -+ unsigned int sg_timeout; -+ unsigned int sg_reserved_size; -+ int node; -+ struct mutex debugfs_mutex; -+ struct blk_trace *blk_trace; -+ struct blk_flush_queue *fq; -+ struct list_head requeue_list; -+ spinlock_t requeue_lock; -+ struct delayed_work requeue_work; -+ struct mutex sysfs_lock; -+ struct mutex sysfs_dir_lock; -+ struct list_head unused_hctx_list; -+ spinlock_t unused_hctx_lock; -+ int mq_freeze_depth; -+ struct bsg_class_device bsg_dev; -+ 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 bio_set bio_split; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct dentry *rqos_debugfs_dir; -+ bool mq_sysfs_init_done; -+ size_t cmd_size; -+ u64 write_hints[5]; -+}; -+ -+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 trace_event_functions; -+ -+struct trace_event { -+ struct hlist_node node; -+ struct list_head list; -+ int type; -+ struct trace_event_functions *funcs; -+}; -+ -+struct trace_event_class; -+ -+struct bpf_prog_array; -+ -+struct trace_event_call { -+ struct list_head list; -+ struct trace_event_class *class; -+ union { -+ char *name; -+ struct tracepoint *tp; -+ }; -+ struct trace_event event; -+ char *print_fmt; -+ struct event_filter *filter; -+ void *mod; -+ 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 cgroup_base_stat { -+ struct task_cputime cputime; -+}; -+ -+struct psi_group_cpu; -+ -+struct psi_group { -+ 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; -+ u64 total[12]; -+ long unsigned int avg[18]; -+ struct task_struct *poll_task; -+ struct timer_list poll_timer; -+ wait_queue_head_t poll_wait; -+ atomic_t poll_wakeup; -+ struct mutex trigger_lock; -+ struct list_head triggers; -+ u32 nr_triggers[6]; -+ u32 poll_states; -+ u64 poll_min_period; -+ u64 polling_total[6]; -+ u64 polling_next_update; -+ u64 polling_until; -+}; -+ -+struct cgroup_bpf { -+ struct bpf_prog_array *effective[41]; -+ struct list_head progs[41]; -+ u32 flags[41]; -+ 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 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; -+ struct kernfs_node *kn; -+ struct cgroup_file procs_file; -+ struct cgroup_file events_file; -+ u16 subtree_control; -+ u16 subtree_ss_mask; -+ u16 old_subtree_control; -+ u16 old_subtree_ss_mask; -+ struct cgroup_subsys_state *subsys[14]; -+ struct cgroup_root *root; -+ struct list_head cset_links; -+ struct list_head e_csets[14]; -+ struct cgroup *dom_cgrp; -+ struct cgroup *old_dom_cgrp; -+ struct cgroup_rstat_cpu *rstat_cpu; -+ struct list_head rstat_css_list; -+ 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; -+ atomic_t congestion_count; -+ struct cgroup_freezer_state freezer; -+ u64 ancestor_ids[0]; -+}; -+ -+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]; -+ int: 32; -+ __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; -+}; -+ -+struct wait_page_queue { -+ struct page *page; -+ int bit_nr; -+ wait_queue_entry_t wait; -+}; -+ -+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 for_reclaim: 1; -+ unsigned int range_cyclic: 1; -+ unsigned int for_sync: 1; -+ unsigned int no_cgroup_owner: 1; -+ unsigned int punt_to_cgroup: 1; -+ 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 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; -+}; -+ -+struct iovec; -+ -+struct kvec; -+ -+struct bio_vec; -+ -+struct iov_iter { -+ u8 iter_type; -+ bool data_source; -+ size_t iov_offset; -+ size_t count; -+ union { -+ const struct iovec *iov; -+ const struct kvec *kvec; -+ const struct bio_vec *bvec; -+ struct xarray *xarray; -+ struct pipe_inode_info *pipe; -+ }; -+ union { -+ long unsigned int nr_segs; -+ struct { -+ unsigned int head; -+ unsigned int start_head; -+ }; -+ loff_t xarray_start; -+ }; -+}; -+ -+struct swap_cluster_info { -+ spinlock_t lock; -+ unsigned int data: 24; -+ unsigned int flags: 8; -+}; -+ -+struct swap_cluster_list { -+ struct swap_cluster_info head; -+ struct swap_cluster_info tail; -+}; -+ -+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; -+ struct swap_cluster_info *cluster_info; -+ struct swap_cluster_list free_clusters; -+ 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; -+ unsigned int old_block_size; -+ struct completion comp; -+ long unsigned int *frontswap_map; -+ atomic_t frontswap_pages; -+ spinlock_t lock; -+ spinlock_t cont_lock; -+ struct work_struct discard_work; -+ struct swap_cluster_list discard_clusters; -+ struct plist_node avail_lists[0]; -+}; -+ -+struct cdev { -+ struct kobject kobj; -+ struct module *owner; -+ const struct file_operations *ops; -+ struct list_head list; -+ dev_t dev; -+ unsigned int count; -+}; -+ -+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, -+}; -+ -+struct wakeup_source; -+ -+struct wake_irq; -+ -+struct pm_subsys_data; -+ -+struct dev_pm_qos; -+ -+struct dev_pm_info { -+ pm_message_t power_state; -+ unsigned int can_wakeup: 1; -+ unsigned int 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; -+ unsigned int must_resume: 1; -+ unsigned int may_skip_resume: 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; -+ unsigned int idle_notification: 1; -+ unsigned int request_pending: 1; -+ unsigned int deferred_resume: 1; -+ unsigned int needs_force_resume: 1; -+ unsigned int runtime_auto: 1; -+ bool ignore_children: 1; -+ unsigned int no_callbacks: 1; -+ unsigned int irq_safe: 1; -+ unsigned int use_autosuspend: 1; -+ unsigned int timer_autosuspends: 1; -+ unsigned int memalloc_noio: 1; -+ unsigned int links_count; -+ enum rpm_request request; -+ enum rpm_status runtime_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; -+}; -+ -+struct iommu_table; -+ -+struct pci_dn; -+ -+struct eeh_dev; -+ -+struct cxl_context; -+ -+struct dev_archdata { -+ dma_addr_t dma_offset; -+ struct iommu_table *iommu_table_base; -+ struct pci_dn *pci_data; -+ struct eeh_dev *edev; -+ struct cxl_context *cxl_ctx; -+ void *iov_data; -+}; -+ -+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 em_perf_domain; -+ -+struct irq_domain; -+ -+struct dma_map_ops; -+ -+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 iommu_group; -+ -+struct dev_iommu; -+ -+struct device { -+ struct kobject kobj; -+ struct device *parent; -+ struct device_private *p; -+ const char *init_name; -+ const struct device_type *type; -+ 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 irq_domain *msi_domain; -+ raw_spinlock_t msi_lock; -+ struct list_head msi_list; -+ 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 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; -+ int numa_node; -+ dev_t devt; -+ u32 id; -+ spinlock_t devres_lock; -+ struct list_head devres_head; -+ struct class *class; -+ const struct attribute_group **groups; -+ void (*release)(struct device *); -+ struct iommu_group *iommu_group; -+ struct dev_iommu *iommu; -+ 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_ops_bypass: 1; -+}; -+ -+struct disk_stats; -+ -+struct gendisk; -+ -+struct partition_meta_info; -+ -+struct block_device { -+ sector_t bd_start_sect; -+ struct disk_stats *bd_stats; -+ long unsigned int bd_stamp; -+ bool bd_read_only; -+ dev_t bd_dev; -+ int bd_openers; -+ struct inode *bd_inode; -+ struct super_block *bd_super; -+ void *bd_claiming; -+ struct device bd_device; -+ void *bd_holder; -+ int bd_holders; -+ bool bd_write_holder; -+ struct list_head bd_holder_disks; -+ struct kobject *bd_holder_dir; -+ u8 bd_partno; -+ spinlock_t bd_size_lock; -+ struct gendisk *bd_disk; -+ struct backing_dev_info *bd_bdi; -+ int bd_fsfreeze_count; -+ struct mutex bd_fsfreeze_mutex; -+ struct super_block *bd_fsfreeze_sb; -+ struct partition_meta_info *bd_meta_info; -+}; -+ -+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; -+ unsigned int lsm_flags; -+ enum fs_context_purpose purpose: 8; -+ enum fs_context_phase phase: 8; -+ bool need_free: 1; -+ bool global: 1; -+ bool oldapi: 1; -+}; -+ -+struct audit_names; -+ -+struct filename { -+ const char *name; -+ const char *uptr; -+ int refcnt; -+ struct audit_names *aname; -+ const char iname[0]; -+}; -+ -+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; -+}; -+ -+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 bio_integrity_payload; -+ -+struct bio { -+ struct bio *bi_next; -+ struct block_device *bi_bdev; -+ unsigned int bi_opf; -+ short unsigned int bi_flags; -+ short unsigned int bi_ioprio; -+ short unsigned int bi_write_hint; -+ blk_status_t bi_status; -+ atomic_t __bi_remaining; -+ struct bvec_iter bi_iter; -+ bio_end_io_t *bi_end_io; -+ void *bi_private; -+ struct blkcg_gq *bi_blkg; -+ struct bio_issue bi_issue; -+ union { -+ 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]; -+}; -+ -+struct linux_binprm { -+ struct vm_area_struct *vma; -+ long unsigned int vma_pages; -+ struct mm_struct *mm; -+ long unsigned int p; -+ long unsigned int argmin; -+ unsigned int have_execfd: 1; -+ unsigned int execfd_creds: 1; -+ unsigned int secureexec: 1; -+ unsigned int point_of_no_return: 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]; -+}; -+ -+struct coredump_params { -+ const kernel_siginfo_t *siginfo; -+ struct pt_regs *regs; -+ struct file *file; -+ long unsigned int limit; -+ long unsigned int mm_flags; -+ loff_t written; -+ loff_t pos; -+ loff_t to_skip; -+}; -+ -+struct em_perf_state { -+ long unsigned int frequency; -+ long unsigned int power; -+ long unsigned int cost; -+}; -+ -+struct em_perf_domain { -+ struct em_perf_state *table; -+ int nr_perf_states; -+ int milliwatts; -+ long unsigned int cpus[0]; -+}; -+ -+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 *); -+}; -+ -+struct iommu_ops; -+ -+struct subsys_private; -+ -+struct bus_type { -+ const char *name; -+ const char *dev_name; -+ struct device *dev_root; -+ const struct attribute_group **bus_groups; -+ const struct attribute_group **dev_groups; -+ const struct attribute_group **drv_groups; -+ int (*match)(struct device *, struct device_driver *); -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ int (*probe)(struct device *); -+ void (*sync_state)(struct device *); -+ int (*remove)(struct device *); -+ void (*shutdown)(struct device *); -+ 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 *); -+ const struct dev_pm_ops *pm; -+ const struct iommu_ops *iommu_ops; -+ struct subsys_private *p; -+ struct lock_class_key lock_key; -+ 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; -+ 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; -+}; -+ -+enum iommu_cap { -+ IOMMU_CAP_CACHE_COHERENCY = 0, -+ IOMMU_CAP_INTR_REMAP = 1, -+ IOMMU_CAP_NOEXEC = 2, -+}; -+ -+enum iommu_dev_features { -+ IOMMU_DEV_FEAT_AUX = 0, -+ IOMMU_DEV_FEAT_SVA = 1, -+ IOMMU_DEV_FEAT_IOPF = 2, -+}; -+ -+struct iommu_domain; -+ -+struct iommu_iotlb_gather; -+ -+struct iommu_device; -+ -+struct iommu_resv_region; -+ -+struct of_phandle_args; -+ -+struct iommu_sva; -+ -+struct iommu_fault_event; -+ -+struct iommu_page_response; -+ -+struct iommu_cache_invalidate_info; -+ -+struct iommu_gpasid_bind_data; -+ -+struct iommu_ops { -+ bool (*capable)(enum iommu_cap); -+ struct iommu_domain * (*domain_alloc)(unsigned int); -+ void (*domain_free)(struct iommu_domain *); -+ int (*attach_dev)(struct iommu_domain *, struct device *); -+ void (*detach_dev)(struct iommu_domain *, struct device *); -+ int (*map)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, int, gfp_t); -+ int (*map_pages)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); -+ size_t (*unmap)(struct iommu_domain *, long unsigned int, size_t, struct iommu_iotlb_gather *); -+ 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 *); -+ void (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); -+ void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); -+ phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); -+ struct iommu_device * (*probe_device)(struct device *); -+ void (*release_device)(struct device *); -+ void (*probe_finalize)(struct device *); -+ struct iommu_group * (*device_group)(struct device *); -+ int (*enable_nesting)(struct iommu_domain *); -+ int (*set_pgtable_quirks)(struct iommu_domain *, long unsigned int); -+ void (*get_resv_regions)(struct device *, struct list_head *); -+ void (*put_resv_regions)(struct device *, struct list_head *); -+ void (*apply_resv_region)(struct device *, struct iommu_domain *, struct iommu_resv_region *); -+ int (*of_xlate)(struct device *, struct of_phandle_args *); -+ bool (*is_attach_deferred)(struct iommu_domain *, struct device *); -+ bool (*dev_has_feat)(struct device *, enum iommu_dev_features); -+ bool (*dev_feat_enabled)(struct device *, enum iommu_dev_features); -+ int (*dev_enable_feat)(struct device *, enum iommu_dev_features); -+ int (*dev_disable_feat)(struct device *, enum iommu_dev_features); -+ int (*aux_attach_dev)(struct iommu_domain *, struct device *); -+ void (*aux_detach_dev)(struct iommu_domain *, struct device *); -+ int (*aux_get_pasid)(struct iommu_domain *, struct device *); -+ struct iommu_sva * (*sva_bind)(struct device *, struct mm_struct *, void *); -+ void (*sva_unbind)(struct iommu_sva *); -+ u32 (*sva_get_pasid)(struct iommu_sva *); -+ int (*page_response)(struct device *, struct iommu_fault_event *, struct iommu_page_response *); -+ int (*cache_invalidate)(struct iommu_domain *, struct device *, struct iommu_cache_invalidate_info *); -+ int (*sva_bind_gpasid)(struct iommu_domain *, struct device *, struct iommu_gpasid_bind_data *); -+ int (*sva_unbind_gpasid)(struct device *, u32); -+ int (*def_domain_type)(struct device *); -+ long unsigned int pgsize_bitmap; -+ struct module *owner; -+}; -+ -+struct device_type { -+ const char *name; -+ const struct attribute_group **groups; -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *, kuid_t *, kgid_t *); -+ void (*release)(struct device *); -+ const struct dev_pm_ops *pm; -+}; -+ -+struct class { -+ const char *name; -+ struct module *owner; -+ const struct attribute_group **class_groups; -+ const struct attribute_group **dev_groups; -+ struct kobject *dev_kobj; -+ int (*dev_uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *); -+ void (*class_release)(struct class *); -+ void (*dev_release)(struct device *); -+ int (*shutdown_pre)(struct device *); -+ const struct kobj_ns_type_operations *ns_type; -+ const void * (*namespace)(struct device *); -+ void (*get_ownership)(struct device *, kuid_t *, kgid_t *); -+ const struct dev_pm_ops *pm; -+ struct subsys_private *p; -+}; -+ -+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[9]; -+ kernel_ulong_t driver_data; -+ __u32 cls; -+ __u32 cls_msk; -+}; -+ -+struct pci_controller; -+ -+struct eeh_pe; -+ -+struct pci_dev; -+ -+struct eeh_dev { -+ int mode; -+ int bdfn; -+ struct pci_controller *controller; -+ int pe_config_addr; -+ u32 config_space[16]; -+ int pcix_cap; -+ int pcie_cap; -+ int aer_cap; -+ int af_cap; -+ struct eeh_pe *pe; -+ struct list_head entry; -+ struct list_head rmv_entry; -+ struct pci_dn *pdn; -+ struct pci_dev *pdev; -+ bool in_error; -+ struct pci_dev *physfn; -+ int vf_index; -+}; -+ -+struct device_dma_parameters { -+ unsigned int max_segment_size; -+ unsigned int min_align_mask; -+ long unsigned int segment_boundary_mask; -+}; -+ -+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, -+}; -+ -+struct irq_domain_ops; -+ -+struct irq_domain_chip_generic; -+ -+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 fwnode_handle *fwnode; -+ enum irq_domain_bus_token bus_token; -+ struct irq_domain_chip_generic *gc; -+ struct irq_domain *parent; -+ irq_hw_number_t hwirq_max; -+ unsigned int revmap_size; -+ struct xarray revmap_tree; -+ struct mutex revmap_mutex; -+ struct irq_data *revmap[0]; -+}; -+ -+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)(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); -+ struct sg_table * (*alloc_noncontiguous)(struct device *, size_t, enum dma_data_direction, gfp_t, long unsigned int); -+ void (*free_noncontiguous)(struct device *, size_t, struct sg_table *, 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 *); -+ long unsigned int (*get_merge_boundary)(struct device *); -+}; -+ -+struct bus_dma_region { -+ phys_addr_t cpu_start; -+ dma_addr_t dma_start; -+ u64 size; -+ u64 offset; -+}; -+ -+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 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; -+}; -+ -+enum cpuhp_state { -+ CPUHP_INVALID = 4294967295, -+ 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_APB_DEAD = 8, -+ CPUHP_X86_MCE_DEAD = 9, -+ CPUHP_VIRT_NET_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_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_PCI_XGENE_DEAD = 32, -+ CPUHP_IOMMU_IOVA_DEAD = 33, -+ CPUHP_LUSTRE_CFS_DEAD = 34, -+ CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 35, -+ CPUHP_PADATA_DEAD = 36, -+ CPUHP_WORKQUEUE_PREP = 37, -+ CPUHP_POWER_NUMA_PREPARE = 38, -+ CPUHP_HRTIMERS_PREPARE = 39, -+ CPUHP_PROFILE_PREPARE = 40, -+ CPUHP_X2APIC_PREPARE = 41, -+ CPUHP_SMPCFD_PREPARE = 42, -+ CPUHP_RELAY_PREPARE = 43, -+ CPUHP_SLAB_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_NET_FLOW_PREPARE = 54, -+ CPUHP_TOPOLOGY_PREPARE = 55, -+ CPUHP_NET_IUCV_PREPARE = 56, -+ CPUHP_ARM_BL_PREPARE = 57, -+ CPUHP_TRACE_RB_PREPARE = 58, -+ CPUHP_MM_ZS_PREPARE = 59, -+ CPUHP_MM_ZSWP_MEM_PREPARE = 60, -+ CPUHP_MM_ZSWP_POOL_PREPARE = 61, -+ CPUHP_KVM_PPC_BOOK3S_PREPARE = 62, -+ CPUHP_ZCOMP_PREPARE = 63, -+ CPUHP_TIMERS_PREPARE = 64, -+ CPUHP_MIPS_SOC_PREPARE = 65, -+ CPUHP_BP_PREPARE_DYN = 66, -+ CPUHP_BP_PREPARE_DYN_END = 86, -+ CPUHP_BRINGUP_CPU = 87, -+ CPUHP_AP_IDLE_DEAD = 88, -+ CPUHP_AP_OFFLINE = 89, -+ CPUHP_AP_SCHED_STARTING = 90, -+ CPUHP_AP_RCUTREE_DYING = 91, -+ CPUHP_AP_CPU_PM_STARTING = 92, -+ CPUHP_AP_IRQ_GIC_STARTING = 93, -+ CPUHP_AP_IRQ_HIP04_STARTING = 94, -+ CPUHP_AP_IRQ_APPLE_AIC_STARTING = 95, -+ CPUHP_AP_IRQ_ARMADA_XP_STARTING = 96, -+ CPUHP_AP_IRQ_BCM2836_STARTING = 97, -+ CPUHP_AP_IRQ_MIPS_GIC_STARTING = 98, -+ CPUHP_AP_IRQ_RISCV_STARTING = 99, -+ CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 100, -+ CPUHP_AP_ARM_MVEBU_COHERENCY = 101, -+ CPUHP_AP_MICROCODE_LOADER = 102, -+ CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 103, -+ CPUHP_AP_PERF_X86_STARTING = 104, -+ CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 105, -+ CPUHP_AP_PERF_X86_CQM_STARTING = 106, -+ CPUHP_AP_PERF_X86_CSTATE_STARTING = 107, -+ CPUHP_AP_PERF_XTENSA_STARTING = 108, -+ CPUHP_AP_MIPS_OP_LOONGSON3_STARTING = 109, -+ CPUHP_AP_ARM_SDEI_STARTING = 110, -+ CPUHP_AP_ARM_VFP_STARTING = 111, -+ CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 112, -+ CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 113, -+ CPUHP_AP_PERF_ARM_ACPI_STARTING = 114, -+ CPUHP_AP_PERF_ARM_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_GLOBAL_TIMER_STARTING = 119, -+ CPUHP_AP_JCORE_TIMER_STARTING = 120, -+ CPUHP_AP_ARM_TWD_STARTING = 121, -+ CPUHP_AP_QCOM_TIMER_STARTING = 122, -+ CPUHP_AP_TEGRA_TIMER_STARTING = 123, -+ CPUHP_AP_ARMADA_TIMER_STARTING = 124, -+ CPUHP_AP_MARCO_TIMER_STARTING = 125, -+ CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, -+ CPUHP_AP_ARC_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_KVM_STARTING = 133, -+ CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING = 134, -+ CPUHP_AP_KVM_ARM_VGIC_STARTING = 135, -+ CPUHP_AP_KVM_ARM_TIMER_STARTING = 136, -+ CPUHP_AP_DUMMY_TIMER_STARTING = 137, -+ CPUHP_AP_ARM_XEN_STARTING = 138, -+ CPUHP_AP_ARM_CORESIGHT_STARTING = 139, -+ CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 140, -+ CPUHP_AP_ARM64_ISNDEP_STARTING = 141, -+ CPUHP_AP_SMPCFD_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_SCHED_WAIT_EMPTY = 148, -+ CPUHP_AP_SMPBOOT_THREADS = 149, -+ CPUHP_AP_X86_VDSO_VMA_ONLINE = 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_X86_RAPL_ONLINE = 160, -+ CPUHP_AP_PERF_X86_CQM_ONLINE = 161, -+ CPUHP_AP_PERF_X86_CSTATE_ONLINE = 162, -+ CPUHP_AP_PERF_X86_IDXD_ONLINE = 163, -+ CPUHP_AP_PERF_S390_CF_ONLINE = 164, -+ CPUHP_AP_PERF_S390_SF_ONLINE = 165, -+ CPUHP_AP_PERF_ARM_CCI_ONLINE = 166, -+ CPUHP_AP_PERF_ARM_CCN_ONLINE = 167, -+ CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 168, -+ CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 169, -+ CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 170, -+ CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 171, -+ CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 172, -+ CPUHP_AP_PERF_ARM_L2X0_ONLINE = 173, -+ CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 174, -+ CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 175, -+ CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 176, -+ CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 177, -+ CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 178, -+ CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 179, -+ CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 180, -+ CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 181, -+ CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 182, -+ CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 183, -+ CPUHP_AP_PERF_CSKY_ONLINE = 184, -+ CPUHP_AP_WATCHDOG_ONLINE = 185, -+ CPUHP_AP_WORKQUEUE_ONLINE = 186, -+ CPUHP_AP_RCUTREE_ONLINE = 187, -+ CPUHP_AP_BASE_CACHEINFO_ONLINE = 188, -+ CPUHP_AP_ONLINE_DYN = 189, -+ CPUHP_AP_ONLINE_DYN_END = 219, -+ CPUHP_AP_X86_HPET_ONLINE = 220, -+ CPUHP_AP_X86_KVM_CLK_ONLINE = 221, -+ CPUHP_AP_DTPM_CPU_ONLINE = 222, -+ CPUHP_AP_ACTIVE = 223, -+ CPUHP_ONLINE = 224, -+}; -+ -+struct ring_buffer_event { -+ u32 type_len: 5; -+ u32 time_delta: 27; -+ u32 array[0]; -+}; -+ -+struct seq_buf { -+ char *buffer; -+ size_t size; -+ size_t len; -+ loff_t readpos; -+}; -+ -+struct trace_seq { -+ char buffer[65536]; -+ struct seq_buf seq; -+ int full; -+}; -+ -+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; -+}; -+ -+struct irq_chip; -+ -+struct irq_data { -+ u32 mask; -+ unsigned int irq; -+ long unsigned int hwirq; -+ struct irq_common_data *common; -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ struct irq_data *parent_data; -+ void *chip_data; -+}; -+ -+struct irqaction; -+ -+struct irq_affinity_notify; -+ -+struct proc_dir_entry; -+ -+struct irq_desc { -+ struct irq_common_data irq_common_data; -+ struct irq_data irq_data; -+ unsigned int *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; -+ 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 pci_bus; -+ -+struct eeh_pe { -+ int type; -+ int state; -+ int addr; -+ struct pci_controller *phb; -+ struct pci_bus *bus; -+ int check_count; -+ int freeze_count; -+ time64_t tstamp; -+ int false_positives; -+ atomic_t pass_dev_cnt; -+ struct eeh_pe *parent; -+ void *data; -+ struct list_head child_list; -+ struct list_head child; -+ struct list_head edevs; -+ long unsigned int stack_trace[64]; -+ int trace_entries; -+}; -+ -+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 (*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 *); -+ 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[8]; -+}; -+ -+enum irqchip_irq_state { -+ IRQCHIP_STATE_PENDING = 0, -+ IRQCHIP_STATE_ACTIVE = 1, -+ IRQCHIP_STATE_MASKED = 2, -+ IRQCHIP_STATE_LINE_LEVEL = 3, -+}; -+ -+struct msi_msg; -+ -+struct irq_chip { -+ struct device *parent_device; -+ 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_cpu_online)(struct irq_data *); -+ void (*irq_cpu_offline)(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; -+}; -+ -+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; -+ long unsigned int polarity; -+}; -+ -+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 type_cache; -+ u32 polarity_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; -+ struct irq_chip_generic *gc[0]; -+}; -+ -+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_rsvd: 21; -+ }; -+}; -+ -+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 reserved: 40; -+}; -+ -+union perf_sample_weight { -+ __u64 full; -+ struct { -+ __u32 var1_dw; -+ __u16 var2_w; -+ __u16 var3_w; -+ }; -+}; -+ -+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 cgroup_namespace { -+ struct ns_common ns; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct css_set *root_cset; -+}; -+ -+struct nsset { -+ unsigned int flags; -+ struct nsproxy *nsproxy; -+ struct fs_struct *fs; -+ const struct cred *cred; -+}; -+ -+struct ftrace_regs { -+ struct pt_regs regs; -+}; -+ -+struct perf_regs { -+ __u64 abi; -+ struct pt_regs *regs; -+}; -+ -+struct u64_stats_sync {}; -+ -+struct bpf_cgroup_storage_key { -+ __u64 cgroup_inode_id; -+ __u32 attach_type; -+}; -+ -+struct bpf_cgroup_storage; -+ -+struct bpf_prog_array_item { -+ struct bpf_prog *prog; -+ struct bpf_cgroup_storage *cgroup_storage[2]; -+}; -+ -+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_prog_array { -+ struct callback_head rcu; -+ struct bpf_prog_array_item items[0]; -+}; -+ -+struct bpf_storage_buffer { -+ struct callback_head rcu; -+ char data[0]; -+}; -+ -+struct psi_group_cpu { -+ seqcount_t seq; -+ unsigned int tasks[4]; -+ u32 state_mask; -+ u32 times[7]; -+ u64 state_start; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 times_prev[14]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_rstat_flush)(struct cgroup_subsys_state *, int); -+ int (*css_extra_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)(); -+ 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 *updated_children; -+ struct cgroup *updated_next; -+}; -+ -+struct cgroup_root { -+ struct kernfs_root *kf_root; -+ unsigned int subsys_mask; -+ int hierarchy_id; -+ struct cgroup cgrp; -+ u64 cgrp_ancestor_id_storage; -+ atomic_t nr_cgrps; -+ struct list_head root_list; -+ unsigned int flags; -+ char release_agent_path[4096]; -+ char name[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 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_context { -+ struct perf_event_context ctx; -+ struct perf_event_context *task_ctx; -+ int active_oncpu; -+ int exclusive; -+ raw_spinlock_t hrtimer_lock; -+ struct hrtimer hrtimer; -+ ktime_t hrtimer_interval; -+ unsigned int hrtimer_active; -+ struct perf_cgroup *cgrp; -+ struct list_head cgrp_cpuctx_entry; -+ struct list_head sched_cb_entry; -+ int sched_cb_usage; -+ int online; -+ int heap_size; -+ struct perf_event **heap; -+ struct perf_event *heap_default[2]; -+}; -+ -+struct perf_output_handle { -+ struct perf_event *event; -+ struct perf_buffer *rb; -+ long unsigned int wakeup; -+ long unsigned int size; -+ u64 aux_flags; -+ 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 addr; -+ struct perf_raw_record *raw; -+ struct perf_branch_stack *br_stack; -+ u64 period; -+ union perf_sample_weight weight; -+ u64 txn; -+ union perf_mem_data_src data_src; -+ u64 type; -+ u64 ip; -+ struct { -+ u32 pid; -+ u32 tid; -+ } tid_entry; -+ u64 time; -+ u64 id; -+ u64 stream_id; -+ struct { -+ u32 cpu; -+ u32 reserved; -+ } cpu_entry; -+ struct perf_callchain_entry *callchain; -+ u64 aux_size; -+ struct perf_regs regs_user; -+ struct perf_regs regs_intr; -+ u64 stack_user_size; -+ u64 phys_addr; -+ u64 cgroup; -+ u64 data_page_size; -+ u64 code_page_size; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+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; -+ struct trace_seq tmp_seq; -+ cpumask_var_t started; -+ 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 int is_signed; -+ const int filter_type; -+ }; -+ 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 *); -+}; -+ -+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 trace_subsystem_dir; -+ -+struct trace_event_file { -+ struct list_head list; -+ struct trace_event_call *event_call; -+ struct event_filter *filter; -+ struct dentry *dir; -+ struct trace_array *tr; -+ struct trace_subsystem_dir *system; -+ struct list_head triggers; -+ long unsigned int flags; -+ atomic_t sm_ref; -+ atomic_t tm_ref; -+}; -+ -+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_KPROBE_BIT = 5, -+ TRACE_EVENT_FL_UPROBE_BIT = 6, -+}; -+ -+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_KPROBE = 32, -+ TRACE_EVENT_FL_UPROBE = 64, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ FILTER_OTHER = 0, -+ FILTER_STATIC_STRING = 1, -+ FILTER_DYN_STRING = 2, -+ FILTER_PTR_STRING = 3, -+ FILTER_TRACE_FN = 4, -+ FILTER_COMM = 5, -+ FILTER_CPU = 6, -+}; -+ -+struct property { -+ char *name; -+ int length; -+ void *value; -+ struct property *next; -+ long unsigned int _flags; -+ struct bin_attribute attr; -+}; -+ -+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 xbc_node { -+ u16 next; -+ u16 child; -+ u16 parent; -+ u16 data; -+}; -+ -+enum wb_stat_item { -+ WB_RECLAIMABLE = 0, -+ WB_WRITEBACK = 1, -+ WB_DIRTIED = 2, -+ WB_WRITTEN = 3, -+ NR_WB_STAT_ITEMS = 4, -+}; -+ -+struct block_device_operations; -+ -+struct timer_rand_state; -+ -+struct disk_events; -+ -+struct cdrom_device_info; -+ -+struct badblocks; -+ -+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; -+ int flags; -+ long unsigned int state; -+ struct mutex open_mutex; -+ unsigned int open_partitions; -+ struct kobject *slave_dir; -+ struct timer_rand_state *random; -+ atomic_t sync_io; -+ struct disk_events *ev; -+ struct kobject integrity_kobj; -+ struct cdrom_device_info *cdi; -+ int node_id; -+ struct badblocks *bb; -+ struct lockdep_map lockdep_map; -+}; -+ -+struct partition_meta_info { -+ char uuid[37]; -+ u8 volname[64]; -+}; -+ -+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; -+ struct bvec_iter bio_iter; -+ struct work_struct bip_work; -+ struct bio_vec *bip_vec; -+ struct bio_vec bip_inline_vecs[0]; -+}; -+ -+struct blkg_iostat { -+ u64 bytes[3]; -+ u64 ios[3]; -+}; -+ -+struct blkg_iostat_set { -+ struct u64_stats_sync sync; -+ 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; -+ struct work_struct async_bio_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 unsigned int blk_qc_t; -+ -+struct blk_integrity_iter; -+ -+typedef blk_status_t integrity_processing_fn(struct blk_integrity_iter *); -+ -+typedef void integrity_prepare_fn(struct request *); -+ -+typedef void integrity_complete_fn(struct request *, unsigned int); -+ -+struct blk_integrity_profile { -+ integrity_processing_fn *generate_fn; -+ integrity_processing_fn *verify_fn; -+ integrity_prepare_fn *prepare_fn; -+ integrity_complete_fn *complete_fn; -+ const char *name; -+}; -+ -+struct blk_zone; -+ -+typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); -+ -+struct hd_geometry; -+ -+struct pr_ops; -+ -+struct block_device_operations { -+ blk_qc_t (*submit_bio)(struct bio *); -+ int (*open)(struct block_device *, fmode_t); -+ void (*release)(struct gendisk *, fmode_t); -+ int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); -+ int (*ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct block_device *, fmode_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 (*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 *); -+ struct module *owner; -+ const struct pr_ops *pr_ops; -+}; -+ -+struct iovec { -+ void *iov_base; -+ __kernel_size_t iov_len; -+}; -+ -+struct kvec { -+ void *iov_base; -+ size_t iov_len; -+}; -+ -+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; -+}; -+ -+struct bsg_ops { -+ int (*check_proto)(struct sg_io_v4 *); -+ int (*fill_hdr)(struct request *, struct sg_io_v4 *, fmode_t); -+ int (*complete_rq)(struct request *, struct sg_io_v4 *); -+ void (*free_rq)(struct request *); -+}; -+ -+typedef __u32 req_flags_t; -+ -+typedef void rq_end_io_fn(struct request *, blk_status_t); -+ -+enum mq_rq_state { -+ MQ_RQ_IDLE = 0, -+ MQ_RQ_IN_FLIGHT = 1, -+ MQ_RQ_COMPLETE = 2, -+}; -+ -+struct request { -+ struct request_queue *q; -+ struct blk_mq_ctx *mq_ctx; -+ struct blk_mq_hw_ctx *mq_hctx; -+ unsigned int cmd_flags; -+ req_flags_t rq_flags; -+ int tag; -+ int internal_tag; -+ unsigned int __data_len; -+ sector_t __sector; -+ struct bio *bio; -+ struct bio *biotail; -+ struct list_head queuelist; -+ union { -+ struct hlist_node hash; -+ struct llist_node ipi_list; -+ }; -+ union { -+ struct rb_node rb_node; -+ struct bio_vec special_vec; -+ void *completion_data; -+ int error_count; -+ }; -+ union { -+ struct { -+ struct io_cq *icq; -+ void *priv[2]; -+ } elv; -+ struct { -+ unsigned int seq; -+ struct list_head list; -+ rq_end_io_fn *saved_end_io; -+ } flush; -+ }; -+ struct gendisk *rq_disk; -+ struct block_device *part; -+ 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; -+ short unsigned int write_hint; -+ short unsigned int ioprio; -+ enum mq_rq_state state; -+ refcount_t ref; -+ unsigned int timeout; -+ long unsigned int deadline; -+ union { -+ struct __call_single_data csd; -+ u64 fifo_time; -+ }; -+ rq_end_io_fn *end_io; -+ void *end_io_data; -+}; -+ -+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]; -+}; -+ -+struct sbitmap_word { -+ long unsigned int depth; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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 word; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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 cleared; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 sbq_wait_state { -+ atomic_t wait_cnt; -+ wait_queue_head_t wait; -+ 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 elv_merge { -+ ELEVATOR_NO_MERGE = 0, -+ ELEVATOR_FRONT_MERGE = 1, -+ ELEVATOR_BACK_MERGE = 2, -+ ELEVATOR_DISCARD_MERGE = 3, -+}; -+ -+struct elevator_type; -+ -+struct blk_mq_alloc_data; -+ -+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)(unsigned int, 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 *, bool); -+ 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 blk_mq_debugfs_attr; -+ -+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; -+ const unsigned int elevator_features; -+ 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 elevator_queue { -+ struct elevator_type *type; -+ void *elevator_data; -+ struct kobject kobj; -+ struct mutex sysfs_lock; -+ unsigned int registered: 1; -+ struct hlist_head hash[64]; -+}; -+ -+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 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 blk_eh_timer_return { -+ BLK_EH_DONE = 0, -+ BLK_EH_RESET_TIMER = 1, -+}; -+ -+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 *); -+ 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 *, bool); -+ int (*poll)(struct blk_mq_hw_ctx *); -+ 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 (*initialize_rq_fn)(struct request *); -+ void (*cleanup_rq)(struct request *); -+ bool (*busy)(struct request_queue *); -+ int (*map_queues)(struct blk_mq_tag_set *); -+ void (*show_rq)(struct seq_file *, struct request *); -+}; -+ -+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; -+}; -+ -+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_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); -+}; -+ -+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; -+ 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; -+ char fc_app_id[129]; -+ struct list_head cgwb_list; -+}; -+ -+struct blkcg_policy_data { -+ struct blkcg *blkcg; -+ int plid; -+}; -+ -+struct blkg_policy_data { -+ struct blkcg_gq *blkg; -+ int plid; -+}; -+ -+enum memcg_stat_item { -+ MEMCG_SWAP = 39, -+ MEMCG_SOCK = 40, -+ MEMCG_PERCPU_B = 41, -+ MEMCG_NR_STAT = 42, -+}; -+ -+enum memcg_memory_event { -+ MEMCG_LOW = 0, -+ MEMCG_HIGH = 1, -+ MEMCG_MAX = 2, -+ MEMCG_OOM = 3, -+ MEMCG_OOM_KILL = 4, -+ MEMCG_SWAP_HIGH = 5, -+ MEMCG_SWAP_MAX = 6, -+ MEMCG_SWAP_FAIL = 7, -+ MEMCG_NR_MEMORY_EVENTS = 8, -+}; -+ -+enum mem_cgroup_events_target { -+ MEM_CGROUP_TARGET_THRESH = 0, -+ MEM_CGROUP_TARGET_SOFTLIMIT = 1, -+ MEM_CGROUP_NTARGETS = 2, -+}; -+ -+struct memcg_vmstats_percpu { -+ long int state[42]; -+ long unsigned int events[91]; -+ long int state_prev[42]; -+ long unsigned int events_prev[91]; -+ long unsigned int nr_page_events; -+ long unsigned int targets[2]; -+}; -+ -+struct mem_cgroup_reclaim_iter { -+ struct mem_cgroup *position; -+ unsigned int generation; -+}; -+ -+struct lruvec_stat { -+ long int count[39]; -+}; -+ -+struct batched_lruvec_stat { -+ s32 count[39]; -+}; -+ -+struct shrinker_info { -+ struct callback_head rcu; -+ atomic_long_t *nr_deferred; -+ long unsigned int *map; -+}; -+ -+struct mem_cgroup_per_node { -+ struct lruvec lruvec; -+ struct lruvec_stat *lruvec_stat_local; -+ struct batched_lruvec_stat *lruvec_stat_cpu; -+ atomic_long_t lruvec_stat[39]; -+ long unsigned int lru_zone_size[15]; -+ struct mem_cgroup_reclaim_iter iter; -+ struct shrinker_info *shrinker_info; -+ struct rb_node tree_node; -+ long unsigned int usage_in_excess; -+ bool on_tree; -+ struct mem_cgroup *memcg; -+}; -+ -+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]; -+}; -+ -+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; -+ }; -+}; -+ -+struct percpu_cluster { -+ struct swap_cluster_info index; -+ unsigned int next; -+}; -+ -+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; -+ }; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+typedef __u16 __le16; -+ -+typedef __u32 __wsum; -+ -+typedef unsigned int slab_flags_t; -+ -+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; -+}; -+ -+struct raw_notifier_head { -+ struct notifier_block *head; -+}; -+ -+struct page_pool_params { -+ unsigned int flags; -+ unsigned int order; -+ unsigned int pool_size; -+ int nid; -+ struct device *dev; -+ enum dma_data_direction dma_dir; -+ unsigned int max_len; -+ unsigned int offset; -+}; -+ -+struct pp_alloc_cache { -+ u32 count; -+ struct page *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; -+ long: 64; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct page_pool { -+ struct page_pool_params p; -+ struct delayed_work release_dw; -+ void (*disconnect)(void *); -+ long unsigned int defer_start; -+ long unsigned int defer_warn; -+ u32 pages_state_hold_cnt; -+ long: 32; -+ 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 pp_alloc_cache alloc; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 ptr_ring ring; -+ atomic_t pages_state_release_cnt; -+ refcount_t user_cnt; -+ u64 destroy_cnt; -+ long: 64; -+ long: 64; -+ 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 rhash_head { -+ struct rhash_head *next; -+}; -+ -+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; -+}; -+ -+struct fs_struct { -+ int users; -+ spinlock_t lock; -+ seqcount_spinlock_t seq; -+ int umask; -+ int in_exec; -+ struct path root; -+ struct path pwd; -+}; -+ -+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; -+ unsigned int head; -+ unsigned int tail; -+ unsigned int max_usage; -+ unsigned int ring_size; -+ bool note_loss; -+ unsigned int nr_accounted; -+ unsigned int readers; -+ unsigned int writers; -+ unsigned int files; -+ unsigned int r_counter; -+ unsigned int w_counter; -+ unsigned int 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 watch_queue *watch_queue; -+}; -+ -+typedef __u64 __addrpair; -+ -+typedef __u32 __portpair; -+ -+typedef struct { -+ struct net *net; -+} possible_net_t; -+ -+struct in6_addr { -+ union { -+ __u8 u6_addr8[16]; -+ __be16 u6_addr16[8]; -+ __be32 u6_addr32[4]; -+ } in6_u; -+}; -+ -+struct hlist_nulls_node { -+ struct hlist_nulls_node *next; -+ struct hlist_nulls_node **pprev; -+}; -+ -+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; -+ }; -+}; -+ -+typedef struct { -+ spinlock_t slock; -+ int owned; -+ wait_queue_head_t wq; -+} socket_lock_t; -+ -+struct sk_buff; -+ -+struct sk_buff_head { -+ struct sk_buff *next; -+ struct sk_buff *prev; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+typedef u64 netdev_features_t; -+ -+struct sock_cgroup_data { -+ union { -+ struct { -+ u8 is_data: 1; -+ u8 no_refcnt: 1; -+ u8 unused: 6; -+ u8 padding; -+ u16 prioidx; -+ u32 classid; -+ }; -+ u64 val; -+ }; -+}; -+ -+struct sk_filter; -+ -+struct socket_wq; -+ -+struct xfrm_policy; -+ -+struct dst_entry; -+ -+struct socket; -+ -+struct net_device; -+ -+struct sock_reuseport; -+ -+struct sock { -+ struct sock_common __sk_common; -+ socket_lock_t sk_lock; -+ atomic_t sk_drops; -+ int sk_rcvlowat; -+ struct sk_buff_head sk_error_queue; -+ struct sk_buff *sk_rx_skb_cache; -+ struct sk_buff_head sk_receive_queue; -+ struct { -+ atomic_t rmem_alloc; -+ int len; -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ } sk_backlog; -+ int sk_forward_alloc; -+ unsigned int sk_ll_usec; -+ unsigned int sk_napi_id; -+ int sk_rcvbuf; -+ struct sk_filter *sk_filter; -+ union { -+ struct socket_wq *sk_wq; -+ struct socket_wq *sk_wq_raw; -+ }; -+ struct xfrm_policy *sk_policy[2]; -+ struct dst_entry *sk_rx_dst; -+ struct dst_entry *sk_dst_cache; -+ 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 *sk_tx_skb_cache; -+ struct sk_buff_head sk_write_queue; -+ __s32 sk_peek_off; -+ int sk_write_pending; -+ __u32 sk_dst_pending_confirm; -+ u32 sk_pacing_status; -+ long int sk_sndtimeo; -+ struct timer_list sk_timer; -+ __u32 sk_priority; -+ __u32 sk_mark; -+ long unsigned int sk_pacing_rate; -+ long unsigned int sk_max_pacing_rate; -+ struct page_frag sk_frag; -+ netdev_features_t sk_route_caps; -+ netdev_features_t sk_route_nocaps; -+ netdev_features_t sk_route_forced_caps; -+ int sk_gso_type; -+ unsigned int sk_gso_max_size; -+ gfp_t sk_allocation; -+ __u32 sk_txhash; -+ u8 sk_padding: 1; -+ u8 sk_kern_sock: 1; -+ u8 sk_no_check_tx: 1; -+ u8 sk_no_check_rx: 1; -+ u8 sk_userlocks: 4; -+ u8 sk_pacing_shift; -+ u16 sk_type; -+ u16 sk_protocol; -+ u16 sk_gso_max_segs; -+ long unsigned int sk_lingertime; -+ struct proto *sk_prot_creator; -+ rwlock_t sk_callback_lock; -+ int sk_err; -+ int sk_err_soft; -+ u32 sk_ack_backlog; -+ u32 sk_max_ack_backlog; -+ kuid_t sk_uid; -+ u8 sk_prefer_busy_poll; -+ u16 sk_busy_poll_budget; -+ struct pid *sk_peer_pid; -+ const struct cred *sk_peer_cred; -+ long int sk_rcvtimeo; -+ ktime_t sk_stamp; -+ u16 sk_tsflags; -+ int sk_bind_phc; -+ u8 sk_shutdown; -+ u32 sk_tskey; -+ atomic_t sk_zckey; -+ u8 sk_clockid; -+ u8 sk_txtime_deadline_mode: 1; -+ u8 sk_txtime_report_errors: 1; -+ u8 sk_txtime_unused: 6; -+ struct socket *sk_socket; -+ void *sk_user_data; -+ void *sk_security; -+ struct sock_cgroup_data sk_cgrp_data; -+ struct mem_cgroup *sk_memcg; -+ void (*sk_state_change)(struct sock *); -+ void (*sk_data_ready)(struct sock *); -+ void (*sk_write_space)(struct sock *); -+ void (*sk_error_report)(struct sock *); -+ int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); -+ struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, 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; -+}; -+ -+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_cc[19]; -+ cc_t c_line; -+ 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_operations; -+ -+struct tty_ldisc; -+ -+struct tty_port; -+ -+struct tty_struct { -+ int magic; -+ struct kref kref; -+ struct device *dev; -+ struct tty_driver *driver; -+ const struct tty_operations *ops; -+ int index; -+ struct ld_semaphore ldisc_sem; -+ struct tty_ldisc *ldisc; -+ 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; -+ struct winsize winsize; -+ struct { -+ spinlock_t lock; -+ bool stopped; -+ bool tco_stopped; -+ long unsigned int unused[0]; -+ } flow; -+ struct { -+ spinlock_t lock; -+ struct pid *pgrp; -+ struct pid *session; -+ unsigned char pktstatus; -+ bool packet; -+ long unsigned int unused[0]; -+ } ctrl; -+ int hw_stopped; -+ unsigned int receive_room; -+ 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; -+ struct list_head tty_files; -+ int closing; -+ unsigned char *write_buf; -+ int write_cnt; -+ struct work_struct SAK_work; -+ struct tty_port *port; -+}; -+ -+typedef struct { -+ size_t written; -+ size_t count; -+ union { -+ char *buf; -+ void *data; -+ } arg; -+ int error; -+} read_descriptor_t; -+ -+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]; -+}; -+ -+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 *); -+ int (*write)(struct tty_struct *, const unsigned char *, int); -+ int (*put_char)(struct tty_struct *, unsigned char); -+ 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 *, 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 *); -+ void (*set_ldisc)(struct tty_struct *); -+ void (*wait_until_sent)(struct tty_struct *, int); -+ void (*send_xchar)(struct tty_struct *, char); -+ 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 { -+ int magic; -+ 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; -+ }; -+ int used; -+ int size; -+ int commit; -+ int read; -+ int flags; -+ long unsigned int 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 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; -+ unsigned char *xmit_buf; -+ 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 flags; -+ int (*open)(struct tty_struct *); -+ void (*close)(struct tty_struct *); -+ void (*flush_buffer)(struct tty_struct *); -+ ssize_t (*read)(struct tty_struct *, struct file *, unsigned char *, size_t, void **, long unsigned int); -+ ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t); -+ int (*ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct ktermios *); -+ __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); -+ int (*hangup)(struct tty_struct *); -+ void (*receive_buf)(struct tty_struct *, const unsigned char *, const char *, int); -+ void (*write_wakeup)(struct tty_struct *); -+ void (*dcd_change)(struct tty_struct *, unsigned int); -+ int (*receive_buf2)(struct tty_struct *, const unsigned char *, const char *, int); -+ struct module *owner; -+}; -+ -+struct tty_ldisc { -+ struct tty_ldisc_ops *ops; -+ struct tty_struct *tty; -+}; -+ -+struct tty_port_operations { -+ int (*carrier_raised)(struct tty_port *); -+ void (*dtr_rts)(struct tty_port *, int); -+ void (*shutdown)(struct tty_port *); -+ int (*activate)(struct tty_port *, struct tty_struct *); -+ void (*destruct)(struct tty_port *); -+}; -+ -+struct tty_port_client_operations { -+ int (*receive_buf)(struct tty_port *, const unsigned char *, const unsigned char *, size_t); -+ void (*write_wakeup)(struct tty_port *); -+}; -+ -+struct prot_inuse; -+ -+struct netns_core { -+ struct ctl_table_header *sysctl_hdr; -+ int sysctl_somaxconn; -+ int *sock_inuse; -+ struct prot_inuse *prot_inuse; -+}; -+ -+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 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 netns_unix { -+ 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 { -+ atomic_t tw_count; -+ char tw_pad[124]; -+ struct inet_hashinfo *hashinfo; -+ int sysctl_max_tw_buckets; -+}; -+ -+struct local_ports { -+ seqlock_t lock; -+ int range[2]; -+ bool warned; -+}; -+ -+struct ping_group_range { -+ seqlock_t lock; -+ kgid_t range[2]; -+}; -+ -+typedef struct { -+ u64 key[2]; -+} siphash_key_t; -+ -+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 { -+ struct inet_timewait_death_row tcp_death_row; -+ 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; -+ int fib_num_tclassid_users; -+ struct hlist_head *fib_table_hash; -+ struct sock *fibnl; -+ struct sock **icmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct inet_peer_base *peers; -+ struct sock **tcp_sk; -+ 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; -+ 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_use_pmtu; -+ u8 sysctl_ip_fwd_update_priority; -+ u8 sysctl_ip_nonlocal_bind; -+ u8 sysctl_ip_autobind_reuse; -+ u8 sysctl_ip_dynaddr; -+ u8 sysctl_ip_early_demux; -+ u8 sysctl_raw_l3mdev_accept; -+ u8 sysctl_tcp_early_demux; -+ 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_min_snd_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; -+ int sysctl_tcp_reordering; -+ u8 sysctl_tcp_retries1; -+ u8 sysctl_tcp_retries2; -+ u8 sysctl_tcp_orphan_retries; -+ u8 sysctl_tcp_tw_reuse; -+ int sysctl_tcp_fin_timeout; -+ unsigned int sysctl_tcp_notsent_lowat; -+ u8 sysctl_tcp_sack; -+ u8 sysctl_tcp_window_scaling; -+ u8 sysctl_tcp_timestamps; -+ u8 sysctl_tcp_early_retrans; -+ 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_moderate_rcvbuf; -+ u8 sysctl_tcp_tso_win_divisor; -+ u8 sysctl_tcp_workaround_signed_windows; -+ int sysctl_tcp_limit_output_bytes; -+ int sysctl_tcp_challenge_ack_limit; -+ int sysctl_tcp_min_rtt_wlen; -+ u8 sysctl_tcp_min_tso_segs; -+ u8 sysctl_tcp_autocorking; -+ u8 sysctl_tcp_reflect_tos; -+ u8 sysctl_tcp_comp_sack_nr; -+ int sysctl_tcp_invalid_ratelimit; -+ int sysctl_tcp_pacing_ss_ratio; -+ int sysctl_tcp_pacing_ca_ratio; -+ int sysctl_tcp_wmem[3]; -+ int sysctl_tcp_rmem[3]; -+ 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; -+ spinlock_t tcp_fastopen_ctx_lock; -+ unsigned int sysctl_tcp_fastopen_blackhole_timeout; -+ atomic_t tfo_active_disable_times; -+ long unsigned int tfo_active_disable_stamp; -+ int sysctl_udp_wmem_min; -+ int sysctl_udp_rmem_min; -+ u8 sysctl_fib_notify_on_flag_change; -+ 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; -+ long unsigned int *sysctl_local_reserved_ports; -+ int sysctl_ip_prot_sock; -+ struct list_head mr_tables; -+ struct fib_rules_ops *mr_rules_ops; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct neighbour; -+ -+struct dst_ops { -+ short unsigned int family; -+ unsigned int gc_thresh; -+ int (*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 *, int); -+ struct dst_entry * (*negative_advice)(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; -+ long: 64; -+ 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; -+ bool skip_notify_on_dev_down; -+ u8 fib_notify_on_flag_change; -+}; -+ -+struct ipv6_devconf; -+ -+struct fib6_info; -+ -+struct rt6_info; -+ -+struct rt6_statistics; -+ -+struct fib6_table; -+ -+struct seg6_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; -+ unsigned int ip6_rt_gc_expire; -+ long unsigned int ip6_rt_last_gc; -+ unsigned int fib6_rules_require_fldissect; -+ bool fib6_has_custom_rules; -+ 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 **icmp_sk; -+ struct sock *ndisc_sk; -+ struct sock *tcp_sk; -+ struct sock *igmp_sk; -+ struct sock *mc_autojoin_sk; -+ 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; -+ long: 64; -+ 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; -+}; -+ -+struct nf_queue_handler; -+ -+struct nf_logger; -+ -+struct nf_hook_entries; -+ -+struct netns_nf { -+ struct proc_dir_entry *proc_netfilter; -+ const struct nf_queue_handler *queue_handler; -+ const struct nf_logger *nf_loggers[13]; -+ struct ctl_table_header *nf_log_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]; -+}; -+ -+struct netns_xt { -+ bool notrack_deprecated_warning; -+ bool clusterip_deprecated_warning; -+}; -+ -+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_dccp_net { -+ u8 dccp_loose; -+ unsigned int dccp_timeout[10]; -+}; -+ -+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_dccp_net dccp; -+ struct nf_sctp_net sctp; -+ struct nf_gre_net gre; -+}; -+ -+struct ct_pcpu; -+ -+struct ip_conntrack_stat; -+ -+struct nf_ct_event_notifier; -+ -+struct nf_exp_event_notifier; -+ -+struct netns_ct { -+ bool ecache_dwork_pending; -+ u8 sysctl_log_invalid; -+ u8 sysctl_events; -+ u8 sysctl_acct; -+ u8 sysctl_auto_assign_helper; -+ u8 sysctl_tstamp; -+ u8 sysctl_checksum; -+ struct ct_pcpu *pcpu_lists; -+ struct ip_conntrack_stat *stat; -+ struct nf_ct_event_notifier *nf_conntrack_event_cb; -+ struct nf_exp_event_notifier *nf_expect_event_cb; -+ struct nf_ip_net nf_ct_proto; -+ unsigned int labels_used; -+}; -+ -+struct netns_nftables { -+ 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; -+ 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; -+ struct hlist_head policy_inexact[3]; -+ 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; -+ struct ctl_table_header *sysctl_hdr; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 uevent_sock; -+ -+struct net_generic; -+ -+struct net { -+ refcount_t passive; -+ spinlock_t rules_mod_lock; -+ unsigned int dev_unreg_count; -+ unsigned int dev_base_seq; -+ int ifindex; -+ spinlock_t nsid_lock; -+ atomic_t fnhe_genid; -+ struct list_head list; -+ struct list_head exit_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 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 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; -+ struct netns_ipv4 ipv4; -+ struct netns_ipv6 ipv6; -+ struct netns_ieee802154_lowpan ieee802154_lowpan; -+ struct netns_sctp sctp; -+ struct netns_nf nf; -+ struct netns_xt xt; -+ 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; -+ 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_can can; -+ struct netns_xdp xdp; -+ struct sock *crypto_nlsk; -+ struct sock *diag_nlsk; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct { -+ local64_t v; -+} u64_stats_t; -+ -+struct bpf_insn { -+ __u8 code; -+ __u8 dst_reg: 4; -+ __u8 src_reg: 4; -+ __s16 off; -+ __s32 imm; -+}; -+ -+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, -+ BPF_MAP_TYPE_TASK_STORAGE = 29, -+}; -+ -+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, -+}; -+ -+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, -+ __MAX_BPF_ATTACH_TYPE = 41, -+}; -+ -+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; -+ }; -+ 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; -+ }; -+ __u64 fd_array; -+ }; -+ struct { -+ __u64 pathname; -+ __u32 bpf_fd; -+ __u32 file_flags; -+ }; -+ struct { -+ __u32 target_fd; -+ __u32 attach_bpf_fd; -+ __u32 attach_type; -+ __u32 attach_flags; -+ __u32 replace_bpf_fd; -+ }; -+ 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; -+ } 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 { -+ __u32 target_fd; -+ __u32 attach_type; -+ __u32 query_flags; -+ __u32 attach_flags; -+ __u64 prog_ids; -+ __u32 prog_cnt; -+ } query; -+ struct { -+ __u64 name; -+ __u32 prog_fd; -+ } raw_tracepoint; -+ struct { -+ __u64 btf; -+ __u64 btf_log_buf; -+ __u32 btf_size; -+ __u32 btf_log_size; -+ __u32 btf_log_level; -+ }; -+ 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 { -+ __u32 prog_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; -+ }; -+ }; -+ } link_create; -+ struct { -+ __u32 link_fd; -+ __u32 new_prog_fd; -+ __u32 flags; -+ __u32 old_prog_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 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; -+}; -+ -+typedef struct { -+ union { -+ void *kernel; -+ void *user; -+ }; -+ bool is_kernel: 1; -+} sockptr_t; -+ -+struct bpf_iter_aux_info; -+ -+typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); -+ -+struct bpf_map; -+ -+struct bpf_iter_aux_info { -+ struct bpf_map *map; -+}; -+ -+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 btf; -+ -+struct btf_type; -+ -+struct bpf_prog_aux; -+ -+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 *, 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 *); -+ int (*map_update_elem)(struct bpf_map *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_map *, void *); -+ int (*map_push_elem)(struct bpf_map *, void *, u64); -+ int (*map_pop_elem)(struct bpf_map *, void *); -+ int (*map_peek_elem)(struct bpf_map *, void *); -+ void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); -+ void (*map_fd_put_ptr)(void *); -+ 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 *); -+ 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 *); -+ int (*map_redirect)(struct bpf_map *, u32, 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 *); -+ int (*map_for_each_callback)(struct bpf_map *, void *, void *, u64); -+ const char * const map_btf_name; -+ int *map_btf_id; -+ const struct bpf_iter_seq_info *iter_seq_info; -+}; -+ -+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; -+ u32 map_flags; -+ int spin_lock_off; -+ u32 id; -+ int numa_node; -+ u32 btf_key_type_id; -+ u32 btf_value_type_id; -+ struct btf *btf; -+ struct mem_cgroup *memcg; -+ char name[16]; -+ u32 btf_vmlinux_value_type_id; -+ bool bypass_spec_v1; -+ bool frozen; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic64_t refcnt; -+ atomic64_t usercnt; -+ struct work_struct work; -+ struct mutex freeze_mutex; -+ u64 writecnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 { -+ 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 *base_btf; -+ u32 start_id; -+ u32 start_str_off; -+ char name[56]; -+ bool kernel_btf; -+}; -+ -+struct btf_type { -+ __u32 name_off; -+ __u32 info; -+ union { -+ __u32 size; -+ __u32 type; -+ }; -+}; -+ -+struct bpf_ksym { -+ long unsigned int start; -+ long unsigned int end; -+ char name[128]; -+ struct list_head lnode; -+ struct latch_tree_node tnode; -+ bool prog; -+}; -+ -+struct bpf_ctx_arg_aux; -+ -+struct bpf_trampoline; -+ -+struct bpf_jit_poke_descriptor; -+ -+struct bpf_kfunc_desc_tab; -+ -+struct bpf_prog_ops; -+ -+struct btf_mod_pair; -+ -+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 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 offload_requested; -+ bool attach_btf_trace; -+ bool func_proto_unreliable; -+ bool sleepable; -+ bool tail_call_reachable; -+ struct hlist_node tramp_hlist; -+ 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; -+ 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; -+ struct bpf_map *cgroup_storage[2]; -+ char name[16]; -+ void *security; -+ 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; -+ u32 num_exentries; -+ struct exception_table_entry *extable; -+ union { -+ struct work_struct work; -+ struct callback_head rcu; -+ }; -+}; -+ -+struct sock_filter { -+ __u16 code; -+ __u8 jt; -+ __u8 jf; -+ __u32 k; -+}; -+ -+struct bpf_prog_stats; -+ -+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 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; -+ 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; -+ struct sock_filter insns[0]; -+ struct bpf_insn insnsi[0]; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct net_device_stats { -+ long unsigned int rx_packets; -+ long unsigned int tx_packets; -+ long unsigned int rx_bytes; -+ long unsigned int tx_bytes; -+ long unsigned int rx_errors; -+ long unsigned int tx_errors; -+ long unsigned int rx_dropped; -+ long unsigned int tx_dropped; -+ long unsigned int multicast; -+ long unsigned int collisions; -+ long unsigned int rx_length_errors; -+ long unsigned int rx_over_errors; -+ long unsigned int rx_crc_errors; -+ long unsigned int rx_frame_errors; -+ long unsigned int rx_fifo_errors; -+ long unsigned int rx_missed_errors; -+ long unsigned int tx_aborted_errors; -+ long unsigned int tx_carrier_errors; -+ long unsigned int tx_fifo_errors; -+ long unsigned int tx_heartbeat_errors; -+ long unsigned int tx_window_errors; -+ long unsigned int rx_compressed; -+ long unsigned int tx_compressed; -+}; -+ -+struct netdev_hw_addr_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct tipc_bearer; -+ -+struct wireless_dev; -+ -+struct mpls_dev; -+ -+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 **); -+ -+enum netdev_ml_priv_type { -+ ML_PRIV_NONE = 0, -+ ML_PRIV_CAN = 1, -+}; -+ -+struct pcpu_dstats; -+ -+struct garp_port; -+ -+struct mrp_port; -+ -+struct netdev_tc_txq { -+ u16 count; -+ u16 offset; -+}; -+ -+struct sfp_bus; -+ -+struct macsec_ops; -+ -+struct udp_tunnel_nic; -+ -+struct bpf_xdp_link; -+ -+struct bpf_xdp_entity { -+ struct bpf_prog *prog; -+ struct bpf_xdp_link *link; -+}; -+ -+struct netdev_name_node; -+ -+struct dev_ifalias; -+ -+struct net_device_ops; -+ -+struct ethtool_ops; -+ -+struct l3mdev_ops; -+ -+struct ndisc_ops; -+ -+struct xfrmdev_ops; -+ -+struct tlsdev_ops; -+ -+struct header_ops; -+ -+struct vlan_info; -+ -+struct in_device; -+ -+struct inet6_dev; -+ -+struct wpan_dev; -+ -+struct netdev_rx_queue; -+ -+struct mini_Qdisc; -+ -+struct netdev_queue; -+ -+struct cpu_rmap; -+ -+struct Qdisc; -+ -+struct xdp_dev_bulk_queue; -+ -+struct xps_dev_maps; -+ -+struct netpoll_info; -+ -+struct pcpu_lstats; -+ -+struct pcpu_sw_netstats; -+ -+struct rtnl_link_ops; -+ -+struct dcbnl_rtnl_ops; -+ -+struct netprio_map; -+ -+struct phy_device; -+ -+struct udp_tunnel_nic_info; -+ -+struct net_device { -+ 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; -+ long unsigned int state; -+ 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 list_head ptype_specific; -+ struct { -+ struct list_head upper; -+ struct list_head lower; -+ } adj_list; -+ unsigned int flags; -+ unsigned int priv_flags; -+ const struct net_device_ops *netdev_ops; -+ int ifindex; -+ short unsigned int gflags; -+ short unsigned int hard_header_len; -+ unsigned int mtu; -+ short unsigned int needed_headroom; -+ short unsigned int needed_tailroom; -+ netdev_features_t features; -+ 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; -+ netdev_features_t gso_partial_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; -+ atomic_long_t rx_dropped; -+ atomic_long_t tx_dropped; -+ atomic_long_t rx_nohandler; -+ 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; -+ const struct header_ops *header_ops; -+ unsigned char 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; -+ short unsigned int padded; -+ spinlock_t addr_list_lock; -+ int irq; -+ 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 vlan_info *vlan_info; -+ struct tipc_bearer *tipc_ptr; -+ struct in_device *ip_ptr; -+ struct inet6_dev *ip6_ptr; -+ struct wireless_dev *ieee80211_ptr; -+ struct wpan_dev *ieee802154_ptr; -+ struct mpls_dev *mpls_ptr; -+ unsigned char *dev_addr; -+ struct netdev_rx_queue *_rx; -+ unsigned int num_rx_queues; -+ unsigned int real_num_rx_queues; -+ struct bpf_prog *xdp_prog; -+ long unsigned int gro_flush_timeout; -+ int napi_defer_hard_irqs; -+ rx_handler_func_t *rx_handler; -+ void *rx_handler_data; -+ struct mini_Qdisc *miniq_ingress; -+ 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; -+ long: 64; -+ long: 64; -+ 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 netdev_queue *_tx; -+ unsigned int num_tx_queues; -+ unsigned int real_num_tx_queues; -+ struct Qdisc *qdisc; -+ unsigned int tx_queue_len; -+ spinlock_t tx_global_lock; -+ struct xdp_dev_bulk_queue *xdp_bulkq; -+ struct xps_dev_maps *xps_maps[2]; -+ struct mini_Qdisc *miniq_egress; -+ 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 list_head link_watch_list; -+ enum { -+ NETREG_UNINITIALIZED = 0, -+ NETREG_REGISTERED = 1, -+ NETREG_UNREGISTERING = 2, -+ NETREG_UNREGISTERED = 3, -+ NETREG_RELEASED = 4, -+ NETREG_DUMMY = 5, -+ } reg_state: 8; -+ 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 *); -+ struct netpoll_info *npinfo; -+ possible_net_t nd_net; -+ void *ml_priv; -+ enum netdev_ml_priv_type ml_priv_type; -+ union { -+ struct pcpu_lstats *lstats; -+ struct pcpu_sw_netstats *tstats; -+ struct pcpu_dstats *dstats; -+ }; -+ struct garp_port *garp_port; -+ struct mrp_port *mrp_port; -+ 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; -+ unsigned int gso_max_size; -+ u16 gso_max_segs; -+ const struct dcbnl_rtnl_ops *dcbnl_ops; -+ s16 num_tc; -+ struct netdev_tc_txq tc_to_txq[16]; -+ u8 prio_tc_map[16]; -+ struct netprio_map *priomap; -+ struct phy_device *phydev; -+ struct sfp_bus *sfp_bus; -+ struct lock_class_key *qdisc_tx_busylock; -+ struct lock_class_key *qdisc_running_key; -+ bool proto_down; -+ unsigned int wol_enabled: 1; -+ unsigned int threaded: 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 bpf_xdp_entity xdp_state[3]; -+ long: 64; -+ 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 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_VALUE_OR_NULL = 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_SOCKET_OR_NULL = 12, -+ PTR_TO_SOCK_COMMON = 13, -+ PTR_TO_SOCK_COMMON_OR_NULL = 14, -+ PTR_TO_TCP_SOCK = 15, -+ PTR_TO_TCP_SOCK_OR_NULL = 16, -+ PTR_TO_TP_BUFFER = 17, -+ PTR_TO_XDP_SOCK = 18, -+ PTR_TO_BTF_ID = 19, -+ PTR_TO_BTF_ID_OR_NULL = 20, -+ PTR_TO_MEM = 21, -+ PTR_TO_MEM_OR_NULL = 22, -+ PTR_TO_RDONLY_BUF = 23, -+ PTR_TO_RDONLY_BUF_OR_NULL = 24, -+ PTR_TO_RDWR_BUF = 25, -+ PTR_TO_RDWR_BUF_OR_NULL = 26, -+ PTR_TO_PERCPU_BTF_ID = 27, -+ PTR_TO_FUNC = 28, -+ PTR_TO_MAP_KEY = 29, -+ __BPF_REG_TYPE_MAX = 30, -+}; -+ -+struct bpf_prog_ops { -+ int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -+}; -+ -+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 nr_args; -+ u8 arg_size[12]; -+}; -+ -+struct bpf_tramp_image { -+ void *image; -+ 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 mutex mutex; -+ refcount_t refcnt; -+ 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; -+ u64 selector; -+ struct module *mod; -+}; -+ -+struct bpf_func_info_aux { -+ u16 linkage; -+ bool unreliable; -+}; -+ -+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; -+ u32 btf_id; -+}; -+ -+struct btf_mod_pair { -+ struct btf *btf; -+ struct module *module; -+}; -+ -+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; -+ }; -+ union { -+ struct sock *sk; -+ int ip_defrag_offset; -+ }; -+ 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; -+ __u32 headers_start[0]; -+ __u8 __pkt_type_offset[0]; -+ __u8 pkt_type: 3; -+ __u8 ignore_df: 1; -+ __u8 nf_trace: 1; -+ __u8 ip_summed: 2; -+ __u8 ooo_okay: 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 __pkt_vlan_present_offset[0]; -+ __u8 vlan_present: 1; -+ __u8 csum_complete_sw: 1; -+ __u8 csum_level: 2; -+ __u8 csum_not_inet: 1; -+ __u8 dst_pending_confirm: 1; -+ __u8 ndisc_nodetype: 2; -+ __u8 ipvs_property: 1; -+ __u8 inner_protocol_type: 1; -+ __u8 remcsum_offload: 1; -+ __u8 offload_fwd_mark: 1; -+ __u8 offload_l3_fwd_mark: 1; -+ __u8 tc_skip_classify: 1; -+ __u8 tc_at_ingress: 1; -+ __u8 redirected: 1; -+ __u8 from_ingress: 1; -+ __u8 decrypted: 1; -+ __u16 tc_index; -+ union { -+ __wsum csum; -+ struct { -+ __u16 csum_start; -+ __u16 csum_offset; -+ }; -+ }; -+ __u32 priority; -+ int skb_iif; -+ __u32 hash; -+ __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; -+ __u32 headers_end[0]; -+ 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; -+}; -+ -+enum { -+ Root_NFS = 255, -+ Root_CIFS = 254, -+ Root_RAM0 = 1048576, -+ Root_RAM1 = 1048577, -+ Root_FD0 = 2097152, -+ Root_HDA1 = 3145729, -+ Root_HDA2 = 3145730, -+ Root_SDA1 = 8388609, -+ Root_SDA2 = 8388610, -+ Root_HDC1 = 23068673, -+ Root_SR0 = 11534336, -+}; -+ -+typedef short unsigned int __kernel_sa_family_t; -+ -+typedef __kernel_sa_family_t sa_family_t; -+ -+struct sockaddr { -+ sa_family_t sa_family; -+ char sa_data[14]; -+}; -+ -+struct msghdr { -+ void *msg_name; -+ int msg_namelen; -+ struct iov_iter msg_iter; -+ union { -+ void *msg_control; -+ void *msg_control_user; -+ }; -+ bool msg_control_is_user: 1; -+ __kernel_size_t msg_controllen; -+ unsigned int msg_flags; -+ struct kiocb *msg_iocb; -+}; -+ -+struct flowi_tunnel { -+ __be64 tun_id; -+}; -+ -+struct flowi_common { -+ int flowic_oif; -+ int flowic_iif; -+ __u32 flowic_mark; -+ __u8 flowic_tos; -+ __u8 flowic_scope; -+ __u8 flowic_proto; -+ __u8 flowic_flags; -+ __u32 flowic_secid; -+ kuid_t flowic_uid; -+ struct flowi_tunnel flowic_tun_key; -+ __u32 flowic_multipath_hash; -+}; -+ -+union flowi_uli { -+ struct { -+ __be16 dport; -+ __be16 sport; -+ } ports; -+ struct { -+ __u8 type; -+ __u8 code; -+ } icmpt; -+ struct { -+ __le16 dport; -+ __le16 sport; -+ } dnports; -+ __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 flowidn { -+ struct flowi_common __fl_common; -+ __le16 daddr; -+ __le16 saddr; -+ union flowi_uli uli; -+}; -+ -+struct flowi { -+ union { -+ struct flowi_common __fl_common; -+ struct flowi4 ip4; -+ struct flowi6 ip6; -+ struct flowidn dn; -+ } u; -+}; -+ -+struct ipstats_mib { -+ u64 mibs[37]; -+ struct u64_stats_sync syncp; -+}; -+ -+struct icmp_mib { -+ long unsigned int mibs[28]; -+}; -+ -+struct icmpmsg_mib { -+ atomic_long_t mibs[512]; -+}; -+ -+struct icmpv6_mib { -+ long unsigned int mibs[6]; -+}; -+ -+struct icmpv6_mib_device { -+ atomic_long_t mibs[6]; -+}; -+ -+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[126]; -+}; -+ -+struct linux_xfrm_mib { -+ long unsigned int mibs[29]; -+}; -+ -+struct linux_tls_mib { -+ long unsigned int mibs[11]; -+}; -+ -+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: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct rhashtable rhashtable; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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 nla_policy; -+ -+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 *, 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; -+ const struct nla_policy *policy; -+ 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 *, 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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; -+ atomic_t __refcnt; -+ int __use; -+ long unsigned int lastuse; -+ struct lwtunnel_state *lwtstate; -+ struct callback_head callback_head; -+ short int error; -+ short int __pad; -+ __u32 tclassid; -+}; -+ -+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 flags; -+ __u8 nud_state; -+ __u8 type; -+ __u8 dead; -+ u8 protocol; -+ seqlock_t ha_lock; -+ int: 32; -+ 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 callback_head rcu; -+ struct net_device *dev; -+ u8 primary_key[0]; -+}; -+ -+struct ipv6_stable_secret { -+ bool initialized; -+ struct in6_addr secret; -+}; -+ -+struct ipv6_devconf { -+ __s32 forwarding; -+ __s32 hop_limit; -+ __s32 mtu6; -+ __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_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_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 proxy_ndp; -+ __s32 accept_source_route; -+ __s32 accept_ra_from_local; -+ __s32 optimistic_dad; -+ __s32 use_optimistic; -+ __s32 mc_forwarding; -+ __s32 disable_ipv6; -+ __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; -+ 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 disable_policy; -+ __s32 ndisc_tclass; -+ __s32 rpl_seg_enabled; -+ struct ctl_table_header *sysctl_header; -+}; -+ -+struct nf_queue_entry; -+ -+struct nf_queue_handler { -+ int (*outfn)(struct nf_queue_entry *, unsigned int); -+ void (*nf_hook_drop)(struct net *); -+}; -+ -+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 hlist_nulls_head { -+ struct hlist_nulls_node *first; -+}; -+ -+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; -+}; -+ -+struct ct_pcpu { -+ spinlock_t lock; -+ struct hlist_nulls_head unconfirmed; -+ struct hlist_nulls_head dying; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct socket_wq wq; -+}; -+ -+typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); -+ -+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 *, int, bool); -+ 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 (*sendpage)(struct socket *, struct page *, int, size_t, int); -+ ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); -+ 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 (*sendpage_locked)(struct sock *, struct page *, int, size_t, int); -+ int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); -+ int (*set_rcvlowat)(struct sock *, int); -+}; -+ -+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 skb_ext { -+ refcount_t refcnt; -+ u8 offset[4]; -+ u8 chunks; -+ long: 56; -+ char data[0]; -+}; -+ -+struct dql { -+ unsigned int num_queued; -+ unsigned int adj_limit; -+ unsigned int last_obj_cnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 *); -+}; -+ -+struct netprio_map { -+ struct callback_head rcu; -+ u32 priomap_len; -+ u32 priomap[0]; -+}; -+ -+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; -+ unsigned int napi_id; -+ long: 32; -+ 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 xdp_frame { -+ void *data; -+ u16 len; -+ u16 headroom; -+ u32 metasize: 8; -+ u32 frame_sz: 24; -+ struct xdp_mem_info mem; -+ struct net_device *dev_rx; -+}; -+ -+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 netlink_ext_ack { -+ const char *_msg; -+ const struct nlattr *bad_attr; -+ const struct nla_policy *policy; -+ u8 cookie[20]; -+ u8 cookie_len; -+}; -+ -+struct netlink_range_validation; -+ -+struct netlink_range_validation_signed; -+ -+struct nla_policy { -+ u8 type; -+ u8 validation_type; -+ u16 len; -+ union { -+ const u32 bitfield32_valid; -+ const u32 mask; -+ const char *reject_message; -+ const struct nla_policy *nested_policy; -+ struct netlink_range_validation *range; -+ struct netlink_range_validation_signed *range_signed; -+ struct { -+ s16 min; -+ s16 max; -+ }; -+ int (*validate)(const struct nlattr *, struct netlink_ext_ack *); -+ u16 strict_start_type; -+ }; -+}; -+ -+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; -+ 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; -+}; -+ -+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 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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum netdev_tx { -+ __NETDEV_TX_MIN = 2147483648, -+ NETDEV_TX_OK = 0, -+ NETDEV_TX_BUSY = 16, -+}; -+ -+typedef enum netdev_tx netdev_tx_t; -+ -+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 xsk_buff_pool; -+ -+struct netdev_queue { -+ struct net_device *dev; -+ struct Qdisc *qdisc; -+ struct Qdisc *qdisc_sleeping; -+ struct kobject kobj; -+ int numa_node; -+ long unsigned int tx_maxrate; -+ long unsigned int trans_timeout; -+ struct net_device *sb_dev; -+ struct xsk_buff_pool *pool; -+ spinlock_t _xmit_lock; -+ int xmit_lock_owner; -+ long unsigned int trans_start; -+ long unsigned 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; -+ struct dql dql; -+}; -+ -+struct qdisc_skb_head { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+struct gnet_stats_basic_packed { -+ __u64 bytes; -+ __u64 packets; -+}; -+ -+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 gnet_stats_basic_cpu; -+ -+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_cpu *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_packed bstats; -+ seqcount_t running; -+ struct gnet_stats_queue qstats; -+ long unsigned int state; -+ struct Qdisc *next_sched; -+ struct sk_buff_head skb_bad_txq; -+ spinlock_t busylock; -+ spinlock_t seqlock; -+ 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 int privdata[0]; -+}; -+ -+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]; -+}; -+ -+struct netdev_rx_queue { -+ struct rps_map *rps_map; -+ struct rps_dev_flow_table *rps_flow_table; -+ struct kobject kobj; -+ struct net_device *dev; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xdp_rxq_info xdp_rxq; -+ struct xsk_buff_pool *pool; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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, -+}; -+ -+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 net_device_path_ctx { -+ const struct net_device *dev; -+ const u8 *daddr; -+ int num_vlans; -+ struct { -+ u16 id; -+ __be16 proto; -+ } vlan[2]; -+}; -+ -+enum tc_setup_type { -+ TC_SETUP_QDISC_MQPRIO = 0, -+ TC_SETUP_CLSU32 = 1, -+ TC_SETUP_CLSFLOWER = 2, -+ TC_SETUP_CLSMATCHALL = 3, -+ TC_SETUP_CLSBPF = 4, -+ TC_SETUP_BLOCK = 5, -+ TC_SETUP_QDISC_CBS = 6, -+ TC_SETUP_QDISC_RED = 7, -+ TC_SETUP_QDISC_PRIO = 8, -+ TC_SETUP_QDISC_MQ = 9, -+ TC_SETUP_QDISC_ETF = 10, -+ TC_SETUP_ROOT_QDISC = 11, -+ TC_SETUP_QDISC_GRED = 12, -+ TC_SETUP_QDISC_TAPRIO = 13, -+ TC_SETUP_FT = 14, -+ TC_SETUP_QDISC_ETS = 15, -+ TC_SETUP_QDISC_TBF = 16, -+ TC_SETUP_QDISC_FIFO = 17, -+ TC_SETUP_QDISC_HTB = 18, -+}; -+ -+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 xfrmdev_ops { -+ int (*xdo_dev_state_add)(struct xfrm_state *); -+ void (*xdo_dev_state_delete)(struct xfrm_state *); -+ void (*xdo_dev_state_free)(struct xfrm_state *); -+ bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); -+ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); -+}; -+ -+struct dev_ifalias { -+ struct callback_head rcuhead; -+ char ifalias[0]; -+}; -+ -+struct netdev_name_node { -+ struct hlist_node hlist; -+ struct list_head list; -+ struct net_device *dev; -+ const char *name; -+}; -+ -+struct devlink_port; -+ -+struct ip_tunnel_parm; -+ -+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 *, struct netpoll_info *); -+ 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_fcoe_get_wwn)(struct net_device *, u64 *, int); -+ 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); -+ 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_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_change_proto_down)(struct net_device *, bool); -+ 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); -+ int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); -+ struct devlink_port * (*ndo_get_devlink_port)(struct net_device *); -+ int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm *, 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 *); -+}; -+ -+struct neigh_parms { -+ possible_net_t net; -+ struct net_device *dev; -+ 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; -+ int data[13]; -+ long unsigned int data_state[1]; -+}; -+ -+struct pcpu_lstats { -+ u64_stats_t packets; -+ u64_stats_t bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+struct pcpu_sw_netstats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+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_eeprom; -+ -+struct ethtool_coalesce; -+ -+struct ethtool_ringparam; -+ -+struct ethtool_pause_stats; -+ -+struct ethtool_pauseparam; -+ -+struct ethtool_test; -+ -+struct ethtool_stats; -+ -+struct ethtool_rxnfc; -+ -+struct ethtool_flash; -+ -+struct ethtool_channels; -+ -+struct ethtool_dump; -+ -+struct ethtool_ts_info; -+ -+struct ethtool_modinfo; -+ -+struct ethtool_eee; -+ -+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_ops { -+ u32 cap_link_lanes_supported: 1; -+ u32 supported_coalesce_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 *); -+ 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 *); -+ int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *); -+ void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ 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 *, u32 *, u8 *, u8 *); -+ int (*set_rxfh)(struct net_device *, const u32 *, const u8 *, const u8); -+ int (*get_rxfh_context)(struct net_device *, u32 *, u8 *, u8 *, u32); -+ int (*set_rxfh_context)(struct net_device *, const u32 *, const u8 *, const u8, u32 *, bool); -+ 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 ethtool_ts_info *); -+ 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_eee *); -+ int (*set_eee)(struct net_device *, struct ethtool_eee *); -+ 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 *); -+ 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 **); -+}; -+ -+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 (*is_useropt)(u8); -+ 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 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; -+ 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; -+}; -+ -+struct tcf_proto; -+ -+struct tcf_block; -+ -+struct mini_Qdisc { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ struct callback_head rcu; -+}; -+ -+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)(); -+ unsigned int (*get_num_rx_queues)(); -+ 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 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_stats_basic_cpu { -+ struct gnet_stats_basic_packed bstats; -+ struct u64_stats_sync syncp; -+}; -+ -+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); -+ 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 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 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 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; -+ 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 { -+ bool ingress; -+ struct gnet_stats_queue *qstats; -+ }; -+ }; -+}; -+ -+struct tcf_walker; -+ -+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 **, bool, bool, 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 *); -+ 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 sock_fprog_kern { -+ u16 len; -+ struct sock_filter *filter; -+}; -+ -+struct bpf_prog_stats { -+ u64 cnt; -+ u64 nsecs; -+ u64 misses; -+ struct u64_stats_sync syncp; -+ long: 64; -+}; -+ -+struct sk_filter { -+ refcount_t refcnt; -+ struct callback_head rcu; -+ struct bpf_prog *prog; -+}; -+ -+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_GC_STALETIME = 7, -+ NEIGH_VAR_QUEUE_LEN_BYTES = 8, -+ NEIGH_VAR_PROXY_QLEN = 9, -+ NEIGH_VAR_ANYCAST_DELAY = 10, -+ NEIGH_VAR_PROXY_DELAY = 11, -+ NEIGH_VAR_LOCKTIME = 12, -+ NEIGH_VAR_QUEUE_LEN = 13, -+ NEIGH_VAR_RETRANS_TIME_MS = 14, -+ NEIGH_VAR_BASE_REACHABLE_TIME_MS = 15, -+ NEIGH_VAR_GC_INTERVAL = 16, -+ NEIGH_VAR_GC_THRESH1 = 17, -+ NEIGH_VAR_GC_THRESH2 = 18, -+ NEIGH_VAR_GC_THRESH3 = 19, -+ NEIGH_VAR_MAX = 20, -+}; -+ -+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 timer_list proxy_timer; -+ struct sk_buff_head proxy_queue; -+ atomic_t entries; -+ atomic_t gc_entries; -+ struct list_head gc_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; -+ u8 flags; -+ u8 protocol; -+ u8 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_MAX_STATES = 13, -+}; -+ -+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 udp_table; -+ -+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 *, int, int *, bool); -+ int (*ioctl)(struct sock *, int, long unsigned 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, int *); -+ int (*sendpage)(struct sock *, struct page *, int, size_t, int); -+ 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); -+ int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); -+ unsigned int inuse_idx; -+ bool (*stream_memory_free)(const struct sock *, int); -+ bool (*stream_memory_read)(const struct sock *); -+ void (*enter_memory_pressure)(struct sock *); -+ void (*leave_memory_pressure)(struct sock *); -+ atomic_long_t *memory_allocated; -+ 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; -+ slab_flags_t slab_flags; -+ unsigned int useroffset; -+ unsigned int usersize; -+ struct percpu_counter *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 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 *); -+ 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; -+ int (*twsk_unique)(struct sock *, struct sock *, void *); -+ 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; -+}; -+ -+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, -+}; -+ -+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; -+ __u8 reserved: 6; -+ __u8 autoconf: 1; -+ __u8 onlink: 1; -+ __be32 valid; -+ __be32 prefered; -+ __be32 reserved2; -+ struct in6_addr prefix; -+}; -+ -+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 { -+ 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 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_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_MAX_SHIFT = 18, -+}; -+ -+enum { -+ TSK_TRACE_FL_TRACE_BIT = 0, -+ TSK_TRACE_FL_GRAPH_BIT = 1, -+}; -+ -+struct uuidcmp { -+ const char *uuid; -+ 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 phys_addr_t resource_size_t; -+ -+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; -+}; -+ -+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 hash { -+ int ino; -+ int minor; -+ int major; -+ umode_t mode; -+ struct hash *next; -+ char name[4098]; -+}; -+ -+struct dir_entry { -+ struct list_head list; -+ char *name; -+ time64_t mtime; -+}; -+ -+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 *)); -+ -+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_RLIMIT_NPROC = 12, -+ UCOUNT_RLIMIT_MSGQUEUE = 13, -+ UCOUNT_RLIMIT_SIGPENDING = 14, -+ UCOUNT_RLIMIT_MEMLOCK = 15, -+ UCOUNT_COUNTS = 16, -+}; -+ -+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_MAX = 28, -+}; -+ -+enum { -+ IPSTATS_MIB_NUM = 0, -+ IPSTATS_MIB_INPKTS = 1, -+ IPSTATS_MIB_INOCTETS = 2, -+ IPSTATS_MIB_INDELIVERS = 3, -+ IPSTATS_MIB_OUTFORWDATAGRAMS = 4, -+ IPSTATS_MIB_OUTPKTS = 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_MAX = 37, -+}; -+ -+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_MAX = 28, -+}; -+ -+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_MAX = 6, -+}; -+ -+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_MAX = 126, -+}; -+ -+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_XFRMMAX = 29, -+}; -+ -+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_TLSMAX = 11, -+}; -+ -+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_DECNET = 12, -+ NFPROTO_NUMPROTO = 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 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 = 4294967295, -+ NETNS_BPF_FLOW_DISSECTOR = 0, -+ NETNS_BPF_SK_LOOKUP = 1, -+ MAX_NETNS_BPF_ATTACH_TYPE = 2, -+}; -+ -+enum skb_ext_id { -+ SKB_EXT_BRIDGE_NF = 0, -+ SKB_EXT_SEC_PATH = 1, -+ TC_SKB_EXT = 2, -+ SKB_EXT_MPTCP = 3, -+ SKB_EXT_NUM = 4, -+}; -+ -+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 cpu_spec; -+ -+typedef void (*cpu_setup_t)(long unsigned int, struct cpu_spec *); -+ -+enum powerpc_pmc_type { -+ PPC_PMC_DEFAULT = 0, -+ PPC_PMC_IBM = 1, -+ PPC_PMC_PA6T = 2, -+ PPC_PMC_G4 = 3, -+}; -+ -+typedef void (*cpu_restore_t)(); -+ -+struct cpu_spec { -+ unsigned int pvr_mask; -+ unsigned int pvr_value; -+ char *cpu_name; -+ long unsigned int cpu_features; -+ unsigned int cpu_user_features; -+ unsigned int cpu_user_features2; -+ unsigned int mmu_features; -+ unsigned int icache_bsize; -+ unsigned int dcache_bsize; -+ void (*cpu_down_flush)(); -+ unsigned int num_pmcs; -+ enum powerpc_pmc_type pmc_type; -+ cpu_setup_t cpu_setup; -+ cpu_restore_t cpu_restore; -+ char *oprofile_cpu_type; -+ char *platform; -+ int (*machine_check)(struct pt_regs *); -+ long int (*machine_check_early)(struct pt_regs *); -+}; -+ -+typedef __kernel_long_t __kernel_off_t; -+ -+typedef __kernel_off_t off_t; -+ -+enum { -+ FW_FEATURE_PSERIES_POSSIBLE = 3479175167, -+ FW_FEATURE_PSERIES_ALWAYS = 0, -+ FW_FEATURE_POWERNV_POSSIBLE = 268435456, -+ FW_FEATURE_POWERNV_ALWAYS = 0, -+ FW_FEATURE_PS3_POSSIBLE = 12582912, -+ FW_FEATURE_PS3_ALWAYS = 12582912, -+ FW_FEATURE_NATIVE_POSSIBLE = 0, -+ FW_FEATURE_NATIVE_ALWAYS = 0, -+ FW_FEATURE_POSSIBLE = 3747610623, -+ FW_FEATURE_ALWAYS = 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, -+}; -+ -+enum { -+ EI_ETYPE_NONE = 0, -+ EI_ETYPE_NULL = 1, -+ EI_ETYPE_ERRNO = 2, -+ EI_ETYPE_ERRNO_NULL = 3, -+ EI_ETYPE_TRUE = 4, -+}; -+ -+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; -+}; -+ -+enum { -+ MMU_FTRS_POSSIBLE = 2113994305, -+}; -+ -+struct kvm; -+ -+struct kvmppc_vcore { -+ int n_runnable; -+ int num_threads; -+ int entry_exit_map; -+ int napping_threads; -+ int first_vcpuid; -+ u16 pcpu; -+ u16 last_cpu; -+ u8 vcore_state; -+ u8 in_guest; -+ struct kvm_vcpu *runnable_threads[8]; -+ struct list_head preempt_list; -+ spinlock_t lock; -+ struct rcuwait wait; -+ spinlock_t stoltb_lock; -+ u64 stolen_tb; -+ u64 preempt_tb; -+ struct kvm_vcpu *runner; -+ struct kvm *kvm; -+ u64 tb_offset; -+ u64 tb_offset_applied; -+ ulong lpcr; -+ u32 arch_compat; -+ ulong pcr; -+ ulong dpdes; -+ ulong vtb; -+ ulong conferring_threads; -+ unsigned int halt_poll_ns; -+ atomic_t online_count; -+}; -+ -+struct preempt_ops; -+ -+struct preempt_notifier { -+ struct hlist_node link; -+ struct preempt_ops *ops; -+}; -+ -+typedef u64 gpa_t; -+ -+struct kvm_mmio_fragment { -+ gpa_t gpa; -+ void *data; -+ unsigned int len; -+}; -+ -+struct kvmppc_slb { -+ u64 esid; -+ u64 vsid; -+ u64 orige; -+ u64 origv; -+ bool valid: 1; -+ bool Ks: 1; -+ bool Kp: 1; -+ bool nx: 1; -+ bool large: 1; -+ bool tb: 1; -+ bool class: 1; -+ u8 base_page_size; -+}; -+ -+typedef long unsigned int gva_t; -+ -+struct kvmppc_pte; -+ -+struct kvmppc_mmu { -+ void (*slbmte)(struct kvm_vcpu *, u64, u64); -+ u64 (*slbmfee)(struct kvm_vcpu *, u64); -+ u64 (*slbmfev)(struct kvm_vcpu *, u64); -+ int (*slbfee)(struct kvm_vcpu *, gva_t, ulong *); -+ void (*slbie)(struct kvm_vcpu *, u64); -+ void (*slbia)(struct kvm_vcpu *); -+ void (*mtsrin)(struct kvm_vcpu *, u32, ulong); -+ u32 (*mfsrin)(struct kvm_vcpu *, u32); -+ int (*xlate)(struct kvm_vcpu *, gva_t, struct kvmppc_pte *, bool, bool); -+ void (*tlbie)(struct kvm_vcpu *, ulong, bool); -+ int (*esid_to_vsid)(struct kvm_vcpu *, ulong, u64 *); -+ u64 (*ea_to_vp)(struct kvm_vcpu *, gva_t, bool); -+ bool (*is_dcbz32)(struct kvm_vcpu *); -+}; -+ -+struct openpic; -+ -+union xive_tma_w01 { -+ struct { -+ u8 nsr; -+ u8 cppr; -+ u8 ipb; -+ u8 lsmfb; -+ u8 ack; -+ u8 inc; -+ u8 age; -+ u8 pipr; -+ }; -+ __be64 w01; -+}; -+ -+struct kvm_vcpu_arch_shared { -+ __u64 scratch1; -+ __u64 scratch2; -+ __u64 scratch3; -+ __u64 critical; -+ __u64 sprg0; -+ __u64 sprg1; -+ __u64 sprg2; -+ __u64 sprg3; -+ __u64 srr0; -+ __u64 srr1; -+ __u64 dar; -+ __u64 msr; -+ __u32 dsisr; -+ __u32 int_pending; -+ __u32 sr[16]; -+ __u32 mas0; -+ __u32 mas1; -+ __u64 mas7_3; -+ __u64 mas2; -+ __u32 mas4; -+ __u32 mas6; -+ __u32 esr; -+ __u32 pir; -+ __u64 sprg4; -+ __u64 sprg5; -+ __u64 sprg6; -+ __u64 sprg7; -+}; -+ -+struct mmio_hpte_cache_entry { -+ long unsigned int hpte_v; -+ long unsigned int hpte_r; -+ long unsigned int rpte; -+ long unsigned int pte_index; -+ long unsigned int eaddr; -+ long unsigned int slb_v; -+ long int mmio_update; -+ unsigned int slb_base_pshift; -+}; -+ -+struct mmio_hpte_cache { -+ struct mmio_hpte_cache_entry entry[4]; -+ unsigned int index; -+}; -+ -+struct kvmppc_vpa { -+ long unsigned int gpa; -+ void *pinned_addr; -+ void *pinned_end; -+ long unsigned int next_gpa; -+ long unsigned int len; -+ u8 update_pending; -+ bool dirty; -+}; -+ -+struct kvmppc_vcpu_book3s; -+ -+struct kvmppc_icp; -+ -+struct kvmppc_xive_vcpu; -+ -+struct kvm_nested_guest; -+ -+struct kvm_vcpu_arch { -+ ulong host_stack; -+ u32 host_pid; -+ struct kvmppc_slb slb[64]; -+ int slb_max; -+ int slb_nr; -+ struct kvmppc_mmu mmu; -+ struct kvmppc_vcpu_book3s *book3s; -+ struct pt_regs regs; -+ long: 64; -+ struct thread_fp_state fp; -+ struct thread_vr_state vr; -+ u32 qpr[32]; -+ ulong tar; -+ ulong hflags; -+ ulong guest_owned_ext; -+ ulong purr; -+ ulong spurr; -+ ulong ic; -+ ulong dscr; -+ ulong amr; -+ ulong uamor; -+ ulong iamr; -+ u32 ctrl; -+ u32 dabrx; -+ ulong dabr; -+ ulong dawr0; -+ ulong dawrx0; -+ ulong dawr1; -+ ulong dawrx1; -+ ulong ciabr; -+ ulong cfar; -+ ulong ppr; -+ u32 pspb; -+ ulong fscr; -+ ulong shadow_fscr; -+ ulong ebbhr; -+ ulong ebbrr; -+ ulong bescr; -+ ulong csigr; -+ ulong tacr; -+ ulong tcscr; -+ ulong acop; -+ ulong wort; -+ ulong tid; -+ ulong psscr; -+ ulong hfscr; -+ ulong shadow_srr1; -+ u32 vrsave; -+ u32 mmucr; -+ ulong shadow_msr; -+ ulong csrr0; -+ ulong csrr1; -+ ulong dsrr0; -+ ulong dsrr1; -+ ulong mcsrr0; -+ ulong mcsrr1; -+ ulong mcsr; -+ ulong dec; -+ u64 entry_tb; -+ u64 entry_vtb; -+ u64 entry_ic; -+ u32 tcr; -+ ulong tsr; -+ u32 ivor[64]; -+ ulong ivpr; -+ u32 pvr; -+ u32 shadow_pid; -+ u32 shadow_pid1; -+ u32 pid; -+ u32 swap_pid; -+ u32 ccr0; -+ u32 ccr1; -+ u32 dbsr; -+ u64 mmcr[4]; -+ u64 mmcra; -+ u64 mmcrs; -+ u32 pmc[8]; -+ u32 spmc[2]; -+ u64 siar; -+ u64 sdar; -+ u64 sier[3]; -+ u64 tfhar; -+ u64 texasr; -+ u64 tfiar; -+ u64 orig_texasr; -+ u32 cr_tm; -+ u64 xer_tm; -+ u64 lr_tm; -+ u64 ctr_tm; -+ u64 amr_tm; -+ u64 ppr_tm; -+ u64 dscr_tm; -+ u64 tar_tm; -+ ulong gpr_tm[32]; -+ struct thread_fp_state fp_tm; -+ struct thread_vr_state vr_tm; -+ u32 vrsave_tm; -+ ulong fault_dar; -+ u32 fault_dsisr; -+ long unsigned int intr_msr; -+ ulong fault_gpa; -+ gpa_t paddr_accessed; -+ gva_t vaddr_accessed; -+ pgd_t *pgdir; -+ u16 io_gpr; -+ u8 mmio_host_swabbed; -+ u8 mmio_sign_extend; -+ u8 mmio_sp64_extend; -+ u8 mmio_vsx_copy_nums; -+ u8 mmio_vsx_offset; -+ u8 mmio_vmx_copy_nums; -+ u8 mmio_vmx_offset; -+ u8 mmio_copy_type; -+ u8 osi_needed; -+ u8 osi_enabled; -+ u8 papr_enabled; -+ u8 watchdog_enabled; -+ u8 sane; -+ u8 cpu_type; -+ u8 hcall_needed; -+ u8 epr_flags; -+ u8 epr_needed; -+ u8 external_oneshot; -+ u32 cpr0_cfgaddr; -+ struct hrtimer dec_timer; -+ u64 dec_jiffies; -+ u64 dec_expires; -+ long unsigned int pending_exceptions; -+ u8 ceded; -+ u8 prodded; -+ u8 doorbell_request; -+ u8 irq_pending; -+ u32 last_inst; -+ struct rcuwait *waitp; -+ struct kvmppc_vcore *vcore; -+ int ret; -+ int trap; -+ int state; -+ int ptid; -+ int thread_cpu; -+ int prev_cpu; -+ bool timer_running; -+ wait_queue_head_t cpu_run; -+ struct machine_check_event mce_evt; -+ struct kvm_vcpu_arch_shared *shared; -+ long unsigned int magic_page_pa; -+ long unsigned int magic_page_ea; -+ bool disable_kernel_nx; -+ int irq_type; -+ int irq_cpu_id; -+ struct openpic *mpic; -+ struct kvmppc_icp *icp; -+ struct kvmppc_xive_vcpu *xive_vcpu; -+ __be32 xive_cam_word; -+ u8 xive_pushed; -+ u8 xive_esc_on; -+ union xive_tma_w01 xive_saved_state; -+ u64 xive_esc_raddr; -+ u64 xive_esc_vaddr; -+ struct kvm_vcpu_arch_shared shregs; -+ struct mmio_hpte_cache mmio_cache; -+ long unsigned int pgfault_addr; -+ long int pgfault_index; -+ long unsigned int pgfault_hpte[2]; -+ struct mmio_hpte_cache_entry *pgfault_cache; -+ struct task_struct *run_task; -+ spinlock_t vpa_update_lock; -+ struct kvmppc_vpa vpa; -+ struct kvmppc_vpa dtl; -+ struct dtl_entry *dtl_ptr; -+ long unsigned int dtl_index; -+ u64 stolen_logged; -+ struct kvmppc_vpa slb_shadow; -+ spinlock_t tbacct_lock; -+ u64 busy_stolen; -+ u64 busy_preempt; -+ u32 emul_inst; -+ u32 online; -+ struct kvm_nested_guest *nested; -+ u32 nested_vcpu_id; -+ gpa_t nested_io_gpr; -+ long: 64; -+}; -+ -+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; -+}; -+ -+struct kvm_vcpu_stat { -+ struct kvm_vcpu_stat_generic generic; -+ u64 sum_exits; -+ u64 mmio_exits; -+ u64 signal_exits; -+ u64 light_exits; -+ u64 itlb_real_miss_exits; -+ u64 itlb_virt_miss_exits; -+ u64 dtlb_real_miss_exits; -+ u64 dtlb_virt_miss_exits; -+ u64 syscall_exits; -+ u64 isi_exits; -+ u64 dsi_exits; -+ u64 emulated_inst_exits; -+ u64 dec_exits; -+ u64 ext_intr_exits; -+ u64 halt_wait_ns; -+ u64 halt_successful_wait; -+ u64 dbell_exits; -+ u64 gdbell_exits; -+ u64 ld; -+ u64 st; -+ u64 pf_storage; -+ u64 pf_instruc; -+ u64 sp_storage; -+ u64 sp_instruc; -+ u64 queue_intr; -+ u64 ld_slow; -+ u64 st_slow; -+ u64 pthru_all; -+ u64 pthru_host; -+ u64 pthru_bad_aff; -+}; -+ -+struct kvm_dirty_gfn; -+ -+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_run; -+ -+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; -+ int pre_pcpu; -+ struct list_head blocked_vcpu_list; -+ struct mutex mutex; -+ struct kvm_run *run; -+ struct rcuwait wait; -+ struct pid *pid; -+ 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]; -+ bool preempted; -+ bool ready; -+ struct kvm_vcpu_arch arch; -+ struct kvm_vcpu_stat stat; -+ char stats_id[48]; -+ struct kvm_dirty_ring dirty_ring; -+}; -+ -+struct preempt_ops { -+ void (*sched_in)(struct preempt_notifier *, int); -+ void (*sched_out)(struct preempt_notifier *, struct task_struct *); -+}; -+ -+enum ctx_state { -+ CONTEXT_DISABLED = 4294967295, -+ CONTEXT_KERNEL = 0, -+ CONTEXT_USER = 1, -+ CONTEXT_GUEST = 2, -+}; -+ -+struct context_tracking { -+ bool active; -+ int recursion; -+ enum ctx_state state; -+}; -+ -+typedef int pci_power_t; -+ -+struct pci_slot; -+ -+struct aer_stats; -+ -+struct rcec_ea; -+ -+struct pci_driver; -+ -+struct pcie_link_state; -+ -+struct pci_vpd; -+ -+struct pci_sriov; -+ -+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_stats *aer_stats; -+ struct rcec_ea *rcec_ea; -+ struct pci_dev *rcec; -+ 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; -+ unsigned int imm_ready: 1; -+ u8 pm_cap; -+ unsigned int pme_support: 5; -+ unsigned int pme_poll: 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 runtime_d3cold: 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; -+ struct pcie_link_state *link_state; -+ unsigned int ltr_path: 1; -+ u16 l1ss; -+ unsigned int eetlp_prefix_path: 1; -+ pci_channel_state_t error_state; -+ struct device dev; -+ int cfg_size; -+ unsigned int irq; -+ struct resource resource[17]; -+ 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 needs_freset: 1; -+ unsigned int state_saved: 1; -+ unsigned int is_physfn: 1; -+ unsigned int is_virtfn: 1; -+ unsigned int reset_fn: 1; -+ unsigned int is_hotplug_bridge: 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; -+ pci_dev_flags_t dev_flags; -+ atomic_t enable_cnt; -+ u32 saved_config_space[16]; -+ struct hlist_head saved_cap_space; -+ int rom_attr_enabled; -+ struct bin_attribute *res_attr[17]; -+ struct bin_attribute *res_attr_wc[17]; -+ const struct attribute_group **msi_irq_groups; -+ struct pci_vpd *vpd; -+ u16 dpc_cap; -+ unsigned int dpc_rp_extensions: 1; -+ u8 dpc_rp_log_size; -+ 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; -+ u16 acs_cap; -+ phys_addr_t rom; -+ size_t romlen; -+ char *driver_override; -+ long unsigned int priv_flags; -+}; -+ -+struct iommu_table_group; -+ -+struct pci_dn { -+ int flags; -+ int busno; -+ int devfn; -+ int vendor_id; -+ int device_id; -+ int class_code; -+ struct pci_dn *parent; -+ struct pci_controller *phb; -+ struct iommu_table_group *table_group; -+ int pci_ext_config_space; -+ struct eeh_dev *edev; -+ unsigned int pe_number; -+ u16 vfs_expanded; -+ u16 num_vfs; -+ unsigned int *pe_num_map; -+ bool m64_single_mode; -+ int (*m64_map)[6]; -+ int last_allow_rc; -+ int mps; -+ struct list_head child_list; -+ struct list_head list; -+ struct resource holes[6]; -+}; -+ -+struct pci_controller_ops { -+ void (*dma_dev_setup)(struct pci_dev *); -+ void (*dma_bus_setup)(struct pci_bus *); -+ bool (*iommu_bypass_supported)(struct pci_dev *, u64); -+ int (*probe_mode)(struct pci_bus *); -+ bool (*enable_device_hook)(struct pci_dev *); -+ void (*disable_device)(struct pci_dev *); -+ void (*release_device)(struct pci_dev *); -+ resource_size_t (*window_alignment)(struct pci_bus *, long unsigned int); -+ void (*setup_bridge)(struct pci_bus *, long unsigned int); -+ void (*reset_secondary_bus)(struct pci_dev *); -+ int (*setup_msi_irqs)(struct pci_dev *, int, int); -+ void (*teardown_msi_irqs)(struct pci_dev *); -+ void (*shutdown)(struct pci_controller *); -+}; -+ -+struct pci_ops; -+ -+struct pci_controller { -+ struct pci_bus *bus; -+ char is_dynamic; -+ int node; -+ struct device_node *dn; -+ struct list_head list_node; -+ struct device *parent; -+ int first_busno; -+ int last_busno; -+ int self_busno; -+ struct resource busn; -+ void *io_base_virt; -+ void *io_base_alloc; -+ resource_size_t io_base_phys; -+ resource_size_t pci_io_size; -+ resource_size_t isa_mem_phys; -+ resource_size_t isa_mem_size; -+ struct pci_controller_ops controller_ops; -+ struct pci_ops *ops; -+ unsigned int *cfg_addr; -+ void *cfg_data; -+ u32 indirect_type; -+ struct resource io_resource; -+ struct resource mem_resources[3]; -+ resource_size_t mem_offset[3]; -+ int global_number; -+ resource_size_t dma_window_base_cur; -+ resource_size_t dma_window_size; -+ long unsigned int buid; -+ struct pci_dn *pci_data; -+ void *private_data; -+}; -+ -+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; -+}; -+ -+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 platform_msi_priv_data; -+ -+struct platform_msi_desc { -+ struct platform_msi_priv_data *msi_priv_data; -+ u16 msi_index; -+}; -+ -+struct fsl_mc_msi_desc { -+ u16 msi_index; -+}; -+ -+struct ti_sci_inta_msi_desc { -+ u16 dev_index; -+}; -+ -+struct irq_affinity_desc; -+ -+struct msi_desc { -+ struct list_head list; -+ unsigned int irq; -+ unsigned int nvec_used; -+ struct device *dev; -+ struct msi_msg msg; -+ struct irq_affinity_desc *affinity; -+ void (*write_msi_msg)(struct msi_desc *, void *); -+ void *write_msi_msg_data; -+ union { -+ struct { -+ u32 masked; -+ struct { -+ u8 is_msix: 1; -+ u8 multiple: 3; -+ u8 multi_cap: 3; -+ u8 maskbit: 1; -+ u8 is_64: 1; -+ u8 is_virtual: 1; -+ u16 entry_nr; -+ unsigned int default_irq; -+ } msi_attrib; -+ union { -+ u8 mask_pos; -+ void *mask_base; -+ }; -+ }; -+ struct platform_msi_desc platform; -+ struct fsl_mc_msi_desc fsl_mc; -+ struct ti_sci_inta_msi_desc inta; -+ }; -+}; -+ -+typedef struct { -+ unsigned int __softirq_pending; -+ unsigned int timer_irqs_event; -+ unsigned int broadcast_irqs_event; -+ unsigned int timer_irqs_others; -+ unsigned int pmu_irqs; -+ unsigned int mce_exceptions; -+ unsigned int spurious_irqs; -+ unsigned int sreset_irqs; -+ unsigned int soft_nmi_irqs; -+ unsigned int doorbell_irqs; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+} irq_cpustat_t; -+ -+struct irq_affinity_desc { -+ struct cpumask mask; -+ unsigned int is_managed: 1; -+}; -+ -+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 pci_device_id { -+ __u32 vendor; -+ __u32 device; -+ __u32 subvendor; -+ __u32 subdevice; -+ __u32 class; -+ __u32 class_mask; -+ kernel_ulong_t driver_data; -+}; -+ -+struct hotplug_slot; -+ -+struct pci_slot { -+ struct pci_bus *bus; -+ struct list_head list; -+ struct hotplug_slot *hotplug; -+ unsigned char number; -+ struct kobject kobj; -+}; -+ -+struct pci_dynids { -+ spinlock_t lock; -+ struct list_head list; -+}; -+ -+struct pci_error_handlers; -+ -+struct pci_driver { -+ struct list_head node; -+ 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; -+}; -+ -+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 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 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: 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); -+}; -+ -+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 *); -+}; -+ -+struct scatterlist { -+ long unsigned int page_link; -+ unsigned int offset; -+ unsigned int length; -+ dma_addr_t dma_address; -+ unsigned int dma_length; -+}; -+ -+struct sg_table { -+ struct scatterlist *sgl; -+ unsigned int nents; -+ unsigned int orig_nents; -+}; -+ -+struct rtc_time; -+ -+struct kimage; -+ -+struct machdep_calls { -+ char *name; -+ void (*iommu_save)(); -+ void (*iommu_restore)(); -+ long unsigned int (*memory_block_size)(); -+ void (*dma_set_mask)(struct device *, u64); -+ int (*probe)(); -+ void (*setup_arch)(); -+ void (*show_cpuinfo)(struct seq_file *); -+ void (*show_percpuinfo)(struct seq_file *, int); -+ long unsigned int (*get_proc_freq)(unsigned int); -+ void (*init_IRQ)(); -+ unsigned int (*get_irq)(); -+ void (*pcibios_fixup)(); -+ void (*pci_irq_fixup)(struct pci_dev *); -+ int (*pcibios_root_bridge_prepare)(struct pci_host_bridge *); -+ void (*discover_phbs)(); -+ int (*pci_setup_phb)(struct pci_controller *); -+ void (*restart)(char *); -+ void (*halt)(); -+ void (*panic)(char *); -+ long int (*time_init)(); -+ int (*set_rtc_time)(struct rtc_time *); -+ void (*get_rtc_time)(struct rtc_time *); -+ time64_t (*get_boot_time)(); -+ unsigned char (*rtc_read_val)(int); -+ void (*rtc_write_val)(int, unsigned char); -+ void (*calibrate_decr)(); -+ void (*progress)(char *, short unsigned int); -+ void (*log_error)(char *, unsigned int, int); -+ unsigned char (*nvram_read_val)(int); -+ void (*nvram_write_val)(int, unsigned char); -+ ssize_t (*nvram_write)(char *, size_t, loff_t *); -+ ssize_t (*nvram_read)(char *, size_t, loff_t *); -+ ssize_t (*nvram_size)(); -+ void (*nvram_sync)(); -+ int (*system_reset_exception)(struct pt_regs *); -+ int (*machine_check_exception)(struct pt_regs *); -+ int (*handle_hmi_exception)(struct pt_regs *); -+ int (*hmi_exception_early)(struct pt_regs *); -+ long int (*machine_check_early)(struct pt_regs *); -+ bool (*mce_check_early_recovery)(struct pt_regs *); -+ long int (*feature_call)(unsigned int, ...); -+ int (*pci_get_legacy_ide_irq)(struct pci_dev *, int); -+ pgprot_t (*phys_mem_access_prot)(struct file *, long unsigned int, long unsigned int, pgprot_t); -+ void (*power_save)(); -+ void (*enable_pmcs)(); -+ int (*set_dabr)(long unsigned int, long unsigned int); -+ int (*set_dawr)(int, long unsigned int, long unsigned int); -+ int (*pci_exclude_device)(struct pci_controller *, unsigned char, unsigned char); -+ void (*pcibios_fixup_resources)(struct pci_dev *); -+ void (*pcibios_fixup_bus)(struct pci_bus *); -+ void (*pcibios_fixup_phb)(struct pci_controller *); -+ void (*pcibios_bus_add_device)(struct pci_dev *); -+ resource_size_t (*pcibios_default_alignment)(); -+ void (*pcibios_fixup_sriov)(struct pci_dev *); -+ resource_size_t (*pcibios_iov_resource_alignment)(struct pci_dev *, int); -+ int (*pcibios_sriov_enable)(struct pci_dev *, u16); -+ int (*pcibios_sriov_disable)(struct pci_dev *); -+ void (*machine_shutdown)(); -+ void (*kexec_cpu_down)(int, int); -+ int (*machine_kexec_prepare)(struct kimage *); -+ void (*machine_kexec)(struct kimage *); -+ void (*suspend_disable_irqs)(); -+ void (*suspend_enable_irqs)(); -+ ssize_t (*cpu_probe)(const char *, size_t); -+ ssize_t (*cpu_release)(const char *, size_t); -+ int (*get_random_seed)(long unsigned int *); -+}; -+ -+struct interrupt_state {}; -+ -+typedef u64 gfn_t; -+ -+struct kvm_arch_memory_slot { -+ long unsigned int *rmap; -+}; -+ -+struct kvm_memory_slot { -+ 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 kvm_vm_stat_generic { -+ u64 remote_tlb_flush; -+}; -+ -+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; -+ -+struct mmu_notifier_range; -+ -+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); -+ void (*change_pte)(struct mmu_notifier *, struct mm_struct *, long unsigned int, pte_t); -+ 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 (*invalidate_range)(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_notifier_range { -+ struct vm_area_struct *vma; -+ struct mm_struct *mm; -+ long unsigned int start; -+ long unsigned int end; -+ unsigned int flags; -+ enum mmu_notifier_event event; -+ void *owner; -+}; -+ -+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 kvm_sregs { -+ __u32 pvr; -+ union { -+ struct { -+ __u64 sdr1; -+ struct { -+ struct { -+ __u64 slbe; -+ __u64 slbv; -+ } slb[64]; -+ } ppc64; -+ struct { -+ __u32 sr[16]; -+ __u64 ibat[8]; -+ __u64 dbat[8]; -+ } ppc32; -+ } s; -+ struct { -+ union { -+ struct { -+ __u32 features; -+ __u32 svr; -+ __u64 mcar; -+ __u32 hid0; -+ __u32 pid1; -+ __u32 pid2; -+ } fsl; -+ __u8 pad[256]; -+ } impl; -+ __u32 features; -+ __u32 impl_id; -+ __u32 update_special; -+ __u32 pir; -+ __u64 sprg8; -+ __u64 sprg9; -+ __u64 csrr0; -+ __u64 dsrr0; -+ __u64 mcsrr0; -+ __u32 csrr1; -+ __u32 dsrr1; -+ __u32 mcsrr1; -+ __u32 esr; -+ __u64 dear; -+ __u64 ivpr; -+ __u64 mcivpr; -+ __u64 mcsr; -+ __u32 tsr; -+ __u32 tcr; -+ __u32 decar; -+ __u32 dec; -+ __u64 tb; -+ __u32 dbsr; -+ __u32 dbcr[3]; -+ __u32 iac[4]; -+ __u32 dac[2]; -+ __u32 dvc[2]; -+ __u8 num_iac; -+ __u8 num_dac; -+ __u8 num_dvc; -+ __u8 pad; -+ __u32 epr; -+ __u32 vrsave; -+ __u32 epcr; -+ __u32 mas0; -+ __u32 mas1; -+ __u64 mas2; -+ __u64 mas7_3; -+ __u32 mas4; -+ __u32 mas6; -+ __u32 ivor_low[16]; -+ __u32 ivor_high[18]; -+ __u32 mmucfg; -+ __u32 eptcfg; -+ __u32 tlbcfg[4]; -+ __u32 tlbps[4]; -+ __u32 eplc; -+ __u32 epsc; -+ } e; -+ __u8 pad[1020]; -+ } u; -+}; -+ -+struct kvm_debug_exit_arch { -+ __u64 address; -+ __u32 status; -+ __u32 reserved; -+}; -+ -+struct kvm_sync_regs {}; -+ -+struct kvm_ppc_mmuv3_cfg { -+ __u64 flags; -+ __u64 process_table; -+}; -+ -+struct kvm_ppc_radix_geom { -+ __u8 page_shift; -+ __u8 level_bits[4]; -+ __u8 pad[3]; -+}; -+ -+struct kvm_ppc_rmmu_info { -+ struct kvm_ppc_radix_geom geometries[8]; -+ __u32 ap_encodings[8]; -+}; -+ -+struct kvm_userspace_memory_region { -+ __u32 slot; -+ __u32 flags; -+ __u64 guest_phys_addr; -+ __u64 memory_size; -+ __u64 userspace_addr; -+}; -+ -+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; -+ __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 nr; -+ __u64 args[6]; -+ __u64 ret; -+ __u32 longmode; -+ __u32 pad; -+ } 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; -+ __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; -+ __u64 flags; -+ } 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; -+ char padding[256]; -+ }; -+ __u64 kvm_valid_regs; -+ __u64 kvm_dirty_regs; -+ union { -+ struct kvm_sync_regs regs; -+ char padding[2048]; -+ } s; -+}; -+ -+struct kvm_dirty_log { -+ __u32 slot; -+ __u32 padding1; -+ union { -+ void *dirty_bitmap; -+ __u64 padding2; -+ }; -+}; -+ -+struct kvm_ppc_one_page_size { -+ __u32 page_shift; -+ __u32 pte_enc; -+}; -+ -+struct kvm_ppc_one_seg_page_size { -+ __u32 page_shift; -+ __u32 slb_enc; -+ struct kvm_ppc_one_page_size enc[8]; -+}; -+ -+struct kvm_ppc_smmu_info { -+ __u64 flags; -+ __u32 slb_size; -+ __u16 data_keys; -+ __u16 instr_keys; -+ struct kvm_ppc_one_seg_page_size sps[8]; -+}; -+ -+struct kvm_dirty_gfn { -+ __u32 flags; -+ __u32 slot; -+ __u64 offset; -+}; -+ -+struct kvm_stats_desc { -+ __u32 flags; -+ __s16 exponent; -+ __u16 size; -+ __u32 offset; -+ __u32 unused; -+ char name[0]; -+}; -+ -+struct kvm_vm_stat { -+ struct kvm_vm_stat_generic generic; -+ u64 num_2M_pages; -+ u64 num_1G_pages; -+}; -+ -+struct revmap_entry; -+ -+struct kvm_hpt_info { -+ long unsigned int virt; -+ struct revmap_entry *rev; -+ u32 order; -+ int cma; -+}; -+ -+struct kvm_resize_hpt; -+ -+struct kvmppc_xics; -+ -+struct kvmppc_xive; -+ -+struct kvmppc_passthru_irqmap; -+ -+struct kvmppc_ops; -+ -+struct kvm_arch { -+ unsigned int lpid; -+ unsigned int smt_mode; -+ unsigned int emul_smt_mode; -+ unsigned int tlb_sets; -+ struct kvm_hpt_info hpt; -+ atomic64_t mmio_update; -+ unsigned int host_lpid; -+ long unsigned int host_lpcr; -+ long unsigned int sdr1; -+ long unsigned int host_sdr1; -+ long unsigned int lpcr; -+ long unsigned int vrma_slb_v; -+ int mmu_ready; -+ atomic_t vcpus_running; -+ u32 online_vcores; -+ atomic_t hpte_mod_interest; -+ cpumask_t need_tlb_flush; -+ cpumask_t cpu_in_guest; -+ u8 radix; -+ u8 fwnmi_enabled; -+ u8 secure_guest; -+ u8 svm_enabled; -+ bool nested_enable; -+ bool dawr1_enabled; -+ pgd_t *pgtable; -+ u64 process_table; -+ struct dentry *debugfs_dir; -+ struct kvm_resize_hpt *resize_hpt; -+ struct list_head spapr_tce_tables; -+ struct list_head rtas_tokens; -+ struct mutex rtas_token_lock; -+ long unsigned int enabled_hcalls[5]; -+ struct kvmppc_xics *xics; -+ struct kvmppc_xics *xics_device; -+ struct kvmppc_xive *xive; -+ struct { -+ struct kvmppc_xive *native; -+ struct kvmppc_xive *xics_on_xive; -+ } xive_devices; -+ struct kvmppc_passthru_irqmap *pimap; -+ struct kvmppc_ops *kvm_ops; -+ struct mutex uvmem_lock; -+ struct list_head uvmem_pfns; -+ struct mutex mmu_setup_lock; -+ u64 l1_ptcr; -+ int max_nested_lpid; -+ struct kvm_nested_guest *nested_guests[4096]; -+ struct kvmppc_vcore *vcores[2048]; -+}; -+ -+struct kvm_irq_routing_table; -+ -+struct kvm_memslots; -+ -+struct kvm_io_bus; -+ -+struct kvm_stat_data; -+ -+struct kvm { -+ spinlock_t mmu_lock; -+ struct mutex slots_lock; -+ struct mutex slots_arch_lock; -+ struct mm_struct *mm; -+ struct kvm_memslots *memslots[1]; -+ struct kvm_vcpu *vcpus[2048]; -+ atomic_t online_vcpus; -+ int created_vcpus; -+ int last_boosted_vcpu; -+ struct list_head vm_list; -+ struct mutex lock; -+ struct kvm_io_bus *buses[4]; -+ 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 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_notifier_seq; -+ long int mmu_notifier_count; -+ long unsigned int mmu_notifier_range_start; -+ long unsigned int mmu_notifier_range_end; -+ long int tlbs_dirty; -+ 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; -+ unsigned int max_halt_poll_ns; -+ u32 dirty_ring_size; -+ char stats_id[48]; -+}; -+ -+struct revmap_entry { -+ long unsigned int guest_rpte; -+ unsigned int forw; -+ unsigned int back; -+}; -+ -+struct kvmppc_irq_map { -+ u32 r_hwirq; -+ u32 v_hwirq; -+ struct irq_desc *desc; -+}; -+ -+struct kvmppc_passthru_irqmap { -+ int n_mapped; -+ struct kvmppc_irq_map mapped[1024]; -+}; -+ -+enum kvm_mr_change { -+ KVM_MR_CREATE = 0, -+ KVM_MR_DELETE = 1, -+ KVM_MR_MOVE = 2, -+ KVM_MR_FLAGS_ONLY = 3, -+}; -+ -+union kvmppc_one_reg; -+ -+struct kvm_gfn_range; -+ -+struct kvmppc_ops { -+ struct module *owner; -+ int (*get_sregs)(struct kvm_vcpu *, struct kvm_sregs *); -+ int (*set_sregs)(struct kvm_vcpu *, struct kvm_sregs *); -+ int (*get_one_reg)(struct kvm_vcpu *, u64, union kvmppc_one_reg *); -+ int (*set_one_reg)(struct kvm_vcpu *, u64, union kvmppc_one_reg *); -+ void (*vcpu_load)(struct kvm_vcpu *, int); -+ void (*vcpu_put)(struct kvm_vcpu *); -+ void (*inject_interrupt)(struct kvm_vcpu *, int, u64); -+ void (*set_msr)(struct kvm_vcpu *, u64); -+ int (*vcpu_run)(struct kvm_vcpu *); -+ int (*vcpu_create)(struct kvm_vcpu *); -+ void (*vcpu_free)(struct kvm_vcpu *); -+ int (*check_requests)(struct kvm_vcpu *); -+ int (*get_dirty_log)(struct kvm *, struct kvm_dirty_log *); -+ void (*flush_memslot)(struct kvm *, struct kvm_memory_slot *); -+ int (*prepare_memory_region)(struct kvm *, struct kvm_memory_slot *, const struct kvm_userspace_memory_region *, enum kvm_mr_change); -+ void (*commit_memory_region)(struct kvm *, const struct kvm_userspace_memory_region *, const struct kvm_memory_slot *, const struct kvm_memory_slot *, enum kvm_mr_change); -+ bool (*unmap_gfn_range)(struct kvm *, struct kvm_gfn_range *); -+ bool (*age_gfn)(struct kvm *, struct kvm_gfn_range *); -+ bool (*test_age_gfn)(struct kvm *, struct kvm_gfn_range *); -+ bool (*set_spte_gfn)(struct kvm *, struct kvm_gfn_range *); -+ void (*free_memslot)(struct kvm_memory_slot *); -+ int (*init_vm)(struct kvm *); -+ void (*destroy_vm)(struct kvm *); -+ int (*get_smmu_info)(struct kvm *, struct kvm_ppc_smmu_info *); -+ int (*emulate_op)(struct kvm_vcpu *, unsigned int, int *); -+ int (*emulate_mtspr)(struct kvm_vcpu *, int, ulong); -+ int (*emulate_mfspr)(struct kvm_vcpu *, int, ulong *); -+ void (*fast_vcpu_kick)(struct kvm_vcpu *); -+ long int (*arch_vm_ioctl)(struct file *, unsigned int, long unsigned int); -+ int (*hcall_implemented)(long unsigned int); -+ int (*irq_bypass_add_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); -+ void (*irq_bypass_del_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); -+ int (*configure_mmu)(struct kvm *, struct kvm_ppc_mmuv3_cfg *); -+ int (*get_rmmu_info)(struct kvm *, struct kvm_ppc_rmmu_info *); -+ int (*set_smt_mode)(struct kvm *, long unsigned int, long unsigned int); -+ void (*giveup_ext)(struct kvm_vcpu *, ulong); -+ int (*enable_nested)(struct kvm *); -+ int (*load_from_eaddr)(struct kvm_vcpu *, ulong *, void *, int); -+ int (*store_to_eaddr)(struct kvm_vcpu *, ulong *, void *, int); -+ int (*enable_svm)(struct kvm *); -+ int (*svm_off)(struct kvm *); -+ int (*enable_dawr1)(struct kvm *); -+ bool (*hash_v3_possible)(); -+}; -+ -+struct kvm_nested_guest { -+ struct kvm *l1_host; -+ int l1_lpid; -+ int shadow_lpid; -+ pgd_t *shadow_pgtable; -+ u64 l1_gr_to_hr; -+ u64 process_table; -+ long int refcnt; -+ struct mutex tlb_lock; -+ struct kvm_nested_guest *next; -+ cpumask_t need_tlb_flush; -+ cpumask_t cpu_in_guest; -+ short int prev_cpu[2048]; -+ u8 radix; -+}; -+ -+struct kvmppc_pte { -+ ulong eaddr; -+ u64 vpage; -+ ulong raddr; -+ bool may_read: 1; -+ bool may_write: 1; -+ bool may_execute: 1; -+ long unsigned int wimg; -+ long unsigned int rc; -+ u8 page_size; -+ u8 page_shift; -+}; -+ -+struct kvmppc_sid_map { -+ u64 guest_vsid; -+ u64 guest_esid; -+ u64 host_vsid; -+ bool valid: 1; -+}; -+ -+struct kvmppc_bat { -+ u64 raw; -+ u32 bepi; -+ u32 bepi_mask; -+ u32 brpn; -+ u8 wimg; -+ u8 pp; -+ bool vs: 1; -+ bool vp: 1; -+}; -+ -+struct kvmppc_vcpu_book3s { -+ struct kvmppc_sid_map sid_map[512]; -+ struct { -+ u64 esid; -+ u64 vsid; -+ } slb_shadow[64]; -+ u8 slb_shadow_max; -+ struct kvmppc_bat ibat[8]; -+ struct kvmppc_bat dbat[8]; -+ u64 hid[6]; -+ u64 gqr[8]; -+ u64 sdr1; -+ u64 hior; -+ u64 msr_mask; -+ u64 vtb; -+ u64 proto_vsid_first; -+ u64 proto_vsid_max; -+ u64 proto_vsid_next; -+ int context_id[1]; -+ bool hior_explicit; -+ struct hlist_head hpte_hash_pte[8192]; -+ struct hlist_head hpte_hash_pte_long[4096]; -+ struct hlist_head hpte_hash_vpte[8192]; -+ struct hlist_head hpte_hash_vpte_long[32]; -+ struct hlist_head hpte_hash_vpte_64k[2048]; -+ int hpte_cache_count; -+ spinlock_t mmu_lock; -+}; -+ -+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_NR_BUSES = 4, -+}; -+ -+struct kvm_gfn_range { -+ struct kvm_memory_slot *slot; -+ gfn_t start; -+ gfn_t end; -+ pte_t pte; -+ bool may_block; -+}; -+ -+struct kvm_memslots { -+ u64 generation; -+ short int id_to_index[32767]; -+ atomic_t lru_slot; -+ int used_slots; -+ struct kvm_memory_slot memslots[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 { -+ OPAL_P7IOC_NUM_PEST_REGS = 128, -+ OPAL_PHB3_NUM_PEST_REGS = 256, -+ OPAL_PHB4_NUM_PEST_REGS = 512, -+}; -+ -+union kvmppc_one_reg { -+ u32 wval; -+ u64 dval; -+ vector128 vval; -+ u64 vsxval[2]; -+ u32 vsx32val[4]; -+ u16 vsx16val[8]; -+ u8 vsx8val[16]; -+ struct { -+ u64 addr; -+ u64 length; -+ } vpaval; -+ u64 xive_timaval[2]; -+}; -+ -+enum ppc_dbell { -+ PPC_DBELL = 0, -+ PPC_DBELL_CRIT = 1, -+ PPC_G_DBELL = 2, -+ PPC_G_DBELL_CRIT = 3, -+ PPC_G_DBELL_MC = 4, -+ PPC_DBELL_SERVER = 5, -+}; -+ -+struct trace_event_raw_ppc64_interrupt_class { -+ struct trace_entry ent; -+ struct pt_regs *regs; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hcall_entry { -+ struct trace_entry ent; -+ long unsigned int opcode; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hcall_exit { -+ struct trace_entry ent; -+ long unsigned int opcode; -+ long int retval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_opal_entry { -+ struct trace_entry ent; -+ long unsigned int opcode; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_opal_exit { -+ struct trace_entry ent; -+ long unsigned int opcode; -+ long unsigned int retval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hash_fault { -+ struct trace_entry ent; -+ long unsigned int addr; -+ long unsigned int access; -+ long unsigned int trap; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_tlbie { -+ struct trace_entry ent; -+ long unsigned int lpid; -+ long unsigned int local; -+ long unsigned int rb; -+ long unsigned int rs; -+ long unsigned int ric; -+ long unsigned int prs; -+ long unsigned int r; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_tlbia { -+ struct trace_entry ent; -+ long unsigned int id; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ppc64_interrupt_class {}; -+ -+struct trace_event_data_offsets_hcall_entry {}; -+ -+struct trace_event_data_offsets_hcall_exit {}; -+ -+struct trace_event_data_offsets_opal_entry {}; -+ -+struct trace_event_data_offsets_opal_exit {}; -+ -+struct trace_event_data_offsets_hash_fault {}; -+ -+struct trace_event_data_offsets_tlbie {}; -+ -+struct trace_event_data_offsets_tlbia {}; -+ -+typedef void (*btf_trace_irq_entry)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_irq_exit)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_timer_interrupt_entry)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_timer_interrupt_exit)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_doorbell_entry)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_doorbell_exit)(void *, struct pt_regs *); -+ -+typedef void (*btf_trace_hcall_entry)(void *, long unsigned int, long unsigned int *); -+ -+typedef void (*btf_trace_hcall_exit)(void *, long unsigned int, long int, long unsigned int *); -+ -+typedef void (*btf_trace_opal_entry)(void *, long unsigned int, long unsigned int *); -+ -+typedef void (*btf_trace_opal_exit)(void *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_hash_fault)(void *, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_tlbie)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_tlbia)(void *, long unsigned int); -+ -+struct ppc_inst { -+ u32 val; -+ u32 suffix; -+}; -+ -+struct ppc_emulated_entry { -+ const char *name; -+ atomic_t val; -+}; -+ -+struct ppc_emulated { -+ struct ppc_emulated_entry altivec; -+ struct ppc_emulated_entry dcba; -+ struct ppc_emulated_entry dcbz; -+ struct ppc_emulated_entry fp_pair; -+ struct ppc_emulated_entry isel; -+ struct ppc_emulated_entry mcrxr; -+ struct ppc_emulated_entry mfpvr; -+ struct ppc_emulated_entry multiple; -+ struct ppc_emulated_entry popcntb; -+ struct ppc_emulated_entry spe; -+ struct ppc_emulated_entry string; -+ struct ppc_emulated_entry sync; -+ struct ppc_emulated_entry unaligned; -+ struct ppc_emulated_entry vsx; -+ struct ppc_emulated_entry mfdscr; -+ struct ppc_emulated_entry mtdscr; -+ struct ppc_emulated_entry lq_stq; -+ struct ppc_emulated_entry lxvw4x; -+ struct ppc_emulated_entry lxvh8x; -+ struct ppc_emulated_entry lxvd2x; -+ struct ppc_emulated_entry lxvb16x; -+}; -+ -+enum instruction_type { -+ COMPUTE = 0, -+ LOAD = 1, -+ LOAD_MULTI = 2, -+ LOAD_FP = 3, -+ LOAD_VMX = 4, -+ LOAD_VSX = 5, -+ STORE = 6, -+ STORE_MULTI = 7, -+ STORE_FP = 8, -+ STORE_VMX = 9, -+ STORE_VSX = 10, -+ LARX = 11, -+ STCX = 12, -+ BRANCH = 13, -+ MFSPR = 14, -+ MTSPR = 15, -+ CACHEOP = 16, -+ BARRIER = 17, -+ SYSCALL = 18, -+ SYSCALL_VECTORED_0 = 19, -+ MFMSR = 20, -+ MTMSR = 21, -+ RFI = 22, -+ INTERRUPT = 23, -+ UNKNOWN = 24, -+}; -+ -+struct instruction_op { -+ int type; -+ int reg; -+ long unsigned int val; -+ long unsigned int ea; -+ int update_reg; -+ int spr; -+ u32 ccval; -+ u32 xerval; -+ u8 element_size; -+ u8 vsx_flags; -+}; -+ -+typedef struct { -+ long unsigned int entry; -+ long unsigned int toc; -+ long unsigned int env; -+} func_descr_t; -+ -+typedef long unsigned int uintptr_t; -+ -+typedef u8 uint8_t; -+ -+struct sigaltstack { -+ void *ss_sp; -+ int ss_flags; -+ size_t ss_size; -+}; -+ -+typedef struct sigaltstack stack_t; -+ -+struct siginfo { -+ union { -+ struct { -+ int si_signo; -+ int si_errno; -+ int si_code; -+ union __sifields _sifields; -+ }; -+ int _si_pad[32]; -+ }; -+}; -+ -+typedef struct siginfo siginfo_t; -+ -+struct ksignal { -+ struct k_sigaction ka; -+ kernel_siginfo_t info; -+ int sig; -+}; -+ -+typedef long unsigned int elf_greg_t64; -+ -+typedef elf_greg_t64 elf_gregset_t64[48]; -+ -+typedef elf_gregset_t64 elf_gregset_t; -+ -+typedef double elf_fpreg_t; -+ -+typedef elf_fpreg_t elf_fpregset_t[33]; -+ -+typedef __vector128 elf_vrreg_t; -+ -+struct sigcontext { -+ long unsigned int _unused[4]; -+ int signal; -+ int _pad0; -+ long unsigned int handler; -+ long unsigned int oldmask; -+ struct user_pt_regs *regs; -+ elf_gregset_t gp_regs; -+ elf_fpregset_t fp_regs; -+ elf_vrreg_t *v_regs; -+ long int vmx_reserve[101]; -+}; -+ -+struct ucontext { -+ long unsigned int uc_flags; -+ struct ucontext *uc_link; -+ stack_t uc_stack; -+ sigset_t uc_sigmask; -+ sigset_t __unused[15]; -+ struct sigcontext uc_mcontext; -+}; -+ -+struct rt_sigframe { -+ struct ucontext uc; -+ struct ucontext uc_transact; -+ long unsigned int _unused[2]; -+ unsigned int tramp[7]; -+ struct siginfo *pinfo; -+ void *puc; -+ struct siginfo info; -+ char abigap[512]; -+}; -+ -+typedef void (*perf_irq_t)(struct pt_regs *); -+ -+struct ppc_cache_info { -+ u32 size; -+ u32 line_size; -+ u32 block_size; -+ u32 log_block_size; -+ u32 blocks_per_page; -+ u32 sets; -+ u32 assoc; -+}; -+ -+struct ppc64_caches { -+ struct ppc_cache_info l1d; -+ struct ppc_cache_info l1i; -+ struct ppc_cache_info l2; -+ struct ppc_cache_info l3; -+}; -+ -+struct timens_offset { -+ s64 sec; -+ u64 nsec; -+}; -+ -+enum vm_fault_reason { -+ VM_FAULT_OOM = 1, -+ VM_FAULT_SIGBUS = 2, -+ VM_FAULT_MAJOR = 4, -+ VM_FAULT_WRITE = 8, -+ 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_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 *); -+}; -+ -+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; -+}; -+ -+enum { -+ TASKSTATS_CMD_UNSPEC = 0, -+ TASKSTATS_CMD_GET = 1, -+ TASKSTATS_CMD_NEW = 2, -+ __TASKSTATS_CMD_MAX = 3, -+}; -+ -+enum bpf_cgroup_storage_type { -+ BPF_CGROUP_STORAGE_SHARED = 0, -+ BPF_CGROUP_STORAGE_PERCPU = 1, -+ __BPF_CGROUP_STORAGE_MAX = 2, -+}; -+ -+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 psi_task_count { -+ NR_IOWAIT = 0, -+ NR_MEMSTALL = 1, -+ NR_RUNNING = 2, -+ NR_ONCPU = 3, -+ NR_PSI_TASK_COUNTS = 4, -+}; -+ -+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, -+ CGROUP_SUBSYS_COUNT = 14, -+}; -+ -+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; -+}; -+ -+struct vdso_arch_data { -+ __u8 eye_catcher[16]; -+ struct { -+ __u32 major; -+ __u32 minor; -+ } version; -+ __u32 platform; -+ __u32 processor; -+ __u64 processorCount; -+ __u64 physicalMemorySize; -+ __u64 tb_orig_stamp; -+ __u64 tb_ticks_per_sec; -+ __u64 tb_to_xs; -+ __u64 stamp_xsec; -+ __u64 tb_update_count; -+ __u32 tz_minuteswest; -+ __u32 tz_dsttime; -+ __u32 dcache_size; -+ __u32 dcache_line_size; -+ __u32 icache_size; -+ __u32 icache_line_size; -+ __u32 dcache_block_size; -+ __u32 icache_block_size; -+ __u32 dcache_log_block_size; -+ __u32 icache_log_block_size; -+ __u32 syscall_map[14]; -+ __u32 compat_syscall_map[14]; -+ struct vdso_data data[2]; -+}; -+ -+enum vvar_pages { -+ VVAR_DATA_PAGE_OFFSET = 0, -+ VVAR_TIMENS_PAGE_OFFSET = 1, -+ VVAR_NR_PAGES = 2, -+}; -+ -+typedef struct { -+ pte_t pte; -+ long unsigned int hidx; -+} real_pte_t; -+ -+struct mmu_psize_def { -+ unsigned int shift; -+ int penc[16]; -+ unsigned int tlbiel; -+ long unsigned int avpnm; -+ long unsigned int h_rpt_pgsize; -+ union { -+ long unsigned int sllp; -+ long unsigned int ap; -+ }; -+}; -+ -+enum die_val { -+ DIE_OOPS = 1, -+ DIE_IABR_MATCH = 2, -+ DIE_DABR_MATCH = 3, -+ DIE_BPT = 4, -+ DIE_SSTEP = 5, -+}; -+ -+struct ppc64_tlb_batch { -+ int active; -+ long unsigned int index; -+ struct mm_struct *mm; -+ real_pte_t pte[192]; -+ long unsigned int vpn[192]; -+ unsigned int psize; -+ int ssize; -+}; -+ -+struct regbit { -+ long unsigned int bit; -+ const char *name; -+}; -+ -+enum idle_boot_override { -+ IDLE_NO_OVERRIDE = 0, -+ IDLE_POWERSAVE_OFF = 1, -+}; -+ -+typedef bool (*smp_cond_func_t)(int, void *); -+ -+struct smp_ops_t { -+ void (*message_pass)(int, int); -+ void (*cause_ipi)(int); -+ int (*cause_nmi_ipi)(int); -+ void (*probe)(); -+ int (*kick_cpu)(int); -+ int (*prepare_cpu)(int); -+ void (*setup_cpu)(int); -+ void (*bringup_done)(); -+ void (*take_timebase)(); -+ void (*give_timebase)(); -+ int (*cpu_disable)(); -+ void (*cpu_die)(unsigned int); -+ int (*cpu_bootable)(unsigned int); -+ void (*cpu_offline_self)(); -+}; -+ -+enum meminit_context { -+ MEMINIT_EARLY = 0, -+ MEMINIT_HOTPLUG = 1, -+}; -+ -+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 node { -+ struct device dev; -+ struct list_head access_list; -+ struct work_struct node_work; -+}; -+ -+struct cpu { -+ int node_id; -+ int hotpluggable; -+ struct device dev; -+}; -+ -+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 cache_index_dir; -+ -+struct cache_dir { -+ struct kobject *kobj; -+ struct cache_index_dir *index; -+}; -+ -+struct cache; -+ -+struct cache_index_dir { -+ struct kobject kobj; -+ struct cache_index_dir *next; -+ struct cache *cache; -+}; -+ -+struct cache { -+ struct device_node *ofnode; -+ struct cpumask shared_cpu_map; -+ int type; -+ int level; -+ struct list_head list; -+ struct cache *next_local; -+}; -+ -+struct cache_type_info { -+ const char *name; -+ const char *size_prop; -+ const char *line_size_props[2]; -+ const char *nr_sets_prop; -+}; -+ -+struct timezone { -+ int tz_minuteswest; -+ int tz_dsttime; -+}; -+ -+enum clocksource_ids { -+ CSID_GENERIC = 0, -+ CSID_ARM_ARCH_COUNTER = 1, -+ CSID_MAX = 2, -+}; -+ -+enum vdso_clock_mode { -+ VDSO_CLOCKMODE_NONE = 0, -+ VDSO_CLOCKMODE_ARCHTIMER = 1, -+ VDSO_CLOCKMODE_MAX = 2, -+ VDSO_CLOCKMODE_TIMENS = 2147483647, -+}; -+ -+struct clocksource { -+ u64 (*read)(struct clocksource *); -+ u64 mask; -+ u32 mult; -+ u32 shift; -+ u64 max_idle_ns; -+ u32 maxadj; -+ u32 uncertainty_margin; -+ u64 max_cycles; -+ const char *name; -+ struct list_head list; -+ int rating; -+ enum clocksource_ids id; -+ enum vdso_clock_mode vdso_clock_mode; -+ long unsigned int flags; -+ 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 pdev_archdata { -+ u64 dma_mask; -+}; -+ -+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 div_result { -+ u64 result_high; -+ u64 result_low; -+}; -+ -+struct kernel_cpustat { -+ u64 cpustat[10]; -+}; -+ -+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 rtc_wkalrm { -+ unsigned char enabled; -+ unsigned char pending; -+ struct rtc_time time; -+}; -+ -+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); -+}; -+ -+struct platform_device_id { -+ char name[20]; -+ kernel_ulong_t driver_data; -+}; -+ -+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 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; -+ char *driver_override; -+ struct mfd_cell *mfd_cell; -+ struct pdev_archdata archdata; -+}; -+ -+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 iommu_pool { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int hint; -+ spinlock_t lock; -+ long: 32; -+ 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 iommu_table_ops; -+ -+struct iommu_table { -+ long unsigned int it_busno; -+ long unsigned int it_size; -+ long unsigned int it_indirect_levels; -+ long unsigned int it_level_size; -+ long unsigned int it_allocated_size; -+ long unsigned int it_offset; -+ long unsigned int it_base; -+ long unsigned int it_index; -+ long unsigned int it_type; -+ long unsigned int it_blocksize; -+ long unsigned int poolsize; -+ long unsigned int nr_pools; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct iommu_pool large_pool; -+ struct iommu_pool pools[4]; -+ long unsigned int *it_map; -+ long unsigned int it_page_shift; -+ struct list_head it_group_list; -+ __be64 *it_userspace; -+ struct iommu_table_ops *it_ops; -+ struct kref it_kref; -+ int it_nid; -+ long unsigned int it_reserved_start; -+ long unsigned int it_reserved_end; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct iommu_table_group_ops; -+ -+struct iommu_table_group { -+ __u32 tce32_start; -+ __u32 tce32_size; -+ __u64 pgsizes; -+ __u32 max_dynamic_windows_supported; -+ __u32 max_levels; -+ struct iommu_group *group; -+ struct iommu_table *tables[2]; -+ struct iommu_table_group_ops *ops; -+}; -+ -+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; -+}; -+ -+struct iommu_table_ops { -+ int (*set)(struct iommu_table *, long int, long int, long unsigned int, enum dma_data_direction, long unsigned int); -+ int (*xchg_no_kill)(struct iommu_table *, long int, long unsigned int *, enum dma_data_direction *, bool); -+ void (*tce_kill)(struct iommu_table *, long unsigned int, long unsigned int, bool); -+ __be64 * (*useraddrptr)(struct iommu_table *, long int, bool); -+ void (*clear)(struct iommu_table *, long int, long int); -+ long unsigned int (*get)(struct iommu_table *, long int); -+ void (*flush)(struct iommu_table *); -+ void (*free)(struct iommu_table *); -+}; -+ -+struct iommu_table_group_ops { -+ long unsigned int (*get_table_size)(__u32, __u64, __u32); -+ long int (*create_table)(struct iommu_table_group *, int, __u32, __u64, __u32, struct iommu_table **); -+ long int (*set_window)(struct iommu_table_group *, int, struct iommu_table *); -+ long int (*unset_window)(struct iommu_table_group *, int); -+ void (*take_ownership)(struct iommu_table_group *); -+ void (*release_ownership)(struct iommu_table_group *); -+}; -+ -+struct drmem_lmb { -+ u64 base_addr; -+ u32 drc_index; -+ u32 aa_index; -+ u32 flags; -+}; -+ -+struct drmem_lmb_info { -+ struct drmem_lmb *lmbs; -+ int n_lmbs; -+ u64 lmb_size; -+}; -+ -+struct ibm_pa_feature { -+ long unsigned int cpu_features; -+ long unsigned int mmu_features; -+ unsigned int cpu_user_ftrs; -+ unsigned int cpu_user_ftrs2; -+ unsigned char pabyte; -+ unsigned char pabit; -+ unsigned char invert; -+}; -+ -+struct feature_property { -+ const char *name; -+ u32 min_value; -+ long unsigned int cpu_feature; -+ long unsigned int cpu_user_ftr; -+}; -+ -+enum lockdep_ok { -+ LOCKDEP_STILL_OK = 0, -+ LOCKDEP_NOW_UNRELIABLE = 1, -+}; -+ -+enum bug_trap_type { -+ BUG_TRAP_TYPE_NONE = 0, -+ BUG_TRAP_TYPE_WARN = 1, -+ BUG_TRAP_TYPE_BUG = 2, -+}; -+ -+typedef int kexec_probe_t(const char *, long unsigned int); -+ -+typedef void *kexec_load_t(struct kimage *, char *, long unsigned int, char *, long unsigned int, char *, long unsigned int); -+ -+typedef int kexec_cleanup_t(void *); -+ -+struct kexec_file_ops { -+ kexec_probe_t *probe; -+ kexec_load_t *load; -+ kexec_cleanup_t *cleanup; -+}; -+ -+struct crash_mem; -+ -+struct kimage_arch { -+ struct crash_mem *exclude_ranges; -+ long unsigned int backup_start; -+ void *backup_buf; -+ void *fdt; -+}; -+ -+struct crash_mem_range { -+ u64 start; -+ u64 end; -+}; -+ -+struct crash_mem { -+ unsigned int max_nr_ranges; -+ unsigned int nr_ranges; -+ struct crash_mem_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; -+}; -+ -+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 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; -+ 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; -+ void *ima_buffer; -+ phys_addr_t ima_buffer_addr; -+ size_t ima_buffer_size; -+ void *elf_headers; -+ long unsigned int elf_headers_sz; -+ long unsigned int elf_load_addr; -+}; -+ -+enum con_flush_mode { -+ CONSOLE_FLUSH_PENDING = 0, -+ CONSOLE_REPLAY_ALL = 1, -+}; -+ -+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 interrupt_nmi_state { -+ u8 irq_soft_mask; -+ u8 irq_happened; -+ u8 ftrace_enabled; -+ u64 softe; -+}; -+ -+struct atomic_notifier_head { -+ spinlock_t lock; -+ struct notifier_block *head; -+}; -+ -+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 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_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 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)(); -+ int (*setup)(struct console *, char *); -+ int (*exit)(struct console *); -+ int (*match)(struct console *, char *, int, char *); -+ short int flags; -+ short int index; -+ int cflag; -+ void *data; -+ struct console *next; -+}; -+ -+typedef long int (*syscall_fn)(long int, long int, long int, long int, long int, long int); -+ -+struct ppc_debug_info { -+ __u32 version; -+ __u32 num_instruction_bps; -+ __u32 num_data_bps; -+ __u32 num_condition_regs; -+ __u32 data_bp_alignment; -+ __u32 sizeof_condition; -+ __u64 features; -+}; -+ -+struct ppc_hw_breakpoint { -+ __u32 version; -+ __u32 trigger_type; -+ __u32 addr_mode; -+ __u32 condition_mode; -+ __u64 addr; -+ __u64 addr2; -+ __u64 condition_value; -+}; -+ -+struct seccomp_data { -+ int nr; -+ __u32 arch; -+ __u64 instruction_pointer; -+ __u64 args[6]; -+}; -+ -+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 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); -+ -+enum powerpc_regset { -+ REGSET_GPR = 0, -+ REGSET_FPR = 1, -+ REGSET_VMX = 2, -+ REGSET_VSX = 3, -+ REGSET_TM_CGPR = 4, -+ REGSET_TM_CFPR = 5, -+ REGSET_TM_CVMX = 6, -+ REGSET_TM_CVSX = 7, -+ REGSET_TM_SPR = 8, -+ REGSET_TM_CTAR = 9, -+ REGSET_TM_CPPR = 10, -+ REGSET_TM_CDSCR = 11, -+ REGSET_PPR = 12, -+ REGSET_DSCR = 13, -+ REGSET_TAR = 14, -+ REGSET_EBB = 15, -+ REGSET_PMR = 16, -+ REGSET_PKEY = 17, -+}; -+ -+struct pt_regs_offset { -+ const char *name; -+ int offset; -+}; -+ -+typedef u32 compat_ulong_t; -+ -+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, -+}; -+ -+typedef struct { -+ pgd_t pgd; -+} p4d_t; -+ -+typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int, size_t, size_t); -+ -+typedef void (*pcpu_fc_free_fn_t)(void *, size_t); -+ -+typedef void (*pcpu_fc_populate_pte_fn_t)(long unsigned int); -+ -+typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); -+ -+struct ppc_pci_io { -+ u8 (*readb)(const volatile void *); -+ u16 (*readw)(const volatile void *); -+ u32 (*readl)(const volatile void *); -+ u16 (*readw_be)(const volatile void *); -+ u32 (*readl_be)(const volatile void *); -+ void (*writeb)(u8, volatile void *); -+ void (*writew)(u16, volatile void *); -+ void (*writel)(u32, volatile void *); -+ void (*writew_be)(u16, volatile void *); -+ void (*writel_be)(u32, volatile void *); -+ u64 (*readq)(const volatile void *); -+ u64 (*readq_be)(const volatile void *); -+ void (*writeq)(u64, volatile void *); -+ void (*writeq_be)(u64, volatile void *); -+ u8 (*inb)(long unsigned int); -+ u16 (*inw)(long unsigned int); -+ u32 (*inl)(long unsigned int); -+ void (*outb)(u8, long unsigned int); -+ void (*outw)(u16, long unsigned int); -+ void (*outl)(u32, long unsigned int); -+ void (*readsb)(const volatile void *, void *, long unsigned int); -+ void (*readsw)(const volatile void *, void *, long unsigned int); -+ void (*readsl)(const volatile void *, void *, long unsigned int); -+ void (*writesb)(volatile void *, const void *, long unsigned int); -+ void (*writesw)(volatile void *, const void *, long unsigned int); -+ void (*writesl)(volatile void *, const void *, long unsigned int); -+ void (*insb)(long unsigned int, void *, long unsigned int); -+ void (*insw)(long unsigned int, void *, long unsigned int); -+ void (*insl)(long unsigned int, void *, long unsigned int); -+ void (*outsb)(long unsigned int, const void *, long unsigned int); -+ void (*outsw)(long unsigned int, const void *, long unsigned int); -+ void (*outsl)(long unsigned int, const void *, long unsigned int); -+ void (*memset_io)(volatile void *, int, long unsigned int); -+ void (*memcpy_fromio)(void *, const volatile void *, long unsigned int); -+ void (*memcpy_toio)(volatile void *, const void *, long unsigned int); -+}; -+ -+enum memblock_flags { -+ MEMBLOCK_NONE = 0, -+ MEMBLOCK_HOTPLUG = 1, -+ MEMBLOCK_MIRROR = 2, -+ MEMBLOCK_NOMAP = 4, -+}; -+ -+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; -+}; -+ -+struct semaphore { -+ raw_spinlock_t lock; -+ unsigned int count; -+ struct list_head wait_list; -+}; -+ -+struct kmsg_dump_iter { -+ u64 cur_seq; -+ u64 next_seq; -+}; -+ -+struct kmsg_dumper { -+ struct list_head list; -+ void (*dump)(struct kmsg_dumper *, enum kmsg_dump_reason); -+ enum kmsg_dump_reason max_reason; -+ bool registered; -+}; -+ -+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; -+ int count; -+ enum kmsg_dump_reason reason; -+ unsigned int part; -+ bool compressed; -+}; -+ -+struct pstore_info { -+ struct module *owner; -+ const char *name; -+ struct semaphore 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 *); -+}; -+ -+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; -+ -+struct err_log_info { -+ __be32 error_type; -+ __be32 seq_num; -+}; -+ -+struct nvram_os_partition { -+ const char *name; -+ int req_size; -+ int min_size; -+ long int size; -+ long int index; -+ bool os_partition; -+}; -+ -+struct oops_log_info { -+ __be16 version; -+ __be16 report_length; -+ __be64 timestamp; -+} __attribute__((packed)); -+ -+struct nvram_header { -+ unsigned char signature; -+ unsigned char checksum; -+ short unsigned int length; -+ char name[12]; -+}; -+ -+struct nvram_partition { -+ struct list_head partition; -+ struct nvram_header header; -+ unsigned int index; -+}; -+ -+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 die_args { -+ struct pt_regs *regs; -+ const char *str; -+ long int err; -+ int trapnr; -+ int signr; -+}; -+ -+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, -+}; -+ -+struct breakpoint { -+ struct list_head list; -+ struct perf_event *bp; -+ bool ptrace_bp; -+}; -+ -+struct mce_error_info { -+ enum MCE_ErrorType error_type: 8; -+ union { -+ enum MCE_UeErrorType ue_error_type: 8; -+ enum MCE_SlbErrorType slb_error_type: 8; -+ enum MCE_EratErrorType erat_error_type: 8; -+ enum MCE_TlbErrorType tlb_error_type: 8; -+ enum MCE_UserErrorType user_error_type: 8; -+ enum MCE_RaErrorType ra_error_type: 8; -+ enum MCE_LinkErrorType link_error_type: 8; -+ } u; -+ enum MCE_Severity severity: 8; -+ enum MCE_Initiator initiator: 8; -+ enum MCE_ErrorClass error_class: 8; -+ bool sync_error; -+ bool ignore_event; -+}; -+ -+enum { -+ WORK_STRUCT_PENDING_BIT = 0, -+ WORK_STRUCT_DELAYED_BIT = 1, -+ WORK_STRUCT_PWQ_BIT = 2, -+ WORK_STRUCT_LINKED_BIT = 3, -+ WORK_STRUCT_COLOR_SHIFT = 4, -+ WORK_STRUCT_COLOR_BITS = 4, -+ WORK_STRUCT_PENDING = 1, -+ WORK_STRUCT_DELAYED = 2, -+ WORK_STRUCT_PWQ = 4, -+ WORK_STRUCT_LINKED = 8, -+ WORK_STRUCT_STATIC = 0, -+ WORK_NR_COLORS = 15, -+ WORK_NO_COLOR = 15, -+ WORK_CPU_UNBOUND = 2048, -+ WORK_STRUCT_FLAG_BITS = 8, -+ WORK_OFFQ_FLAG_BASE = 4, -+ __WORK_OFFQ_CANCELING = 4, -+ WORK_OFFQ_CANCELING = 16, -+ WORK_OFFQ_FLAG_BITS = 1, -+ WORK_OFFQ_POOL_SHIFT = 5, -+ WORK_OFFQ_LEFT = 59, -+ WORK_OFFQ_POOL_BITS = 31, -+ WORK_OFFQ_POOL_NONE = 2147483647, -+ WORK_STRUCT_FLAG_MASK = 255, -+ WORK_STRUCT_WQ_DATA_MASK = 4294967040, -+ WORK_STRUCT_NO_POOL = 4294967264, -+ WORK_BUSY_PENDING = 1, -+ WORK_BUSY_RUNNING = 2, -+ WORKER_DESC_LEN = 24, -+}; -+ -+enum { -+ DTRIG_UNKNOWN = 0, -+ DTRIG_VECTOR_CI = 1, -+ DTRIG_SUSPEND_ESCAPE = 2, -+}; -+ -+enum { -+ TLB_INVAL_SCOPE_GLOBAL = 0, -+ TLB_INVAL_SCOPE_LPID = 1, -+}; -+ -+struct mce_ierror_table { -+ long unsigned int srr1_mask; -+ long unsigned int srr1_value; -+ bool nip_valid; -+ unsigned int error_type; -+ unsigned int error_subtype; -+ unsigned int error_class; -+ unsigned int initiator; -+ unsigned int severity; -+ bool sync_error; -+}; -+ -+struct mce_derror_table { -+ long unsigned int dsisr_value; -+ bool dar_valid; -+ unsigned int error_type; -+ unsigned int error_subtype; -+ unsigned int error_class; -+ unsigned int initiator; -+ unsigned int severity; -+ bool sync_error; -+}; -+ -+enum stf_barrier_type { -+ STF_BARRIER_NONE = 1, -+ STF_BARRIER_FALLBACK = 2, -+ STF_BARRIER_EIEIO = 4, -+ STF_BARRIER_SYNC_ORI = 8, -+}; -+ -+enum l1d_flush_type { -+ L1D_FLUSH_NONE = 1, -+ L1D_FLUSH_FALLBACK = 2, -+ L1D_FLUSH_ORI = 4, -+ L1D_FLUSH_MTTRIG = 8, -+}; -+ -+enum branch_cache_flush_type { -+ BRANCH_CACHE_FLUSH_NONE = 1, -+ BRANCH_CACHE_FLUSH_SW = 2, -+ BRANCH_CACHE_FLUSH_HW = 4, -+}; -+ -+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 u16 uint16_t; -+ -+struct rtas_t { -+ long unsigned int entry; -+ long unsigned int base; -+ long unsigned int size; -+ arch_spinlock_t lock; -+ struct rtas_args args; -+ struct device_node *dev; -+}; -+ -+struct rtas_error_log { -+ u8 byte0; -+ u8 byte1; -+ u8 byte2; -+ u8 byte3; -+ __be32 extended_log_length; -+ unsigned char buffer[1]; -+}; -+ -+struct rtas_ext_event_log_v6 { -+ u8 byte0; -+ u8 byte1; -+ u8 byte2; -+ u8 byte3; -+ u8 reserved[8]; -+ __be32 company_id; -+ u8 vendor_log[1]; -+}; -+ -+struct pseries_errorlog { -+ __be16 id; -+ __be16 length; -+ u8 version; -+ u8 subtype; -+ __be16 creator_component; -+ u8 data[0]; -+}; -+ -+struct rtas_filter { -+ const char *name; -+ int token; -+ int buf_idx1; -+ int size_idx1; -+ int buf_idx2; -+ int size_idx2; -+ int fixed_size; -+}; -+ -+struct indicator_elem { -+ __be32 token; -+ __be32 maxindex; -+}; -+ -+typedef struct poll_table_struct poll_table; -+ -+typedef void (*exitcall_t)(); -+ -+struct flash_block { -+ char *data; -+ long unsigned int length; -+}; -+ -+struct flash_block_list { -+ long unsigned int num_blocks; -+ struct flash_block_list *next; -+ struct flash_block blocks[255]; -+}; -+ -+struct rtas_update_flash_t { -+ int status; -+ struct flash_block_list *flist; -+}; -+ -+struct rtas_manage_flash_t { -+ int status; -+}; -+ -+struct rtas_validate_flash_t { -+ int status; -+ char *buf; -+ unsigned int buf_size; -+ unsigned int update_results; -+}; -+ -+struct rtas_flash_file { -+ const char *filename; -+ const char *rtas_call_name; -+ int *status; -+ const struct proc_ops ops; -+}; -+ -+struct individual_sensor { -+ unsigned int token; -+ unsigned int quant; -+}; -+ -+struct rtas_sensors { -+ struct individual_sensor sensor[17]; -+ unsigned int quant; -+}; -+ -+struct dt_cpu_feature { -+ const char *name; -+ uint32_t isa; -+ uint32_t usable_privilege; -+ uint32_t hv_support; -+ uint32_t os_support; -+ uint32_t hfscr_bit_nr; -+ uint32_t fscr_bit_nr; -+ uint32_t hwcap_bit_nr; -+ long unsigned int node; -+ int enabled; -+ int disabled; -+}; -+ -+struct dt_cpu_feature_match { -+ const char *name; -+ int (*enable)(struct dt_cpu_feature *); -+ u64 cpu_ftr_bit_mask; -+}; -+ -+struct iopf_device_param; -+ -+struct iommu_fault_param; -+ -+struct iommu_fwspec; -+ -+struct dev_iommu { -+ struct mutex lock; -+ struct iommu_fault_param *fault_param; -+ struct iopf_device_param *iopf_param; -+ struct iommu_fwspec *fwspec; -+ struct iommu_device *iommu_dev; -+ void *priv; -+}; -+ -+struct eeh_ops { -+ char *name; -+ struct eeh_dev * (*probe)(struct pci_dev *); -+ int (*set_option)(struct eeh_pe *, int); -+ int (*get_state)(struct eeh_pe *, int *); -+ int (*reset)(struct eeh_pe *, int); -+ int (*get_log)(struct eeh_pe *, int, char *, long unsigned int); -+ int (*configure_bridge)(struct eeh_pe *); -+ int (*err_inject)(struct eeh_pe *, int, int, long unsigned int, long unsigned int); -+ int (*read_config)(struct eeh_dev *, int, int, u32 *); -+ int (*write_config)(struct eeh_dev *, int, int, u32); -+ int (*next_error)(struct eeh_pe **); -+ int (*restore_config)(struct eeh_dev *); -+ int (*notify_resume)(struct eeh_dev *); -+}; -+ -+typedef void (*eeh_edev_traverse_func)(struct eeh_dev *, void *); -+ -+typedef void * (*eeh_pe_traverse_func)(struct eeh_pe *, void *); -+ -+enum pcie_reset_state { -+ pcie_deassert_reset = 1, -+ pcie_warm_reset = 2, -+ pcie_hot_reset = 3, -+}; -+ -+struct of_phandle_args { -+ struct device_node *np; -+ int args_count; -+ uint32_t args[16]; -+}; -+ -+struct iommu_fault_unrecoverable { -+ __u32 reason; -+ __u32 flags; -+ __u32 pasid; -+ __u32 perm; -+ __u64 addr; -+ __u64 fetch_addr; -+}; -+ -+struct iommu_fault_page_request { -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 perm; -+ __u64 addr; -+ __u64 private_data[2]; -+}; -+ -+struct iommu_fault { -+ __u32 type; -+ __u32 padding; -+ union { -+ struct iommu_fault_unrecoverable event; -+ struct iommu_fault_page_request prm; -+ __u8 padding2[56]; -+ }; -+}; -+ -+struct iommu_page_response { -+ __u32 argsz; -+ __u32 version; -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 code; -+}; -+ -+struct iommu_inv_addr_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+ __u64 addr; -+ __u64 granule_size; -+ __u64 nb_granules; -+}; -+ -+struct iommu_inv_pasid_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+}; -+ -+struct iommu_cache_invalidate_info { -+ __u32 argsz; -+ __u32 version; -+ __u8 cache; -+ __u8 granularity; -+ __u8 padding[6]; -+ union { -+ struct iommu_inv_pasid_info pasid_info; -+ struct iommu_inv_addr_info addr_info; -+ } granu; -+}; -+ -+struct iommu_gpasid_bind_data_vtd { -+ __u64 flags; -+ __u32 pat; -+ __u32 emt; -+}; -+ -+struct iommu_gpasid_bind_data { -+ __u32 argsz; -+ __u32 version; -+ __u32 format; -+ __u32 addr_width; -+ __u64 flags; -+ __u64 gpgd; -+ __u64 hpasid; -+ __u64 gpasid; -+ __u8 padding[8]; -+ union { -+ struct iommu_gpasid_bind_data_vtd vtd; -+ } vendor; -+}; -+ -+typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); -+ -+struct iommu_domain_geometry { -+ dma_addr_t aperture_start; -+ dma_addr_t aperture_end; -+ bool force_aperture; -+}; -+ -+struct iommu_dma_cookie; -+ -+struct iommu_domain { -+ unsigned int type; -+ const struct iommu_ops *ops; -+ long unsigned int pgsize_bitmap; -+ iommu_fault_handler_t handler; -+ void *handler_token; -+ struct iommu_domain_geometry geometry; -+ struct iommu_dma_cookie *iova_cookie; -+}; -+ -+typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault *, void *); -+ -+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; -+}; -+ -+struct iommu_iotlb_gather { -+ long unsigned int start; -+ long unsigned int end; -+ size_t pgsize; -+ struct page *freelist; -+ bool queued; -+}; -+ -+struct iommu_device { -+ struct list_head list; -+ const struct iommu_ops *ops; -+ struct fwnode_handle *fwnode; -+ struct device *dev; -+}; -+ -+struct iommu_sva { -+ struct device *dev; -+}; -+ -+struct iommu_fault_event { -+ struct iommu_fault fault; -+ struct list_head list; -+}; -+ -+struct iommu_fault_param { -+ iommu_dev_fault_handler_t handler; -+ void *data; -+ struct list_head faults; -+ struct mutex lock; -+}; -+ -+struct iommu_fwspec { -+ const struct iommu_ops *ops; -+ struct fwnode_handle *iommu_fwnode; -+ u32 flags; -+ unsigned int num_ids; -+ u32 ids[0]; -+}; -+ -+struct eeh_stats { -+ u64 no_device; -+ u64 no_dn; -+ u64 no_cfg_addr; -+ u64 ignored_check; -+ u64 total_mmio_ffs; -+ u64 false_positives; -+ u64 slot_resets; -+}; -+ -+enum { -+ pci_channel_io_normal = 1, -+ pci_channel_io_frozen = 2, -+ pci_channel_io_perm_failure = 3, -+}; -+ -+struct pci_io_addr_range { -+ struct rb_node rb_node; -+ resource_size_t addr_lo; -+ resource_size_t addr_hi; -+ struct eeh_dev *edev; -+ struct pci_dev *pcidev; -+ long unsigned int flags; -+}; -+ -+struct pci_io_addr_cache { -+ struct rb_root rb_root; -+ spinlock_t piar_lock; -+}; -+ -+enum { -+ EEH_NEXT_ERR_NONE = 0, -+ EEH_NEXT_ERR_INF = 1, -+ EEH_NEXT_ERR_FROZEN_PE = 2, -+ EEH_NEXT_ERR_FENCED_PHB = 3, -+ EEH_NEXT_ERR_DEAD_PHB = 4, -+ EEH_NEXT_ERR_DEAD_IOC = 5, -+}; -+ -+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_MSI_NOMASK_QUIRK = 134217728, -+ IRQD_HANDLE_ENFORCE_IRQCTX = 268435456, -+ IRQD_AFFINITY_ON_ACTIVATE = 536870912, -+ IRQD_IRQ_ENABLED_ON_SUSPEND = 1073741824, -+}; -+ -+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 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 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 *, int); -+}; -+ -+struct eeh_rmv_data { -+ struct list_head removed_vf_list; -+ int removed_dev_count; -+}; -+ -+typedef enum pci_ers_result (*eeh_report_fn)(struct eeh_dev *, struct pci_dev *, struct pci_driver *); -+ -+struct eeh_event { -+ struct list_head list; -+ struct eeh_pe *pe; -+}; -+ -+enum pageflags { -+ PG_locked = 0, -+ PG_referenced = 1, -+ PG_uptodate = 2, -+ PG_dirty = 3, -+ PG_lru = 4, -+ PG_active = 5, -+ PG_workingset = 6, -+ PG_waiters = 7, -+ PG_error = 8, -+ PG_slab = 9, -+ PG_owner_priv_1 = 10, -+ PG_arch_1 = 11, -+ PG_reserved = 12, -+ PG_private = 13, -+ PG_private_2 = 14, -+ PG_writeback = 15, -+ PG_head = 16, -+ PG_mappedtodisk = 17, -+ PG_reclaim = 18, -+ PG_swapbacked = 19, -+ PG_unevictable = 20, -+ PG_mlocked = 21, -+ PG_hwpoison = 22, -+ PG_young = 23, -+ PG_idle = 24, -+ PG_arch_2 = 25, -+ __NR_PAGEFLAGS = 26, -+ PG_checked = 10, -+ PG_swapcache = 10, -+ PG_fscache = 14, -+ PG_pinned = 10, -+ PG_savepinned = 3, -+ PG_foreign = 10, -+ PG_xen_remapped = 10, -+ PG_slob_free = 13, -+ PG_double_map = 6, -+ PG_isolated = 18, -+ PG_reported = 2, -+}; -+ -+struct __kernel_old_timeval { -+ __kernel_long_t tv_sec; -+ __kernel_long_t tv_usec; -+}; -+ -+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 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 fadump_crash_info_header { -+ u64 magic_number; -+ u64 elfcorehdr_addr; -+ u32 crashing_cpu; -+ struct pt_regs regs; -+ struct cpumask online_mask; -+}; -+ -+struct fadump_memory_range { -+ u64 base; -+ u64 size; -+}; -+ -+struct fadump_mrange_info { -+ char name[16]; -+ struct fadump_memory_range *mem_ranges; -+ u32 mem_ranges_sz; -+ u32 mem_range_cnt; -+ u32 max_mem_ranges; -+ bool is_static; -+}; -+ -+struct fadump_ops; -+ -+struct fw_dump { -+ long unsigned int reserve_dump_area_start; -+ long unsigned int reserve_dump_area_size; -+ long unsigned int reserve_bootvar; -+ long unsigned int cpu_state_data_size; -+ u64 cpu_state_dest_vaddr; -+ u32 cpu_state_data_version; -+ u32 cpu_state_entry_size; -+ long unsigned int hpte_region_size; -+ long unsigned int boot_memory_size; -+ u64 boot_mem_dest_addr; -+ u64 boot_mem_addr[128]; -+ u64 boot_mem_sz[128]; -+ u64 boot_mem_top; -+ u64 boot_mem_regs_cnt; -+ long unsigned int fadumphdr_addr; -+ long unsigned int cpu_notes_buf_vaddr; -+ long unsigned int cpu_notes_buf_size; -+ u64 max_copy_size; -+ u64 kernel_metadata; -+ int ibm_configure_kernel_dump; -+ long unsigned int fadump_enabled: 1; -+ long unsigned int fadump_supported: 1; -+ long unsigned int dump_active: 1; -+ long unsigned int dump_registered: 1; -+ long unsigned int nocma: 1; -+ struct fadump_ops *ops; -+}; -+ -+struct fadump_ops { -+ u64 (*fadump_init_mem_struct)(struct fw_dump *); -+ u64 (*fadump_get_metadata_size)(); -+ int (*fadump_setup_metadata)(struct fw_dump *); -+ u64 (*fadump_get_bootmem_min)(); -+ int (*fadump_register)(struct fw_dump *); -+ int (*fadump_unregister)(struct fw_dump *); -+ int (*fadump_invalidate)(struct fw_dump *); -+ void (*fadump_cleanup)(struct fw_dump *); -+ int (*fadump_process)(struct fw_dump *); -+ void (*fadump_region_show)(struct fw_dump *, struct seq_file *); -+ void (*fadump_trigger)(struct fadump_crash_info_header *, const char *); -+}; -+ -+struct cma; -+ -+typedef void (*swap_func_t)(void *, void *, int); -+ -+typedef int (*cmp_func_t)(const void *, const void *); -+ -+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 modversion_info { -+ long unsigned int crc; -+ char name[56]; -+}; -+ -+typedef long unsigned int func_desc_t; -+ -+struct ppc64_stub_entry { -+ u32 jump[7]; -+ u32 magic; -+ func_desc_t funcdata; -+}; -+ -+enum jump_label_type { -+ JUMP_LABEL_NOP = 0, -+ JUMP_LABEL_JMP = 1, -+}; -+ -+struct io_tlb_slot; -+ -+struct io_tlb_mem { -+ phys_addr_t start; -+ phys_addr_t end; -+ long unsigned int nslabs; -+ long unsigned int used; -+ unsigned int index; -+ spinlock_t lock; -+ struct dentry *debugfs; -+ bool late_alloc; -+ bool force_bounce; -+ bool for_alloc; -+ struct io_tlb_slot *slots; -+}; -+ -+struct io_tlb_slot { -+ phys_addr_t orig_addr; -+ size_t alloc_size; -+ unsigned int list; -+}; -+ -+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, -+}; -+ -+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[4]; -+ enum kgdb_bptype type; -+ enum kgdb_bpstate state; -+}; -+ -+struct dbg_reg_def_t { -+ char *name; -+ int size; -+ int offset; -+}; -+ -+struct kgdb_arch { -+ unsigned char gdb_bpt_instr[4]; -+ 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 (*correct_hw_break)(); -+ void (*enable_nmi)(bool); -+}; -+ -+struct hard_trap_info { -+ unsigned int tt; -+ unsigned char signo; -+}; -+ -+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_SHARE_PKG_RESOURCES = 256, -+ SD_SERIALIZE = 512, -+ SD_ASYM_PACKING = 1024, -+ SD_PREFER_SIBLING = 2048, -+ SD_OVERLAP = 4096, -+ SD_NUMA = 8192, -+}; -+ -+struct sched_domain_shared { -+ atomic_t ref; -+ atomic_t nr_busy_cpus; -+ int has_idle_cores; -+}; -+ -+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; -+ 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 next_decay_max_lb_cost; -+ u64 avg_scan_cost; -+ unsigned int lb_count[3]; -+ unsigned int lb_failed[3]; -+ unsigned int lb_balanced[3]; -+ unsigned int lb_imbalance[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]; -+}; -+ -+typedef const struct cpumask * (*sched_domain_mask_f)(int); -+ -+typedef int (*sched_domain_flags_f)(); -+ -+struct sched_group_capacity; -+ -+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; -+ char *name; -+}; -+ -+enum { -+ smt_idx = 0, -+ cache_idx = 1, -+ mc_idx = 2, -+ die_idx = 3, -+}; -+ -+struct thread_groups { -+ unsigned int property; -+ unsigned int nr_groups; -+ unsigned int threads_per_group; -+ unsigned int thread_list[8]; -+}; -+ -+struct thread_groups_list { -+ unsigned int nr_properties; -+ struct thread_groups property_tgs[2]; -+}; -+ -+struct cpu_messages { -+ long int messages; -+}; -+ -+typedef u32 ppc_opcode_t; -+ -+struct freelist_node { -+ atomic_t refs; -+ struct freelist_node *next; -+}; -+ -+struct freelist_head { -+ struct freelist_node *head; -+}; -+ -+typedef ppc_opcode_t kprobe_opcode_t; -+ -+struct arch_specific_insn { -+ kprobe_opcode_t *insn; -+ int boostable; -+}; -+ -+struct kprobe; -+ -+struct prev_kprobe { -+ struct kprobe *kp; -+ long unsigned int status; -+ long unsigned int saved_msr; -+}; -+ -+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 kprobe_ctlblk { -+ long unsigned int kprobe_status; -+ long unsigned int kprobe_saved_msr; -+ struct prev_kprobe prev_kprobe; -+}; -+ -+struct kretprobe_instance; -+ -+typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); -+ -+struct kretprobe_holder; -+ -+struct kretprobe_instance { -+ union { -+ struct freelist_node freelist; -+ 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; -+ refcount_t ref; -+}; -+ -+struct kretprobe { -+ struct kprobe kp; -+ kretprobe_handler_t handler; -+ kretprobe_handler_t entry_handler; -+ int maxactive; -+ int nmissed; -+ size_t data_size; -+ struct freelist_head freelist; -+ struct kretprobe_holder *rph; -+}; -+ -+struct kretprobe_blackpoint { -+ const char *name; -+ void *addr; -+}; -+ -+struct kprobe_insn_cache { -+ struct mutex mutex; -+ void * (*alloc)(); -+ void (*free)(void *); -+ const char *sym; -+ struct list_head pages; -+ size_t insn_size; -+ int nr_garbage; -+}; -+ -+struct arch_optimized_insn { -+ kprobe_opcode_t copied_insn[1]; -+ kprobe_opcode_t *insn; -+}; -+ -+struct optimized_kprobe { -+ struct kprobe kp; -+ struct list_head list; -+ struct arch_optimized_insn optinsn; -+}; -+ -+enum { -+ TRACE_FTRACE_BIT = 0, -+ TRACE_FTRACE_NMI_BIT = 1, -+ TRACE_FTRACE_IRQ_BIT = 2, -+ TRACE_FTRACE_SIRQ_BIT = 3, -+ TRACE_INTERNAL_BIT = 4, -+ TRACE_INTERNAL_NMI_BIT = 5, -+ TRACE_INTERNAL_IRQ_BIT = 6, -+ TRACE_INTERNAL_SIRQ_BIT = 7, -+ TRACE_BRANCH_BIT = 8, -+ TRACE_IRQ_BIT = 9, -+ TRACE_GRAPH_BIT = 10, -+ TRACE_GRAPH_DEPTH_START_BIT = 11, -+ TRACE_GRAPH_DEPTH_END_BIT = 12, -+ TRACE_GRAPH_NOTRACE_BIT = 13, -+ TRACE_TRANSITION_BIT = 14, -+ TRACE_RECORD_RECURSION_BIT = 15, -+}; -+ -+enum { -+ TRACE_CTX_NMI = 0, -+ TRACE_CTX_IRQ = 1, -+ TRACE_CTX_SOFTIRQ = 2, -+ TRACE_CTX_NORMAL = 3, -+}; -+ -+typedef ppc_opcode_t uprobe_opcode_t; -+ -+struct arch_uprobe { -+ union { -+ u32 insn[2]; -+ u32 ixol[2]; -+ }; -+}; -+ -+enum rp_check { -+ RP_CHECK_CALL = 0, -+ RP_CHECK_CHAIN_CALL = 1, -+ RP_CHECK_RET = 2, -+}; -+ -+struct serial_rs485 { -+ __u32 flags; -+ __u32 delay_rts_before_send; -+ __u32 delay_rts_after_send; -+ __u32 padding[5]; -+}; -+ -+struct serial_iso7816 { -+ __u32 flags; -+ __u32 tg; -+ __u32 sc_fi; -+ __u32 sc_di; -+ __u32 clk; -+ __u32 reserved[5]; -+}; -+ -+struct circ_buf { -+ char *buf; -+ int head; -+ int tail; -+}; -+ -+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 (*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 *, 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 *); -+}; -+ -+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 unsigned int upf_t; -+ -+typedef unsigned int upstat_t; -+ -+struct gpio_desc; -+ -+struct uart_state; -+ -+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 *, 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 serial_rs485 *); -+ int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); -+ 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; -+ int hw_stopped; -+ unsigned int mctrl; -+ unsigned int timeout; -+ 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; -+ long unsigned int sysrq; -+ unsigned int 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 gpio_desc *rs485_term_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; -+ struct circ_buf xmit; -+ atomic_t refcount; -+ wait_queue_head_t remove_wait; -+ struct uart_port *uart_port; -+}; -+ -+struct plat_serial8250_port { -+ long unsigned int iobase; -+ void *membase; -+ resource_size_t mapbase; -+ unsigned int irq; -+ long unsigned int irqflags; -+ unsigned int uartclk; -+ void *private_data; -+ unsigned char regshift; -+ unsigned char iotype; -+ unsigned char hub6; -+ unsigned char has_sysrq; -+ upf_t flags; -+ unsigned int type; -+ unsigned int (*serial_in)(struct uart_port *, int); -+ void (*serial_out)(struct uart_port *, int, int); -+ void (*set_termios)(struct uart_port *, struct ktermios *, 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 = 4294967295, -+ 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 legacy_serial_info { -+ struct device_node *np; -+ unsigned int speed; -+ unsigned int clock; -+ int irq_check_parent; -+ phys_addr_t taddr; -+ void *early_addr; -+}; -+ -+struct mem_section_usage { -+ long unsigned int subsection_map[1]; -+ long unsigned int pageblock_flags[0]; -+}; -+ -+struct page_ext; -+ -+struct mem_section { -+ long unsigned int section_mem_map; -+ struct mem_section_usage *usage; -+ struct page_ext *page_ext; -+ long unsigned int pad; -+}; -+ -+struct page_ext { -+ long unsigned int flags; -+}; -+ -+typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); -+ -+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; -+}; -+ -+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, -+}; -+ -+struct pci_fixup { -+ u16 vendor; -+ u16 device; -+ u32 class; -+ unsigned int class_shift; -+ void (*hook)(struct pci_dev *); -+}; -+ -+struct pci_address { -+ u32 a_hi; -+ u32 a_mid; -+ u32 a_lo; -+}; -+ -+struct isa_address { -+ u32 a_hi; -+ u32 a_lo; -+}; -+ -+struct isa_range { -+ struct isa_address isa_addr; -+ struct pci_address pci_addr; -+ unsigned int size; -+}; -+ -+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, -+}; -+ -+enum pci_mmap_state { -+ pci_mmap_io = 0, -+ pci_mmap_mem = 1, -+}; -+ -+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]; -+ bool drivers_autoprobe; -+}; -+ -+struct rcec_ea { -+ u8 nextbusn; -+ u8 lastbusn; -+ u32 bitmap; -+}; -+ -+typedef u64 pci_bus_addr_t; -+ -+struct pci_bus_region { -+ pci_bus_addr_t start; -+ pci_bus_addr_t end; -+}; -+ -+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_pci_range { -+ union { -+ u64 pci_addr; -+ u64 bus_addr; -+ }; -+ u64 cpu_addr; -+ u64 size; -+ u32 flags; -+}; -+ -+struct pci_intx_virq { -+ int virq; -+ struct kref kref; -+ struct list_head list_node; -+}; -+ -+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 dyn_arch_ftrace { -+ struct module *mod; -+}; -+ -+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, -+}; -+ -+struct dyn_ftrace { -+ long unsigned int ip; -+ long unsigned int flags; -+ struct dyn_arch_ftrace arch; -+}; -+ -+struct secvar_operations { -+ int (*get)(const char *, uint64_t, u8 *, uint64_t *); -+ int (*get_next)(const char *, uint64_t *, uint64_t); -+ int (*set)(const char *, uint64_t, u8 *, uint64_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, -+}; -+ -+struct hstate { -+ struct mutex resize_lock; -+ int next_nid_to_alloc; -+ int next_nid_to_free; -+ unsigned int 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[256]; -+ unsigned int nr_huge_pages_node[256]; -+ unsigned int free_huge_pages_node[256]; -+ unsigned int surplus_huge_pages_node[256]; -+ struct cftype cgroup_files_dfl[7]; -+ struct cftype cgroup_files_legacy[9]; -+ char name[32]; -+}; -+ -+struct mhp_params { -+ struct vmem_altmap *altmap; -+ pgprot_t pgprot; -+}; -+ -+typedef struct { -+ __be64 pdbe; -+} hugepd_t; -+ -+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 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; -+}; -+ -+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; -+}; -+ -+typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); -+ -+struct vmemmap_backing { -+ struct vmemmap_backing *list; -+ long unsigned int phys; -+ long unsigned int virt_addr; -+}; -+ -+struct prtb_entry { -+ __be64 prtb0; -+ __be64 prtb1; -+}; -+ -+struct patb_entry { -+ __be64 patb0; -+ __be64 patb1; -+}; -+ -+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, -+}; -+ -+struct of_drconf_cell_v1 { -+ __be64 base_addr; -+ __be32 drc_index; -+ __be32 reserved; -+ __be32 aa_index; -+ __be32 flags; -+}; -+ -+struct of_drconf_cell_v2 { -+ u32 seq_lmbs; -+ u64 base_addr; -+ u32 drc_index; -+ u32 aa_index; -+ u32 flags; -+} __attribute__((packed)); -+ -+typedef long unsigned int pte_basic_t; -+ -+struct mmu_hash_ops { -+ void (*hpte_invalidate)(long unsigned int, long unsigned int, int, int, int, int); -+ long int (*hpte_updatepp)(long unsigned int, long unsigned int, long unsigned int, int, int, int, long unsigned int); -+ void (*hpte_updateboltedpp)(long unsigned int, long unsigned int, int, int); -+ long int (*hpte_insert)(long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int, int); -+ long int (*hpte_remove)(long unsigned int); -+ int (*hpte_removebolted)(long unsigned int, int, int); -+ void (*flush_hash_range)(long unsigned int, int); -+ void (*hugepage_invalidate)(long unsigned int, long unsigned int, unsigned char *, int, int, int); -+ int (*resize_hpt)(long unsigned int); -+ void (*hpte_clear_all)(); -+}; -+ -+typedef int (*cpu_stop_fn_t)(void *); -+ -+struct trace_event_raw_hugepage_invalidate { -+ struct trace_entry ent; -+ long unsigned int addr; -+ long unsigned int pte; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hugepage_set_pmd { -+ struct trace_entry ent; -+ long unsigned int addr; -+ long unsigned int pmd; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hugepage_update { -+ struct trace_entry ent; -+ long unsigned int addr; -+ long unsigned int pte; -+ long unsigned int clr; -+ long unsigned int set; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_hugepage_splitting { -+ struct trace_entry ent; -+ long unsigned int addr; -+ long unsigned int pte; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_hugepage_invalidate {}; -+ -+struct trace_event_data_offsets_hugepage_set_pmd {}; -+ -+struct trace_event_data_offsets_hugepage_update {}; -+ -+struct trace_event_data_offsets_hugepage_splitting {}; -+ -+typedef void (*btf_trace_hugepage_invalidate)(void *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_hugepage_set_pmd)(void *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_hugepage_update)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_hugepage_splitting)(void *, long unsigned int, long unsigned int); -+ -+struct change_memory_parms { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int newpp; -+ unsigned int step; -+ unsigned int nr_cpus; -+ unsigned int master_cpu; -+ atomic_t cpu_counter; -+}; -+ -+struct hash_pte { -+ __be64 v; -+ __be64 r; -+}; -+ -+enum slb_index { -+ LINEAR_INDEX = 0, -+ KSTACK_INDEX = 1, -+}; -+ -+typedef unsigned int xa_mark_t; -+ -+enum xa_lock_type { -+ XA_LOCK_IRQ = 1, -+ XA_LOCK_BH = 2, -+}; -+ -+struct ida { -+ struct xarray xa; -+}; -+ -+enum pgtable_index { -+ PTE_INDEX = 0, -+ PMD_INDEX = 1, -+ PUD_INDEX = 2, -+ PGD_INDEX = 3, -+ HTLB_16M_INDEX = 4, -+ HTLB_16G_INDEX = 5, -+}; -+ -+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 page *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 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 batch_count; -+ struct mmu_gather_batch *active; -+ struct mmu_gather_batch local; -+ struct page *__pages[8]; -+ unsigned int page_size; -+}; -+ -+enum string_size_units { -+ STRING_UNITS_10 = 0, -+ STRING_UNITS_2 = 1, -+}; -+ -+struct tlbiel_pid { -+ long unsigned int pid; -+ long unsigned int ric; -+}; -+ -+struct tlbiel_va { -+ long unsigned int pid; -+ long unsigned int va; -+ long unsigned int psize; -+ long unsigned int ric; -+}; -+ -+struct tlbiel_va_range { -+ long unsigned int pid; -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int page_size; -+ long unsigned int psize; -+ bool also_pwc; -+}; -+ -+enum tlb_flush_type { -+ FLUSH_TYPE_NONE = 0, -+ FLUSH_TYPE_LOCAL = 1, -+ FLUSH_TYPE_GLOBAL = 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_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 void (*rcu_callback_t)(struct callback_head *); -+ -+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_TYPES = 8, -+}; -+ -+struct mm_iommu_table_group_mem_t { -+ struct list_head next; -+ struct callback_head rcu; -+ long unsigned int used; -+ atomic64_t mapped; -+ unsigned int pageshift; -+ u64 ua; -+ u64 entries; -+ union { -+ struct page **hpages; -+ phys_addr_t *hpas; -+ }; -+ u64 dev_hpa; -+}; -+ -+struct assoc_arrays { -+ u32 n_arrays; -+ u32 array_sz; -+ const __be32 *arrays; -+}; -+ -+struct huge_bootmem_page { -+ struct list_head list; -+ struct hstate *hstate; -+}; -+ -+struct copro_slb { -+ u64 esid; -+ u64 vsid; -+}; -+ -+enum spu_utilization_state { -+ SPU_UTIL_USER = 0, -+ SPU_UTIL_SYSTEM = 1, -+ SPU_UTIL_IOWAIT = 2, -+ SPU_UTIL_IDLE_LOADED = 3, -+ SPU_UTIL_MAX = 4, -+}; -+ -+struct fixup_entry { -+ long unsigned int mask; -+ long unsigned int value; -+ long int start_off; -+ long int end_off; -+ long int alt_start_off; -+ long int alt_end_off; -+}; -+ -+enum { -+ NDD_ALIASING = 0, -+ NDD_UNARMED = 1, -+ NDD_LOCKED = 2, -+ NDD_SECURITY_OVERWRITE = 3, -+ NDD_WORK_PENDING = 4, -+ NDD_NOBLK = 5, -+ NDD_LABELING = 6, -+ 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, -+ DPA_RESOURCE_ADJUSTED = 1, -+}; -+ -+struct soft_mask_table_entry { -+ long unsigned int start; -+ long unsigned int end; -+}; -+ -+struct restart_table_entry { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int fixup; -+}; -+ -+union vsx_reg { -+ u8 b[16]; -+ u16 h[8]; -+ u32 w[4]; -+ long unsigned int d[2]; -+ float fp[4]; -+ double dp[2]; -+ __vector128 v; -+}; -+ -+typedef signed char unative_t[16]; -+ -+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, -+}; -+ -+struct syscore_ops { -+ struct list_head node; -+ int (*suspend)(); -+ void (*resume)(); -+ void (*shutdown)(); -+}; -+ -+struct msi_bitmap { -+ struct device_node *of_node; -+ long unsigned int *bitmap; -+ spinlock_t lock; -+ unsigned int irq_count; -+ bool bitmap_from_slab; -+}; -+ -+enum mpic_reg_type { -+ mpic_access_mmio_le = 0, -+ mpic_access_mmio_be = 1, -+}; -+ -+struct mpic_reg_bank { -+ u32 *base; -+}; -+ -+struct mpic_irq_save { -+ u32 vecprio; -+ u32 dest; -+}; -+ -+struct mpic { -+ struct device_node *node; -+ struct irq_domain *irqhost; -+ struct irq_chip hc_irq; -+ struct irq_chip hc_ipi; -+ struct irq_chip hc_tm; -+ struct irq_chip hc_err; -+ const char *name; -+ unsigned int flags; -+ unsigned int isu_size; -+ unsigned int isu_shift; -+ unsigned int isu_mask; -+ unsigned int num_sources; -+ unsigned int ipi_vecs[4]; -+ unsigned int timer_vecs[8]; -+ unsigned int err_int_vecs[32]; -+ unsigned int spurious_vec; -+ enum mpic_reg_type reg_type; -+ phys_addr_t paddr; -+ struct mpic_reg_bank thiscpuregs; -+ struct mpic_reg_bank gregs; -+ struct mpic_reg_bank tmregs; -+ struct mpic_reg_bank cpuregs[32]; -+ struct mpic_reg_bank isus[32]; -+ u32 *err_regs; -+ long unsigned int *protected; -+ struct msi_bitmap msi_bitmap; -+ struct mpic *next; -+ struct mpic_irq_save *save_data; -+}; -+ -+struct icp_ops { -+ unsigned int (*get_irq)(); -+ void (*eoi)(struct irq_data *); -+ void (*set_priority)(unsigned char); -+ void (*teardown_cpu)(); -+ void (*flush_ipi)(); -+ void (*cause_ipi)(int); -+ irq_handler_t ipi_action; -+}; -+ -+struct ics { -+ struct list_head link; -+ int (*map)(struct ics *, unsigned int); -+ void (*mask_unknown)(struct ics *, long unsigned int); -+ long int (*get_server)(struct ics *, long unsigned int); -+ int (*host_match)(struct ics *, struct device_node *); -+ char data[0]; -+}; -+ -+struct xics_cppr { -+ unsigned char stack[3]; -+ int index; -+}; -+ -+struct icp_ipl { -+ union { -+ u32 word; -+ u8 bytes[4]; -+ } xirr_poll; -+ union { -+ u32 word; -+ u8 bytes[4]; -+ } xirr; -+ u32 dummy; -+ union { -+ u32 word; -+ u8 bytes[4]; -+ } qirr; -+ u32 link_a; -+ u32 link_b; -+ u32 link_c; -+}; -+ -+typedef s8 int8_t; -+ -+typedef s16 int16_t; -+ -+typedef s64 int64_t; -+ -+enum { -+ IRQCHIP_FWNODE_REAL = 0, -+ IRQCHIP_FWNODE_NAMED = 1, -+ IRQCHIP_FWNODE_NAMED_ID = 2, -+}; -+ -+struct xive_irq_data { -+ u64 flags; -+ u64 eoi_page; -+ void *eoi_mmio; -+ u64 trig_page; -+ void *trig_mmio; -+ u32 esb_shift; -+ int src_chip; -+ u32 hw_irq; -+ int target; -+ bool saved_p; -+ bool stale_p; -+}; -+ -+struct xive_q { -+ __be32 *qpage; -+ u32 msk; -+ u32 idx; -+ u32 toggle; -+ u64 eoi_phys; -+ u32 esc_irq; -+ atomic_t count; -+ atomic_t pending_count; -+ u64 guest_qaddr; -+ u32 guest_qshift; -+}; -+ -+struct xive_cpu { -+ u32 hw_ipi; -+ struct xive_irq_data ipi_data; -+ int chip_id; -+ struct xive_q queue[8]; -+ u8 pending_prio; -+ u8 cppr; -+}; -+ -+struct xive_ops { -+ int (*populate_irq_data)(u32, struct xive_irq_data *); -+ int (*configure_irq)(u32, u32, u8, u32); -+ int (*get_irq_config)(u32, u32 *, u8 *, u32 *); -+ int (*setup_queue)(unsigned int, struct xive_cpu *, u8); -+ void (*cleanup_queue)(unsigned int, struct xive_cpu *, u8); -+ void (*prepare_cpu)(unsigned int, struct xive_cpu *); -+ void (*setup_cpu)(unsigned int, struct xive_cpu *); -+ void (*teardown_cpu)(unsigned int, struct xive_cpu *); -+ bool (*match)(struct device_node *); -+ void (*shutdown)(); -+ void (*update_pending)(struct xive_cpu *); -+ void (*sync_source)(u32); -+ u64 (*esb_rw)(u32, u32, u64, bool); -+ int (*get_ipi)(unsigned int, struct xive_cpu *); -+ void (*put_ipi)(unsigned int, struct xive_cpu *); -+ int (*debug_show)(struct seq_file *, void *); -+ const char *name; -+}; -+ -+struct xive_ipi_desc { -+ unsigned int irq; -+ char name[16]; -+ atomic_t started; -+}; -+ -+struct xive_ipi_alloc_info { -+ irq_hw_number_t hwirq; -+}; -+ -+enum { -+ OPAL_XIVE_MODE_EMU = 0, -+ OPAL_XIVE_MODE_EXPL = 1, -+}; -+ -+enum { -+ OPAL_XIVE_IRQ_TRIGGER_PAGE = 1, -+ OPAL_XIVE_IRQ_STORE_EOI = 2, -+ OPAL_XIVE_IRQ_LSI = 4, -+ OPAL_XIVE_IRQ_SHIFT_BUG = 8, -+ OPAL_XIVE_IRQ_MASK_VIA_FW = 16, -+ OPAL_XIVE_IRQ_EOI_VIA_FW = 32, -+}; -+ -+enum { -+ OPAL_XIVE_EQ_ENABLED = 1, -+ OPAL_XIVE_EQ_ALWAYS_NOTIFY = 2, -+ OPAL_XIVE_EQ_ESCALATE = 4, -+}; -+ -+enum { -+ OPAL_XIVE_VP_ENABLED = 1, -+ OPAL_XIVE_VP_SINGLE_ESCALATION = 2, -+}; -+ -+enum { -+ XIVE_SYNC_EAS = 1, -+ XIVE_SYNC_QUEUE = 2, -+}; -+ -+struct xive_irq_bitmap { -+ long unsigned int *bitmap; -+ unsigned int base; -+ unsigned int count; -+ spinlock_t lock; -+ struct list_head list; -+}; -+ -+struct plist_head { -+ struct list_head node_list; -+}; -+ -+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 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 OpalThreadStatus { -+ OPAL_THREAD_INACTIVE = 0, -+ OPAL_THREAD_STARTED = 1, -+ OPAL_THREAD_UNAVAILABLE = 2, -+}; -+ -+enum { -+ OPAL_REINIT_CPUS_HILE_BE = 1, -+ OPAL_REINIT_CPUS_HILE_LE = 2, -+ OPAL_REINIT_CPUS_MMU_HASH = 4, -+ OPAL_REINIT_CPUS_MMU_RADIX = 8, -+ OPAL_REINIT_CPUS_TM_SUSPEND_DISABLED = 16, -+}; -+ -+enum { -+ OPAL_REBOOT_NORMAL = 0, -+ OPAL_REBOOT_PLATFORM_ERROR = 1, -+ OPAL_REBOOT_FULL_IPL = 2, -+ OPAL_REBOOT_MPIPL = 3, -+ OPAL_REBOOT_FAST = 4, -+}; -+ -+enum OpalPendingState { -+ OPAL_EVENT_OPAL_INTERNAL = 1, -+ OPAL_EVENT_NVRAM = 2, -+ OPAL_EVENT_RTC = 4, -+ OPAL_EVENT_CONSOLE_OUTPUT = 8, -+ OPAL_EVENT_CONSOLE_INPUT = 16, -+ OPAL_EVENT_ERROR_LOG_AVAIL = 32, -+ OPAL_EVENT_ERROR_LOG = 64, -+ OPAL_EVENT_EPOW = 128, -+ OPAL_EVENT_LED_STATUS = 256, -+ OPAL_EVENT_PCI_ERROR = 512, -+ OPAL_EVENT_DUMP_AVAIL = 1024, -+ OPAL_EVENT_MSG_PENDING = 2048, -+}; -+ -+enum opal_msg_type { -+ OPAL_MSG_ASYNC_COMP = 0, -+ OPAL_MSG_MEM_ERR = 1, -+ OPAL_MSG_EPOW = 2, -+ OPAL_MSG_SHUTDOWN = 3, -+ OPAL_MSG_HMI_EVT = 4, -+ OPAL_MSG_DPO = 5, -+ OPAL_MSG_PRD = 6, -+ OPAL_MSG_OCC = 7, -+ OPAL_MSG_PRD2 = 8, -+ OPAL_MSG_TYPE_MAX = 9, -+}; -+ -+struct opal_msg { -+ __be32 msg_type; -+ __be32 reserved; -+ __be64 params[8]; -+}; -+ -+struct opal_ipmi_msg { -+ uint8_t version; -+ uint8_t netfn; -+ uint8_t cmd; -+ uint8_t data[0]; -+}; -+ -+enum { -+ OPAL_HMI_FLAGS_TB_RESYNC = 1, -+ OPAL_HMI_FLAGS_DEC_LOST = 2, -+ OPAL_HMI_FLAGS_HDEC_LOST = 4, -+ OPAL_HMI_FLAGS_TOD_TB_FAIL = 8, -+ OPAL_HMI_FLAGS_NEW_EVENT = 0, -+}; -+ -+struct oppanel_line { -+ __be64 line; -+ __be64 line_len; -+}; -+ -+typedef struct oppanel_line oppanel_line_t; -+ -+struct opal_sg_entry { -+ __be64 data; -+ __be64 length; -+}; -+ -+struct opal_sg_list { -+ __be64 length; -+ __be64 next; -+ struct opal_sg_entry entry[0]; -+}; -+ -+struct opal_i2c_request { -+ uint8_t type; -+ uint8_t flags; -+ uint8_t subaddr_sz; -+ uint8_t reserved; -+ __be16 addr; -+ __be16 reserved2; -+ __be32 subaddr; -+ __be32 size; -+ __be64 buffer_ra; -+}; -+ -+struct opal_msg_node { -+ struct list_head list; -+ struct opal_msg msg; -+}; -+ -+struct opal { -+ u64 base; -+ u64 entry; -+ u64 size; -+}; -+ -+struct mcheck_recoverable_range { -+ u64 start_addr; -+ u64 end_addr; -+ u64 recover_addr; -+}; -+ -+struct opal_prd_msg; -+ -+enum opal_async_token_state { -+ ASYNC_TOKEN_UNALLOCATED = 0, -+ ASYNC_TOKEN_ALLOCATED = 1, -+ ASYNC_TOKEN_DISPATCHED = 2, -+ ASYNC_TOKEN_ABANDONED = 3, -+ ASYNC_TOKEN_COMPLETED = 4, -+}; -+ -+struct opal_async_token { -+ enum opal_async_token_state state; -+ struct opal_msg response; -+}; -+ -+struct pnv_idle_states_t { -+ char name[16]; -+ u32 latency_ns; -+ u32 residency_ns; -+ u64 psscr_val; -+ u64 psscr_mask; -+ u32 flags; -+ bool valid; -+}; -+ -+struct p7_sprs { -+ u64 tscr; -+ u64 worc; -+ u64 sdr1; -+ u64 rpr; -+ u64 lpcr; -+ u64 hfscr; -+ u64 fscr; -+ u64 purr; -+ u64 spurr; -+ u64 dscr; -+ u64 wort; -+ u64 amr; -+ u64 iamr; -+ u64 amor; -+ u64 uamor; -+}; -+ -+struct p9_sprs { -+ u64 ptcr; -+ u64 rpr; -+ u64 tscr; -+ u64 ldbar; -+ u64 lpcr; -+ u64 hfscr; -+ u64 fscr; -+ u64 pid; -+ u64 purr; -+ u64 spurr; -+ u64 dscr; -+ u64 wort; -+ u64 ciabr; -+ u64 mmcra; -+ u32 mmcr0; -+ u32 mmcr1; -+ u64 mmcr2; -+ u64 amr; -+ u64 iamr; -+ u64 amor; -+ u64 uamor; -+}; -+ -+enum OpalLPCAddressType { -+ OPAL_LPC_MEM = 0, -+ OPAL_LPC_IO = 1, -+ OPAL_LPC_FW = 2, -+}; -+ -+struct lpc_debugfs_entry { -+ enum OpalLPCAddressType lpc_type; -+}; -+ -+enum { -+ IMAGE_INVALID = 0, -+ IMAGE_LOADING = 1, -+ IMAGE_READY = 2, -+}; -+ -+struct image_data_t { -+ int status; -+ void *data; -+ uint32_t size; -+}; -+ -+struct image_header_t { -+ uint16_t magic; -+ uint16_t version; -+ uint32_t size; -+}; -+ -+struct validate_flash_t { -+ int status; -+ void *buf; -+ uint32_t buf_size; -+ uint32_t result; -+}; -+ -+struct manage_flash_t { -+ int status; -+}; -+ -+struct update_flash_t { -+ int status; -+}; -+ -+struct powernv_rng { -+ void *regs; -+ void *regs_real; -+ long unsigned int mask; -+}; -+ -+struct elog_obj { -+ struct kobject kobj; -+ struct bin_attribute raw_attr; -+ uint64_t id; -+ uint64_t type; -+ size_t size; -+ char *buffer; -+}; -+ -+struct elog_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct elog_obj *, struct elog_attribute *, char *); -+ ssize_t (*store)(struct elog_obj *, struct elog_attribute *, const char *, size_t); -+}; -+ -+struct dump_obj { -+ struct kobject kobj; -+ struct bin_attribute dump_attr; -+ uint32_t id; -+ uint32_t type; -+ uint32_t size; -+ char *buffer; -+}; -+ -+struct dump_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct dump_obj *, struct dump_attribute *, char *); -+ ssize_t (*store)(struct dump_obj *, struct dump_attribute *, const char *, size_t); -+}; -+ -+enum OpalSysparamPerm { -+ OPAL_SYSPARAM_READ = 1, -+ OPAL_SYSPARAM_WRITE = 2, -+ OPAL_SYSPARAM_RW = 3, -+}; -+ -+struct param_attr { -+ struct list_head list; -+ u32 param_id; -+ u32 param_size; -+ struct kobj_attribute kobj_attr; -+}; -+ -+struct memcons { -+ __be64 magic; -+ __be64 obuf_phys; -+ __be64 ibuf_phys; -+ __be32 obuf_size; -+ __be32 ibuf_size; -+ __be32 out_pos; -+ __be32 in_prod; -+ __be32 in_cons; -+}; -+ -+enum OpalHMI_Version { -+ OpalHMIEvt_V1 = 1, -+ OpalHMIEvt_V2 = 2, -+}; -+ -+enum OpalHMI_Severity { -+ OpalHMI_SEV_NO_ERROR = 0, -+ OpalHMI_SEV_WARNING = 1, -+ OpalHMI_SEV_ERROR_SYNC = 2, -+ OpalHMI_SEV_FATAL = 3, -+}; -+ -+enum OpalHMI_Disposition { -+ OpalHMI_DISPOSITION_RECOVERED = 0, -+ OpalHMI_DISPOSITION_NOT_RECOVERED = 1, -+}; -+ -+enum OpalHMI_ErrType { -+ OpalHMI_ERROR_MALFUNC_ALERT = 0, -+ OpalHMI_ERROR_PROC_RECOV_DONE = 1, -+ OpalHMI_ERROR_PROC_RECOV_DONE_AGAIN = 2, -+ OpalHMI_ERROR_PROC_RECOV_MASKED = 3, -+ OpalHMI_ERROR_TFAC = 4, -+ OpalHMI_ERROR_TFMR_PARITY = 5, -+ OpalHMI_ERROR_HA_OVERFLOW_WARN = 6, -+ OpalHMI_ERROR_XSCOM_FAIL = 7, -+ OpalHMI_ERROR_XSCOM_DONE = 8, -+ OpalHMI_ERROR_SCOM_FIR = 9, -+ OpalHMI_ERROR_DEBUG_TRIG_FIR = 10, -+ OpalHMI_ERROR_HYP_RESOURCE = 11, -+ OpalHMI_ERROR_CAPP_RECOVERY = 12, -+}; -+ -+enum OpalHMI_XstopType { -+ CHECKSTOP_TYPE_UNKNOWN = 0, -+ CHECKSTOP_TYPE_CORE = 1, -+ CHECKSTOP_TYPE_NX = 2, -+ CHECKSTOP_TYPE_NPU = 3, -+}; -+ -+enum OpalHMI_CoreXstopReason { -+ CORE_CHECKSTOP_IFU_REGFILE = 1, -+ CORE_CHECKSTOP_IFU_LOGIC = 2, -+ CORE_CHECKSTOP_PC_DURING_RECOV = 4, -+ CORE_CHECKSTOP_ISU_REGFILE = 8, -+ CORE_CHECKSTOP_ISU_LOGIC = 16, -+ CORE_CHECKSTOP_FXU_LOGIC = 32, -+ CORE_CHECKSTOP_VSU_LOGIC = 64, -+ CORE_CHECKSTOP_PC_RECOV_IN_MAINT_MODE = 128, -+ CORE_CHECKSTOP_LSU_REGFILE = 256, -+ CORE_CHECKSTOP_PC_FWD_PROGRESS = 512, -+ CORE_CHECKSTOP_LSU_LOGIC = 1024, -+ CORE_CHECKSTOP_PC_LOGIC = 2048, -+ CORE_CHECKSTOP_PC_HYP_RESOURCE = 4096, -+ CORE_CHECKSTOP_PC_HANG_RECOV_FAILED = 8192, -+ CORE_CHECKSTOP_PC_AMBI_HANG_DETECTED = 16384, -+ CORE_CHECKSTOP_PC_DEBUG_TRIG_ERR_INJ = 32768, -+ CORE_CHECKSTOP_PC_SPRD_HYP_ERR_INJ = 65536, -+}; -+ -+enum OpalHMI_NestAccelXstopReason { -+ NX_CHECKSTOP_SHM_INVAL_STATE_ERR = 1, -+ NX_CHECKSTOP_DMA_INVAL_STATE_ERR_1 = 2, -+ NX_CHECKSTOP_DMA_INVAL_STATE_ERR_2 = 4, -+ NX_CHECKSTOP_DMA_CH0_INVAL_STATE_ERR = 8, -+ NX_CHECKSTOP_DMA_CH1_INVAL_STATE_ERR = 16, -+ NX_CHECKSTOP_DMA_CH2_INVAL_STATE_ERR = 32, -+ NX_CHECKSTOP_DMA_CH3_INVAL_STATE_ERR = 64, -+ NX_CHECKSTOP_DMA_CH4_INVAL_STATE_ERR = 128, -+ NX_CHECKSTOP_DMA_CH5_INVAL_STATE_ERR = 256, -+ NX_CHECKSTOP_DMA_CH6_INVAL_STATE_ERR = 512, -+ NX_CHECKSTOP_DMA_CH7_INVAL_STATE_ERR = 1024, -+ NX_CHECKSTOP_DMA_CRB_UE = 2048, -+ NX_CHECKSTOP_DMA_CRB_SUE = 4096, -+ NX_CHECKSTOP_PBI_ISN_UE = 8192, -+}; -+ -+struct OpalHMIEvent { -+ uint8_t version; -+ uint8_t severity; -+ uint8_t type; -+ uint8_t disposition; -+ uint8_t reserved_1[4]; -+ __be64 hmer; -+ __be64 tfmr; -+ union { -+ struct { -+ uint8_t xstop_type; -+ uint8_t reserved_1[3]; -+ __be32 xstop_reason; -+ union { -+ __be32 pir; -+ __be32 chip_id; -+ } u; -+ } xstop_error; -+ } u; -+}; -+ -+struct OpalHmiEvtNode { -+ struct list_head list; -+ struct OpalHMIEvent hmi_evt; -+}; -+ -+struct xstop_reason { -+ uint32_t xstop_reason; -+ const char *unit_failed; -+ const char *description; -+}; -+ -+enum OpalSysEpow { -+ OPAL_SYSEPOW_POWER = 0, -+ OPAL_SYSEPOW_TEMP = 1, -+ OPAL_SYSEPOW_COOLING = 2, -+ OPAL_SYSEPOW_MAX = 3, -+}; -+ -+enum OpalSysPower { -+ OPAL_SYSPOWER_UPS = 1, -+ OPAL_SYSPOWER_CHNG = 2, -+ OPAL_SYSPOWER_FAIL = 4, -+ OPAL_SYSPOWER_INCL = 8, -+}; -+ -+struct opal_event_irqchip { -+ struct irq_chip irqchip; -+ struct irq_domain *domain; -+ long unsigned int mask; -+}; -+ -+struct powercap_attr { -+ u32 handle; -+ struct kobj_attribute attr; -+}; -+ -+struct pcap { -+ struct attribute_group pg; -+ struct powercap_attr *pattrs; -+}; -+ -+struct psr_attr { -+ u32 handle; -+ struct kobj_attribute attr; -+}; -+ -+struct sg_attr { -+ u32 handle; -+ struct kobj_attribute attr; -+}; -+ -+struct sensor_group { -+ char name[20]; -+ struct attribute_group sg; -+ struct sg_attr *sgattrs; -+}; -+ -+struct sg_ops_info { -+ int opal_no; -+ const char *attr_name; -+ ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); -+}; -+ -+struct memcons___2; -+ -+struct split_state { -+ u8 step; -+ u8 master; -+}; -+ -+enum opal_mpipl_ops { -+ OPAL_MPIPL_ADD_RANGE = 0, -+ OPAL_MPIPL_REMOVE_RANGE = 1, -+ OPAL_MPIPL_REMOVE_ALL = 2, -+ OPAL_MPIPL_FREE_PRESERVED_MEMORY = 3, -+}; -+ -+enum opal_mpipl_tags { -+ OPAL_MPIPL_TAG_CPU = 0, -+ OPAL_MPIPL_TAG_OPAL = 1, -+ OPAL_MPIPL_TAG_KERNEL = 2, -+ OPAL_MPIPL_TAG_BOOT_MEM = 3, -+}; -+ -+struct opal_mpipl_region { -+ __be64 src; -+ __be64 dest; -+ __be64 size; -+}; -+ -+struct opal_mpipl_fadump { -+ u8 version; -+ u8 reserved[7]; -+ __be32 crashing_pir; -+ __be32 cpu_data_version; -+ __be32 cpu_data_size; -+ __be32 region_cnt; -+ struct opal_mpipl_region region[0]; -+}; -+ -+struct opal_fadump_mem_struct { -+ u8 version; -+ u8 reserved[3]; -+ u16 region_cnt; -+ u16 registered_regions; -+ u64 fadumphdr_addr; -+ struct opal_mpipl_region rgn[128]; -+}; -+ -+struct hdat_fadump_thread_hdr { -+ __be32 pir; -+ u8 core_state; -+ u8 reserved[3]; -+ __be32 offset; -+ __be32 ecnt; -+ __be32 esize; -+ __be32 eactsz; -+}; -+ -+struct hdat_fadump_reg_entry { -+ __be32 reg_type; -+ __be32 reg_num; -+ __be64 reg_val; -+}; -+ -+enum OpalFreezeState { -+ OPAL_EEH_STOPPED_NOT_FROZEN = 0, -+ OPAL_EEH_STOPPED_MMIO_FREEZE = 1, -+ OPAL_EEH_STOPPED_DMA_FREEZE = 2, -+ OPAL_EEH_STOPPED_MMIO_DMA_FREEZE = 3, -+ OPAL_EEH_STOPPED_RESET = 4, -+ OPAL_EEH_STOPPED_TEMP_UNAVAIL = 5, -+ OPAL_EEH_STOPPED_PERM_UNAVAIL = 6, -+}; -+ -+enum OpalEehFreezeActionToken { -+ OPAL_EEH_ACTION_CLEAR_FREEZE_MMIO = 1, -+ OPAL_EEH_ACTION_CLEAR_FREEZE_DMA = 2, -+ OPAL_EEH_ACTION_CLEAR_FREEZE_ALL = 3, -+ OPAL_EEH_ACTION_SET_FREEZE_MMIO = 1, -+ OPAL_EEH_ACTION_SET_FREEZE_DMA = 2, -+ OPAL_EEH_ACTION_SET_FREEZE_ALL = 3, -+}; -+ -+enum { -+ OPAL_PHB_ERROR_DATA_TYPE_P7IOC = 1, -+ OPAL_PHB_ERROR_DATA_TYPE_PHB3 = 2, -+ OPAL_PHB_ERROR_DATA_TYPE_PHB4 = 3, -+}; -+ -+struct OpalIoPhbErrorCommon { -+ __be32 version; -+ __be32 ioType; -+ __be32 len; -+}; -+ -+struct OpalIoP7IOCPhbErrorData { -+ struct OpalIoPhbErrorCommon common; -+ __be32 brdgCtl; -+ __be32 portStatusReg; -+ __be32 rootCmplxStatus; -+ __be32 busAgentStatus; -+ __be32 deviceStatus; -+ __be32 slotStatus; -+ __be32 linkStatus; -+ __be32 devCmdStatus; -+ __be32 devSecStatus; -+ __be32 rootErrorStatus; -+ __be32 uncorrErrorStatus; -+ __be32 corrErrorStatus; -+ __be32 tlpHdr1; -+ __be32 tlpHdr2; -+ __be32 tlpHdr3; -+ __be32 tlpHdr4; -+ __be32 sourceId; -+ __be32 rsv3; -+ __be64 errorClass; -+ __be64 correlator; -+ __be64 p7iocPlssr; -+ __be64 p7iocCsr; -+ __be64 lemFir; -+ __be64 lemErrorMask; -+ __be64 lemWOF; -+ __be64 phbErrorStatus; -+ __be64 phbFirstErrorStatus; -+ __be64 phbErrorLog0; -+ __be64 phbErrorLog1; -+ __be64 mmioErrorStatus; -+ __be64 mmioFirstErrorStatus; -+ __be64 mmioErrorLog0; -+ __be64 mmioErrorLog1; -+ __be64 dma0ErrorStatus; -+ __be64 dma0FirstErrorStatus; -+ __be64 dma0ErrorLog0; -+ __be64 dma0ErrorLog1; -+ __be64 dma1ErrorStatus; -+ __be64 dma1FirstErrorStatus; -+ __be64 dma1ErrorLog0; -+ __be64 dma1ErrorLog1; -+ __be64 pestA[128]; -+ __be64 pestB[128]; -+}; -+ -+struct OpalIoPhb3ErrorData { -+ struct OpalIoPhbErrorCommon common; -+ __be32 brdgCtl; -+ __be32 portStatusReg; -+ __be32 rootCmplxStatus; -+ __be32 busAgentStatus; -+ __be32 deviceStatus; -+ __be32 slotStatus; -+ __be32 linkStatus; -+ __be32 devCmdStatus; -+ __be32 devSecStatus; -+ __be32 rootErrorStatus; -+ __be32 uncorrErrorStatus; -+ __be32 corrErrorStatus; -+ __be32 tlpHdr1; -+ __be32 tlpHdr2; -+ __be32 tlpHdr3; -+ __be32 tlpHdr4; -+ __be32 sourceId; -+ __be32 rsv3; -+ __be64 errorClass; -+ __be64 correlator; -+ __be64 nFir; -+ __be64 nFirMask; -+ __be64 nFirWOF; -+ __be64 phbPlssr; -+ __be64 phbCsr; -+ __be64 lemFir; -+ __be64 lemErrorMask; -+ __be64 lemWOF; -+ __be64 phbErrorStatus; -+ __be64 phbFirstErrorStatus; -+ __be64 phbErrorLog0; -+ __be64 phbErrorLog1; -+ __be64 mmioErrorStatus; -+ __be64 mmioFirstErrorStatus; -+ __be64 mmioErrorLog0; -+ __be64 mmioErrorLog1; -+ __be64 dma0ErrorStatus; -+ __be64 dma0FirstErrorStatus; -+ __be64 dma0ErrorLog0; -+ __be64 dma0ErrorLog1; -+ __be64 dma1ErrorStatus; -+ __be64 dma1FirstErrorStatus; -+ __be64 dma1ErrorLog0; -+ __be64 dma1ErrorLog1; -+ __be64 pestA[256]; -+ __be64 pestB[256]; -+}; -+ -+struct OpalIoPhb4ErrorData { -+ struct OpalIoPhbErrorCommon common; -+ __be32 brdgCtl; -+ __be32 deviceStatus; -+ __be32 slotStatus; -+ __be32 linkStatus; -+ __be32 devCmdStatus; -+ __be32 devSecStatus; -+ __be32 rootErrorStatus; -+ __be32 uncorrErrorStatus; -+ __be32 corrErrorStatus; -+ __be32 tlpHdr1; -+ __be32 tlpHdr2; -+ __be32 tlpHdr3; -+ __be32 tlpHdr4; -+ __be32 sourceId; -+ __be64 nFir; -+ __be64 nFirMask; -+ __be64 nFirWOF; -+ __be64 phbPlssr; -+ __be64 phbCsr; -+ __be64 lemFir; -+ __be64 lemErrorMask; -+ __be64 lemWOF; -+ __be64 phbErrorStatus; -+ __be64 phbFirstErrorStatus; -+ __be64 phbErrorLog0; -+ __be64 phbErrorLog1; -+ __be64 phbTxeErrorStatus; -+ __be64 phbTxeFirstErrorStatus; -+ __be64 phbTxeErrorLog0; -+ __be64 phbTxeErrorLog1; -+ __be64 phbRxeArbErrorStatus; -+ __be64 phbRxeArbFirstErrorStatus; -+ __be64 phbRxeArbErrorLog0; -+ __be64 phbRxeArbErrorLog1; -+ __be64 phbRxeMrgErrorStatus; -+ __be64 phbRxeMrgFirstErrorStatus; -+ __be64 phbRxeMrgErrorLog0; -+ __be64 phbRxeMrgErrorLog1; -+ __be64 phbRxeTceErrorStatus; -+ __be64 phbRxeTceFirstErrorStatus; -+ __be64 phbRxeTceErrorLog0; -+ __be64 phbRxeTceErrorLog1; -+ __be64 phbPblErrorStatus; -+ __be64 phbPblFirstErrorStatus; -+ __be64 phbPblErrorLog0; -+ __be64 phbPblErrorLog1; -+ __be64 phbPcieDlpErrorLog1; -+ __be64 phbPcieDlpErrorLog2; -+ __be64 phbPcieDlpErrorStatus; -+ __be64 phbRegbErrorStatus; -+ __be64 phbRegbFirstErrorStatus; -+ __be64 phbRegbErrorLog0; -+ __be64 phbRegbErrorLog1; -+ __be64 pestA[512]; -+ __be64 pestB[512]; -+}; -+ -+enum pnv_phb_type { -+ PNV_PHB_IODA1 = 0, -+ PNV_PHB_IODA2 = 1, -+ PNV_PHB_NPU_OCAPI = 2, -+}; -+ -+enum pnv_phb_model { -+ PNV_PHB_MODEL_UNKNOWN = 0, -+ PNV_PHB_MODEL_P7IOC = 1, -+ PNV_PHB_MODEL_PHB3 = 2, -+}; -+ -+struct pnv_phb; -+ -+struct pnv_ioda_pe { -+ long unsigned int flags; -+ struct pnv_phb *phb; -+ int device_count; -+ struct pci_dev *parent_dev; -+ struct pci_dev *pdev; -+ struct pci_bus *pbus; -+ unsigned int rid; -+ unsigned int pe_number; -+ struct iommu_table_group table_group; -+ bool tce_bypass_enabled; -+ uint64_t tce_bypass_base; -+ bool dma_setup_done; -+ int mve_number; -+ struct pnv_ioda_pe *master; -+ struct list_head slaves; -+ struct list_head list; -+}; -+ -+struct pnv_phb { -+ struct pci_controller *hose; -+ enum pnv_phb_type type; -+ enum pnv_phb_model model; -+ u64 hub_id; -+ u64 opal_id; -+ int flags; -+ void *regs; -+ u64 regs_phys; -+ spinlock_t lock; -+ int has_dbgfs; -+ struct dentry *dbgfs; -+ unsigned int msi_base; -+ unsigned int msi32_support; -+ struct msi_bitmap msi_bmp; -+ int (*msi_setup)(struct pnv_phb *, struct pci_dev *, unsigned int, unsigned int, unsigned int, struct msi_msg *); -+ int (*init_m64)(struct pnv_phb *); -+ int (*get_pe_state)(struct pnv_phb *, int); -+ void (*freeze_pe)(struct pnv_phb *, int); -+ int (*unfreeze_pe)(struct pnv_phb *, int, int); -+ struct { -+ unsigned int total_pe_num; -+ unsigned int reserved_pe_idx; -+ unsigned int root_pe_idx; -+ unsigned int m32_size; -+ unsigned int m32_segsize; -+ unsigned int m32_pci_base; -+ unsigned int m64_bar_idx; -+ long unsigned int m64_size; -+ long unsigned int m64_segsize; -+ long unsigned int m64_base; -+ long unsigned int m64_bar_alloc; -+ unsigned int io_size; -+ unsigned int io_segsize; -+ unsigned int io_pci_base; -+ struct mutex pe_alloc_mutex; -+ long unsigned int *pe_alloc; -+ struct pnv_ioda_pe *pe_array; -+ unsigned int *m64_segmap; -+ unsigned int *m32_segmap; -+ unsigned int *io_segmap; -+ unsigned int dma32_count; -+ unsigned int *dma32_segmap; -+ int irq_chip_init; -+ struct irq_chip irq_chip; -+ struct list_head pe_list; -+ struct mutex pe_list_mutex; -+ unsigned int pe_rmap[65536]; -+ } ioda; -+ unsigned int diag_data_size; -+ u8 *diag_data; -+}; -+ -+struct va_format { -+ const char *fmt; -+ va_list *va; -+}; -+ -+enum OpalMmioWindowType { -+ OPAL_M32_WINDOW_TYPE = 1, -+ OPAL_M64_WINDOW_TYPE = 2, -+ OPAL_IO_WINDOW_TYPE = 3, -+}; -+ -+enum OpalPciBusCompare { -+ OpalPciBusAny = 0, -+ OpalPciBus3Bits = 2, -+ OpalPciBus4Bits = 3, -+ OpalPciBus5Bits = 4, -+ OpalPciBus6Bits = 5, -+ OpalPciBus7Bits = 6, -+ OpalPciBusAll = 7, -+}; -+ -+enum OpalDeviceCompare { -+ OPAL_IGNORE_RID_DEVICE_NUMBER = 0, -+ OPAL_COMPARE_RID_DEVICE_NUMBER = 1, -+}; -+ -+enum OpalFuncCompare { -+ OPAL_IGNORE_RID_FUNCTION_NUMBER = 0, -+ OPAL_COMPARE_RID_FUNCTION_NUMBER = 1, -+}; -+ -+enum OpalPeAction { -+ OPAL_UNMAP_PE = 0, -+ OPAL_MAP_PE = 1, -+}; -+ -+enum OpalPeltvAction { -+ OPAL_REMOVE_PE_FROM_DOMAIN = 0, -+ OPAL_ADD_PE_TO_DOMAIN = 1, -+}; -+ -+enum OpalMveEnableAction { -+ OPAL_DISABLE_MVE = 0, -+ OPAL_ENABLE_MVE = 1, -+}; -+ -+enum OpalM64Action { -+ OPAL_DISABLE_M64 = 0, -+ OPAL_ENABLE_M64_SPLIT = 1, -+ OPAL_ENABLE_M64_NON_SPLIT = 2, -+}; -+ -+enum OpalPciResetScope { -+ OPAL_RESET_PHB_COMPLETE = 1, -+ OPAL_RESET_PCI_LINK = 2, -+ OPAL_RESET_PHB_ERROR = 3, -+ OPAL_RESET_PCI_HOT = 4, -+ OPAL_RESET_PCI_FUNDAMENTAL = 5, -+ OPAL_RESET_PCI_IODA_TABLE = 6, -+}; -+ -+enum OpalPciResetState { -+ OPAL_DEASSERT_RESET = 0, -+ OPAL_ASSERT_RESET = 1, -+}; -+ -+enum { -+ OPAL_PCI_TCE_KILL_PAGES = 0, -+ OPAL_PCI_TCE_KILL_PE = 1, -+ OPAL_PCI_TCE_KILL_ALL = 2, -+}; -+ -+struct iommu_table_group_link { -+ struct list_head next; -+ struct callback_head rcu; -+ struct iommu_table_group *table_group; -+}; -+ -+struct pnv_iov_data { -+ u16 num_vfs; -+ struct pnv_ioda_pe *vf_pe_arr; -+ bool m64_single_mode[6]; -+ bool need_shift; -+ long unsigned int used_m64_bar_mask[1]; -+ struct resource holes[6]; -+}; -+ -+struct cxl_irq_ranges { -+ irq_hw_number_t offset[4]; -+ irq_hw_number_t range[4]; -+}; -+ -+enum OpalPciStatusToken { -+ OPAL_EEH_NO_ERROR = 0, -+ OPAL_EEH_IOC_ERROR = 1, -+ OPAL_EEH_PHB_ERROR = 2, -+ OPAL_EEH_PE_ERROR = 3, -+ OPAL_EEH_PE_MMIO_ERROR = 4, -+ OPAL_EEH_PE_DMA_ERROR = 5, -+}; -+ -+enum OpalPciErrorSeverity { -+ OPAL_EEH_SEV_NO_ERROR = 0, -+ OPAL_EEH_SEV_IOC_DEAD = 1, -+ OPAL_EEH_SEV_PHB_DEAD = 2, -+ OPAL_EEH_SEV_PHB_FENCED = 3, -+ OPAL_EEH_SEV_PE_ER = 4, -+ OPAL_EEH_SEV_INF = 5, -+}; -+ -+enum OpalErrinjectType { -+ OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR = 0, -+ OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR64 = 1, -+}; -+ -+enum OpalErrinjectFunc { -+ OPAL_ERR_INJECT_FUNC_IOA_LD_MEM_ADDR = 0, -+ OPAL_ERR_INJECT_FUNC_IOA_LD_MEM_DATA = 1, -+ OPAL_ERR_INJECT_FUNC_IOA_LD_IO_ADDR = 2, -+ OPAL_ERR_INJECT_FUNC_IOA_LD_IO_DATA = 3, -+ OPAL_ERR_INJECT_FUNC_IOA_LD_CFG_ADDR = 4, -+ OPAL_ERR_INJECT_FUNC_IOA_LD_CFG_DATA = 5, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_MEM_ADDR = 6, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_MEM_DATA = 7, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_IO_ADDR = 8, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_IO_DATA = 9, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_CFG_ADDR = 10, -+ OPAL_ERR_INJECT_FUNC_IOA_ST_CFG_DATA = 11, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_RD_ADDR = 12, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_RD_DATA = 13, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_RD_MASTER = 14, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_RD_TARGET = 15, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_ADDR = 16, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_DATA = 17, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_MASTER = 18, -+ OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_TARGET = 19, -+}; -+ -+enum OpalPciReinitScope { -+ OPAL_REINIT_PCI_DEV = 1000, -+}; -+ -+enum { -+ OPAL_P7IOC_DIAG_TYPE_NONE = 0, -+ OPAL_P7IOC_DIAG_TYPE_RGC = 1, -+ OPAL_P7IOC_DIAG_TYPE_BI = 2, -+ OPAL_P7IOC_DIAG_TYPE_CI = 3, -+ OPAL_P7IOC_DIAG_TYPE_MISC = 4, -+ OPAL_P7IOC_DIAG_TYPE_I2C = 5, -+ OPAL_P7IOC_DIAG_TYPE_LAST = 6, -+}; -+ -+struct OpalIoP7IOCRgcErrorData { -+ __be64 rgcStatus; -+ __be64 rgcLdcp; -+}; -+ -+struct OpalIoP7IOCBiErrorData { -+ __be64 biLdcp0; -+ __be64 biLdcp1; -+ __be64 biLdcp2; -+ __be64 biFenceStatus; -+ uint8_t biDownbound; -+}; -+ -+struct OpalIoP7IOCCiErrorData { -+ __be64 ciPortStatus; -+ __be64 ciPortLdcp; -+ uint8_t ciPort; -+}; -+ -+struct OpalIoP7IOCErrorData { -+ __be16 type; -+ __be64 gemXfir; -+ __be64 gemRfir; -+ __be64 gemRirqfir; -+ __be64 gemMask; -+ __be64 gemRwof; -+ __be64 lemFir; -+ __be64 lemErrMask; -+ __be64 lemAction0; -+ __be64 lemAction1; -+ __be64 lemWof; -+ union { -+ struct OpalIoP7IOCRgcErrorData rgc; -+ struct OpalIoP7IOCBiErrorData bi; -+ struct OpalIoP7IOCCiErrorData ci; -+ }; -+}; -+ -+enum OpalMemErr_Version { -+ OpalMemErr_V1 = 1, -+}; -+ -+enum OpalMemErrType { -+ OPAL_MEM_ERR_TYPE_RESILIENCE = 0, -+ OPAL_MEM_ERR_TYPE_DYN_DALLOC = 1, -+}; -+ -+enum OpalMemErr_ResilErrType { -+ OPAL_MEM_RESILIENCE_CE = 0, -+ OPAL_MEM_RESILIENCE_UE = 1, -+ OPAL_MEM_RESILIENCE_UE_SCRUB = 2, -+}; -+ -+enum OpalMemErr_DynErrType { -+ OPAL_MEM_DYNAMIC_DEALLOC = 0, -+}; -+ -+struct OpalMemoryErrorData { -+ enum OpalMemErr_Version version: 8; -+ enum OpalMemErrType type: 8; -+ __be16 flags; -+ uint8_t reserved_1[4]; -+ union { -+ struct { -+ enum OpalMemErr_ResilErrType resil_err_type: 8; -+ uint8_t reserved_1[7]; -+ __be64 physical_address_start; -+ __be64 physical_address_end; -+ } resilience; -+ struct { -+ enum OpalMemErr_DynErrType dyn_err_type: 8; -+ uint8_t reserved_1[7]; -+ __be64 physical_address_start; -+ __be64 physical_address_end; -+ } dyn_dealloc; -+ } u; -+}; -+ -+struct OpalMsgNode { -+ struct list_head list; -+ struct opal_msg msg; -+}; -+ -+struct platform_driver { -+ int (*probe)(struct platform_device *); -+ int (*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; -+}; -+ -+enum { -+ OPAL_IMC_COUNTERS_NEST = 1, -+ OPAL_IMC_COUNTERS_CORE = 2, -+ OPAL_IMC_COUNTERS_TRACE = 3, -+}; -+ -+struct imc_mem_info { -+ u64 *vbase; -+ u32 id; -+}; -+ -+struct imc_events { -+ u32 value; -+ char *name; -+ char *unit; -+ char *scale; -+}; -+ -+struct imc_pmu { -+ struct pmu pmu; -+ struct imc_mem_info *mem_info; -+ struct imc_events *events; -+ const struct attribute_group *attr_groups[4]; -+ u32 counter_mem_size; -+ int domain; -+ bool imc_counter_mmaped; -+}; -+ -+enum { -+ IMC_TYPE_THREAD = 1, -+ IMC_TYPE_TRACE = 2, -+ IMC_TYPE_CORE = 4, -+ IMC_TYPE_CHIP = 16, -+}; -+ -+enum vas_cop_type { -+ VAS_COP_TYPE_FAULT = 0, -+ VAS_COP_TYPE_842 = 1, -+ VAS_COP_TYPE_842_HIPRI = 2, -+ VAS_COP_TYPE_GZIP = 3, -+ VAS_COP_TYPE_GZIP_HIPRI = 4, -+ VAS_COP_TYPE_FTW = 5, -+ VAS_COP_TYPE_MAX = 6, -+}; -+ -+struct vas_user_win_ref { -+ struct pid *pid; -+ struct pid *tgid; -+ struct mm_struct *mm; -+}; -+ -+struct vas_window { -+ u32 winid; -+ u32 wcreds_max; -+ enum vas_cop_type cop; -+ struct vas_user_win_ref task_ref; -+ char *dbgname; -+ struct dentry *dbgdir; -+}; -+ -+struct pnv_vas_window; -+ -+struct vas_instance { -+ int vas_id; -+ struct ida ida; -+ struct list_head node; -+ struct platform_device *pdev; -+ u64 hvwc_bar_start; -+ u64 uwc_bar_start; -+ u64 paste_base_addr; -+ u64 paste_win_id_shift; -+ u64 irq_port; -+ int virq; -+ int fault_crbs; -+ int fault_fifo_size; -+ int fifo_in_progress; -+ spinlock_t fault_lock; -+ void *fault_fifo; -+ struct pnv_vas_window *fault_win; -+ struct mutex mutex; -+ struct pnv_vas_window *rxwin[6]; -+ struct pnv_vas_window *windows[65536]; -+ char *name; -+ char *dbgname; -+ struct dentry *dbgdir; -+}; -+ -+struct pnv_vas_window { -+ struct vas_window vas_win; -+ struct vas_instance *vinst; -+ bool tx_win; -+ bool nx_win; -+ bool user_win; -+ void *hvwc_map; -+ void *uwc_map; -+ void *paste_kaddr; -+ char *paste_addr_name; -+ struct pnv_vas_window *rxwin; -+ atomic_t num_txwins; -+}; -+ -+struct vas_user_win_ops { -+ struct vas_window * (*open_win)(int, u64, enum vas_cop_type); -+ u64 (*paste_addr)(struct vas_window *); -+ int (*close_win)(struct vas_window *); -+}; -+ -+struct vas_rx_win_attr { -+ void *rx_fifo; -+ int rx_fifo_size; -+ int wcreds_max; -+ bool pin_win; -+ bool rej_no_credit; -+ bool tx_wcred_mode; -+ bool rx_wcred_mode; -+ bool tx_win_ord_mode; -+ bool rx_win_ord_mode; -+ bool data_stamp; -+ bool nx_win; -+ bool fault_win; -+ bool user_win; -+ bool notify_disable; -+ bool intr_disable; -+ bool notify_early; -+ int lnotify_lpid; -+ int lnotify_pid; -+ int lnotify_tid; -+ u32 pswid; -+ int tc_mode; -+}; -+ -+struct vas_tx_win_attr { -+ enum vas_cop_type cop; -+ int wcreds_max; -+ int lpid; -+ int pidr; -+ int pswid; -+ int rsvd_txbuf_count; -+ int tc_mode; -+ bool user_win; -+ bool pin_win; -+ bool rej_no_credit; -+ bool rsvd_txbuf_enable; -+ bool tx_wcred_mode; -+ bool rx_wcred_mode; -+ bool tx_win_ord_mode; -+ bool rx_win_ord_mode; -+}; -+ -+enum vas_notify_scope { -+ VAS_SCOPE_LOCAL = 0, -+ VAS_SCOPE_GROUP = 1, -+ VAS_SCOPE_VECTORED_GROUP = 2, -+ VAS_SCOPE_UNUSED = 3, -+}; -+ -+enum vas_dma_type { -+ VAS_DMA_TYPE_INJECT = 0, -+ VAS_DMA_TYPE_WRITE = 1, -+}; -+ -+enum vas_notify_after_count { -+ VAS_NOTIFY_AFTER_256 = 0, -+ VAS_NOTIFY_NONE = 1, -+ VAS_NOTIFY_AFTER_2 = 2, -+}; -+ -+struct vas_winctx { -+ void *rx_fifo; -+ int rx_fifo_size; -+ int wcreds_max; -+ int rsvd_txbuf_count; -+ bool user_win; -+ bool nx_win; -+ bool fault_win; -+ bool rsvd_txbuf_enable; -+ bool pin_win; -+ bool rej_no_credit; -+ bool tx_wcred_mode; -+ bool rx_wcred_mode; -+ bool tx_word_mode; -+ bool rx_word_mode; -+ bool data_stamp; -+ bool xtra_write; -+ bool notify_disable; -+ bool intr_disable; -+ bool fifo_disable; -+ bool notify_early; -+ bool notify_os_intr_reg; -+ int lpid; -+ int pidr; -+ int lnotify_lpid; -+ int lnotify_pid; -+ int lnotify_tid; -+ u32 pswid; -+ int rx_win_id; -+ int fault_win_id; -+ int tc_mode; -+ u64 irq_port; -+ enum vas_dma_type dma_type; -+ enum vas_notify_scope min_scope; -+ enum vas_notify_scope max_scope; -+ enum vas_notify_after_count notify_after_count; -+}; -+ -+struct trace_event_raw_vas_rx_win_open { -+ struct trace_entry ent; -+ struct task_struct *tsk; -+ int pid; -+ int cop; -+ int vasid; -+ struct vas_rx_win_attr *rxattr; -+ int lnotify_lpid; -+ int lnotify_pid; -+ int lnotify_tid; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_vas_tx_win_open { -+ struct trace_entry ent; -+ struct task_struct *tsk; -+ int pid; -+ int cop; -+ int vasid; -+ struct vas_tx_win_attr *txattr; -+ int lpid; -+ int pidr; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_vas_paste_crb { -+ struct trace_entry ent; -+ struct task_struct *tsk; -+ struct vas_window *win; -+ int pid; -+ int vasid; -+ int winid; -+ long unsigned int paste_kaddr; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_vas_rx_win_open {}; -+ -+struct trace_event_data_offsets_vas_tx_win_open {}; -+ -+struct trace_event_data_offsets_vas_paste_crb {}; -+ -+typedef void (*btf_trace_vas_rx_win_open)(void *, struct task_struct *, int, int, struct vas_rx_win_attr *); -+ -+typedef void (*btf_trace_vas_tx_win_open)(void *, struct task_struct *, int, int, struct vas_tx_win_attr *); -+ -+typedef void (*btf_trace_vas_paste_crb)(void *, struct task_struct *, struct pnv_vas_window *); -+ -+struct coprocessor_completion_block { -+ __be64 value; -+ __be64 address; -+}; -+ -+struct coprocessor_status_block { -+ u8 flags; -+ u8 cs; -+ u8 cc; -+ u8 ce; -+ __be32 count; -+ __be64 address; -+}; -+ -+struct data_descriptor_entry { -+ __be16 flags; -+ u8 count; -+ u8 index; -+ __be32 length; -+ __be64 address; -+}; -+ -+struct nx_fault_stamp { -+ __be64 fault_storage_addr; -+ __be16 reserved; -+ __u8 flags; -+ __u8 fault_status; -+ __be32 pswid; -+}; -+ -+struct coprocessor_request_block { -+ __be32 ccw; -+ __be32 flags; -+ __be64 csb_addr; -+ struct data_descriptor_entry source; -+ struct data_descriptor_entry target; -+ struct coprocessor_completion_block ccb; -+ union { -+ struct nx_fault_stamp nx; -+ u8 reserved[16]; -+ } stamp; -+ u8 reserved[32]; -+ struct coprocessor_status_block csb; -+}; -+ -+struct actag_range { -+ u16 start; -+ u16 count; -+}; -+ -+struct npu_link { -+ struct list_head list; -+ int domain; -+ int bus; -+ int dev; -+ u16 fn_desired_actags[8]; -+ struct actag_range fn_actags[8]; -+ bool assignment_done; -+}; -+ -+struct spa_data { -+ u64 phb_opal_id; -+ u32 bdfn; -+}; -+ -+struct debugfs_blob_wrapper { -+ void *data; -+ long unsigned int size; -+}; -+ -+struct scom_debug_entry { -+ u32 chip; -+ struct debugfs_blob_wrapper path; -+ char name[16]; -+}; -+ -+struct hvcall_mpp_data { -+ long unsigned int entitled_mem; -+ long unsigned int mapped_mem; -+ short unsigned int group_num; -+ short unsigned int pool_num; -+ unsigned char mem_weight; -+ unsigned char unallocated_mem_weight; -+ long unsigned int unallocated_entitlement; -+ long unsigned int pool_size; -+ long int loan_request; -+ long unsigned int backing_mem; -+}; -+ -+struct hvcall_mpp_x_data { -+ long unsigned int coalesced_bytes; -+ long unsigned int pool_coalesced_bytes; -+ long unsigned int pool_purr_cycles; -+ long unsigned int pool_spurr_cycles; -+ long unsigned int reserved[3]; -+}; -+ -+struct dtl_entry { -+ u8 dispatch_reason; -+ u8 preempt_reason; -+ __be16 processor_id; -+ __be32 enqueue_to_dispatch_time; -+ __be32 ready_to_enqueue_time; -+ __be32 waiting_to_ready_time; -+ __be64 timebase; -+ __be64 fault_addr; -+ __be64 srr0; -+ __be64 srr1; -+}; -+ -+struct dtl_worker { -+ struct delayed_work work; -+ int cpu; -+}; -+ -+struct vcpu_dispatch_data { -+ int last_disp_cpu; -+ int total_disp; -+ int same_cpu_disp; -+ int same_chip_disp; -+ int diff_chip_disp; -+ int far_chip_disp; -+ int numa_home_disp; -+ int numa_remote_disp; -+ int numa_far_disp; -+}; -+ -+struct hpt_resize_state { -+ long unsigned int shift; -+ int commit_rc; -+}; -+ -+struct of_drc_info { -+ char *drc_type; -+ char *drc_name_prefix; -+ u32 drc_index_start; -+ u32 drc_name_suffix_start; -+ u32 num_sequential_elems; -+ u32 sequential_inc; -+ u32 drc_power_domain; -+ u32 last_drc_index; -+}; -+ -+struct h_cpu_char_result { -+ u64 character; -+ u64 behaviour; -+}; -+ -+struct of_reconfig_data { -+ struct device_node *dn; -+ struct property *prop; -+ struct property *old_prop; -+}; -+ -+enum swiotlb_force { -+ SWIOTLB_NORMAL = 0, -+ SWIOTLB_FORCE = 1, -+ SWIOTLB_NO_FORCE = 2, -+}; -+ -+enum rtas_iov_fw_value_map { -+ NUM_RES_PROPERTY = 0, -+ LOW_INT = 1, -+ START_OF_ENTRIES = 2, -+ APERTURE_PROPERTY = 2, -+ WDW_SIZE_PROPERTY = 4, -+ NEXT_ENTRY = 7, -+}; -+ -+enum get_iov_fw_value_index { -+ BAR_ADDRS = 1, -+ APERTURE_SIZE = 2, -+ WDW_SIZE = 3, -+}; -+ -+struct memory_notify { -+ long unsigned int start_pfn; -+ long unsigned int nr_pages; -+ int status_change_nid_normal; -+ int status_change_nid_high; -+ int status_change_nid; -+}; -+ -+enum { -+ DDW_QUERY_PE_DMA_WIN = 0, -+ DDW_CREATE_PE_DMA_WIN = 1, -+ DDW_REMOVE_PE_DMA_WIN = 2, -+ DDW_APPLICABLE_SIZE = 3, -+}; -+ -+enum { -+ DDW_EXT_SIZE = 0, -+ DDW_EXT_RESET_DMA_WIN = 1, -+ DDW_EXT_QUERY_OUT_SIZE = 2, -+}; -+ -+struct dynamic_dma_window_prop { -+ __be32 liobn; -+ __be64 dma_base; -+ __be32 tce_shift; -+ __be32 window_shift; -+}; -+ -+struct direct_window { -+ struct device_node *device; -+ const struct dynamic_dma_window_prop *prop; -+ struct list_head list; -+}; -+ -+struct ddw_query_response { -+ u32 windows_available; -+ u64 largest_available_block; -+ u32 page_size; -+ u32 migration_capable; -+}; -+ -+struct ddw_create_response { -+ u32 liobn; -+ u32 addr_hi; -+ u32 addr_lo; -+}; -+ -+struct failed_ddw_pdn { -+ struct device_node *pdn; -+ struct list_head list; -+}; -+ -+struct pseries_hp_errorlog { -+ u8 resource; -+ u8 action; -+ u8 id_type; -+ u8 reserved; -+ union { -+ __be32 drc_index; -+ __be32 drc_count; -+ struct { -+ __be32 count; -+ __be32 index; -+ } ic; -+ char drc_name[1]; -+ } _drc_u; -+}; -+ -+struct pseries_mc_errorlog { -+ __be32 fru_id; -+ __be32 proc_id; -+ u8 error_type; -+ u8 sub_err_type; -+ u8 reserved_1[6]; -+ __be64 effective_address; -+ __be64 logical_address; -+}; -+ -+struct epow_errorlog { -+ unsigned char sensor_value; -+ unsigned char event_modifier; -+ unsigned char extended_modifier; -+ unsigned char reserved; -+ unsigned char platform_reason; -+}; -+ -+struct hypertas_fw_feature { -+ long unsigned int val; -+ char *name; -+}; -+ -+struct vec5_fw_feature { -+ long unsigned int val; -+ unsigned int feature; -+}; -+ -+enum { -+ 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_DRAINING = 65536, -+ __WQ_ORDERED = 131072, -+ __WQ_LEGACY = 262144, -+ __WQ_ORDERED_EXPLICIT = 524288, -+ WQ_MAX_ACTIVE = 512, -+ WQ_MAX_UNBOUND_PER_CPU = 4, -+ WQ_DFL_ACTIVE = 256, -+}; -+ -+struct class_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct class *, struct class_attribute *, char *); -+ ssize_t (*store)(struct class *, struct class_attribute *, const char *, size_t); -+}; -+ -+struct pseries_hp_work { -+ struct work_struct work; -+ struct pseries_hp_errorlog *errlog; -+}; -+ -+struct cc_workarea { -+ __be32 drc_index; -+ __be32 zero; -+ __be32 name_offset; -+ __be32 prop_length; -+ __be32 prop_offset; -+}; -+ -+struct class_attribute_string { -+ struct class_attribute attr; -+ char *str; -+}; -+ -+struct update_props_workarea { -+ __be32 phandle; -+ __be32 state; -+ __be64 reserved; -+ __be32 nprops; -+} __attribute__((packed)); -+ -+struct pseries_suspend_info { -+ atomic_t counter; -+ bool done; -+}; -+ -+enum vasi_aborting_entity { -+ ORCHESTRATOR = 1, -+ VSP_SOURCE = 2, -+ PARTITION_FIRMWARE = 3, -+ PLATFORM_FIRMWARE = 4, -+ VSP_TARGET = 5, -+ MIGRATING_PARTITION = 6, -+}; -+ -+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 pe_map_bar_entry { -+ __be64 bar; -+ __be16 rid; -+ __be16 pe_num; -+ __be32 reserved; -+}; -+ -+struct msi_counts { -+ struct device_node *requestor; -+ int num_devices; -+ int request; -+ int quota; -+ int spare; -+ int over_quota; -+}; -+ -+typedef int mhp_t; -+ -+struct memory_block { -+ long unsigned int start_section_nr; -+ long unsigned int state; -+ int online_type; -+ int nid; -+ struct device dev; -+ long unsigned int nr_vmemmap_pages; -+}; -+ -+struct module_version_attribute { -+ struct module_attribute mattr; -+ const char *module_name; -+ const char *version; -+}; -+ -+struct dev_ext_attribute { -+ struct device_attribute attr; -+ void *var; -+}; -+ -+struct pseudo_fs_context { -+ const struct super_operations *ops; -+ const struct xattr_handler **xattr; -+ const struct dentry_operations *dops; -+ long unsigned int magic; -+}; -+ -+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 inode *inode; -+}; -+ -+struct dtl { -+ struct dtl_entry *buf; -+ int cpu; -+ int buf_entries; -+ u64 last_idx; -+ spinlock_t lock; -+}; -+ -+struct pseries_io_event { -+ uint8_t event_type; -+ uint8_t rpc_data_len; -+ uint8_t scope; -+ uint8_t event_subtype; -+ uint32_t drc_index; -+ uint8_t rpc_data[216]; -+}; -+ -+struct hv_get_perf_counter_info_params { -+ __be32 counter_request; -+ __be32 starting_index; -+ __be16 secondary_index; -+ __be16 returned_values; -+ __be32 detail_rc; -+ __be16 cv_element_size; -+ __u8 counter_info_version_in; -+ __u8 counter_info_version_out; -+ __u8 reserved[12]; -+ __u8 counter_value[0]; -+}; -+ -+struct hv_gpci_request_buffer { -+ struct hv_get_perf_counter_info_params params; -+ uint8_t bytes[4064]; -+}; -+ -+struct hvcall_ppp_data { -+ u64 entitlement; -+ u64 unallocated_entitlement; -+ u16 group_num; -+ u16 pool_num; -+ u8 capped; -+ u8 weight; -+ u8 unallocated_weight; -+ u16 active_procs_in_pool; -+ u16 active_system_procs; -+ u16 phys_platform_procs; -+ u32 max_proc_cap_avail; -+ u32 entitled_proc_cap_avail; -+}; -+ -+struct bus_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct bus_type *, char *); -+ ssize_t (*store)(struct bus_type *, const char *, size_t); -+}; -+ -+struct vio_device_id { -+ char type[32]; -+ char compat[32]; -+}; -+ -+struct vio_pfo_op { -+ u64 flags; -+ s64 in; -+ s64 inlen; -+ s64 out; -+ s64 outlen; -+ u64 csbcpb; -+ void *done; -+ long unsigned int handle; -+ unsigned int timeout; -+ long int hcall_err; -+}; -+ -+enum vio_dev_family { -+ VDEVICE = 0, -+ PFO = 1, -+}; -+ -+struct vio_dev { -+ const char *name; -+ const char *type; -+ uint32_t unit_address; -+ uint32_t resource_id; -+ unsigned int irq; -+ struct { -+ size_t desired; -+ size_t entitled; -+ size_t allocated; -+ atomic_t allocs_failed; -+ } cmo; -+ enum vio_dev_family family; -+ struct device dev; -+}; -+ -+struct vio_driver { -+ const char *name; -+ const struct vio_device_id *id_table; -+ int (*probe)(struct vio_dev *, const struct vio_device_id *); -+ void (*remove)(struct vio_dev *); -+ void (*shutdown)(struct vio_dev *); -+ long unsigned int (*get_desired_dma)(struct vio_dev *); -+ const struct dev_pm_ops *pm; -+ struct device_driver driver; -+}; -+ -+struct vio_cmo_pool { -+ size_t size; -+ size_t free; -+}; -+ -+struct vio_cmo_dev_entry { -+ struct vio_dev *viodev; -+ struct list_head list; -+}; -+ -+struct vio_cmo { -+ spinlock_t lock; -+ struct delayed_work balance_q; -+ struct list_head device_list; -+ size_t entitled; -+ struct vio_cmo_pool reserve; -+ struct vio_cmo_pool excess; -+ size_t spare; -+ size_t min; -+ size_t desired; -+ size_t curr; -+ size_t high; -+}; -+ -+struct rtas_fadump_section { -+ __be32 request_flag; -+ __be16 source_data_type; -+ __be16 error_flags; -+ __be64 source_address; -+ __be64 source_len; -+ __be64 bytes_dumped; -+ __be64 destination_address; -+}; -+ -+struct rtas_fadump_section_header { -+ __be32 dump_format_version; -+ __be16 dump_num_sections; -+ __be16 dump_status_flag; -+ __be32 offset_first_dump_section; -+ __be32 dd_block_size; -+ __be64 dd_block_offset; -+ __be64 dd_num_blocks; -+ __be32 dd_offset_disk_path; -+ __be32 max_time_auto; -+}; -+ -+struct rtas_fadump_mem_struct { -+ struct rtas_fadump_section_header header; -+ struct rtas_fadump_section cpu_state_data; -+ struct rtas_fadump_section hpte_region; -+ struct rtas_fadump_section rmr_region; -+}; -+ -+struct rtas_fadump_reg_save_area_header { -+ __be64 magic_number; -+ __be32 version; -+ __be32 num_cpu_offset; -+}; -+ -+struct rtas_fadump_reg_entry { -+ __be64 reg_id; -+ __be64 reg_value; -+}; -+ -+typedef int suspend_state_t; -+ -+struct platform_suspend_ops { -+ int (*valid)(suspend_state_t); -+ int (*begin)(suspend_state_t); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ int (*enter)(suspend_state_t); -+ void (*wake)(); -+ void (*finish)(); -+ bool (*suspend_again)(); -+ void (*end)(); -+ void (*recover)(); -+}; -+ -+struct hv_vas_all_caps { -+ __be64 descriptor; -+ __be64 feat_type; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 vas_all_caps { -+ u64 descriptor; -+ u64 feat_type; -+}; -+ -+enum vas_cop_feat_type { -+ VAS_GZIP_QOS_FEAT_TYPE = 0, -+ VAS_GZIP_DEF_FEAT_TYPE = 1, -+ VAS_MAX_FEAT_TYPE = 2, -+}; -+ -+struct hv_vas_cop_feat_caps { -+ __be64 descriptor; -+ u8 win_type; -+ u8 user_mode; -+ __be16 max_lpar_creds; -+ __be16 max_win_creds; -+ union { -+ __be16 reserved; -+ __be16 def_lpar_creds; -+ }; -+ __be16 target_lpar_creds; -+ long: 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 vas_cop_feat_caps { -+ u64 descriptor; -+ u8 win_type; -+ u8 user_mode; -+ u16 max_lpar_creds; -+ u16 max_win_creds; -+ union { -+ u16 reserved; -+ u16 def_lpar_creds; -+ }; -+ atomic_t target_lpar_creds; -+ atomic_t used_lpar_creds; -+ u16 avail_lpar_creds; -+}; -+ -+struct vas_caps { -+ struct vas_cop_feat_caps caps; -+ struct list_head list; -+}; -+ -+struct pseries_vas_window { -+ struct vas_window vas_win; -+ u64 win_addr; -+ u8 win_type; -+ u32 complete_irq; -+ u32 fault_irq; -+ u64 domain[6]; -+ u64 util; -+ struct list_head win_list; -+ u64 flags; -+ char *name; -+ int fault_virq; -+}; -+ -+struct vas_tx_win_open_attr { -+ __u32 version; -+ __s16 vas_id; -+ __u16 reserved1; -+ __u64 flags; -+ __u64 reserved2[6]; -+}; -+ -+struct coproc_dev { -+ struct cdev cdev; -+ struct device *device; -+ char *name; -+ dev_t devt; -+ struct class *class; -+ enum vas_cop_type cop_type; -+ const struct vas_user_win_ops *vops; -+}; -+ -+struct coproc_instance { -+ struct coproc_dev *coproc; -+ struct vas_window *txwin; -+}; -+ -+enum { -+ DUMP_PREFIX_NONE = 0, -+ DUMP_PREFIX_ADDRESS = 1, -+ DUMP_PREFIX_OFFSET = 2, -+}; -+ -+struct bpf_binary_header { -+ u32 pages; -+ int: 32; -+ u8 image[0]; -+}; -+ -+typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); -+ -+struct codegen_context { -+ unsigned int seen; -+ unsigned int idx; -+ unsigned int stack_size; -+ int b2p[14]; -+}; -+ -+struct powerpc64_jit_data { -+ struct bpf_binary_header *header; -+ u32 *addrs; -+ u8 *image; -+ u32 proglen; -+ struct codegen_context ctx; -+}; -+ -+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 ftrace_dump_mode { -+ DUMP_NONE = 0, -+ DUMP_ALL = 1, -+ DUMP_ORIG = 2, -+}; -+ -+enum tk_offsets { -+ TK_OFFS_REAL = 0, -+ TK_OFFS_BOOT = 1, -+ TK_OFFS_TAI = 2, -+ TK_OFFS_MAX = 3, -+}; -+ -+struct sysrq_key_op { -+ void (* const handler)(int); -+ const char * const help_msg; -+ const char * const action_msg; -+ const int enable_mask; -+}; -+ -+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_PCMCIA_CIS = 10, -+ LOCKDOWN_TIOCSSERIAL = 11, -+ LOCKDOWN_MODULE_PARAMETERS = 12, -+ LOCKDOWN_MMIOTRACE = 13, -+ LOCKDOWN_DEBUGFS = 14, -+ LOCKDOWN_XMON_WR = 15, -+ LOCKDOWN_BPF_WRITE_USER = 16, -+ LOCKDOWN_INTEGRITY_MAX = 17, -+ LOCKDOWN_KCORE = 18, -+ LOCKDOWN_KPROBES = 19, -+ LOCKDOWN_BPF_READ_KERNEL = 20, -+ LOCKDOWN_PERF = 21, -+ LOCKDOWN_TRACEFS = 22, -+ LOCKDOWN_XMON_RW = 23, -+ LOCKDOWN_XFRM_SECRET = 24, -+ LOCKDOWN_CONFIDENTIALITY_MAX = 25, -+}; -+ -+enum { -+ XIVE_DUMP_TM_HYP = 0, -+ XIVE_DUMP_TM_POOL = 1, -+ XIVE_DUMP_TM_OS = 2, -+ XIVE_DUMP_TM_USER = 3, -+ XIVE_DUMP_VP = 4, -+ XIVE_DUMP_EMU_STATE = 5, -+}; -+ -+struct bpt { -+ long unsigned int address; -+ u32 *instr; -+ atomic_t ref_count; -+ int enabled; -+ long unsigned int pad; -+}; -+ -+typedef int (*instruction_dump_func)(long unsigned int, long unsigned int); -+ -+typedef long unsigned int (*callfunc_t)(long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ -+typedef uint64_t ppc_cpu_t; -+ -+struct powerpc_opcode { -+ const char *name; -+ long unsigned int opcode; -+ long unsigned int mask; -+ ppc_cpu_t flags; -+ ppc_cpu_t deprecated; -+ unsigned char operands[8]; -+}; -+ -+struct powerpc_operand { -+ unsigned int bitm; -+ int shift; -+ long unsigned int (*insert)(long unsigned int, long int, ppc_cpu_t, const char **); -+ long int (*extract)(long unsigned int, ppc_cpu_t, int *); -+ long unsigned int flags; -+}; -+ -+struct powerpc_macro { -+ const char *name; -+ unsigned int operands; -+ ppc_cpu_t flags; -+ const char *format; -+}; -+ -+struct kvmppc_spapr_tce_iommu_table { -+ struct callback_head rcu; -+ struct list_head next; -+ struct iommu_table *tbl; -+ struct kref kref; -+}; -+ -+struct kvmppc_spapr_tce_table { -+ struct list_head list; -+ struct kvm *kvm; -+ u64 liobn; -+ struct callback_head rcu; -+ u32 page_shift; -+ u64 offset; -+ u64 size; -+ struct list_head iommu_tables; -+ struct mutex alloc_lock; -+ struct page *pages[0]; -+}; -+ -+struct mm_iommu_table_group_mem_t___2; -+ -+typedef __u64 __le64; -+ -+struct kvm_device_attr { -+ __u32 flags; -+ __u32 group; -+ __u64 attr; -+ __u64 addr; -+}; -+ -+struct kvm_device; -+ -+struct kvm_device_ops { -+ const char *name; -+ int (*create)(struct kvm_device *, u32); -+ void (*init)(struct kvm_device *); -+ void (*destroy)(struct kvm_device *); -+ void (*release)(struct kvm_device *); -+ int (*set_attr)(struct kvm_device *, struct kvm_device_attr *); -+ int (*get_attr)(struct kvm_device *, struct kvm_device_attr *); -+ int (*has_attr)(struct kvm_device *, struct kvm_device_attr *); -+ long int (*ioctl)(struct kvm_device *, unsigned int, long unsigned int); -+ int (*mmap)(struct kvm_device *, struct vm_area_struct *); -+}; -+ -+struct kvmppc_xive_src_block; -+ -+struct kvmppc_xive_ops; -+ -+struct kvmppc_xive { -+ struct kvm *kvm; -+ struct kvm_device *dev; -+ struct dentry *dentry; -+ u32 vp_base; -+ struct kvmppc_xive_src_block *src_blocks[1024]; -+ u32 max_sbid; -+ u32 src_count; -+ u32 saved_src_count; -+ u32 delayed_irqs; -+ u8 qmap; -+ u32 q_order; -+ u32 q_page_order; -+ u8 single_escalation; -+ u32 nr_servers; -+ struct kvmppc_xive_ops *ops; -+ struct address_space *mapping; -+ struct mutex mapping_lock; -+ struct mutex lock; -+}; -+ -+struct kvmppc_ics; -+ -+struct kvmppc_xics { -+ struct kvm *kvm; -+ struct kvm_device *dev; -+ struct dentry *dentry; -+ u32 max_icsid; -+ bool real_mode; -+ bool real_mode_dbg; -+ u32 err_noics; -+ u32 err_noicp; -+ struct kvmppc_ics *ics[1024]; -+}; -+ -+union kvmppc_icp_state { -+ long unsigned int raw; -+ struct { -+ u8 out_ee: 1; -+ u8 need_resend: 1; -+ u8 cppr; -+ u8 mfrr; -+ u8 pending_pri; -+ u32 xisr; -+ }; -+}; -+ -+struct kvmppc_icp { -+ struct kvm_vcpu *vcpu; -+ long unsigned int server_num; -+ union kvmppc_icp_state state; -+ long unsigned int resend_map[16]; -+ u32 rm_action; -+ struct kvm_vcpu *rm_kick_target; -+ struct kvmppc_icp *rm_resend_icp; -+ u32 rm_reject; -+ u32 rm_eoied_irq; -+ long unsigned int n_rm_kick_vcpu; -+ long unsigned int n_rm_check_resend; -+ long unsigned int n_rm_notify_eoi; -+ long unsigned int n_check_resend; -+ long unsigned int n_reject; -+ union kvmppc_icp_state rm_dbgstate; -+ struct kvm_vcpu *rm_dbgtgt; -+}; -+ -+struct kvmppc_xive_vcpu { -+ struct kvmppc_xive *xive; -+ struct kvm_vcpu *vcpu; -+ bool valid; -+ u32 server_num; -+ u32 vp_id; -+ u32 vp_chip_id; -+ u32 vp_cam; -+ u32 vp_ipi; -+ struct xive_irq_data vp_ipi_data; -+ uint8_t cppr; -+ uint8_t hw_cppr; -+ uint8_t mfrr; -+ uint8_t pending; -+ struct xive_q queues[8]; -+ u32 esc_virq[8]; -+ char *esc_virq_names[8]; -+ u32 delayed_irq; -+ u64 stat_rm_h_xirr; -+ u64 stat_rm_h_ipoll; -+ u64 stat_rm_h_cppr; -+ u64 stat_rm_h_eoi; -+ u64 stat_rm_h_ipi; -+ u64 stat_vm_h_xirr; -+ u64 stat_vm_h_ipoll; -+ u64 stat_vm_h_cppr; -+ u64 stat_vm_h_eoi; -+ u64 stat_vm_h_ipi; -+}; -+ -+struct kvm_device { -+ const struct kvm_device_ops *ops; -+ struct kvm *kvm; -+ void *private; -+ struct list_head vm_node; -+}; -+ -+union kvmppc_rm_state { -+ long unsigned int raw; -+ struct { -+ u32 in_host; -+ u32 rm_action; -+ }; -+}; -+ -+struct kvmppc_host_rm_core { -+ union kvmppc_rm_state rm_state; -+ void *rm_data; -+ char pad[112]; -+}; -+ -+struct kvmppc_host_rm_ops { -+ struct kvmppc_host_rm_core *rm_core; -+ void (*vcpu_kick)(struct kvm_vcpu *); -+}; -+ -+struct ics_irq_state { -+ u32 number; -+ u32 server; -+ u32 pq_state; -+ u8 priority; -+ u8 saved_priority; -+ u8 resend; -+ u8 masked_pending; -+ u8 lsi; -+ u8 exists; -+ int intr_cpu; -+ u32 host_irq; -+}; -+ -+struct kvmppc_ics { -+ arch_spinlock_t lock; -+ u16 icsid; -+ struct ics_irq_state irq_state[1024]; -+}; -+ -+struct kvmppc_xive_irq_state { -+ bool valid; -+ u32 number; -+ u32 ipi_number; -+ struct xive_irq_data ipi_data; -+ u32 pt_number; -+ struct xive_irq_data *pt_data; -+ u8 guest_priority; -+ u8 saved_priority; -+ u32 act_server; -+ u8 act_priority; -+ bool in_eoi; -+ bool old_p; -+ bool old_q; -+ bool lsi; -+ bool asserted; -+ bool in_queue; -+ bool saved_p; -+ bool saved_q; -+ u8 saved_scan_prio; -+ u32 eisn; -+}; -+ -+struct kvmppc_xive_src_block { -+ arch_spinlock_t lock; -+ u16 id; -+ struct kvmppc_xive_irq_state irq_state[1024]; -+}; -+ -+struct kvmppc_xive_ops { -+ int (*reset_mapped)(struct kvm *, long unsigned int); -+}; -+ -+struct kernel_stat { -+ long unsigned int irqs_sum; -+ unsigned int softirqs[10]; -+}; -+ -+enum { -+ scan_fetch = 0, -+ scan_poll = 1, -+ scan_eoi = 2, -+}; -+ -+enum perf_callchain_context { -+ PERF_CONTEXT_HV = 4294967264, -+ PERF_CONTEXT_KERNEL = 4294967168, -+ PERF_CONTEXT_USER = 4294966784, -+ PERF_CONTEXT_GUEST = 4294965248, -+ PERF_CONTEXT_GUEST_KERNEL = 4294965120, -+ PERF_CONTEXT_GUEST_USER = 4294964736, -+ PERF_CONTEXT_MAX = 4294963201, -+}; -+ -+struct perf_callchain_entry_ctx { -+ struct perf_callchain_entry *entry; -+ u32 max_stack; -+ u32 nr; -+ short int contexts; -+ bool contexts_maxed; -+}; -+ -+struct signal_frame_64 { -+ char dummy[128]; -+ struct ucontext uc; -+ long unsigned int unused[2]; -+ unsigned int tramp[6]; -+ struct siginfo *pinfo; -+ void *puc; -+ struct siginfo info; -+ char abigap[288]; -+}; -+ -+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_powerpc_regs { -+ PERF_REG_POWERPC_R0 = 0, -+ PERF_REG_POWERPC_R1 = 1, -+ PERF_REG_POWERPC_R2 = 2, -+ PERF_REG_POWERPC_R3 = 3, -+ PERF_REG_POWERPC_R4 = 4, -+ PERF_REG_POWERPC_R5 = 5, -+ PERF_REG_POWERPC_R6 = 6, -+ PERF_REG_POWERPC_R7 = 7, -+ PERF_REG_POWERPC_R8 = 8, -+ PERF_REG_POWERPC_R9 = 9, -+ PERF_REG_POWERPC_R10 = 10, -+ PERF_REG_POWERPC_R11 = 11, -+ PERF_REG_POWERPC_R12 = 12, -+ PERF_REG_POWERPC_R13 = 13, -+ PERF_REG_POWERPC_R14 = 14, -+ PERF_REG_POWERPC_R15 = 15, -+ PERF_REG_POWERPC_R16 = 16, -+ PERF_REG_POWERPC_R17 = 17, -+ PERF_REG_POWERPC_R18 = 18, -+ PERF_REG_POWERPC_R19 = 19, -+ PERF_REG_POWERPC_R20 = 20, -+ PERF_REG_POWERPC_R21 = 21, -+ PERF_REG_POWERPC_R22 = 22, -+ PERF_REG_POWERPC_R23 = 23, -+ PERF_REG_POWERPC_R24 = 24, -+ PERF_REG_POWERPC_R25 = 25, -+ PERF_REG_POWERPC_R26 = 26, -+ PERF_REG_POWERPC_R27 = 27, -+ PERF_REG_POWERPC_R28 = 28, -+ PERF_REG_POWERPC_R29 = 29, -+ PERF_REG_POWERPC_R30 = 30, -+ PERF_REG_POWERPC_R31 = 31, -+ PERF_REG_POWERPC_NIP = 32, -+ PERF_REG_POWERPC_MSR = 33, -+ PERF_REG_POWERPC_ORIG_R3 = 34, -+ PERF_REG_POWERPC_CTR = 35, -+ PERF_REG_POWERPC_LINK = 36, -+ PERF_REG_POWERPC_XER = 37, -+ PERF_REG_POWERPC_CCR = 38, -+ PERF_REG_POWERPC_SOFTE = 39, -+ PERF_REG_POWERPC_TRAP = 40, -+ PERF_REG_POWERPC_DAR = 41, -+ PERF_REG_POWERPC_DSISR = 42, -+ PERF_REG_POWERPC_SIER = 43, -+ PERF_REG_POWERPC_MMCRA = 44, -+ PERF_REG_POWERPC_MMCR0 = 45, -+ PERF_REG_POWERPC_MMCR1 = 46, -+ PERF_REG_POWERPC_MMCR2 = 47, -+ PERF_REG_POWERPC_MMCR3 = 48, -+ PERF_REG_POWERPC_SIER2 = 49, -+ PERF_REG_POWERPC_SIER3 = 50, -+ PERF_REG_POWERPC_PMC1 = 51, -+ PERF_REG_POWERPC_PMC2 = 52, -+ PERF_REG_POWERPC_PMC3 = 53, -+ PERF_REG_POWERPC_PMC4 = 54, -+ PERF_REG_POWERPC_PMC5 = 55, -+ PERF_REG_POWERPC_PMC6 = 56, -+ PERF_REG_POWERPC_MAX = 45, -+}; -+ -+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, -+ __PERF_SAMPLE_CALLCHAIN_EARLY = 0, -+}; -+ -+struct mmcr_regs { -+ long unsigned int mmcr0; -+ long unsigned int mmcr1; -+ long unsigned int mmcr2; -+ long unsigned int mmcra; -+ long unsigned int mmcr3; -+}; -+ -+struct power_pmu { -+ const char *name; -+ int n_counter; -+ int max_alternatives; -+ long unsigned int add_fields; -+ long unsigned int test_adder; -+ int (*compute_mmcr)(u64 *, int, unsigned int *, struct mmcr_regs *, struct perf_event **, u32); -+ int (*get_constraint)(u64, long unsigned int *, long unsigned int *, u64); -+ int (*get_alternatives)(u64, unsigned int, u64 *); -+ void (*get_mem_data_src)(union perf_mem_data_src *, u32, struct pt_regs *); -+ void (*get_mem_weight)(u64 *, u64); -+ long unsigned int group_constraint_mask; -+ long unsigned int group_constraint_val; -+ u64 (*bhrb_filter_map)(u64); -+ void (*config_bhrb)(u64); -+ void (*disable_pmc)(unsigned int, struct mmcr_regs *); -+ int (*limited_pmc_event)(u64); -+ u32 flags; -+ const struct attribute_group **attr_groups; -+ int n_generic; -+ int *generic_events; -+ u64 (*cache_events)[42]; -+ int n_blacklist_ev; -+ int *blacklist_ev; -+ int bhrb_nr; -+ int capabilities; -+ int (*check_attr_config)(struct perf_event *); -+}; -+ -+struct perf_pmu_events_attr { -+ struct device_attribute attr; -+ u64 id; -+ const char *event_str; -+}; -+ -+struct cpu_hw_events { -+ int n_events; -+ int n_percpu; -+ int disabled; -+ int n_added; -+ int n_limited; -+ u8 pmcs_enabled; -+ struct perf_event *event[8]; -+ u64 events[8]; -+ unsigned int flags[8]; -+ struct mmcr_regs mmcr; -+ struct perf_event *limited_counter[2]; -+ u8 limited_hwidx[2]; -+ u64 alternatives[64]; -+ long unsigned int amasks[64]; -+ long unsigned int avalues[64]; -+ unsigned int txn_flags; -+ int n_txn_start; -+ u64 bhrb_filter; -+ unsigned int bhrb_users; -+ void *bhrb_context; -+ struct perf_branch_stack bhrb_stack; -+ struct perf_branch_entry bhrb_entries[32]; -+ u64 ic_init; -+ long unsigned int pmcs[8]; -+}; -+ -+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_MAX = 21, -+}; -+ -+struct trace_imc_data { -+ u64 tb1; -+ u64 ip; -+ u64 val; -+ u64 cpmc1; -+ u64 cpmc2; -+ u64 cpmc3; -+ u64 cpmc4; -+ u64 tb2; -+}; -+ -+struct imc_pmu_ref { -+ struct mutex lock; -+ unsigned int id; -+ int refc; -+}; -+ -+enum hv_perf_domains { -+ HV_PERF_DOMAIN_PHYS_CHIP = 1, -+ HV_PERF_DOMAIN_PHYS_CORE = 2, -+ HV_PERF_DOMAIN_VCPU_HOME_CORE = 3, -+ HV_PERF_DOMAIN_VCPU_HOME_CHIP = 4, -+ HV_PERF_DOMAIN_VCPU_HOME_NODE = 5, -+ HV_PERF_DOMAIN_VCPU_REMOTE_NODE = 6, -+ HV_PERF_DOMAIN_MAX = 7, -+}; -+ -+struct hv_24x7_request { -+ __u8 performance_domain; -+ __u8 reserved[1]; -+ __be16 data_size; -+ __be32 data_offset; -+ __be16 starting_lpar_ix; -+ __be16 max_num_lpars; -+ __be16 starting_ix; -+ __be16 max_ix; -+ __u8 starting_thread_group_ix; -+ __u8 max_num_thread_groups; -+ __u8 reserved2[14]; -+}; -+ -+struct hv_24x7_request_buffer { -+ __u8 interface_version; -+ __u8 num_requests; -+ __u8 reserved[14]; -+ struct hv_24x7_request requests[0]; -+}; -+ -+struct hv_24x7_result { -+ __u8 result_ix; -+ __u8 results_complete; -+ __be16 num_elements_returned; -+ __be16 result_element_data_size; -+ __u8 reserved[2]; -+ char elements[0]; -+}; -+ -+struct hv_24x7_data_result_buffer { -+ __u8 interface_version; -+ __u8 num_results; -+ __u8 reserved[1]; -+ __u8 failing_request_ix; -+ __be32 detailed_rc; -+ __be64 cec_cfg_instance_id; -+ __be64 catalog_version_num; -+ __u8 reserved2[8]; -+ struct hv_24x7_result results[0]; -+}; -+ -+struct hv_24x7_catalog_page_0 { -+ __be32 magic; -+ __be32 length; -+ __be64 version; -+ __u8 build_time_stamp[16]; -+ __u8 reserved2[32]; -+ __be16 schema_data_offs; -+ __be16 schema_data_len; -+ __be16 schema_entry_count; -+ __u8 reserved3[2]; -+ __be16 event_data_offs; -+ __be16 event_data_len; -+ __be16 event_entry_count; -+ __u8 reserved4[2]; -+ __be16 group_data_offs; -+ __be16 group_data_len; -+ __be16 group_entry_count; -+ __u8 reserved5[2]; -+ __be16 formula_data_offs; -+ __be16 formula_data_len; -+ __be16 formula_entry_count; -+ __u8 reserved6[2]; -+}; -+ -+struct hv_24x7_event_data { -+ __be16 length; -+ __u8 reserved1[2]; -+ __u8 domain; -+ __u8 reserved2[1]; -+ __be16 event_group_record_offs; -+ __be16 event_group_record_len; -+ __be16 event_counter_offs; -+ __be32 flags; -+ __be16 primary_group_ix; -+ __be16 group_count; -+ __be16 event_name_len; -+ __u8 remainder[0]; -+} __attribute__((packed)); -+ -+struct hv_perf_caps { -+ u16 version; -+ u16 collect_privileged: 1; -+ u16 ga: 1; -+ u16 expanded: 1; -+ u16 lab: 1; -+ u16 unused: 12; -+}; -+ -+struct hv_24x7_hw { -+ struct perf_event *events[255]; -+}; -+ -+struct event_uniq { -+ struct rb_node node; -+ const char *name; -+ int nl; -+ unsigned int ct; -+ unsigned int domain; -+}; -+ -+enum { -+ HV_GPCI_CM_GA = 128, -+ HV_GPCI_CM_EXPANDED = 64, -+ HV_GPCI_CM_LAB = 32, -+}; -+ -+enum hv_gpci_requests { -+ HV_GPCI_dispatch_timebase_by_processor = 16, -+ HV_GPCI_entitled_capped_uncapped_donated_idle_timebase_by_partition = 32, -+ HV_GPCI_run_instructions_run_cycles_by_partition = 48, -+ HV_GPCI_system_performance_capabilities = 64, -+ HV_GPCI_processor_bus_utilization_abc_links = 80, -+ HV_GPCI_processor_bus_utilization_wxyz_links = 96, -+ HV_GPCI_processor_bus_utilization_gx_links = 112, -+ HV_GPCI_processor_bus_utilization_mc_links = 128, -+ HV_GPCI_processor_core_utilization = 148, -+ HV_GPCI_partition_hypervisor_queuing_times = 224, -+ HV_GPCI_system_hypervisor_times = 240, -+ HV_GPCI_system_tlbie_count_and_time = 244, -+ HV_GPCI_partition_instruction_count_and_time = 256, -+}; -+ -+struct hv_gpci_system_performance_capabilities { -+ __u8 perf_collect_privileged; -+ __u8 capability_mask; -+ __u8 reserved[14]; -+}; -+ -+struct p { -+ struct hv_get_perf_counter_info_params params; -+ struct hv_gpci_system_performance_capabilities caps; -+}; -+ -+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 { -+ PM_IC_DEMAND_L2_BR_ALL = 18584, -+ PM_GCT_UTIL_7_TO_10_SLOTS = 8352, -+ PM_PMC2_SAVED = 65570, -+ PM_CMPLU_STALL_DFU = 131132, -+ PM_VSU0_16FLOP = 41124, -+ PM_MRK_LSU_DERAT_MISS = 249946, -+ PM_MRK_ST_CMPL = 65588, -+ PM_NEST_PAIR3_ADD = 264321, -+ PM_L2_ST_DISP = 287104, -+ PM_L2_CASTOUT_MOD = 90496, -+ PM_ISEG = 8356, -+ PM_MRK_INST_TIMEO = 262196, -+ PM_L2_RCST_DISP_FAIL_ADDR = 221826, -+ PM_LSU1_DC_PREF_STREAM_CONFIRM = 53430, -+ PM_IERAT_WR_64K = 16574, -+ PM_MRK_DTLB_MISS_16M = 315486, -+ PM_IERAT_MISS = 65782, -+ PM_MRK_PTEG_FROM_LMEM = 315474, -+ PM_FLOP = 65780, -+ PM_THRD_PRIO_4_5_CYC = 16564, -+ PM_BR_PRED_TA = 16554, -+ PM_CMPLU_STALL_FXU = 131092, -+ PM_EXT_INT = 131320, -+ PM_VSU_FSQRT_FDIV = 43144, -+ PM_MRK_LD_MISS_EXPOSED_CYC = 65598, -+ PM_LSU1_LDF = 49286, -+ PM_IC_WRITE_ALL = 18572, -+ PM_LSU0_SRQ_STFWD = 49312, -+ PM_PTEG_FROM_RL2L3_MOD = 114770, -+ PM_MRK_DATA_FROM_L31_SHR = 118862, -+ PM_DATA_FROM_L21_MOD = 245830, -+ PM_VSU1_SCAL_DOUBLE_ISSUED = 45194, -+ PM_VSU0_8FLOP = 41120, -+ PM_POWER_EVENT1 = 65646, -+ PM_DISP_CLB_HELD_BAL = 8338, -+ PM_VSU1_2FLOP = 41114, -+ PM_LWSYNC_HELD = 8346, -+ PM_PTEG_FROM_DL2L3_SHR = 245844, -+ PM_INST_FROM_L21_MOD = 213062, -+ PM_IERAT_XLATE_WR_16MPLUS = 16572, -+ PM_IC_REQ_ALL = 18568, -+ PM_DSLB_MISS = 53392, -+ PM_L3_MISS = 127106, -+ PM_LSU0_L1_PREF = 53432, -+ PM_VSU_SCALAR_SINGLE_ISSUED = 47236, -+ PM_LSU1_DC_PREF_STREAM_CONFIRM_STRIDE = 53438, -+ PM_L2_INST = 221312, -+ PM_VSU0_FRSP = 41140, -+ PM_FLUSH_DISP = 8322, -+ PM_PTEG_FROM_L2MISS = 311384, -+ PM_VSU1_DQ_ISSUED = 45210, -+ PM_CMPLU_STALL_LSU = 131090, -+ PM_MRK_DATA_FROM_DMEM = 118858, -+ PM_LSU_FLUSH_ULD = 51376, -+ PM_PTEG_FROM_LMEM = 311378, -+ PM_MRK_DERAT_MISS_16M = 249948, -+ PM_THRD_ALL_RUN_CYC = 131084, -+ PM_MEM0_PREFETCH_DISP = 131203, -+ PM_MRK_STALL_CMPLU_CYC_COUNT = 196671, -+ PM_DATA_FROM_DL2L3_MOD = 245836, -+ PM_VSU_FRSP = 43188, -+ PM_MRK_DATA_FROM_L21_MOD = 249926, -+ PM_PMC1_OVERFLOW = 131088, -+ PM_VSU0_SINGLE = 41128, -+ PM_MRK_PTEG_FROM_L3MISS = 184408, -+ PM_MRK_PTEG_FROM_L31_SHR = 184406, -+ PM_VSU0_VECTOR_SP_ISSUED = 45200, -+ PM_VSU1_FEST = 41146, -+ PM_MRK_INST_DISP = 131120, -+ PM_VSU0_COMPLEX_ISSUED = 45206, -+ PM_LSU1_FLUSH_UST = 49334, -+ PM_INST_CMPL = 2, -+ PM_FXU_IDLE = 65550, -+ PM_LSU0_FLUSH_ULD = 49328, -+ PM_MRK_DATA_FROM_DL2L3_MOD = 249932, -+ PM_LSU_LMQ_SRQ_EMPTY_ALL_CYC = 196636, -+ PM_LSU1_REJECT_LMQ_FULL = 49318, -+ PM_INST_PTEG_FROM_L21_MOD = 254038, -+ PM_INST_FROM_RL2L3_MOD = 81986, -+ PM_SHL_CREATED = 20610, -+ PM_L2_ST_HIT = 287106, -+ PM_DATA_FROM_DMEM = 114762, -+ PM_L3_LD_MISS = 192642, -+ PM_FXU1_BUSY_FXU0_IDLE = 262158, -+ PM_DISP_CLB_HELD_RES = 8340, -+ PM_L2_SN_SX_I_DONE = 222082, -+ PM_GRP_CMPL = 196612, -+ PM_STCX_CMPL = 49304, -+ PM_VSU0_2FLOP = 41112, -+ PM_L3_PREF_MISS = 258178, -+ PM_LSU_SRQ_SYNC_CYC = 53398, -+ PM_LSU_REJECT_ERAT_MISS = 131172, -+ PM_L1_ICACHE_MISS = 131324, -+ PM_LSU1_FLUSH_SRQ = 49342, -+ PM_LD_REF_L1_LSU0 = 49280, -+ PM_VSU0_FEST = 41144, -+ PM_VSU_VECTOR_SINGLE_ISSUED = 47248, -+ PM_FREQ_UP = 262156, -+ PM_DATA_FROM_LMEM = 245834, -+ PM_LSU1_LDX = 49290, -+ PM_PMC3_OVERFLOW = 262160, -+ PM_MRK_BR_MPRED = 196662, -+ PM_SHL_MATCH = 20614, -+ PM_MRK_BR_TAKEN = 65590, -+ PM_CMPLU_STALL_BRU = 262222, -+ PM_ISLB_MISS = 53394, -+ PM_CYC = 30, -+ PM_DISP_HELD_THERMAL = 196614, -+ PM_INST_PTEG_FROM_RL2L3_SHR = 188500, -+ PM_LSU1_SRQ_STFWD = 49314, -+ PM_GCT_NOSLOT_BR_MPRED = 262170, -+ PM_1PLUS_PPC_CMPL = 65778, -+ PM_PTEG_FROM_DMEM = 180306, -+ PM_VSU_2FLOP = 43160, -+ PM_GCT_FULL_CYC = 16518, -+ PM_MRK_DATA_FROM_L3_CYC = 262176, -+ PM_LSU_SRQ_S0_ALLOC = 53405, -+ PM_MRK_DERAT_MISS_4K = 118876, -+ PM_BR_MPRED_TA = 16558, -+ PM_INST_PTEG_FROM_L2MISS = 319576, -+ PM_DPU_HELD_POWER = 131078, -+ PM_RUN_INST_CMPL = 262394, -+ PM_MRK_VSU_FIN = 196658, -+ PM_LSU_SRQ_S0_VALID = 53404, -+ PM_GCT_EMPTY_CYC = 131080, -+ PM_IOPS_DISP = 196628, -+ PM_RUN_SPURR = 65544, -+ PM_PTEG_FROM_L21_MOD = 245846, -+ PM_VSU0_1FLOP = 41088, -+ PM_SNOOP_TLBIE = 53426, -+ PM_DATA_FROM_L3MISS = 180296, -+ PM_VSU_SINGLE = 43176, -+ PM_DTLB_MISS_16G = 114782, -+ PM_CMPLU_STALL_VECTOR = 131100, -+ PM_FLUSH = 262392, -+ PM_L2_LD_HIT = 221570, -+ PM_NEST_PAIR2_AND = 198787, -+ PM_VSU1_1FLOP = 41090, -+ PM_IC_PREF_REQ = 16522, -+ PM_L3_LD_HIT = 192640, -+ PM_GCT_NOSLOT_IC_MISS = 131098, -+ PM_DISP_HELD = 65542, -+ PM_L2_LD = 90240, -+ PM_LSU_FLUSH_SRQ = 51388, -+ PM_BC_PLUS_8_CONV = 16568, -+ PM_MRK_DATA_FROM_L31_MOD_CYC = 262182, -+ PM_CMPLU_STALL_VECTOR_LONG = 262218, -+ PM_L2_RCST_BUSY_RC_FULL = 156290, -+ PM_TB_BIT_TRANS = 196856, -+ PM_THERMAL_MAX = 262150, -+ PM_LSU1_FLUSH_ULD = 49330, -+ PM_LSU1_REJECT_LHS = 49326, -+ PM_LSU_LRQ_S0_ALLOC = 53407, -+ PM_L3_CO_L31 = 323712, -+ PM_POWER_EVENT4 = 262254, -+ PM_DATA_FROM_L31_SHR = 114766, -+ PM_BR_UNCOND = 16542, -+ PM_LSU1_DC_PREF_STREAM_ALLOC = 53418, -+ PM_PMC4_REWIND = 65568, -+ PM_L2_RCLD_DISP = 90752, -+ PM_THRD_PRIO_2_3_CYC = 16562, -+ PM_MRK_PTEG_FROM_L2MISS = 315480, -+ PM_IC_DEMAND_L2_BHT_REDIRECT = 16536, -+ PM_LSU_DERAT_MISS = 131318, -+ PM_IC_PREF_CANCEL_L2 = 16532, -+ PM_MRK_FIN_STALL_CYC_COUNT = 65597, -+ PM_BR_PRED_CCACHE = 16544, -+ PM_GCT_UTIL_1_TO_2_SLOTS = 8348, -+ PM_MRK_ST_CMPL_INT = 196660, -+ PM_LSU_TWO_TABLEWALK_CYC = 53414, -+ PM_MRK_DATA_FROM_L3MISS = 184392, -+ PM_GCT_NOSLOT_CYC = 65784, -+ PM_LSU_SET_MPRED = 49320, -+ PM_FLUSH_DISP_TLBIE = 8330, -+ PM_VSU1_FCONV = 41138, -+ PM_DERAT_MISS_16G = 311388, -+ PM_INST_FROM_LMEM = 213066, -+ PM_IC_DEMAND_L2_BR_REDIRECT = 16538, -+ PM_CMPLU_STALL_SCALAR_LONG = 131096, -+ PM_INST_PTEG_FROM_L2 = 122960, -+ PM_PTEG_FROM_L2 = 114768, -+ PM_MRK_DATA_FROM_L21_SHR_CYC = 131108, -+ PM_MRK_DTLB_MISS_4K = 184410, -+ PM_VSU0_FPSCR = 45212, -+ PM_VSU1_VECT_DOUBLE_ISSUED = 45186, -+ PM_MRK_PTEG_FROM_RL2L3_MOD = 118866, -+ PM_MEM0_RQ_DISP = 65667, -+ PM_L2_LD_MISS = 155776, -+ PM_VMX_RESULT_SAT_1 = 45216, -+ PM_L1_PREF = 55480, -+ PM_MRK_DATA_FROM_LMEM_CYC = 131116, -+ PM_GRP_IC_MISS_NONSPEC = 65548, -+ PM_PB_NODE_PUMP = 65665, -+ PM_SHL_MERGED = 20612, -+ PM_NEST_PAIR1_ADD = 133249, -+ PM_DATA_FROM_L3 = 114760, -+ PM_LSU_FLUSH = 8334, -+ PM_LSU_SRQ_SYNC_COUNT = 53399, -+ PM_PMC2_OVERFLOW = 196624, -+ PM_LSU_LDF = 51332, -+ PM_POWER_EVENT3 = 196718, -+ PM_DISP_WT = 196616, -+ PM_CMPLU_STALL_REJECT = 262166, -+ PM_IC_BANK_CONFLICT = 16514, -+ PM_BR_MPRED_CR_TA = 18606, -+ PM_L2_INST_MISS = 221314, -+ PM_CMPLU_STALL_ERAT_MISS = 262168, -+ PM_NEST_PAIR2_ADD = 198785, -+ PM_MRK_LSU_FLUSH = 53388, -+ PM_L2_LDST = 92288, -+ PM_INST_FROM_L31_SHR = 81998, -+ PM_VSU0_FIN = 41148, -+ PM_LARX_LSU = 51348, -+ PM_INST_FROM_RMEM = 213058, -+ PM_DISP_CLB_HELD_TLBIE = 8342, -+ PM_MRK_DATA_FROM_DMEM_CYC = 131118, -+ PM_BR_PRED_CR = 16552, -+ PM_LSU_REJECT = 65636, -+ PM_GCT_UTIL_3_TO_6_SLOTS = 8350, -+ PM_CMPLU_STALL_END_GCT_NOSLOT = 65576, -+ PM_LSU0_REJECT_LMQ_FULL = 49316, -+ PM_VSU_FEST = 43192, -+ PM_NEST_PAIR0_AND = 67715, -+ PM_PTEG_FROM_L3 = 180304, -+ PM_POWER_EVENT2 = 131182, -+ PM_IC_PREF_CANCEL_PAGE = 16528, -+ PM_VSU0_FSQRT_FDIV = 41096, -+ PM_MRK_GRP_CMPL = 262192, -+ PM_VSU0_SCAL_DOUBLE_ISSUED = 45192, -+ PM_GRP_DISP = 196618, -+ PM_LSU0_LDX = 49288, -+ PM_DATA_FROM_L2 = 114752, -+ PM_MRK_DATA_FROM_RL2L3_MOD = 118850, -+ PM_LD_REF_L1 = 51328, -+ PM_VSU0_VECT_DOUBLE_ISSUED = 45184, -+ PM_VSU1_2FLOP_DOUBLE = 41102, -+ PM_THRD_PRIO_6_7_CYC = 16566, -+ PM_BC_PLUS_8_RSLV_TAKEN = 16570, -+ PM_BR_MPRED_CR = 16556, -+ PM_L3_CO_MEM = 323714, -+ PM_LD_MISS_L1 = 262384, -+ PM_DATA_FROM_RL2L3_MOD = 114754, -+ PM_LSU_SRQ_FULL_CYC = 65562, -+ PM_TABLEWALK_CYC = 65574, -+ PM_MRK_PTEG_FROM_RMEM = 249938, -+ PM_LSU_SRQ_STFWD = 51360, -+ PM_INST_PTEG_FROM_RMEM = 254034, -+ PM_FXU0_FIN = 65540, -+ PM_LSU1_L1_SW_PREF = 49310, -+ PM_PTEG_FROM_L31_MOD = 114772, -+ PM_PMC5_OVERFLOW = 65572, -+ PM_LD_REF_L1_LSU1 = 49282, -+ PM_INST_PTEG_FROM_L21_SHR = 319574, -+ PM_CMPLU_STALL_THRD = 65564, -+ PM_DATA_FROM_RMEM = 245826, -+ PM_VSU0_SCAL_SINGLE_ISSUED = 45188, -+ PM_BR_MPRED_LSTACK = 16550, -+ PM_MRK_DATA_FROM_RL2L3_MOD_CYC = 262184, -+ PM_LSU0_FLUSH_UST = 49332, -+ PM_LSU_NCST = 49296, -+ PM_BR_TAKEN = 131076, -+ PM_INST_PTEG_FROM_LMEM = 319570, -+ PM_GCT_NOSLOT_BR_MPRED_IC_MISS = 262172, -+ PM_DTLB_MISS_4K = 180314, -+ PM_PMC4_SAVED = 196642, -+ PM_VSU1_PERMUTE_ISSUED = 45202, -+ PM_SLB_MISS = 55440, -+ PM_LSU1_FLUSH_LRQ = 49338, -+ PM_DTLB_MISS = 196860, -+ PM_VSU1_FRSP = 41142, -+ PM_VSU_VECTOR_DOUBLE_ISSUED = 47232, -+ PM_L2_CASTOUT_SHR = 90498, -+ PM_DATA_FROM_DL2L3_SHR = 245828, -+ PM_VSU1_STF = 45198, -+ PM_ST_FIN = 131312, -+ PM_PTEG_FROM_L21_SHR = 311382, -+ PM_L2_LOC_GUESS_WRONG = 156800, -+ PM_MRK_STCX_FAIL = 53390, -+ PM_LSU0_REJECT_LHS = 49324, -+ PM_IC_PREF_CANCEL_HIT = 16530, -+ PM_L3_PREF_BUSY = 323712, -+ PM_MRK_BRU_FIN = 131130, -+ PM_LSU1_NCLD = 49294, -+ PM_INST_PTEG_FROM_L31_MOD = 122964, -+ PM_LSU_NCLD = 51340, -+ PM_LSU_LDX = 51336, -+ PM_L2_LOC_GUESS_CORRECT = 91264, -+ PM_THRESH_TIMEO = 65592, -+ PM_L3_PREF_ST = 53422, -+ PM_DISP_CLB_HELD_SYNC = 8344, -+ PM_VSU_SIMPLE_ISSUED = 47252, -+ PM_VSU1_SINGLE = 41130, -+ PM_DATA_TABLEWALK_CYC = 196634, -+ PM_L2_RC_ST_DONE = 222080, -+ PM_MRK_PTEG_FROM_L21_MOD = 249942, -+ PM_LARX_LSU1 = 49302, -+ PM_MRK_DATA_FROM_RMEM = 249922, -+ PM_DISP_CLB_HELD = 8336, -+ PM_DERAT_MISS_4K = 114780, -+ PM_L2_RCLD_DISP_FAIL_ADDR = 90754, -+ PM_SEG_EXCEPTION = 10404, -+ PM_FLUSH_DISP_SB = 8332, -+ PM_L2_DC_INV = 156034, -+ PM_PTEG_FROM_DL2L3_MOD = 311380, -+ PM_DSEG = 8358, -+ PM_BR_PRED_LSTACK = 16546, -+ PM_VSU0_STF = 45196, -+ PM_LSU_FX_FIN = 65638, -+ PM_DERAT_MISS_16M = 245852, -+ PM_MRK_PTEG_FROM_DL2L3_MOD = 315476, -+ PM_GCT_UTIL_11_PLUS_SLOTS = 8354, -+ PM_INST_FROM_L3 = 81992, -+ PM_MRK_IFU_FIN = 196666, -+ PM_ITLB_MISS = 262396, -+ PM_VSU_STF = 47244, -+ PM_LSU_FLUSH_UST = 51380, -+ PM_L2_LDST_MISS = 157824, -+ PM_FXU1_FIN = 262148, -+ PM_SHL_DEALLOCATED = 20608, -+ PM_L2_SN_M_WR_DONE = 287618, -+ PM_LSU_REJECT_SET_MPRED = 51368, -+ PM_L3_PREF_LD = 53420, -+ PM_L2_SN_M_RD_DONE = 287616, -+ PM_MRK_DERAT_MISS_16G = 315484, -+ PM_VSU_FCONV = 43184, -+ PM_ANY_THRD_RUN_CYC = 65786, -+ PM_LSU_LMQ_FULL_CYC = 53412, -+ PM_MRK_LSU_REJECT_LHS = 53378, -+ PM_MRK_LD_MISS_L1_CYC = 262206, -+ PM_MRK_DATA_FROM_L2_CYC = 131104, -+ PM_INST_IMC_MATCH_DISP = 196630, -+ PM_MRK_DATA_FROM_RMEM_CYC = 262188, -+ PM_VSU0_SIMPLE_ISSUED = 45204, -+ PM_CMPLU_STALL_DIV = 262164, -+ PM_MRK_PTEG_FROM_RL2L3_SHR = 184404, -+ PM_VSU_FMA_DOUBLE = 43152, -+ PM_VSU_4FLOP = 43164, -+ PM_VSU1_FIN = 41150, -+ PM_NEST_PAIR1_AND = 133251, -+ PM_INST_PTEG_FROM_RL2L3_MOD = 122962, -+ PM_RUN_CYC = 131316, -+ PM_PTEG_FROM_RMEM = 245842, -+ PM_LSU_LRQ_S0_VALID = 53406, -+ PM_LSU0_LDF = 49284, -+ PM_FLUSH_COMPLETION = 196626, -+ PM_ST_MISS_L1 = 196848, -+ PM_L2_NODE_PUMP = 222336, -+ PM_INST_FROM_DL2L3_SHR = 213060, -+ PM_MRK_STALL_CMPLU_CYC = 196670, -+ PM_VSU1_DENORM = 41134, -+ PM_MRK_DATA_FROM_L31_SHR_CYC = 131110, -+ PM_NEST_PAIR0_ADD = 67713, -+ PM_INST_FROM_L3MISS = 147528, -+ PM_EE_OFF_EXT_INT = 8320, -+ PM_INST_PTEG_FROM_DMEM = 188498, -+ PM_INST_FROM_DL2L3_MOD = 213068, -+ PM_PMC6_OVERFLOW = 196644, -+ PM_VSU_2FLOP_DOUBLE = 43148, -+ PM_TLB_MISS = 131174, -+ PM_FXU_BUSY = 131086, -+ PM_L2_RCLD_DISP_FAIL_OTHER = 156288, -+ PM_LSU_REJECT_LMQ_FULL = 51364, -+ PM_IC_RELOAD_SHR = 16534, -+ PM_GRP_MRK = 65585, -+ PM_MRK_ST_NEST = 131124, -+ PM_VSU1_FSQRT_FDIV = 41098, -+ PM_LSU0_FLUSH_LRQ = 49336, -+ PM_LARX_LSU0 = 49300, -+ PM_IBUF_FULL_CYC = 16516, -+ PM_MRK_DATA_FROM_DL2L3_SHR_CYC = 131114, -+ PM_LSU_DC_PREF_STREAM_ALLOC = 55464, -+ PM_GRP_MRK_CYC = 65584, -+ PM_MRK_DATA_FROM_RL2L3_SHR_CYC = 131112, -+ PM_L2_GLOB_GUESS_CORRECT = 91266, -+ PM_LSU_REJECT_LHS = 51372, -+ PM_MRK_DATA_FROM_LMEM = 249930, -+ PM_INST_PTEG_FROM_L3 = 188496, -+ PM_FREQ_DOWN = 196620, -+ PM_PB_RETRY_NODE_PUMP = 196737, -+ PM_INST_FROM_RL2L3_SHR = 81996, -+ PM_MRK_INST_ISSUED = 65586, -+ PM_PTEG_FROM_L3MISS = 180312, -+ PM_RUN_PURR = 262388, -+ PM_MRK_GRP_IC_MISS = 262200, -+ PM_MRK_DATA_FROM_L3 = 118856, -+ PM_CMPLU_STALL_DCACHE_MISS = 131094, -+ PM_PTEG_FROM_RL2L3_SHR = 180308, -+ PM_LSU_FLUSH_LRQ = 51384, -+ PM_MRK_DERAT_MISS_64K = 184412, -+ PM_INST_PTEG_FROM_DL2L3_MOD = 319572, -+ PM_L2_ST_MISS = 155778, -+ PM_MRK_PTEG_FROM_L21_SHR = 315478, -+ PM_LWSYNC = 53396, -+ PM_LSU0_DC_PREF_STREAM_CONFIRM_STRIDE = 53436, -+ PM_MRK_LSU_FLUSH_LRQ = 53384, -+ PM_INST_IMC_MATCH_CMPL = 65776, -+ PM_NEST_PAIR3_AND = 264323, -+ PM_PB_RETRY_SYS_PUMP = 262273, -+ PM_MRK_INST_FIN = 196656, -+ PM_MRK_PTEG_FROM_DL2L3_SHR = 249940, -+ PM_INST_FROM_L31_MOD = 81988, -+ PM_MRK_DTLB_MISS_64K = 249950, -+ PM_LSU_FIN = 196710, -+ PM_MRK_LSU_REJECT = 262244, -+ PM_L2_CO_FAIL_BUSY = 91010, -+ PM_MEM0_WQ_DISP = 262275, -+ PM_DATA_FROM_L31_MOD = 114756, -+ PM_THERMAL_WARN = 65558, -+ PM_VSU0_4FLOP = 41116, -+ PM_BR_MPRED_CCACHE = 16548, -+ PM_CMPLU_STALL_IFU = 262220, -+ PM_L1_DEMAND_WRITE = 16524, -+ PM_FLUSH_BR_MPRED = 8324, -+ PM_MRK_DTLB_MISS_16G = 118878, -+ PM_MRK_PTEG_FROM_DMEM = 184402, -+ PM_L2_RCST_DISP = 221824, -+ PM_CMPLU_STALL = 262154, -+ PM_LSU_PARTIAL_CDF = 49322, -+ PM_DISP_CLB_HELD_SB = 8360, -+ PM_VSU0_FMA_DOUBLE = 41104, -+ PM_FXU0_BUSY_FXU1_IDLE = 196622, -+ PM_IC_DEMAND_CYC = 65560, -+ PM_MRK_DATA_FROM_L21_SHR = 249934, -+ PM_MRK_LSU_FLUSH_UST = 53382, -+ PM_INST_PTEG_FROM_L3MISS = 188504, -+ PM_VSU_DENORM = 43180, -+ PM_MRK_LSU_PARTIAL_CDF = 53376, -+ PM_INST_FROM_L21_SHR = 213070, -+ PM_IC_PREF_WRITE = 16526, -+ PM_BR_PRED = 16540, -+ PM_INST_FROM_DMEM = 81994, -+ PM_IC_PREF_CANCEL_ALL = 18576, -+ PM_LSU_DC_PREF_STREAM_CONFIRM = 55476, -+ PM_MRK_LSU_FLUSH_SRQ = 53386, -+ PM_MRK_FIN_STALL_CYC = 65596, -+ PM_L2_RCST_DISP_FAIL_OTHER = 287360, -+ PM_VSU1_DD_ISSUED = 45208, -+ PM_PTEG_FROM_L31_SHR = 180310, -+ PM_DATA_FROM_L21_SHR = 245838, -+ PM_LSU0_NCLD = 49292, -+ PM_VSU1_4FLOP = 41118, -+ PM_VSU1_8FLOP = 41122, -+ PM_VSU_8FLOP = 43168, -+ PM_LSU_LMQ_SRQ_EMPTY_CYC = 131134, -+ PM_DTLB_MISS_64K = 245854, -+ PM_THRD_CONC_RUN_INST = 196852, -+ PM_MRK_PTEG_FROM_L2 = 118864, -+ PM_PB_SYS_PUMP = 131201, -+ PM_VSU_FIN = 43196, -+ PM_MRK_DATA_FROM_L31_MOD = 118852, -+ PM_THRD_PRIO_0_1_CYC = 16560, -+ PM_DERAT_MISS_64K = 180316, -+ PM_PMC2_REWIND = 196640, -+ PM_INST_FROM_L2 = 81984, -+ PM_GRP_BR_MPRED_NONSPEC = 65546, -+ PM_INST_DISP = 131314, -+ PM_MEM0_RD_CANCEL_TOTAL = 196739, -+ PM_LSU0_DC_PREF_STREAM_CONFIRM = 53428, -+ PM_L1_DCACHE_RELOAD_VALID = 196854, -+ PM_VSU_SCALAR_DOUBLE_ISSUED = 47240, -+ PM_L3_PREF_HIT = 258176, -+ PM_MRK_PTEG_FROM_L31_MOD = 118868, -+ PM_CMPLU_STALL_STORE = 131146, -+ PM_MRK_FXU_FIN = 131128, -+ PM_PMC4_OVERFLOW = 65552, -+ PM_MRK_PTEG_FROM_L3 = 184400, -+ PM_LSU0_LMQ_LHR_MERGE = 53400, -+ PM_BTAC_HIT = 20618, -+ PM_L3_RD_BUSY = 323714, -+ PM_LSU0_L1_SW_PREF = 49308, -+ PM_INST_FROM_L2MISS = 278600, -+ PM_LSU0_DC_PREF_STREAM_ALLOC = 53416, -+ PM_L2_ST = 90242, -+ PM_VSU0_DENORM = 41132, -+ PM_MRK_DATA_FROM_DL2L3_SHR = 249924, -+ PM_BR_PRED_CR_TA = 18602, -+ PM_VSU0_FCONV = 41136, -+ PM_MRK_LSU_FLUSH_ULD = 53380, -+ PM_BTAC_MISS = 20616, -+ PM_MRK_LD_MISS_EXPOSED_CYC_COUNT = 65599, -+ PM_MRK_DATA_FROM_L2 = 118848, -+ PM_LSU_DCACHE_RELOAD_VALID = 53410, -+ PM_VSU_FMA = 43140, -+ PM_LSU0_FLUSH_SRQ = 49340, -+ PM_LSU1_L1_PREF = 53434, -+ PM_IOPS_CMPL = 65556, -+ PM_L2_SYS_PUMP = 222338, -+ PM_L2_RCLD_BUSY_RC_FULL = 287362, -+ PM_LSU_LMQ_S0_ALLOC = 53409, -+ PM_FLUSH_DISP_SYNC = 8328, -+ PM_MRK_DATA_FROM_DL2L3_MOD_CYC = 262186, -+ PM_L2_IC_INV = 156032, -+ PM_MRK_DATA_FROM_L21_MOD_CYC = 262180, -+ PM_L3_PREF_LDST = 55468, -+ PM_LSU_SRQ_EMPTY_CYC = 262152, -+ PM_LSU_LMQ_S0_VALID = 53408, -+ PM_FLUSH_PARTIAL = 8326, -+ PM_VSU1_FMA_DOUBLE = 41106, -+ PM_1PLUS_PPC_DISP = 262386, -+ PM_DATA_FROM_L2MISS = 131326, -+ PM_SUSPENDED = 0, -+ PM_VSU0_FMA = 41092, -+ PM_CMPLU_STALL_SCALAR = 262162, -+ PM_STCX_FAIL = 49306, -+ PM_VSU0_FSQRT_FDIV_DOUBLE = 41108, -+ PM_DC_PREF_DST = 53424, -+ PM_VSU1_SCAL_SINGLE_ISSUED = 45190, -+ PM_L3_HIT = 127104, -+ PM_L2_GLOB_GUESS_WRONG = 156802, -+ PM_MRK_DFU_FIN = 131122, -+ PM_INST_FROM_L1 = 16512, -+ PM_BRU_FIN = 65640, -+ PM_IC_DEMAND_REQ = 16520, -+ PM_VSU1_FSQRT_FDIV_DOUBLE = 41110, -+ PM_VSU1_FMA = 41094, -+ PM_MRK_LD_MISS_L1 = 131126, -+ PM_VSU0_2FLOP_DOUBLE = 41100, -+ PM_LSU_DC_PREF_STRIDED_STREAM_CONFIRM = 55484, -+ PM_INST_PTEG_FROM_L31_SHR = 188502, -+ PM_MRK_LSU_REJECT_ERAT_MISS = 196708, -+ PM_MRK_DATA_FROM_L2MISS = 315464, -+ PM_DATA_FROM_RL2L3_SHR = 114764, -+ PM_INST_FROM_PREF = 81990, -+ PM_VSU1_SQ = 45214, -+ PM_L2_LD_DISP = 221568, -+ PM_L2_DISP_ALL = 286848, -+ PM_THRD_GRP_CMPL_BOTH_CYC = 65554, -+ PM_VSU_FSQRT_FDIV_DOUBLE = 43156, -+ PM_BR_MPRED = 262390, -+ PM_INST_PTEG_FROM_DL2L3_SHR = 254036, -+ PM_VSU_1FLOP = 43136, -+ PM_HV_CYC = 131082, -+ PM_MRK_LSU_FIN = 262194, -+ PM_MRK_DATA_FROM_RL2L3_SHR = 118860, -+ PM_DTLB_MISS_16M = 311390, -+ PM_LSU1_LMQ_LHR_MERGE = 53402, -+ PM_IFU_FIN = 262246, -+ PM_1THRD_CON_RUN_INSTR = 196706, -+ PM_CMPLU_STALL_COUNT = 262155, -+ PM_MEM0_PB_RD_CL = 196739, -+ PM_THRD_1_RUN_CYC = 65632, -+ PM_THRD_2_CONC_RUN_INSTR = 262242, -+ PM_THRD_2_RUN_CYC = 131168, -+ PM_THRD_3_CONC_RUN_INST = 65634, -+ PM_THRD_3_RUN_CYC = 196704, -+ PM_THRD_4_CONC_RUN_INST = 131170, -+ PM_THRD_4_RUN_CYC = 262240, -+}; -+ -+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_MAX = 262144, -+}; -+ -+enum { -+ PM_CYC___2 = 30, -+ PM_GCT_NOSLOT_CYC___2 = 65784, -+ PM_CMPLU_STALL___2 = 262154, -+ PM_INST_CMPL___2 = 2, -+ PM_BRU_FIN___2 = 65640, -+ PM_BR_MPRED_CMPL = 262390, -+ PM_LD_REF_L1___2 = 65774, -+ PM_LD_MISS_L1___2 = 254036, -+ PM_ST_MISS_L1___2 = 196848, -+ PM_L1_PREF___2 = 55480, -+ PM_INST_FROM_L1___2 = 16512, -+ PM_L1_ICACHE_MISS___2 = 131325, -+ PM_L1_DEMAND_WRITE___2 = 16524, -+ PM_IC_PREF_WRITE___2 = 16526, -+ PM_DATA_FROM_L3___2 = 311362, -+ PM_DATA_FROM_L3MISS___2 = 196862, -+ PM_L2_ST___2 = 94336, -+ PM_L2_ST_MISS___2 = 94338, -+ PM_L3_PREF_ALL = 319570, -+ PM_DTLB_MISS___2 = 196860, -+ PM_ITLB_MISS___2 = 262396, -+ PM_RUN_INST_CMPL___2 = 327930, -+ PM_RUN_INST_CMPL_ALT = 262394, -+ PM_RUN_CYC___2 = 393460, -+ PM_RUN_CYC_ALT = 131316, -+ PM_MRK_ST_CMPL___2 = 65844, -+ PM_MRK_ST_CMPL_ALT = 197090, -+ PM_BR_MRK_2PATH = 65848, -+ PM_BR_MRK_2PATH_ALT = 262456, -+ PM_L3_CO_MEPF = 98434, -+ PM_L3_CO_MEPF_ALT = 254046, -+ PM_MRK_DATA_FROM_L2MISS___2 = 119118, -+ PM_MRK_DATA_FROM_L2MISS_ALT = 262632, -+ PM_CMPLU_STALL_ALT = 122964, -+ PM_BR_2PATH = 131126, -+ PM_BR_2PATH_ALT = 262198, -+ PM_INST_DISP___2 = 131314, -+ PM_INST_DISP_ALT = 196850, -+ PM_MRK_FILT_MATCH = 131388, -+ PM_MRK_FILT_MATCH_ALT = 196910, -+ PM_LD_MISS_L1_ALT = 262384, -+ MEM_ACCESS = 17039840, -+}; -+ -+enum { -+ PM_CYC___3 = 30, -+ PM_ICT_NOSLOT_CYC = 65784, -+ PM_CMPLU_STALL___3 = 122964, -+ PM_INST_CMPL___3 = 2, -+ PM_BR_CMPL = 315486, -+ PM_BR_MPRED_CMPL___2 = 262390, -+ PM_LD_REF_L1___3 = 65788, -+ PM_LD_MISS_L1_FIN = 180302, -+ PM_LD_MISS_L1___3 = 254036, -+ PM_LD_MISS_L1_ALT___2 = 262384, -+ PM_ST_MISS_L1___3 = 196848, -+ PM_L1_PREF___3 = 131156, -+ PM_INST_FROM_L1___3 = 16512, -+ PM_L1_ICACHE_MISS___3 = 131325, -+ PM_L1_DEMAND_WRITE___3 = 16524, -+ PM_IC_PREF_WRITE___3 = 18572, -+ PM_DATA_FROM_L3___3 = 311362, -+ PM_DATA_FROM_L3MISS___3 = 196862, -+ PM_L2_ST___3 = 92288, -+ PM_L2_ST_MISS___3 = 157824, -+ PM_L3_PREF_ALL___2 = 319570, -+ PM_DTLB_MISS___3 = 196860, -+ PM_ITLB_MISS___3 = 262396, -+ PM_RUN_INST_CMPL___3 = 327930, -+ PM_RUN_INST_CMPL_ALT___2 = 262394, -+ PM_RUN_CYC___3 = 393460, -+ PM_RUN_CYC_ALT___2 = 131316, -+ PM_INST_DISP___3 = 131314, -+ PM_INST_DISP_ALT___2 = 196850, -+ PM_BR_2PATH___2 = 131126, -+ PM_BR_2PATH_ALT___2 = 262198, -+ PM_MRK_ST_DONE_L2 = 65844, -+ PM_RADIX_PWC_L1_HIT = 127062, -+ PM_FLOP_CMPL = 65780, -+ PM_MRK_NTF_FIN = 131346, -+ PM_RADIX_PWC_L2_HIT = 184356, -+ PM_IFETCH_THROTTLE = 213086, -+ PM_MRK_L2_TM_ST_ABORT_SISTER = 254300, -+ PM_RADIX_PWC_L3_HIT = 258134, -+ PM_RUN_CYC_SMT2_MODE = 196716, -+ PM_TM_TX_PASS_RUN_INST = 319508, -+ PM_DISP_HELD_SYNC_HOLD = 262204, -+ PM_DTLB_MISS_16G___2 = 114776, -+ PM_DERAT_MISS_2M = 114778, -+ PM_DTLB_MISS_2M = 114780, -+ PM_MRK_DTLB_MISS_1G = 119132, -+ PM_DTLB_MISS_4K___2 = 180310, -+ PM_DERAT_MISS_1G = 180314, -+ PM_MRK_DERAT_MISS_2M = 184658, -+ PM_MRK_DTLB_MISS_4K___2 = 184662, -+ PM_MRK_DTLB_MISS_16G___2 = 184670, -+ PM_DTLB_MISS_64K___2 = 245846, -+ PM_MRK_DERAT_MISS_1G = 250194, -+ PM_MRK_DTLB_MISS_64K___2 = 250198, -+ PM_DTLB_MISS_16M___2 = 311382, -+ PM_DTLB_MISS_1G = 311386, -+ PM_MRK_DTLB_MISS_16M___2 = 311646, -+ MEM_LOADS = 872677856, -+ MEM_STORES = 1006895584, -+}; -+ -+enum { -+ PM_CYC_ALT = 65776, -+ PM_CYC_INST_CMPL = 65778, -+ PM_FLOP_CMPL___2 = 65780, -+ PM_L1_ITLB_MISS = 65782, -+ PM_NO_INST_AVAIL = 65784, -+ PM_LD_CMPL = 65788, -+ PM_INST_CMPL_ALT = 65790, -+ PM_ST_CMPL = 131312, -+ PM_INST_DISP___4 = 131314, -+ PM_RUN_CYC___4 = 131316, -+ PM_L1_DTLB_RELOAD = 131318, -+ PM_BR_TAKEN_CMPL = 131322, -+ PM_L1_ICACHE_MISS___4 = 131324, -+ PM_L1_RELOAD_FROM_MEM = 131326, -+ PM_ST_MISS_L1___4 = 196848, -+ PM_INST_DISP_ALT___3 = 196850, -+ PM_BR_MISPREDICT = 196854, -+ PM_DTLB_MISS___4 = 196860, -+ PM_DATA_FROM_L3MISS___4 = 196862, -+ PM_LD_MISS_L1___4 = 262384, -+ PM_CYC_INST_DISP = 262386, -+ PM_BR_MPRED_CMPL___3 = 262390, -+ PM_RUN_INST_CMPL___4 = 262394, -+ PM_ITLB_MISS___4 = 262396, -+ PM_LD_NOT_CACHED = 262398, -+ PM_INST_CMPL___4 = 327930, -+ PM_CYC___4 = 393460, -+}; -+ -+enum { -+ PM_RUN_CYC___5 = 393460, -+}; -+ -+enum { -+ PM_RUN_INST_CMPL___5 = 327930, -+}; -+ -+enum { -+ PM_BR_CMPL___2 = 315486, -+}; -+ -+enum { -+ PM_BR_MPRED_CMPL___4 = 262390, -+}; -+ -+enum { -+ PM_BR_FIN = 192586, -+}; -+ -+enum { -+ PM_MPRED_BR_FIN = 254104, -+}; -+ -+enum { -+ PM_LD_DEMAND_MISS_L1_FIN = 262384, -+}; -+ -+enum { -+ PM_LD_REF_L1___4 = 65788, -+}; -+ -+enum { -+ PM_LD_MISS_L1___5 = 254036, -+}; -+ -+enum { -+ PM_ST_MISS_L1___5 = 196848, -+}; -+ -+enum { -+ PM_LD_PREFETCH_CACHE_LINE_MISS = 65580, -+}; -+ -+enum { -+ PM_L1_ICACHE_MISS___5 = 131324, -+}; -+ -+enum { -+ PM_INST_FROM_L1___4 = 16512, -+}; -+ -+enum { -+ PM_INST_FROM_L1MISS = 114752, -+}; -+ -+enum { -+ PM_IC_PREF_REQ___2 = 16544, -+}; -+ -+enum { -+ PM_DATA_FROM_L3___4 = 114752, -+}; -+ -+enum { -+ PM_DATA_FROM_L3MISS___5 = 196862, -+}; -+ -+enum { -+ PM_L2_ST___4 = 286848, -+}; -+ -+enum { -+ PM_L2_ST_MISS___4 = 157824, -+}; -+ -+enum { -+ PM_L3_PF_MISS_L3 = 90240, -+}; -+ -+enum { -+ PM_DTLB_MISS___5 = 196860, -+}; -+ -+enum { -+ PM_ITLB_MISS___5 = 262396, -+}; -+ -+enum { -+ PM_RUN_CYC_ALT___3 = 30, -+}; -+ -+enum { -+ PM_RUN_INST_CMPL_ALT___3 = 2, -+}; -+ -+enum { -+ MEM_LOADS___2 = 872677856, -+}; -+ -+enum { -+ MEM_STORES___2 = 1006895584, -+}; -+ -+typedef void (*crash_shutdown_t)(); -+ -+union thread_union { -+ struct task_struct task; -+ long unsigned int stack[2048]; -+}; -+ -+typedef struct elf64_phdr Elf64_Phdr; -+ -+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; -+ bool top_down; -+}; -+ -+struct umem_info { -+ u64 *buf; -+ u32 size; -+ u32 max_entries; -+ u32 idx; -+ unsigned int nr_ranges; -+ const struct crash_mem_range *ranges; -+}; -+ -+struct kexec_elf_info { -+ const char *buffer; -+ const struct elf64_hdr *ehdr; -+ const struct elf64_phdr *proghdrs; -+}; -+ -+typedef long unsigned int vm_flags_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 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 kernel_clone_args { -+ u64 flags; -+ int *pidfd; -+ int *child_tid; -+ int *parent_tid; -+ int exit_signal; -+ 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 io_thread; -+ struct cgroup *cgrp; -+ struct css_set *cset; -+}; -+ -+struct multiprocess_signals { -+ sigset_t signal; -+ struct hlist_node node; -+}; -+ -+typedef int (*proc_visitor)(struct task_struct *, void *); -+ -+enum { -+ IOPRIO_CLASS_NONE = 0, -+ IOPRIO_CLASS_RT = 1, -+ IOPRIO_CLASS_BE = 2, -+ IOPRIO_CLASS_IDLE = 3, -+}; -+ -+enum { -+ FUTEX_STATE_OK = 0, -+ FUTEX_STATE_EXITING = 1, -+ FUTEX_STATE_DEAD = 2, -+}; -+ -+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 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 taint_flag { -+ char c_true; -+ char c_false; -+ bool module; -+}; -+ -+enum reboot_mode { -+ REBOOT_UNDEFINED = 4294967295, -+ REBOOT_COLD = 0, -+ REBOOT_WARM = 1, -+ REBOOT_HARD = 2, -+ REBOOT_SOFT = 3, -+ REBOOT_GPIO = 4, -+}; -+ -+struct warn_args { -+ const char *fmt; -+ va_list args; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 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; -+ int cpu; -+ struct hlist_node *node; -+ struct hlist_node *last; -+ enum cpuhp_state cb_state; -+ int result; -+ 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 cpu_mitigations { -+ CPU_MITIGATIONS_OFF = 0, -+ CPU_MITIGATIONS_AUTO = 1, -+ CPU_MITIGATIONS_AUTO_NOSMT = 2, -+}; -+ -+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; -+}; -+ -+typedef struct {} mm_segment_t; -+ -+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 trace_print_flags { -+ long unsigned int mask; -+ const char *name; -+}; -+ -+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; -+}; -+ -+struct softirq_action { -+ void (*action)(struct softirq_action *); -+}; -+ -+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 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_data_offsets_irq_handler_entry { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_irq_handler_exit {}; -+ -+struct trace_event_data_offsets_softirq {}; -+ -+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); -+ -+struct tasklet_head { -+ struct tasklet_struct *head; -+ struct tasklet_struct **tail; -+}; -+ -+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, -+}; -+ -+enum { -+ REGION_INTERSECTS = 0, -+ REGION_DISJOINT = 1, -+ REGION_MIXED = 2, -+}; -+ -+typedef void (*dr_release_t)(struct device *, void *); -+ -+typedef int (*dr_match_t)(struct device *, void *, void *); -+ -+struct resource_entry { -+ struct list_head node; -+ struct resource *res; -+ resource_size_t offset; -+ struct resource __res; -+}; -+ -+struct resource_constraint { -+ resource_size_t min; -+ resource_size_t max; -+ resource_size_t align; -+ resource_size_t (*alignf)(void *, const struct resource *, resource_size_t, resource_size_t); -+ void *alignf_data; -+}; -+ -+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 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 files_stat_struct { -+ long unsigned int nr_files; -+ long unsigned int nr_free_files; -+ long unsigned int max_files; -+}; -+ -+struct inodes_stat_t { -+ long int nr_inodes; -+ long int nr_unused; -+ long int dummy[5]; -+}; -+ -+enum sysctl_writes_mode { -+ SYSCTL_WRITES_LEGACY = 4294967295, -+ 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; -+}; -+ -+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 sigqueue { -+ struct list_head list; -+ int flags; -+ kernel_siginfo_t info; -+ struct ucounts *ucounts; -+}; -+ -+typedef int wait_bit_action_f(struct wait_bit_key *, int); -+ -+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; -+}; -+ -+typedef long unsigned int old_sigset_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_PERF_EVENT = 8, -+ SIL_CHLD = 9, -+ SIL_RT = 10, -+ SIL_SYS = 11, -+}; -+ -+struct fd { -+ struct file *file; -+ unsigned int flags; -+}; -+ -+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 *); -+ -+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]; -+}; -+ -+struct rlimit64 { -+ __u64 rlim_cur; -+ __u64 rlim_max; -+}; -+ -+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_OSTYPE = 0, -+ UTS_PROC_OSRELEASE = 1, -+ UTS_PROC_VERSION = 2, -+ UTS_PROC_HOSTNAME = 3, -+ UTS_PROC_DOMAINNAME = 4, -+}; -+ -+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 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 wq_flusher; -+ -+struct worker; -+ -+struct workqueue_attrs; -+ -+struct pool_workqueue; -+ -+struct wq_device; -+ -+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 saved_max_active; -+ struct workqueue_attrs *unbound_attrs; -+ struct pool_workqueue *dfl_pwq; -+ struct wq_device *wq_dev; -+ char name[24]; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ unsigned int flags; -+ struct pool_workqueue *cpu_pwqs; -+ struct pool_workqueue *numa_pwq_tbl[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; -+}; -+ -+struct workqueue_attrs { -+ int nice; -+ cpumask_var_t cpumask; -+ bool no_numa; -+}; -+ -+struct execute_work { -+ struct work_struct work; -+}; -+ -+struct __una_u32 { -+ u32 x; -+}; -+ -+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; -+ 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; -+ int sleeping; -+ char desc[24]; -+ struct workqueue_struct *rescue_wq; -+ work_func_t last_func; -+}; -+ -+struct pool_workqueue { -+ struct worker_pool *pool; -+ struct workqueue_struct *wq; -+ int work_color; -+ int flush_color; -+ int refcnt; -+ int nr_in_flight[15]; -+ int nr_active; -+ int max_active; -+ struct list_head delayed_works; -+ struct list_head pwqs_node; -+ struct list_head mayday_node; -+ struct work_struct unbound_release_work; -+ struct callback_head rcu; -+ 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; -+ struct list_head worklist; -+ int nr_workers; -+ int nr_idle; -+ struct list_head idle_list; -+ struct timer_list idle_timer; -+ struct timer_list mayday_timer; -+ struct hlist_head busy_hash[64]; -+ struct worker *manager; -+ struct list_head workers; -+ struct completion *detach_completion; -+ struct ida worker_ida; -+ struct workqueue_attrs *attrs; -+ struct hlist_node hash_node; -+ int refcnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_t nr_running; -+ 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; -+}; -+ -+enum { -+ POOL_MANAGER_ACTIVE = 1, -+ POOL_DISASSOCIATED = 4, -+ WORKER_DIE = 2, -+ WORKER_IDLE = 4, -+ WORKER_PREP = 8, -+ WORKER_CPU_INTENSIVE = 64, -+ WORKER_UNBOUND = 128, -+ WORKER_REBOUND = 256, -+ WORKER_NOT_RUNNING = 456, -+ NR_STD_WORKER_POOLS = 2, -+ UNBOUND_POOL_HASH_ORDER = 6, -+ BUSY_WORKER_HASH_ORDER = 6, -+ MAX_IDLE_WORKERS_RATIO = 4, -+ IDLE_WORKER_TIMEOUT = 30000, -+ MAYDAY_INITIAL_TIMEOUT = 2, -+ MAYDAY_INTERVAL = 10, -+ CREATE_COOLDOWN = 100, -+ RESCUER_NICE_LEVEL = 4294967276, -+ HIGHPRI_NICE_LEVEL = 4294967276, -+ WQ_NAME_LEN = 24, -+}; -+ -+struct wq_flusher { -+ struct list_head list; -+ int flush_color; -+ struct completion done; -+}; -+ -+struct wq_device { -+ struct workqueue_struct *wq; -+ struct device dev; -+}; -+ -+struct trace_event_raw_workqueue_queue_work { -+ struct trace_entry ent; -+ void *work; -+ void *function; -+ u32 __data_loc_workqueue; -+ unsigned int req_cpu; -+ unsigned int cpu; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_workqueue_activate_work { -+ struct trace_entry ent; -+ void *work; -+ 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; -+}; -+ -+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 *, unsigned 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_barrier { -+ struct work_struct work; -+ struct completion done; -+ struct task_struct *task; -+}; -+ -+struct cwt_wait { -+ wait_queue_entry_t wait; -+ struct work_struct *work; -+}; -+ -+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 work_for_cpu { -+ struct work_struct work; -+ long int (*fn)(void *); -+ void *arg; -+ long int ret; -+}; -+ -+typedef struct {} local_lock_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]; -+ }; -+}; -+ -+struct radix_tree_preload { -+ local_lock_t lock; -+ unsigned int nr; -+ struct xa_node *nodes; -+}; -+ -+typedef void (*task_work_func_t)(struct callback_head *); -+ -+enum task_work_notify_mode { -+ TWA_NONE = 0, -+ TWA_RESUME = 1, -+ TWA_SIGNAL = 2, -+}; -+ -+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]; -+}; -+ -+struct sched_param { -+ int sched_priority; -+}; -+ -+enum { -+ __PERCPU_REF_ATOMIC = 1, -+ __PERCPU_REF_DEAD = 2, -+ __PERCPU_REF_ATOMIC_DEAD = 3, -+ __PERCPU_REF_FLAG_BITS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ KTW_FREEZABLE = 1, -+}; -+ -+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 kthread_delayed_work { -+ struct kthread_work work; -+ struct timer_list timer; -+}; -+ -+enum { -+ CSS_NO_REF = 1, -+ CSS_ONLINE = 2, -+ CSS_RELEASED = 4, -+ CSS_VISIBLE = 8, -+ CSS_DYING = 16, -+}; -+ -+struct kthread_create_info { -+ 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 (*threadfn)(void *); -+ void *data; -+ mm_segment_t oldfs; -+ struct completion parked; -+ struct completion exited; -+ struct cgroup_subsys_state *blkcg_css; -+}; -+ -+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 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; -+ atomic_t msg_bytes; -+ atomic_t 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 user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct llist_node mnt_llist; -+ struct ns_common ns; -+}; -+ -+struct srcu_notifier_head { -+ struct mutex mutex; -+ struct srcu_struct srcu; -+ struct notifier_block *head; -+}; -+ -+enum what { -+ 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_COREDUMP = 1073741824, -+ PROC_EVENT_EXIT = 2147483648, -+}; -+ -+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, -+}; -+ -+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 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 { -+ 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 __call_single_data call_single_data_t; -+ -+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; -+ int overload; -+ int 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; -+ long unsigned int max_cpu_capacity; -+ struct perf_domain *pd; -+}; -+ -+struct cfs_rq { -+ struct load_weight load; -+ unsigned int nr_running; -+ unsigned int h_nr_running; -+ unsigned int idle_h_nr_running; -+ u64 exec_clock; -+ u64 min_vruntime; -+ unsigned int forceidle_seq; -+ u64 min_vruntime_fi; -+ struct rb_root_cached tasks_timeline; -+ struct sched_entity *curr; -+ struct sched_entity *next; -+ struct sched_entity *last; -+ struct sched_entity *skip; -+ unsigned int nr_spread_over; -+ long: 32; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ } removed; -+ 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_clock; -+ u64 throttled_clock_task; -+ u64 throttled_clock_task_time; -+ int throttled; -+ int throttle_count; -+ struct list_head throttled_list; -+ long: 64; -+ 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 cfs_bandwidth { -+ raw_spinlock_t lock; -+ ktime_t period; -+ u64 quota; -+ u64 runtime; -+ u64 burst; -+ 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; -+ u64 throttled_time; -+}; -+ -+struct task_group { -+ struct cgroup_subsys_state css; -+ struct sched_entity **se; -+ struct cfs_rq **cfs_rq; -+ long unsigned int shares; -+ int idle; -+ long: 32; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct sched_domain_attr { -+ int relax_domain_level; -+}; -+ -+struct sched_group { -+ struct sched_group *next; -+ atomic_t ref; -+ unsigned int group_weight; -+ struct sched_group_capacity *sgc; -+ int asym_prefer_cpu; -+ 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]; -+}; -+ -+struct autogroup { -+ struct kref kref; -+ struct task_group *tg; -+ struct rw_semaphore lock; -+ long unsigned int id; -+ int nice; -+}; -+ -+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_PRESSURE = 64, -+ __CFTYPE_ONLY_ON_DFL = 65536, -+ __CFTYPE_NOT_ON_DFL = 131072, -+}; -+ -+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_stat_template { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 delay; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_sched_stat_runtime { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 runtime; -+ u64 vruntime; -+ 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_process_hang { -+ struct trace_entry ent; -+ char comm[16]; -+ 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_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; -+}; -+ -+struct trace_event_data_offsets_sched_stat_template {}; -+ -+struct trace_event_data_offsets_sched_stat_runtime {}; -+ -+struct trace_event_data_offsets_sched_pi_setprio {}; -+ -+struct trace_event_data_offsets_sched_process_hang {}; -+ -+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 *); -+ -+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_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, 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_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 *); -+ -+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; -+ unsigned int rt_nr_migratory; -+ unsigned int rt_nr_total; -+ int overloaded; -+ struct plist_head pushable_tasks; -+ int rt_queued; -+ int rt_throttled; -+ u64 rt_time; -+ u64 rt_runtime; -+ raw_spinlock_t rt_runtime_lock; -+}; -+ -+struct dl_rq { -+ struct rb_root_cached root; -+ unsigned int dl_nr_running; -+ struct { -+ u64 curr; -+ u64 next; -+ } earliest_dl; -+ unsigned int dl_nr_migratory; -+ int overloaded; -+ struct rb_root_cached pushable_dl_tasks_root; -+ u64 running_bw; -+ u64 this_bw; -+ u64 extra_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 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: 32; -+ 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 cfs_rq cfs; -+ struct rt_rq rt; -+ struct dl_rq dl; -+ struct list_head leaf_cfs_rq_list; -+ struct list_head *tmp_alone_branch; -+ unsigned int nr_uninterruptible; -+ struct task_struct *curr; -+ 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; -+ u64 clock_task; -+ u64 clock_pelt; -+ long unsigned int lost_idle_time; -+ 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; -+ long unsigned int cpu_capacity_orig; -+ struct callback_head *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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sched_avg avg_rt; -+ struct sched_avg avg_dl; -+ u64 idle_stamp; -+ u64 avg_idle; -+ long unsigned int wake_stamp; -+ u64 wake_avg_idle; -+ u64 max_idle_balance_cost; -+ struct rcuwait hotplug_wait; -+ long unsigned int calc_load_update; -+ long int calc_load_active; -+ 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; -+ 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 char core_forceidle; -+ unsigned int core_forceidle_seq; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); -+ -+typedef void (*btf_trace_pelt_thermal_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); -+ -+struct wake_q_head { -+ struct wake_q_node *first; -+ struct wake_q_node **lastp; -+}; -+ -+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 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); -+ int (*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 cpudl_item { -+ u64 dl; -+ int cpu; -+ int idx; -+}; -+ -+struct rt_bandwidth { -+ raw_spinlock_t rt_runtime_lock; -+ ktime_t rt_period; -+ u64 rt_runtime; -+ struct hrtimer rt_period_timer; -+ unsigned int rt_period_active; -+}; -+ -+struct dl_bandwidth { -+ raw_spinlock_t dl_runtime_lock; -+ u64 dl_runtime; -+ u64 dl_period; -+}; -+ -+typedef int (*tg_visitor)(struct task_group *, void *); -+ -+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; -+}; -+ -+enum { -+ __SCHED_FEAT_GENTLE_FAIR_SLEEPERS = 0, -+ __SCHED_FEAT_START_DEBIT = 1, -+ __SCHED_FEAT_NEXT_BUDDY = 2, -+ __SCHED_FEAT_LAST_BUDDY = 3, -+ __SCHED_FEAT_CACHE_HOT_BUDDY = 4, -+ __SCHED_FEAT_WAKEUP_PREEMPTION = 5, -+ __SCHED_FEAT_HRTICK = 6, -+ __SCHED_FEAT_HRTICK_DL = 7, -+ __SCHED_FEAT_DOUBLE_TICK = 8, -+ __SCHED_FEAT_NONTASK_CAPACITY = 9, -+ __SCHED_FEAT_TTWU_QUEUE = 10, -+ __SCHED_FEAT_SIS_PROP = 11, -+ __SCHED_FEAT_WARN_DOUBLE_CLOCK = 12, -+ __SCHED_FEAT_RT_PUSH_IPI = 13, -+ __SCHED_FEAT_RT_RUNTIME_SHARE = 14, -+ __SCHED_FEAT_LB_MIN = 15, -+ __SCHED_FEAT_ATTACH_AGE_LOAD = 16, -+ __SCHED_FEAT_WA_IDLE = 17, -+ __SCHED_FEAT_WA_WEIGHT = 18, -+ __SCHED_FEAT_WA_BIAS = 19, -+ __SCHED_FEAT_UTIL_EST = 20, -+ __SCHED_FEAT_UTIL_EST_FASTUP = 21, -+ __SCHED_FEAT_LATENCY_WARN = 22, -+ __SCHED_FEAT_ALT_PERIOD = 23, -+ __SCHED_FEAT_BASE_SLICE = 24, -+ __SCHED_FEAT_NR = 25, -+}; -+ -+enum cpu_util_type { -+ FREQUENCY_UTIL = 0, -+ ENERGY_UTIL = 1, -+}; -+ -+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; -+}; -+ -+struct cfs_schedulable_data { -+ struct task_group *tg; -+ u64 period; -+ u64 quota; -+}; -+ -+enum { -+ cpuset = 0, -+ possible = 1, -+ fail = 2, -+}; -+ -+enum s2idle_states { -+ S2IDLE_STATE_NONE = 0, -+ S2IDLE_STATE_ENTER = 1, -+ S2IDLE_STATE_WAKE = 2, -+}; -+ -+struct idle_timer { -+ struct hrtimer timer; -+ int done; -+}; -+ -+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_cpu; -+ long unsigned int faults[0]; -+}; -+ -+struct update_util_data { -+ void (*func)(struct update_util_data *, u64, unsigned int); -+}; -+ -+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 sched_tunable_scaling { -+ SCHED_TUNABLESCALING_NONE = 0, -+ SCHED_TUNABLESCALING_LOG = 1, -+ SCHED_TUNABLESCALING_LINEAR = 2, -+ SCHED_TUNABLESCALING_END = 3, -+}; -+ -+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 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; -+ 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; -+}; -+ -+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_asym_packing = 3, -+ group_imbalanced = 4, -+ group_overloaded = 5, -+}; -+ -+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; -+ 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 rt_rq *rt_rq_iter_t; -+ -+struct swait_queue { -+ struct task_struct *task; -+ struct list_head task_list; -+}; -+ -+struct sd_flag_debug { -+ unsigned int meta_flags; -+ char *name; -+}; -+ -+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; -+ unsigned int transition_delay_us; -+ bool dvfs_possible_from_any_cpu; -+ 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 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 asym_cap_data { -+ struct list_head link; -+ long unsigned int capacity; -+ long unsigned int cpus[0]; -+}; -+ -+enum cpuacct_stat_index { -+ CPUACCT_STAT_USER = 0, -+ CPUACCT_STAT_SYSTEM = 1, -+ CPUACCT_STAT_NSTATS = 2, -+}; -+ -+struct cpuacct_usage { -+ u64 usages[2]; -+}; -+ -+struct cpuacct { -+ struct cgroup_subsys_state css; -+ struct cpuacct_usage *cpuusage; -+ struct kernel_cpustat *cpustat; -+}; -+ -+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); -+}; -+ -+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_dl; -+ long unsigned int max; -+ long unsigned int saved_idle_calls; -+}; -+ -+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_SHARED = 1, -+}; -+ -+enum membarrier_cmd_flag { -+ MEMBARRIER_CMD_FLAG_CPU = 1, -+}; -+ -+enum psi_res { -+ PSI_IO = 0, -+ PSI_MEM = 1, -+ PSI_CPU = 2, -+ NR_PSI_RESOURCES = 3, -+}; -+ -+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; -+ int event; -+ struct psi_window win; -+ u64 last_event_time; -+ struct kref refcount; -+}; -+ -+struct sched_core_cookie { -+ refcount_t refcnt; -+}; -+ -+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 mutex_waiter { -+ struct list_head list; -+ struct task_struct *task; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+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; -+}; -+ -+enum rwsem_wake_type { -+ RWSEM_WAKE_ANY = 0, -+ RWSEM_WAKE_READERS = 1, -+ RWSEM_WAKE_READ_OWNED = 2, -+}; -+ -+enum writer_wait_state { -+ WRITER_NOT_FIRST = 0, -+ WRITER_FIRST = 1, -+ WRITER_HANDOFF = 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 mcs_spinlock { -+ struct mcs_spinlock *next; -+ int locked; -+ int count; -+}; -+ -+struct qnode { -+ struct mcs_spinlock mcs; -+ long int reserved[2]; -+}; -+ -+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 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 hrtimer_sleeper { -+ struct hrtimer timer; -+ struct task_struct *task; -+}; -+ -+struct rt_mutex_waiter { -+ struct rb_node tree_entry; -+ struct rb_node pi_tree_entry; -+ struct task_struct *task; -+ struct rt_mutex_base *lock; -+ unsigned int wake_state; -+ int prio; -+ u64 deadline; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+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 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 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 suspend_stat_step { -+ 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 suspend_stats { -+ int success; -+ int fail; -+ int failed_freeze; -+ int failed_prepare; -+ int failed_suspend; -+ int failed_suspend_late; -+ int failed_suspend_noirq; -+ int failed_resume; -+ int failed_resume_early; -+ int failed_resume_noirq; -+ int last_failed_dev; -+ char failed_devs[80]; -+ int last_failed_errno; -+ int errno[2]; -+ int last_failed_step; -+ enum suspend_stat_step failed_steps[2]; -+}; -+ -+enum { -+ TEST_NONE = 0, -+ TEST_CORE = 1, -+ TEST_CPUS = 2, -+ TEST_PLATFORM = 3, -+ TEST_DEVICES = 4, -+ TEST_FREEZER = 5, -+ __TEST_AFTER_LAST = 6, -+}; -+ -+struct pm_vt_switch { -+ struct list_head head; -+ struct device *dev; -+ bool required; -+}; -+ -+struct platform_s2idle_ops { -+ int (*begin)(); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ bool (*wake)(); -+ void (*restore_early)(); -+ void (*restore)(); -+ void (*end)(); -+}; -+ -+struct em_data_callback { -+ int (*active_power)(long unsigned int *, long unsigned int *, struct device *); -+}; -+ -+typedef struct { -+ seqcount_t seqcount; -+} seqcount_latch_t; -+ -+struct dev_printk_info { -+ char subsystem[16]; -+ char device[48]; -+}; -+ -+struct trace_event_raw_console { -+ struct trace_entry ent; -+ u32 __data_loc_msg; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_console { -+ u32 msg; -+}; -+ -+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; -+}; -+ -+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 = 4294967295, -+ desc_reserved = 0, -+ desc_committed = 1, -+ desc_finalized = 2, -+ desc_reusable = 3, -+}; -+ -+struct console_cmdline { -+ char name[16]; -+ int index; -+ bool user_specified; -+ char *options; -+}; -+ -+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, -+}; -+ -+enum log_flags { -+ LOG_NEWLINE = 2, -+ LOG_CONT = 8, -+}; -+ -+struct latched_seq { -+ seqcount_latch_t latch; -+ u64 val[2]; -+}; -+ -+struct devkmsg_user { -+ atomic64_t seq; -+ struct ratelimit_state rs; -+ struct mutex lock; -+ char buf[8192]; -+ struct printk_info info; -+ char text_buf[8192]; -+ struct printk_record record; -+}; -+ -+enum kdb_msgsrc { -+ KDB_MSGSRC_INTERNAL = 0, -+ KDB_MSGSRC_PRINTK = 1, -+}; -+ -+struct printk_safe_seq_buf { -+ atomic_t len; -+ atomic_t message_lost; -+ struct irq_work work; -+ unsigned char buffer[8160]; -+}; -+ -+struct prb_data_block { -+ long unsigned int id; -+ char data[0]; -+}; -+ -+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, -+}; -+ -+enum { -+ _IRQ_DEFAULT_INIT_FLAGS = 2048, -+ _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 { -+ IRQTF_RUNTHREAD = 0, -+ IRQTF_WARNED = 1, -+ IRQTF_AFFINITY = 2, -+ IRQTF_FORCED_THREAD = 3, -+}; -+ -+enum { -+ IRQC_IS_HARDIRQ = 0, -+ IRQC_IS_NESTED = 1, -+}; -+ -+enum { -+ IRQ_STARTUP_NORMAL = 0, -+ IRQ_STARTUP_MANAGED = 1, -+ IRQ_STARTUP_ABORT = 2, -+}; -+ -+struct irq_devres { -+ unsigned int irq; -+ void *dev_id; -+}; -+ -+struct irq_desc_devres { -+ unsigned int from; -+ unsigned int cnt; -+}; -+ -+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_MSI_REMAP = 32, -+ IRQ_DOMAIN_MSI_NOMASK_QUIRK = 64, -+ IRQ_DOMAIN_FLAG_NO_MAP = 128, -+ IRQ_DOMAIN_FLAG_NONCORE = 65536, -+}; -+ -+struct irqchip_fwid { -+ struct fwnode_handle fwnode; -+ unsigned int type; -+ char *name; -+ phys_addr_t *pa; -+}; -+ -+enum { -+ AFFINITY = 0, -+ AFFINITY_LIST = 1, -+ EFFECTIVE = 2, -+ EFFECTIVE_LIST = 3, -+}; -+ -+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_info; -+ -+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_check)(struct irq_domain *, struct msi_domain_info *, struct device *); -+ int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); -+ void (*msi_finish)(msi_alloc_info_t *, int); -+ void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); -+ int (*handle_error)(struct irq_domain *, struct msi_desc *, int); -+ int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); -+ void (*domain_free_irqs)(struct irq_domain *, struct device *); -+}; -+ -+struct msi_domain_info { -+ u32 flags; -+ 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 { -+ MSI_FLAG_USE_DEF_DOM_OPS = 1, -+ MSI_FLAG_USE_DEF_CHIP_OPS = 2, -+ MSI_FLAG_MULTI_PCI_MSI = 4, -+ MSI_FLAG_PCI_MSIX = 8, -+ MSI_FLAG_ACTIVATE_EARLY = 16, -+ MSI_FLAG_MUST_REACTIVATE = 32, -+ MSI_FLAG_LEVEL_CAPABLE = 64, -+}; -+ -+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 node_vectors { -+ unsigned int id; -+ union { -+ unsigned int nvectors; -+ unsigned int ncpus; -+ }; -+}; -+ -+typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); -+ -+struct rcu_synchronize { -+ struct callback_head head; -+ struct completion completion; -+}; -+ -+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)(); -+ -+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 { -+ struct callback_head *cbs_head; -+ struct callback_head **cbs_tail; -+ struct wait_queue_head cbs_wq; -+ raw_spinlock_t cbs_lock; -+ int gp_state; -+ int gp_sleep; -+ int init_fract; -+ long unsigned int gp_jiffies; -+ long unsigned int gp_start; -+ long unsigned int n_gps; -+ long unsigned int n_ipis; -+ long unsigned int n_ipis_fails; -+ struct task_struct *kthread_ptr; -+ 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; -+ char *name; -+ char *kname; -+}; -+ -+enum { -+ GP_IDLE = 0, -+ GP_ENTER = 1, -+ GP_PASSED = 2, -+ GP_EXIT = 3, -+ GP_REPLAY = 4, -+}; -+ -+struct rcu_cblist { -+ struct callback_head *head; -+ struct callback_head **tail; -+ long int len; -+}; -+ -+enum rcutorture_type { -+ RCU_FLAVOR = 0, -+ RCU_TASKS_FLAVOR = 1, -+ RCU_TASKS_RUDE_FLAVOR = 2, -+ RCU_TASKS_TRACING_FLAVOR = 3, -+ RCU_TRIVIAL_FLAVOR = 4, -+ SRCU_FLAVOR = 5, -+ INVALID_RCU_FLAVOR = 6, -+}; -+ -+struct rcu_exp_work { -+ long unsigned int rew_s; -+ struct work_struct 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 ofl_seq; -+ long unsigned int expmask; -+ long unsigned int expmaskinit; -+ long unsigned int expmaskinitnext; -+ 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 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ raw_spinlock_t fqslock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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_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 exp_deferred_qs; -+ bool cpu_started; -+ struct rcu_node *mynode; -+ long unsigned int grpmask; -+ long unsigned int ticks_this_gp; -+ struct irq_work defer_qs_iw; -+ bool 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 dynticks_snap; -+ long int dynticks_nesting; -+ long int dynticks_nmi_nesting; -+ atomic_t dynticks; -+ bool rcu_need_heavy_qs; -+ bool rcu_urgent_qs; -+ bool rcu_forced_tick; -+ bool rcu_forced_tick_exp; -+ struct callback_head barrier_head; -+ int exp_dynticks_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; -+ atomic_t nocb_lock_contended; -+ int nocb_defer_wakeup; -+ struct timer_list nocb_timer; -+ long unsigned int nocb_gp_adv_time; -+ long: 64; -+ long: 64; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 rcu_data *nocb_next_cb_rdp; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ 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_flags; -+ long unsigned int rcu_onl_gp_seq; -+ short int rcu_onl_gp_flags; -+ long unsigned int last_fqs_resched; -+ int cpu; -+ long: 32; -+ long: 64; -+}; -+ -+struct rcu_state { -+ struct rcu_node node[131]; -+ struct rcu_node *level[4]; -+ int ncpus; -+ int n_online_cpus; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u8 boost; -+ 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; -+ struct mutex barrier_mutex; -+ atomic_t barrier_cpu_count; -+ struct completion barrier_completion; -+ long unsigned int barrier_sequence; -+ 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; -+ long unsigned int jiffies_resched; -+ long unsigned int n_force_qs_gpstart; -+ const char *name; -+ char abbr; -+ long: 56; -+ long: 64; -+ long: 64; -+ raw_spinlock_t ofl_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 kvfree_rcu_bulk_data { -+ long unsigned int nr_records; -+ struct kvfree_rcu_bulk_data *next; -+ void *records[0]; -+}; -+ -+struct kfree_rcu_cpu; -+ -+struct kfree_rcu_cpu_work { -+ struct rcu_work rcu_work; -+ struct callback_head *head_free; -+ struct kvfree_rcu_bulk_data *bkvhead_free[2]; -+ struct kfree_rcu_cpu *krcp; -+}; -+ -+struct kfree_rcu_cpu { -+ struct callback_head *head; -+ struct kvfree_rcu_bulk_data *bkvhead[2]; -+ struct kfree_rcu_cpu_work krw_arr[2]; -+ raw_spinlock_t lock; -+ struct delayed_work monitor_work; -+ bool monitor_todo; -+ bool initialized; -+ int count; -+ 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; -+}; -+ -+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; -+}; -+ -+struct klp_find_arg { -+ const char *objname; -+ const char *name; -+ long unsigned int addr; -+ long unsigned int count; -+ long unsigned int pos; -+}; -+ -+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, -+}; -+ -+struct klp_ops { -+ struct list_head node; -+ struct list_head func_stack; -+ struct ftrace_ops fops; -+}; -+ -+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 dma_sgt_handle { -+ struct sg_table sgt; -+ struct page **pages; -+}; -+ -+struct dma_devres { -+ size_t size; -+ void *vaddr; -+ dma_addr_t dma_handle; -+ long unsigned int attrs; -+}; -+ -+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; -+}; -+ -+enum { -+ MEMREMAP_WB = 1, -+ MEMREMAP_WT = 2, -+ MEMREMAP_WC = 4, -+ MEMREMAP_ENC = 8, -+ MEMREMAP_DEC = 16, -+}; -+ -+struct reserved_mem_ops; -+ -+struct reserved_mem { -+ const char *name; -+ long unsigned int fdt_node; -+ long unsigned int phandle; -+ 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 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; -+ enum swiotlb_force swiotlb_force; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_swiotlb_bounced { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t, enum swiotlb_force); -+ -+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; -+}; -+ -+enum profile_type { -+ PROFILE_TASK_EXIT = 0, -+ PROFILE_MUNMAP = 1, -+}; -+ -+struct profile_hit { -+ u32 pc; -+ u32 hits; -+}; -+ -+struct stacktrace_cookie { -+ long unsigned int *store; -+ unsigned int size; -+ unsigned int skip; -+ unsigned int len; -+}; -+ -+typedef __kernel_long_t __kernel_suseconds_t; -+ -+typedef __kernel_long_t __kernel_old_time_t; -+ -+typedef __kernel_suseconds_t suseconds_t; -+ -+typedef __u64 timeu64_t; -+ -+struct __kernel_itimerspec { -+ struct __kernel_timespec it_interval; -+ struct __kernel_timespec it_value; -+}; -+ -+struct itimerspec64 { -+ struct timespec64 it_interval; -+ struct timespec64 it_value; -+}; -+ -+struct old_timeval32 { -+ old_time32_t tv_sec; -+ s32 tv_usec; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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_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_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, 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_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[8]; -+ struct hlist_head vectors[512]; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct process_timer { -+ struct timer_list timer; -+ struct task_struct *task; -+}; -+ -+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 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; -+ struct clocksource *cs; -+}; -+ -+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 audit_ntp_val { -+ long long int oldval; -+ long long int newval; -+}; -+ -+struct audit_ntp_data { -+ struct audit_ntp_val vals[6]; -+}; -+ -+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 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; -+ int uie_unsupported; -+ long unsigned int set_offset_nsec; -+ long unsigned int features[1]; -+ time64_t range_min; -+ timeu64_t range_max; -+ time64_t start_secs; -+ time64_t offset_secs; -+ bool set_start_time; -+}; -+ -+enum tick_nohz_mode { -+ NOHZ_MODE_INACTIVE = 0, -+ NOHZ_MODE_LOWRES = 1, -+ NOHZ_MODE_HIGHRES = 2, -+}; -+ -+struct tick_sched { -+ struct hrtimer sched_timer; -+ long unsigned int check_clocks; -+ enum tick_nohz_mode nohz_mode; -+ unsigned int inidle: 1; -+ unsigned int tick_stopped: 1; -+ unsigned int idle_active: 1; -+ unsigned int do_timer_last: 1; -+ unsigned int got_idle_tick: 1; -+ ktime_t last_tick; -+ ktime_t next_tick; -+ long unsigned int idle_jiffies; -+ long unsigned int idle_calls; -+ long unsigned int idle_sleeps; -+ ktime_t idle_entrytime; -+ ktime_t idle_waketime; -+ ktime_t idle_exittime; -+ ktime_t idle_sleeptime; -+ ktime_t iowait_sleeptime; -+ long unsigned int last_jiffies; -+ u64 timer_expires; -+ u64 timer_expires_base; -+ u64 next_timer; -+ ktime_t idle_expires; -+ atomic_t tick_dep_mask; -+}; -+ -+struct timer_list_iter { -+ int cpu; -+ bool second_pass; -+ u64 now; -+}; -+ -+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 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; -+}; -+ -+typedef __kernel_timer_t timer_t; -+ -+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 k_clock; -+ -+struct k_itimer { -+ struct list_head 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 *); -+}; -+ -+struct class_interface { -+ struct list_head node; -+ struct class *class; -+ int (*add_dev)(struct device *, struct class_interface *); -+ void (*remove_dev)(struct device *, struct class_interface *); -+}; -+ -+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 (*get_timespec)(struct timespec64 *); -+ clockid_t base_clockid; -+}; -+ -+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 struct sigevent sigevent_t; -+ -+typedef unsigned int uint; -+ -+struct posix_clock; -+ -+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 *, unsigned int, long unsigned int); -+ int (*open)(struct posix_clock *, fmode_t); -+ __poll_t (*poll)(struct posix_clock *, struct file *, poll_table *); -+ int (*release)(struct posix_clock *); -+ ssize_t (*read)(struct posix_clock *, 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_desc { -+ struct file *fp; -+ struct posix_clock *clk; -+}; -+ -+struct __kernel_old_itimerval { -+ struct __kernel_old_timeval it_interval; -+ struct __kernel_old_timeval it_value; -+}; -+ -+struct ce_unbind { -+ struct clock_event_device *ce; -+ int res; -+}; -+ -+enum tick_broadcast_state { -+ TICK_BROADCAST_EXIT = 0, -+ TICK_BROADCAST_ENTER = 1, -+}; -+ -+enum tick_broadcast_mode { -+ TICK_BROADCAST_OFF = 0, -+ TICK_BROADCAST_ON = 1, -+ TICK_BROADCAST_FORCE = 2, -+}; -+ -+struct proc_timens_offset { -+ int clockid; -+ struct timespec64 val; -+}; -+ -+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 futex_q { -+ struct plist_node list; -+ struct task_struct *task; -+ spinlock_t *lock_ptr; -+ 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; -+}; -+ -+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 futex_hash_bucket { -+ atomic_t waiters; -+ spinlock_t lock; -+ struct plist_head chain; -+ long: 64; -+ 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 futex_access { -+ FUTEX_READ = 0, -+ FUTEX_WRITE = 1, -+}; -+ -+struct dma_chan { -+ int lock; -+ const char *device_id; -+}; -+ -+struct cfd_percpu { -+ call_single_data_t csd; -+}; -+ -+struct call_function_data { -+ struct cfd_percpu *pcpu; -+ 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 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 module_use { -+ struct list_head source_list; -+ struct list_head target_list; -+ struct module *source; -+ struct module *target; -+}; -+ -+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]; -+}; -+ -+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, -+}; -+ -+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 { -+ PROC_ENTRY_PERMANENT = 1, -+}; -+ -+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; -+ struct _ddebug *debug; -+ unsigned int num_debug; -+ 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; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_module_free { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_refcnt { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_request { -+ u32 name; -+}; -+ -+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 mod_tree_root { -+ struct latch_tree_root root; -+ long unsigned int addr_min; -+ long unsigned int addr_max; -+}; -+ -+enum mod_license { -+ NOT_GPL_ONLY = 0, -+ GPL_ONLY = 1, -+}; -+ -+struct symsearch { -+ const struct kernel_symbol *start; -+ const struct kernel_symbol *stop; -+ const s32 *crcs; -+ enum mod_license license; -+}; -+ -+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; -+}; -+ -+struct mod_initfree { -+ struct llist_node node; -+ void *module_init; -+}; -+ -+struct module_signature { -+ u8 algo; -+ u8 hash; -+ u8 id_type; -+ u8 signer_len; -+ u8 key_id_len; -+ u8 __pad[3]; -+ __be32 sig_len; -+}; -+ -+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, -+}; -+ -+enum pkey_id_type { -+ PKEY_ID_PGP = 0, -+ PKEY_ID_X509 = 1, -+ PKEY_ID_PKCS7 = 2, -+}; -+ -+struct kallsym_iter { -+ loff_t pos; -+ loff_t pos_arch_end; -+ 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[128]; -+ char module_name[56]; -+ int exported; -+ int show_value; -+}; -+ -+typedef struct { -+ int val[2]; -+} __kernel_fsid_t; -+ -+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]; -+}; -+ -+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 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 bsd_acct_struct { -+ struct fs_pin pin; -+ atomic_long_t count; -+ struct callback_head rcu; -+ struct mutex lock; -+ int active; -+ long unsigned int needcheck; -+ struct file *file; -+ struct pid_namespace *ns; -+ struct work_struct work; -+ struct completion done; -+}; -+ -+struct elf64_note { -+ Elf64_Word n_namesz; -+ Elf64_Word n_descsz; -+ Elf64_Word n_type; -+}; -+ -+typedef u32 note_buf_t[134]; -+ -+struct crypto_alg; -+ -+struct crypto_tfm { -+ 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_istat_aead { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_akcipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t verify_cnt; -+ atomic64_t sign_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_cipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_compress { -+ atomic64_t compress_cnt; -+ atomic64_t compress_tlen; -+ atomic64_t decompress_cnt; -+ atomic64_t decompress_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_hash { -+ atomic64_t hash_cnt; -+ atomic64_t hash_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_kpp { -+ atomic64_t setsecret_cnt; -+ atomic64_t generate_public_key_cnt; -+ atomic64_t compute_shared_secret_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_rng { -+ atomic64_t generate_cnt; -+ atomic64_t generate_tlen; -+ atomic64_t seed_cnt; -+ atomic64_t err_cnt; -+}; -+ -+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; -+ union { -+ struct crypto_istat_aead aead; -+ struct crypto_istat_akcipher akcipher; -+ struct crypto_istat_cipher cipher; -+ struct crypto_istat_compress compress; -+ struct crypto_istat_hash hash; -+ struct crypto_istat_rng rng; -+ struct crypto_istat_kpp kpp; -+ } stats; -+}; -+ -+struct crypto_instance; -+ -+struct crypto_type { -+ unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); -+ unsigned int (*extsize)(struct crypto_alg *); -+ int (*init)(struct crypto_tfm *, u32, u32); -+ 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_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 *); -+ unsigned int descsize; -+ int: 32; -+ unsigned int digestsize; -+ unsigned int statesize; -+ struct crypto_alg base; -+}; -+ -+struct kexec_sha_region { -+ long unsigned int start; -+ long unsigned int len; -+}; -+ -+typedef __kernel_ulong_t ino_t; -+ -+enum kernfs_node_type { -+ KERNFS_DIR = 1, -+ KERNFS_FILE = 2, -+ KERNFS_LINK = 4, -+}; -+ -+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_fs_context { -+ struct kernfs_root *root; -+ void *ns_tag; -+ long unsigned int magic; -+ bool new_sb_created; -+}; -+ -+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, -+ MAX_BPF_LINK_TYPE = 7, -+}; -+ -+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; -+ }; -+ } iter; -+ struct { -+ __u32 netns_ino; -+ __u32 attach_type; -+ } netns; -+ struct { -+ __u32 ifindex; -+ } xdp; -+ }; -+}; -+ -+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; -+ struct work_struct work; -+}; -+ -+struct bpf_link_ops { -+ void (*release)(struct bpf_link *); -+ void (*dealloc)(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 *); -+}; -+ -+struct bpf_cgroup_link { -+ struct bpf_link link; -+ struct cgroup *cgroup; -+ enum bpf_attach_type type; -+}; -+ -+enum { -+ CGRP_NOTIFY_ON_RELEASE = 0, -+ CGRP_CPUSET_CLONE_CHILDREN = 1, -+ CGRP_FREEZE = 2, -+ CGRP_FROZEN = 3, -+ CGRP_KILL = 4, -+}; -+ -+enum { -+ CGRP_ROOT_NOPREFIX = 2, -+ CGRP_ROOT_XATTR = 4, -+ CGRP_ROOT_NS_DELEGATE = 8, -+ CGRP_ROOT_CPUSET_V2_MODE = 16, -+ CGRP_ROOT_MEMORY_LOCAL_EVENTS = 32, -+ CGRP_ROOT_MEMORY_RECURSIVE_PROT = 64, -+}; -+ -+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 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; -+}; -+ -+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 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 id; -+ int level; -+ u32 __data_loc_path; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_cgroup_migrate { -+ struct trace_entry ent; -+ int dst_root; -+ int dst_id; -+ int dst_level; -+ 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 id; -+ int level; -+ u32 __data_loc_path; -+ int val; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_cgroup_root { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cgroup { -+ u32 path; -+}; -+ -+struct trace_event_data_offsets_cgroup_migrate { -+ u32 dst_path; -+ u32 comm; -+}; -+ -+struct trace_event_data_offsets_cgroup_event { -+ u32 path; -+}; -+ -+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); -+ -+enum cgroup_opt_features { -+ OPT_FEATURE_PRESSURE = 0, -+ OPT_FEATURE_COUNT = 1, -+}; -+ -+enum cgroup2_param { -+ Opt_nsdelegate = 0, -+ Opt_memory_localevents = 1, -+ Opt_memory_recursiveprot = 2, -+ nr__cgroup2_params = 3, -+}; -+ -+struct cgroupstats { -+ __u64 nr_sleeping; -+ __u64 nr_running; -+ __u64 nr_stopped; -+ __u64 nr_uninterruptible; -+ __u64 nr_io_wait; -+}; -+ -+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, -+}; -+ -+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 pids_cgroup { -+ struct cgroup_subsys_state css; -+ atomic64_t counter; -+ atomic64_t limit; -+ struct cgroup_file events_file; -+ atomic64_t events_limit; -+}; -+ -+typedef struct { -+ char *from; -+ char *to; -+} substring_t; -+ -+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 root_domain___2; -+ -+struct fmeter { -+ int cnt; -+ int val; -+ time64_t time; -+ spinlock_t lock; -+}; -+ -+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 subparts_cpus; -+ nodemask_t old_mems_allowed; -+ struct fmeter fmeter; -+ int attach_in_progress; -+ int pn; -+ int relax_domain_level; -+ int nr_subparts_cpus; -+ int partition_root_state; -+ int use_parent_ecpus; -+ int child_ecpus_count; -+}; -+ -+struct tmpmasks { -+ cpumask_var_t addmask; -+ cpumask_var_t delmask; -+ cpumask_var_t new_cpus; -+}; -+ -+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; -+ -+enum subparts_cmd { -+ partcmd_enable = 0, -+ partcmd_disable = 1, -+ partcmd_update = 2, -+}; -+ -+struct cpuset_migrate_mm_work { -+ struct work_struct work; -+ struct mm_struct *mm; -+ nodemask_t from; -+ nodemask_t to; -+}; -+ -+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_CPU_EXCLUSIVE = 6, -+ FILE_MEM_EXCLUSIVE = 7, -+ FILE_MEM_HARDWALL = 8, -+ FILE_SCHED_LOAD_BALANCE = 9, -+ FILE_PARTITION_ROOT = 10, -+ FILE_SCHED_RELAX_DOMAIN_LEVEL = 11, -+ FILE_MEMORY_PRESSURE_ENABLED = 12, -+ FILE_MEMORY_PRESSURE = 13, -+ FILE_SPREAD_PAGE = 14, -+ FILE_SPREAD_SLAB = 15, -+} cpuset_filetype_t; -+ -+enum misc_res_type { -+ MISC_CG_RES_TYPES = 0, -+}; -+ -+struct misc_res { -+ long unsigned int max; -+ atomic_long_t usage; -+ bool failed; -+}; -+ -+struct misc_cg { -+ struct cgroup_subsys_state css; -+ struct misc_res res[0]; -+}; -+ -+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; -+}; -+ -+struct ctl_path { -+ const char *procname; -+}; -+ -+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; -+}; -+ -+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_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 audit_proctitle { -+ int len; -+ char *value; -+}; -+ -+struct audit_aux_data; -+ -+struct __kernel_sockaddr_storage; -+ -+struct audit_tree_refs; -+ -+struct audit_context { -+ int dummy; -+ int in_syscall; -+ enum audit_state state; -+ enum audit_state current_state; -+ unsigned int serial; -+ int major; -+ 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 pid; -+ 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 { -+ int argc; -+ } execve; -+ struct { -+ char *name; -+ } module; -+ }; -+ int fds[2]; -+ struct audit_proctitle proctitle; -+}; -+ -+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 __kernel_sockaddr_storage { -+ union { -+ struct { -+ __kernel_sa_family_t ss_family; -+ char __data[126]; -+ }; -+ void *__align; -+ }; -+}; -+ -+struct net_generic { -+ union { -+ struct { -+ unsigned int len; -+ struct callback_head rcu; -+ } s; -+ void *ptr[0]; -+ }; -+}; -+ -+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 *); -+ unsigned int *id; -+ size_t size; -+}; -+ -+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; -+}; -+ -+struct netlink_kernel_cfg { -+ unsigned int groups; -+ unsigned int flags; -+ void (*input)(struct sk_buff *); -+ struct mutex *cb_mutex; -+ int (*bind)(struct net *, int); -+ void (*unbind)(struct net *, int); -+ bool (*compare)(struct net *, struct sock *); -+}; -+ -+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; -+}; -+ -+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_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_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_entry { -+ struct list_head list; -+ struct callback_head rcu; -+ struct audit_krule rule; -+}; -+ -+struct audit_buffer___2; -+ -+typedef int __kernel_key_t; -+ -+typedef __kernel_key_t key_t; -+ -+struct cpu_vfs_cap_data { -+ __u32 magic_etc; -+ kernel_cap_t permitted; -+ kernel_cap_t inheritable; -+ kuid_t rootid; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct fsnotify_mark_connector *fsnotify_connp_t; -+ -+struct fsnotify_mark_connector { -+ spinlock_t lock; -+ short unsigned int type; -+ short unsigned int flags; -+ __kernel_fsid_t fsid; -+ union { -+ fsnotify_connp_t *obj; -+ struct fsnotify_mark_connector *destroy_next; -+ }; -+ struct hlist_head list; -+}; -+ -+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_INVALID = 19, -+}; -+ -+enum fsnotify_obj_type { -+ FSNOTIFY_OBJ_TYPE_INODE = 0, -+ FSNOTIFY_OBJ_TYPE_PARENT = 1, -+ FSNOTIFY_OBJ_TYPE_VFSMOUNT = 2, -+ FSNOTIFY_OBJ_TYPE_SB = 3, -+ FSNOTIFY_OBJ_TYPE_COUNT = 4, -+ FSNOTIFY_OBJ_TYPE_DETACHED = 4, -+}; -+ -+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; -+}; -+ -+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_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; -+}; -+ -+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; -+ unsigned int priority; -+ bool shutdown; -+ 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[4]; -+ 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 ignored_mask; -+ unsigned int flags; -+}; -+ -+struct fsnotify_event { -+ struct list_head list; -+}; -+ -+struct audit_parent { -+ struct list_head watches; -+ struct fsnotify_mark mark; -+}; -+ -+struct audit_fsnotify_mark { -+ dev_t dev; -+ long unsigned int ino; -+ char *path; -+ struct fsnotify_mark mark; -+ struct audit_krule *rule; -+}; -+ -+struct audit_chunk___2; -+ -+struct audit_tree { -+ refcount_t count; -+ int goner; -+ struct audit_chunk___2 *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 node___2 { -+ struct list_head list; -+ struct audit_tree *owner; -+ unsigned int index; -+}; -+ -+struct audit_chunk___2 { -+ 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 node___2 owners[0]; -+}; -+ -+struct audit_tree_mark { -+ struct fsnotify_mark mark; -+ struct audit_chunk___2 *chunk; -+}; -+ -+enum { -+ HASH_SIZE = 128, -+}; -+ -+struct kprobe_blacklist_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+}; -+ -+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, -+}; -+ -+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 kgdb_io { -+ const char *name; -+ int (*read_char)(); -+ void (*write_char)(u8); -+ void (*flush)(); -+ int (*init)(); -+ void (*deinit)(); -+ void (*pre_exception)(); -+ void (*post_exception)(); -+ 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; -+}; -+ -+struct debuggerinfo_struct { -+ void *debuggerinfo; -+ struct task_struct *task; -+ int exception_state; -+ int ret_state; -+ int irq_depth; -+ int enter_kgdb; -+ bool rounding_up; -+}; -+ -+typedef int (*get_char_func)(); -+ -+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 **); -+ -+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; -+ -+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; -+ -+struct _kdbtab { -+ char *cmd_name; -+ kdb_func_t cmd_func; -+ char *cmd_usage; -+ char *cmd_help; -+ short int cmd_minlen; -+ kdb_cmdflags_t cmd_flags; -+ struct list_head list_node; -+ bool is_dynamic; -+}; -+ -+typedef struct _kdbtab kdbtab_t; -+ -+typedef enum { -+ KDB_DB_BPT = 0, -+ KDB_DB_SS = 1, -+ KDB_DB_SSBPT = 2, -+ KDB_DB_NOBPT = 3, -+} kdb_dbtrap_t; -+ -+struct _kdbmsg { -+ int km_diag; -+ char *km_msg; -+}; -+ -+typedef struct _kdbmsg kdbmsg_t; -+ -+struct defcmd_set { -+ int count; -+ bool usable; -+ char *name; -+ char *usage; -+ char *help; -+ char **command; -+}; -+ -+struct debug_alloc_header { -+ u32 next; -+ u32 size; -+ void *caller; -+}; -+ -+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 short unsigned int u_short; -+ -+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; -+}; -+ -+struct action_cache { -+ long unsigned int allow_native[7]; -+}; -+ -+struct notification; -+ -+struct seccomp_filter { -+ refcount_t refs; -+ refcount_t users; -+ bool log; -+ 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 sock_fprog { -+ short unsigned int len; -+ struct sock_filter *filter; -+}; -+ -+typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); -+ -+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 { -+ struct semaphore request; -+ u64 next_id; -+ struct list_head notifications; -+}; -+ -+struct seccomp_log_name { -+ u32 log; -+ const char *name; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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 rchan_percpu_buf_dispatcher { -+ struct rchan_buf *buf; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+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 genlmsghdr { -+ __u8 cmd; -+ __u8 version; -+ __u16 reserved; -+}; -+ -+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_TYPE_MAX = 18, -+}; -+ -+struct genl_multicast_group { -+ char name[16]; -+ u8 flags; -+}; -+ -+struct genl_ops; -+ -+struct genl_info; -+ -+struct genl_small_ops; -+ -+struct genl_family { -+ int id; -+ unsigned int hdrsize; -+ char name[16]; -+ unsigned int version; -+ unsigned int maxattr; -+ unsigned int mcgrp_offset; -+ u8 netnsok: 1; -+ u8 parallel_ops: 1; -+ u8 n_ops; -+ u8 n_small_ops; -+ u8 n_mcgrps; -+ const struct nla_policy *policy; -+ int (*pre_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ void (*post_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ const struct genl_ops *ops; -+ const struct genl_small_ops *small_ops; -+ const struct genl_multicast_group *mcgrps; -+ struct module *module; -+}; -+ -+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_info { -+ u32 snd_seq; -+ u32 snd_portid; -+ struct nlmsghdr *nlhdr; -+ struct genlmsghdr *genlhdr; -+ void *userhdr; -+ struct nlattr **attrs; -+ possible_net_t _net; -+ void *user_ptr[2]; -+ struct netlink_ext_ack *extack; -+}; -+ -+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; -+}; -+ -+enum genl_validate_flags { -+ GENL_DONT_VALIDATE_STRICT = 1, -+ GENL_DONT_VALIDATE_DUMP = 2, -+ GENL_DONT_VALIDATE_DUMP_STRICT = 4, -+}; -+ -+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 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]; -+}; -+ -+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_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_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_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, -+}; -+ -+struct ftrace_graph_ent { -+ long unsigned int func; -+ int depth; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret { -+ long unsigned int func; -+ int depth; -+ unsigned int overrun; -+ long long unsigned int calltime; -+ long long unsigned int rettime; -+}; -+ -+typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); -+ -+typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); -+ -+struct fgraph_ops { -+ trace_func_graph_ent_t entryfunc; -+ trace_func_graph_ret_t retfunc; -+}; -+ -+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 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; -+ long unsigned int max_latency; -+ struct dentry *d_max_latency; -+ struct work_struct fsnotify_work; -+ struct irq_work fsnotify_irqwork; -+ 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[447]; -+ struct trace_event_file *exit_syscall_files[447]; -+ 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; -+ struct list_head err_log; -+ struct dentry *dir; -+ struct dentry *options; -+ struct dentry *percpu_dir; -+ struct dentry *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; -+ 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 cond_snapshot *cond_snapshot; -+ struct trace_func_repeats *last_func_repeats; -+}; -+ -+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 event_subsystem; -+ -+struct trace_subsystem_dir { -+ struct list_head list; -+ struct event_subsystem *subsystem; -+ struct trace_array *tr; -+ struct dentry *entry; -+ int ref_count; -+ int nr_events; -+}; -+ -+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_pid_list { -+ int pid_max; -+ long unsigned int *pids; -+}; -+ -+enum { -+ TRACE_PIDS = 1, -+ TRACE_NO_PIDS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ TRACE_ARRAY_FL_GLOBAL = 1, -+}; -+ -+struct tracer_opt { -+ const char *name; -+ u32 bit; -+}; -+ -+struct tracer_flags { -+ u32 val; -+ struct tracer_opt *opts; -+ struct tracer *trace; -+}; -+ -+struct ftrace_mod_load { -+ struct list_head list; -+ char *func; -+ char *module; -+ int enable; -+}; -+ -+enum { -+ FTRACE_HASH_FL_MOD = 1, -+}; -+ -+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; -+ char *buffer; -+ unsigned int idx; -+ unsigned int size; -+}; -+ -+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_PRINTK_BIT = 8, -+ TRACE_ITER_ANNOTATE_BIT = 9, -+ TRACE_ITER_USERSTACKTRACE_BIT = 10, -+ TRACE_ITER_SYM_USEROBJ_BIT = 11, -+ TRACE_ITER_PRINTK_MSGONLY_BIT = 12, -+ TRACE_ITER_CONTEXT_INFO_BIT = 13, -+ TRACE_ITER_LATENCY_FMT_BIT = 14, -+ TRACE_ITER_RECORD_CMD_BIT = 15, -+ TRACE_ITER_RECORD_TGID_BIT = 16, -+ TRACE_ITER_OVERWRITE_BIT = 17, -+ TRACE_ITER_STOP_ON_FREE_BIT = 18, -+ TRACE_ITER_IRQ_INFO_BIT = 19, -+ TRACE_ITER_MARKERS_BIT = 20, -+ TRACE_ITER_EVENT_FORK_BIT = 21, -+ TRACE_ITER_PAUSE_ON_TRACE_BIT = 22, -+ TRACE_ITER_HASH_PTR_BIT = 23, -+ TRACE_ITER_FUNCTION_BIT = 24, -+ TRACE_ITER_FUNC_FORK_BIT = 25, -+ TRACE_ITER_DISPLAY_GRAPH_BIT = 26, -+ TRACE_ITER_STACKTRACE_BIT = 27, -+ TRACE_ITER_LAST_BIT = 28, -+}; -+ -+struct event_subsystem { -+ struct list_head list; -+ const char *name; -+ struct event_filter *filter; -+ int ref_count; -+}; -+ -+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; -+ 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 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; -+}; -+ -+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, -+}; -+ -+enum ring_buffer_flags { -+ RB_FL_OVERWRITE = 1, -+}; -+ -+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; -+ u64 read_stamp; -+ u64 page_stamp; -+ struct ring_buffer_event *event; -+ int missed_events; -+}; -+ -+struct rb_irq_work { -+ struct irq_work work; -+ wait_queue_head_t waiters; -+ wait_queue_head_t full_waiters; -+ bool waiters_pending; -+ bool full_waiters_pending; -+ bool wakeup_full; -+}; -+ -+struct trace_buffer___2 { -+ unsigned int flags; -+ int cpus; -+ atomic_t record_disabled; -+ 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)(); -+ struct rb_irq_work irq_work; -+ bool time_stamp_abs; -+}; -+ -+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_page { -+ struct list_head list; -+ local_t write; -+ unsigned int read; -+ local_t entries; -+ long unsigned int real_end; -+ 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___2 *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; -+ 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_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 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; -+}; -+ -+typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); -+ -+struct trace_export { -+ struct trace_export *next; -+ void (*write)(struct trace_export *, const void *, unsigned int); -+ int flags; -+}; -+ -+enum fsnotify_data_type { -+ FSNOTIFY_EVENT_NONE = 0, -+ FSNOTIFY_EVENT_PATH = 1, -+ FSNOTIFY_EVENT_INODE = 2, -+}; -+ -+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, -+}; -+ -+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 stack_entry { -+ struct trace_entry ent; -+ int size; -+ 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 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_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_PRINTK = 256, -+ TRACE_ITER_ANNOTATE = 512, -+ TRACE_ITER_USERSTACKTRACE = 1024, -+ TRACE_ITER_SYM_USEROBJ = 2048, -+ TRACE_ITER_PRINTK_MSGONLY = 4096, -+ TRACE_ITER_CONTEXT_INFO = 8192, -+ TRACE_ITER_LATENCY_FMT = 16384, -+ TRACE_ITER_RECORD_CMD = 32768, -+ TRACE_ITER_RECORD_TGID = 65536, -+ TRACE_ITER_OVERWRITE = 131072, -+ TRACE_ITER_STOP_ON_FREE = 262144, -+ TRACE_ITER_IRQ_INFO = 524288, -+ TRACE_ITER_MARKERS = 1048576, -+ TRACE_ITER_EVENT_FORK = 2097152, -+ TRACE_ITER_PAUSE_ON_TRACE = 4194304, -+ TRACE_ITER_HASH_PTR = 8388608, -+ TRACE_ITER_FUNCTION = 16777216, -+ TRACE_ITER_FUNC_FORK = 33554432, -+ TRACE_ITER_DISPLAY_GRAPH = 67108864, -+ TRACE_ITER_STACKTRACE = 134217728, -+}; -+ -+struct trace_min_max_param { -+ struct mutex *lock; -+ u64 *val; -+ u64 *min; -+ u64 *max; -+}; -+ -+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; -+}; -+ -+struct ftrace_stack { -+ long unsigned int calls[16384]; -+}; -+ -+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 read; -+}; -+ -+struct err_info { -+ const char **errs; -+ u8 type; -+ u8 pos; -+ u64 ts; -+}; -+ -+struct tracing_log_err { -+ struct list_head list; -+ struct err_info info; -+ char loc[128]; -+ char cmd[256]; -+}; -+ -+struct buffer_ref { -+ struct trace_buffer *buffer; -+ void *page; -+ int cpu; -+ refcount_t refcount; -+}; -+ -+struct ftrace_func_mapper___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 userstack_entry { -+ struct trace_entry ent; -+ unsigned int tgid; -+ long unsigned int caller[8]; -+}; -+ -+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 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_mark { -+ long long unsigned int val; -+ char sym; -+}; -+ -+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 trace_bprintk_fmt { -+ struct list_head list; -+ const char *fmt; -+}; -+ -+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 *); -+}; -+ -+enum { -+ TRACE_FUNC_NO_OPTS = 0, -+ TRACE_FUNC_OPT_STACK = 1, -+ TRACE_FUNC_OPT_NO_REPEATS = 2, -+ TRACE_FUNC_OPT_HIGHEST_BIT = 4, -+}; -+ -+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 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_thread_noise {}; -+ -+struct trace_event_data_offsets_softirq_noise {}; -+ -+struct trace_event_data_offsets_irq_noise { -+ u32 desc; -+}; -+ -+struct trace_event_data_offsets_nmi_noise {}; -+ -+struct trace_event_data_offsets_sample_threshold {}; -+ -+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); -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+enum { -+ TRACE_NOP_OPT_ACCEPT = 1, -+ TRACE_NOP_OPT_REFUSE = 2, -+}; -+ -+struct ftrace_graph_ent_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ent graph_ent; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ret ret; -+}; -+ -+struct fgraph_cpu_data { -+ pid_t last_pid; -+ int depth; -+ int depth_irq; -+ int ignore; -+ long unsigned int enter_funcs[50]; -+}; -+ -+struct fgraph_data { -+ struct fgraph_cpu_data *cpu_data; -+ struct ftrace_graph_ent_entry ent; -+ struct ftrace_graph_ret_entry ret; -+ int failed; -+ int cpu; -+ int: 32; -+} __attribute__((packed)); -+ -+enum { -+ FLAGS_FILL_FULL = 268435456, -+ FLAGS_FILL_START = 536870912, -+ FLAGS_FILL_END = 805306368, -+}; -+ -+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]; -+}; -+ -+typedef __u32 blk_mq_req_flags_t; -+ -+enum req_opf { -+ REQ_OP_READ = 0, -+ REQ_OP_WRITE = 1, -+ REQ_OP_FLUSH = 2, -+ REQ_OP_DISCARD = 3, -+ REQ_OP_SECURE_ERASE = 5, -+ REQ_OP_WRITE_SAME = 7, -+ REQ_OP_WRITE_ZEROES = 9, -+ REQ_OP_ZONE_OPEN = 10, -+ REQ_OP_ZONE_CLOSE = 11, -+ REQ_OP_ZONE_FINISH = 12, -+ REQ_OP_ZONE_APPEND = 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, -+}; -+ -+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_CGROUP_PUNT = 22, -+ __REQ_NOUNMAP = 23, -+ __REQ_HIPRI = 24, -+ __REQ_DRV = 25, -+ __REQ_SWAP = 26, -+ __REQ_NR_BITS = 27, -+}; -+ -+struct blk_mq_ctxs; -+ -+struct blk_mq_ctx { -+ struct { -+ spinlock_t lock; -+ struct list_head rq_lists[3]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ }; -+ unsigned int cpu; -+ short unsigned int index_hw[3]; -+ struct blk_mq_hw_ctx *hctxs[3]; -+ long unsigned int rq_dispatched[2]; -+ long unsigned int rq_merged; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int rq_completed[2]; -+ struct request_queue *queue; -+ struct blk_mq_ctxs *ctxs; -+ struct kobject kobj; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct blk_mq_tags; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long unsigned int queued; -+ long unsigned int run; -+ long unsigned int dispatched[7]; -+ 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; -+ long unsigned int poll_considered; -+ long unsigned int poll_invoked; -+ long unsigned int poll_success; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct list_head hctx_list; -+ struct srcu_struct srcu[0]; -+ long: 64; -+}; -+ -+struct blk_mq_alloc_data { -+ struct request_queue *q; -+ blk_mq_req_flags_t flags; -+ unsigned int shallow_depth; -+ unsigned int cmd_flags; -+ struct blk_mq_ctx *ctx; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+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_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; -+}; -+ -+struct blk_flush_queue { -+ 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]; -+ struct list_head flush_data_in_flight; -+ struct request *flush_rq; -+ spinlock_t mq_flush_lock; -+}; -+ -+struct blk_mq_queue_map { -+ unsigned int *mq_map; -+ unsigned int nr_queues; -+ unsigned int queue_offset; -+}; -+ -+struct blk_mq_tag_set { -+ struct blk_mq_queue_map map[3]; -+ unsigned int nr_maps; -+ const struct blk_mq_ops *ops; -+ 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; -+ atomic_t active_queues_shared_sbitmap; -+ struct sbitmap_queue __bitmap_tags; -+ struct sbitmap_queue __breserved_tags; -+ struct blk_mq_tags **tags; -+ struct mutex tag_list_lock; -+ struct list_head tag_list; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 blk_mq_tags { -+ unsigned int nr_tags; -+ unsigned int nr_reserved_tags; -+ atomic_t active_queues; -+ struct sbitmap_queue *bitmap_tags; -+ struct sbitmap_queue *breserved_tags; -+ 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_mq_queue_data { -+ struct request *rq; -+ bool last; -+}; -+ -+struct blk_mq_ctxs { -+ struct kobject kobj; -+ struct blk_mq_ctx *queue_ctx; -+}; -+ -+typedef void blk_log_action_t(struct trace_iterator *, const char *, bool); -+ -+struct ftrace_event_field { -+ struct list_head link; -+ const char *name; -+ const char *type; -+ int filter_type; -+ int offset; -+ int size; -+ int is_signed; -+}; -+ -+enum { -+ FORMAT_HEADER = 1, -+ FORMAT_FIELD_SEPERATOR = 2, -+ FORMAT_PRINTFMT = 3, -+}; -+ -+struct event_probe_data { -+ struct trace_event_file *file; -+ long unsigned int count; -+ int ref; -+ bool enable; -+}; -+ -+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 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int ret; -+}; -+ -+struct syscall_tp_t___2 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int args[6]; -+}; -+ -+typedef long unsigned int perf_trace_t[256]; -+ -+struct filter_pred; -+ -+struct prog_entry { -+ int target; -+ int when_to_branch; -+ struct filter_pred *pred; -+}; -+ -+typedef int (*filter_pred_fn_t)(struct filter_pred *, void *); -+ -+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; -+}; -+ -+struct filter_pred { -+ filter_pred_fn_t fn; -+ u64 val; -+ struct regex regex; -+ short unsigned int *ops; -+ struct ftrace_event_field *field; -+ int offset; -+ int not; -+ int op; -+}; -+ -+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 { -+ 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_OPERAND_TOO_LONG = 5, -+ FILT_ERR_EXPECT_STRING = 6, -+ FILT_ERR_EXPECT_DIGIT = 7, -+ FILT_ERR_ILLEGAL_FIELD_OP = 8, -+ FILT_ERR_FIELD_NOT_FOUND = 9, -+ FILT_ERR_ILLEGAL_INTVAL = 10, -+ FILT_ERR_BAD_SUBSYS_FILTER = 11, -+ FILT_ERR_TOO_MANY_PREDS = 12, -+ FILT_ERR_INVALID_FILTER = 13, -+ FILT_ERR_IP_FIELD_ONLY = 14, -+ FILT_ERR_INVALID_VALUE = 15, -+ FILT_ERR_ERRNO = 16, -+ FILT_ERR_NO_FILTER = 17, -+}; -+ -+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, -+}; -+ -+enum { -+ TOO_MANY_CLOSE = 4294967295, -+ TOO_MANY_OPEN = 4294967294, -+ MISSING_QUOTE = 4294967293, -+}; -+ -+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 event_trigger_ops; -+ -+struct event_command; -+ -+struct event_trigger_data { -+ long unsigned int count; -+ int ref; -+ 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 (*func)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); -+ int (*init)(struct event_trigger_ops *, struct event_trigger_data *); -+ void (*free)(struct event_trigger_ops *, struct event_trigger_data *); -+ int (*print)(struct seq_file *, struct event_trigger_ops *, struct event_trigger_data *); -+}; -+ -+struct event_command { -+ struct list_head list; -+ char *name; -+ enum event_trigger_type trigger_type; -+ int flags; -+ int (*func)(struct event_command *, struct trace_event_file *, char *, char *, char *); -+ int (*reg)(char *, struct event_trigger_ops *, struct event_trigger_data *, struct trace_event_file *); -+ void (*unreg)(char *, struct event_trigger_ops *, 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, -+}; -+ -+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 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; -+}; -+ -+struct synth_trace_event { -+ struct trace_entry ent; -+ u64 fields[0]; -+}; -+ -+struct dyn_event_operations; -+ -+struct dyn_event { -+ struct list_head list; -+ struct dyn_event_operations *ops; -+}; -+ -+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; -+}; -+ -+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 *); -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct hist_field; -+ -+typedef u64 (*hist_field_fn_t)(struct hist_field *, struct tracing_map_elt *, struct trace_buffer *, struct ring_buffer_event *, void *); -+ -+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, -+}; -+ -+struct hist_field { -+ struct ftrace_event_field *field; -+ long unsigned int flags; -+ hist_field_fn_t fn; -+ unsigned int ref; -+ unsigned int size; -+ unsigned int offset; -+ unsigned int is_signed; -+ const char *type; -+ struct hist_field *operands[2]; -+ struct hist_trigger_data *hist_data; -+ 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; -+}; -+ -+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[32]; -+ unsigned int n_field_vars; -+ unsigned int n_field_var_str; -+ struct field_var_hist *field_var_hists[32]; -+ unsigned int n_field_var_hists; -+ struct field_var *save_vars[32]; -+ 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, -+}; -+ -+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; -+ 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[32]; -+ unsigned int var_ref_idx[16]; -+ 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[32]; -+}; -+ -+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; -+}; -+ -+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_MAX_ID = 169, -+}; -+ -+enum { -+ BPF_F_INDEX_MASK = 4294967295, -+ BPF_F_CURRENT_CPU = 4294967295, -+ BPF_F_CTXLEN_MASK = 0, -+}; -+ -+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_local_storage_data; -+ -+struct bpf_local_storage { -+ struct bpf_local_storage_data *cache[16]; -+ struct hlist_head list; -+ void *owner; -+ struct callback_head rcu; -+ raw_spinlock_t lock; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ 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 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_UNINIT_MAP_VALUE = 4, -+ ARG_PTR_TO_MAP_VALUE_OR_NULL = 5, -+ ARG_PTR_TO_MEM = 6, -+ ARG_PTR_TO_MEM_OR_NULL = 7, -+ ARG_PTR_TO_UNINIT_MEM = 8, -+ ARG_CONST_SIZE = 9, -+ ARG_CONST_SIZE_OR_ZERO = 10, -+ ARG_PTR_TO_CTX = 11, -+ ARG_PTR_TO_CTX_OR_NULL = 12, -+ ARG_ANYTHING = 13, -+ ARG_PTR_TO_SPIN_LOCK = 14, -+ ARG_PTR_TO_SOCK_COMMON = 15, -+ ARG_PTR_TO_INT = 16, -+ ARG_PTR_TO_LONG = 17, -+ ARG_PTR_TO_SOCKET = 18, -+ ARG_PTR_TO_SOCKET_OR_NULL = 19, -+ ARG_PTR_TO_BTF_ID = 20, -+ ARG_PTR_TO_ALLOC_MEM = 21, -+ ARG_PTR_TO_ALLOC_MEM_OR_NULL = 22, -+ ARG_CONST_ALLOC_SIZE_OR_ZERO = 23, -+ ARG_PTR_TO_BTF_ID_SOCK_COMMON = 24, -+ ARG_PTR_TO_PERCPU_BTF_ID = 25, -+ ARG_PTR_TO_FUNC = 26, -+ ARG_PTR_TO_STACK_OR_NULL = 27, -+ ARG_PTR_TO_CONST_STR = 28, -+ __BPF_ARG_TYPE_MAX = 29, -+}; -+ -+enum bpf_return_type { -+ RET_INTEGER = 0, -+ RET_VOID = 1, -+ RET_PTR_TO_MAP_VALUE = 2, -+ RET_PTR_TO_MAP_VALUE_OR_NULL = 3, -+ RET_PTR_TO_SOCKET_OR_NULL = 4, -+ RET_PTR_TO_TCP_SOCK_OR_NULL = 5, -+ RET_PTR_TO_SOCK_COMMON_OR_NULL = 6, -+ RET_PTR_TO_ALLOC_MEM_OR_NULL = 7, -+ RET_PTR_TO_BTF_ID_OR_NULL = 8, -+ RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL = 9, -+ RET_PTR_TO_MEM_OR_BTF_ID = 10, -+ RET_PTR_TO_BTF_ID = 11, -+}; -+ -+struct bpf_func_proto { -+ u64 (*func)(u64, u64, u64, u64, u64); -+ bool gpl_only; -+ bool pkt_access; -+ 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]; -+ }; -+ int *ret_btf_id; -+ bool (*allowed)(const struct bpf_prog *); -+}; -+ -+enum bpf_access_type { -+ BPF_READ = 1, -+ BPF_WRITE = 2, -+}; -+ -+struct bpf_verifier_log; -+ -+struct bpf_insn_access_aux { -+ enum bpf_reg_type reg_type; -+ union { -+ int ctx_field_size; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ }; -+ struct bpf_verifier_log *log; -+}; -+ -+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_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 btf *, const struct btf_type *, int, int, enum bpf_access_type, u32 *); -+ bool (*check_kfunc_call)(u32); -+}; -+ -+struct bpf_array_aux { -+ enum bpf_prog_type type; -+ bool jited; -+ 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 { -+ char value[0]; -+ void *ptrs[0]; -+ void *pptrs[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; -+}; -+ -+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 struct user_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 btf_id_set { -+ u32 cnt; -+ u32 ids[0]; -+}; -+ -+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 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; -+}; -+ -+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_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_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)(); -+ -+typedef u64 (*btf_bpf_get_current_task_btf)(); -+ -+typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); -+ -+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_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 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_DEREF = 10, -+ FETCH_OP_UDEREF = 11, -+ FETCH_OP_ST_RAW = 12, -+ FETCH_OP_ST_MEM = 13, -+ FETCH_OP_ST_UMEM = 14, -+ FETCH_OP_ST_STRING = 15, -+ FETCH_OP_ST_USTRING = 16, -+ FETCH_OP_MOD_BF = 17, -+ FETCH_OP_LP_ARRAY = 18, -+ FETCH_OP_END = 19, -+ FETCH_NOP_SYMBOL = 20, -+}; -+ -+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; -+ int is_signed; -+ 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 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_arg args[0]; -+}; -+ -+struct event_file_link { -+ struct trace_event_file *file; -+ struct list_head list; -+}; -+ -+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_MAXACT_NO_KPROBE = 6, -+ TP_ERR_BAD_MAXACT = 7, -+ TP_ERR_MAXACT_TOO_BIG = 8, -+ TP_ERR_BAD_PROBE_ADDR = 9, -+ TP_ERR_BAD_RETPROBE = 10, -+ TP_ERR_BAD_ADDR_SUFFIX = 11, -+ TP_ERR_NO_GROUP_NAME = 12, -+ TP_ERR_GROUP_TOO_LONG = 13, -+ TP_ERR_BAD_GROUP_NAME = 14, -+ TP_ERR_NO_EVENT_NAME = 15, -+ TP_ERR_EVENT_TOO_LONG = 16, -+ TP_ERR_BAD_EVENT_NAME = 17, -+ TP_ERR_RETVAL_ON_PROBE = 18, -+ TP_ERR_BAD_STACK_NUM = 19, -+ TP_ERR_BAD_ARG_NUM = 20, -+ TP_ERR_BAD_VAR = 21, -+ TP_ERR_BAD_REG_NAME = 22, -+ TP_ERR_BAD_MEM_ADDR = 23, -+ TP_ERR_BAD_IMM = 24, -+ TP_ERR_IMMSTR_NO_CLOSE = 25, -+ TP_ERR_FILE_ON_KPROBE = 26, -+ TP_ERR_BAD_FILE_OFFS = 27, -+ TP_ERR_SYM_ON_UPROBE = 28, -+ TP_ERR_TOO_MANY_OPS = 29, -+ TP_ERR_DEREF_NEED_BRACE = 30, -+ TP_ERR_BAD_DEREF_OFFS = 31, -+ TP_ERR_DEREF_OPEN_BRACE = 32, -+ TP_ERR_COMM_CANT_DEREF = 33, -+ TP_ERR_BAD_FETCH_ARG = 34, -+ TP_ERR_ARRAY_NO_CLOSE = 35, -+ TP_ERR_BAD_ARRAY_SUFFIX = 36, -+ TP_ERR_BAD_ARRAY_NUM = 37, -+ TP_ERR_ARRAY_TOO_BIG = 38, -+ TP_ERR_BAD_TYPE = 39, -+ TP_ERR_BAD_STRING = 40, -+ TP_ERR_BAD_BITFIELD = 41, -+ TP_ERR_ARG_NAME_TOO_LONG = 42, -+ TP_ERR_NO_ARG_NAME = 43, -+ TP_ERR_BAD_ARG_NAME = 44, -+ TP_ERR_USED_ARG_NAME = 45, -+ TP_ERR_ARG_TOO_LONG = 46, -+ TP_ERR_NO_ARG_BODY = 47, -+ TP_ERR_BAD_INSN_BNDRY = 48, -+ TP_ERR_FAIL_REG_PROBE = 49, -+ TP_ERR_DIFF_PROBE_TYPE = 50, -+ TP_ERR_DIFF_ARG_TYPE = 51, -+ TP_ERR_SAME_PROBE = 52, -+}; -+ -+struct trace_kprobe { -+ struct dyn_event devent; -+ struct kretprobe rp; -+ long unsigned int *nhit; -+ const char *symbol; -+ struct trace_probe tp; -+}; -+ -+enum error_detector { -+ ERROR_DETECTOR_KFENCE = 0, -+ ERROR_DETECTOR_KASAN = 1, -+}; -+ -+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_event_raw_cpu { -+ struct trace_entry ent; -+ u32 state; -+ u32 cpu_id; -+ 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_data_offsets_cpu {}; -+ -+struct trace_event_data_offsets_powernv_throttle { -+ u32 reason; -+}; -+ -+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; -+ u32 driver; -+ u32 parent; -+ u32 pm_ops; -+}; -+ -+struct trace_event_data_offsets_device_pm_callback_end { -+ u32 device; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_suspend_resume {}; -+ -+struct trace_event_data_offsets_wakeup_source { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clock { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_power_domain { -+ u32 name; -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); -+ -+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); -+ -+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_data_offsets_rpm_internal { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_rpm_return_int { -+ u32 name; -+}; -+ -+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); -+ -+struct trace_probe_log { -+ const char *subsystem; -+ const char **argv; -+ int argc; -+ int index; -+}; -+ -+enum uprobe_filter_ctx { -+ UPROBE_FILTER_REGISTER = 0, -+ UPROBE_FILTER_UNREGISTER = 1, -+ UPROBE_FILTER_MMAP = 2, -+}; -+ -+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 *, enum uprobe_filter_ctx, struct mm_struct *); -+ struct uprobe_consumer *next; -+}; -+ -+struct uprobe_trace_entry_head { -+ struct trace_entry ent; -+ long unsigned int vaddr[0]; -+}; -+ -+struct trace_uprobe { -+ struct dyn_event devent; -+ struct uprobe_consumer consumer; -+ struct path path; -+ struct inode *inode; -+ char *filename; -+ long unsigned int offset; -+ long unsigned int ref_ctr_offset; -+ long unsigned int nhit; -+ struct trace_probe tp; -+}; -+ -+struct uprobe_dispatch_data { -+ struct trace_uprobe *tu; -+ long unsigned int bp_addr; -+}; -+ -+struct uprobe_cpu_buffer { -+ struct mutex mutex; -+ void *buf; -+}; -+ -+typedef bool (*filter_func_t)(struct uprobe_consumer *, enum uprobe_filter_ctx, struct mm_struct *); -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct rhash_lock_head *buckets[0]; -+}; -+ -+struct rnd_state { -+ __u32 s1; -+ __u32 s2; -+ __u32 s3; -+ __u32 s4; -+}; -+ -+enum xdp_action { -+ XDP_ABORTED = 0, -+ XDP_DROP = 1, -+ XDP_PASS = 2, -+ XDP_TX = 3, -+ XDP_REDIRECT = 4, -+}; -+ -+enum bpf_jit_poke_reason { -+ BPF_POKE_REASON_TAIL_CALL = 0, -+}; -+ -+enum bpf_text_poke_type { -+ BPF_MOD_CALL = 0, -+ BPF_MOD_JUMP = 1, -+}; -+ -+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_cpumap_stats { -+ unsigned int redirect; -+ unsigned int pass; -+ unsigned int drop; -+}; -+ -+struct bpf_prog_dummy { -+ struct bpf_prog prog; -+}; -+ -+typedef u64 (*btf_bpf_user_rnd_u32)(); -+ -+typedef u64 (*btf_bpf_get_raw_cpu_id)(); -+ -+struct _bpf_dtab_netdev { -+ struct net_device *dev; -+}; -+ -+struct rhash_lock_head {}; -+ -+struct zero_copy_allocator; -+ -+struct xdp_mem_allocator { -+ struct xdp_mem_info mem; -+ union { -+ void *allocator; -+ struct page_pool *page_pool; -+ struct zero_copy_allocator *zc_alloc; -+ }; -+ 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_mem_return_failed { -+ struct trace_entry ent; -+ const struct page *page; -+ u32 mem_id; -+ u32 mem_type; -+ 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 {}; -+ -+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 *); -+ -+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, -+}; -+ -+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, -+}; -+ -+enum bpf_stats_type { -+ BPF_STATS_RUN_TIME = 0, -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct bpf_btf_info { -+ __u64 btf; -+ __u32 btf_size; -+ __u32 id; -+ __u64 name; -+ __u32 name_len; -+ __u32 kernel_btf; -+}; -+ -+struct bpf_spin_lock { -+ __u32 val; -+}; -+ -+typedef sockptr_t bpfptr_t; -+ -+struct bpf_verifier_log { -+ u32 level; -+ char kbuf[1024]; -+ char *ubuf; -+ u32 len_used; -+ u32 len_total; -+}; -+ -+struct bpf_subprog_info { -+ u32 start; -+ u32 linfo_idx; -+ u16 stack_depth; -+ bool has_tail_call; -+ bool tail_call_reachable; -+ bool has_ld_abs; -+}; -+ -+struct bpf_id_pair { -+ u32 old; -+ u32 cur; -+}; -+ -+struct bpf_verifier_stack_elem; -+ -+struct bpf_verifier_state; -+ -+struct bpf_verifier_state_list; -+ -+struct bpf_insn_aux_data; -+ -+struct bpf_verifier_env { -+ u32 insn_idx; -+ u32 prev_insn_idx; -+ struct bpf_prog *prog; -+ const struct bpf_verifier_ops *ops; -+ struct bpf_verifier_stack_elem *head; -+ int stack_size; -+ bool strict_alignment; -+ bool test_state_freq; -+ 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; -+ bool explore_alu_limits; -+ bool allow_ptr_leaks; -+ bool allow_uninit_stack; -+ bool allow_ptr_to_map_access; -+ bool bpf_capable; -+ bool bypass_spec_v1; -+ bool bypass_spec_v4; -+ bool seen_direct_write; -+ 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[257]; -+ struct bpf_id_pair idmap_scratch[75]; -+ struct { -+ int *insn_state; -+ int *insn_stack; -+ int cur_stack; -+ } cfg; -+ 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; -+}; -+ -+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 bpf_map *map_ptr; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ u32 mem_size; -+ struct { -+ long unsigned int raw1; -+ long unsigned int raw2; -+ } raw; -+ u32 subprogno; -+ }; -+ u32 id; -+ u32 ref_obj_id; -+ 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; -+ struct bpf_reg_state *parent; -+ u32 frameno; -+ s32 subreg_def; -+ enum bpf_reg_liveness live; -+ bool precise; -+}; -+ -+struct bpf_reference_state; -+ -+struct bpf_stack_state; -+ -+struct bpf_func_state { -+ struct bpf_reg_state regs[11]; -+ int callsite; -+ u32 frameno; -+ u32 subprogno; -+ int acquired_refs; -+ struct bpf_reference_state *refs; -+ int allocated_stack; -+ bool in_callback_fn; -+ struct bpf_stack_state *stack; -+}; -+ -+struct bpf_attach_target_info { -+ struct btf_func_model fmodel; -+ long int tgt_addr; -+ const char *tgt_name; -+ const struct btf_type *tgt_type; -+}; -+ -+struct bpf_link_primer { -+ struct bpf_link *link; -+ struct file *file; -+ int fd; -+ 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; -+}; -+ -+struct bpf_idx_pair { -+ u32 prev_idx; -+ u32 idx; -+}; -+ -+struct bpf_verifier_state { -+ struct bpf_func_state *frame[8]; -+ struct bpf_verifier_state *parent; -+ u32 branches; -+ u32 insn_idx; -+ u32 curframe; -+ u32 active_spin_lock; -+ bool speculative; -+ u32 first_insn_idx; -+ u32 last_insn_idx; -+ struct bpf_idx_pair *jmp_history; -+ u32 jmp_history_cnt; -+}; -+ -+struct bpf_verifier_state_list { -+ struct bpf_verifier_state state; -+ struct bpf_verifier_state_list *next; -+ int miss_cnt; -+ int hit_cnt; -+}; -+ -+struct bpf_insn_aux_data { -+ union { -+ enum bpf_reg_type ptr_type; -+ long unsigned int 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; -+ }; -+ u64 map_key_state; -+ int ctx_field_size; -+ u32 seen; -+ bool sanitize_stack_spill; -+ bool zext_dst; -+ u8 alu_state; -+ unsigned int orig_idx; -+ bool prune_point; -+}; -+ -+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_tracing_link { -+ struct bpf_link link; -+ enum bpf_attach_type attach_type; -+ struct bpf_trampoline *trampoline; -+ struct bpf_prog *tgt_prog; -+}; -+ -+struct bpf_raw_tp_link { -+ struct bpf_link link; -+ struct bpf_raw_event_map *btp; -+}; -+ -+typedef u64 (*btf_bpf_sys_bpf)(int, void *, u32); -+ -+typedef u64 (*btf_bpf_sys_close)(u32); -+ -+struct btf_member { -+ __u32 name_off; -+ __u32 type; -+ __u32 offset; -+}; -+ -+struct btf_param { -+ __u32 name_off; -+ __u32 type; -+}; -+ -+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 sk_action { -+ SK_DROP = 0, -+ SK_PASS = 1, -+}; -+ -+struct bpf_kfunc_desc { -+ struct btf_func_model func_model; -+ u32 func_id; -+ s32 imm; -+}; -+ -+struct bpf_kfunc_desc_tab { -+ struct bpf_kfunc_desc descs[256]; -+ u32 nr_descs; -+}; -+ -+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 *); -+ int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); -+ int (*reg)(void *); -+ void (*unreg)(void *); -+ const struct btf_type *type; -+ const struct btf_type *value_type; -+ const char *name; -+ struct btf_func_model func_models[64]; -+ u32 type_id; -+ u32 value_id; -+}; -+ -+typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); -+ -+enum bpf_stack_slot_type { -+ STACK_INVALID = 0, -+ STACK_SPILL = 1, -+ STACK_MISC = 2, -+ STACK_ZERO = 3, -+}; -+ -+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; -+}; -+ -+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, -+ MAX_BTF_SOCK_TYPE = 13, -+}; -+ -+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_call_arg_meta { -+ struct bpf_map *map_ptr; -+ bool raw_mode; -+ bool pkt_access; -+ int regno; -+ int access_size; -+ int mem_size; -+ u64 msize_max_value; -+ int ref_obj_id; -+ int func_id; -+ struct btf *btf; -+ u32 btf_id; -+ struct btf *ret_btf; -+ u32 ret_btf_id; -+ u32 subprogno; -+}; -+ -+enum reg_arg_type { -+ SRC_OP = 0, -+ DST_OP = 1, -+ DST_OP_NO_MARK = 2, -+}; -+ -+enum stack_access_src { -+ ACCESS_DIRECT = 1, -+ ACCESS_HELPER = 2, -+}; -+ -+struct bpf_reg_types { -+ const enum bpf_reg_type types[10]; -+ u32 *btf_id; -+}; -+ -+enum { -+ AT_PKT_END = 4294967295, -+ BEYOND_PKT_END = 4294967294, -+}; -+ -+typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); -+ -+enum { -+ REASON_BOUNDS = 4294967295, -+ REASON_TYPE = 4294967294, -+ REASON_PATHS = 4294967293, -+ REASON_LIMIT = 4294967292, -+ REASON_STACK = 4294967291, -+}; -+ -+struct bpf_sanitize_info { -+ struct bpf_insn_aux_data aux; -+ bool mask_to_left; -+}; -+ -+enum { -+ DISCOVERED = 16, -+ EXPLORED = 32, -+ FALLTHROUGH = 1, -+ BRANCH___2 = 2, -+}; -+ -+enum { -+ DONE_EXPLORING = 0, -+ KEEP_EXPLORING = 1, -+}; -+ -+struct tree_descr { -+ const char *name; -+ const struct file_operations *ops; -+ int mode; -+}; -+ -+struct umd_info { -+ const char *driver_name; -+ struct file *pipe_to_umh; -+ struct file *pipe_from_umh; -+ struct path wd; -+ struct pid *tgid; -+}; -+ -+struct bpf_preload_info { -+ char link_name[16]; -+ int link_id; -+}; -+ -+struct bpf_preload_ops { -+ struct umd_info info; -+ int (*preload)(struct bpf_preload_info *); -+ int (*finish)(); -+ 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; -+}; -+ -+enum { -+ OPT_MODE = 0, -+}; -+ -+struct bpf_mount_opts { -+ umode_t mode; -+}; -+ -+struct bpf_pidns_info { -+ __u32 pid; -+ __u32 tgid; -+}; -+ -+struct bpf_cgroup_storage_info { -+ struct task_struct *task; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+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_get_smp_processor_id)(); -+ -+typedef u64 (*btf_bpf_get_numa_node_id)(); -+ -+typedef u64 (*btf_bpf_ktime_get_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_boot_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_coarse_ns)(); -+ -+typedef u64 (*btf_bpf_get_current_pid_tgid)(); -+ -+typedef u64 (*btf_bpf_get_current_uid_gid)(); -+ -+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)(); -+ -+typedef u64 (*btf_bpf_get_current_cgroup_id)(); -+ -+typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); -+ -+typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); -+ -+typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, long int *); -+ -+typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, long unsigned int *); -+ -+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_per_cpu_ptr)(const void *, u32); -+ -+typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); -+ -+struct bpf_bprintf_buffers { -+ char tmp_bufs[1536]; -+}; -+ -+typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); -+ -+union bpf_iter_link_info { -+ struct { -+ __u32 map_fd; -+ } map; -+}; -+ -+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 *); -+ -+enum bpf_iter_feature { -+ BPF_ITER_RESCHED = 1, -+}; -+ -+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; -+ 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_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: 56; -+ u8 target_private[0]; -+}; -+ -+typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, 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 bpf_iter_seq_task_common { -+ struct pid_namespace *ns; -+}; -+ -+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 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; -+ }; -+}; -+ -+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 bpf_iter__bpf_map_elem { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct bpf_map *map; -+ }; -+ union { -+ void *key; -+ }; -+ union { -+ void *value; -+ }; -+}; -+ -+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 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ raw_spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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; -+ long: 64; -+ 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 nr_scans; -+ bool percpu; -+ long: 56; -+ 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 bucket { -+ struct hlist_nulls_head head; -+ union { -+ raw_spinlock_t raw_lock; -+ spinlock_t lock; -+ }; -+}; -+ -+struct htab_elem; -+ -+struct bpf_htab { -+ struct bpf_map map; -+ struct bucket *buckets; -+ void *elems; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ atomic_t count; -+ u32 n_buckets; -+ u32 elem_size; -+ u32 hashrnd; -+ struct lock_class_key lockdep_key; -+ int *map_locked[8]; -+ 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 bpf_htab *htab; -+ struct pcpu_freelist_node fnode; -+ struct htab_elem *batch_flink; -+ }; -+ }; -+ }; -+ union { -+ struct callback_head rcu; -+ struct bpf_lru_node lru_node; -+ }; -+ u32 hash; -+ int: 32; -+ 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_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; -+}; -+ -+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_lpm_trie_key { -+ __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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cgroup_storage_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct rb_root root; -+ struct list_head list; -+ 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 bpf_queue_stack { -+ struct bpf_map map; -+ raw_spinlock_t lock; -+ u32 head; -+ u32 tail; -+ u32 size; -+ char elements[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; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t spinlock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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); -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct bpf_local_storage_data sdata; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 bpf_local_storage_cache { -+ spinlock_t idx_lock; -+ u64 idx_usage_counts[16]; -+}; -+ -+enum { -+ BPF_LOCAL_STORAGE_GET_F_CREATE = 1, -+ BPF_SK_STORAGE_GET_F_CREATE = 1, -+}; -+ -+typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64); -+ -+typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); -+ -+struct lsm_blob_sizes { -+ int lbs_cred; -+ int lbs_file; -+ int lbs_inode; -+ int lbs_superblock; -+ int lbs_ipc; -+ int lbs_msg_msg; -+ int lbs_task; -+}; -+ -+struct bpf_storage_blob { -+ struct bpf_local_storage *storage; -+}; -+ -+typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64); -+ -+typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); -+ -+struct bpf_tramp_progs { -+ struct bpf_prog *progs[38]; -+ int nr_progs; -+}; -+ -+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, -+}; -+ -+struct btf_var { -+ __u32 linkage; -+}; -+ -+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; -+ __u32 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; -+}; -+ -+struct xdp_md { -+ __u32 data; -+ __u32 data_end; -+ __u32 data_meta; -+ __u32 ingress_ifindex; -+ __u32 rx_queue_index; -+ __u32 egress_ifindex; -+}; -+ -+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; -+}; -+ -+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_sk_lookup { -+ union { -+ union { -+ struct bpf_sock *sk; -+ }; -+ __u64 cookie; -+ }; -+ __u32 family; -+ __u32 protocol; -+ __u32 remote_ip4; -+ __u32 remote_ip6[4]; -+ __u32 remote_port; -+ __u32 local_ip4; -+ __u32 local_ip6[4]; -+ __u32 local_port; -+}; -+ -+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; -+}; -+ -+struct inet_listen_hashbucket { -+ spinlock_t lock; -+ unsigned int count; -+ union { -+ struct hlist_head head; -+ struct hlist_nulls_head nulls_head; -+ }; -+}; -+ -+struct inet_ehash_bucket; -+ -+struct inet_bind_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; -+ unsigned int bhash_size; -+ unsigned int lhash2_mask; -+ struct inet_listen_hashbucket *lhash2; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct inet_listen_hashbucket listening_hash[32]; -+}; -+ -+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 tcp_fastopen_context { -+ siphash_key_t key[2]; -+ int num; -+ struct callback_head rcu; -+}; -+ -+struct xdp_txq_info { -+ struct net_device *dev; -+}; -+ -+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; -+}; -+ -+struct bpf_sock_addr_kern { -+ struct sock *sk; -+ struct sockaddr *uaddr; -+ u64 tmp_reg; -+ void *t_ctx; -+}; -+ -+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 bpf_sysctl_kern { -+ struct ctl_table_header *head; -+ 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; -+ s32 retval; -+}; -+ -+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; -+ bool no_reuseport; -+}; -+ -+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 sock_reuseport { -+ struct callback_head rcu; -+ u16 max_socks; -+ u16 num_socks; -+ u16 num_closed_socks; -+ 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 sk_psock_progs { -+ struct bpf_prog *msg_parser; -+ struct bpf_prog *stream_parser; -+ struct bpf_prog *stream_verdict; -+ struct bpf_prog *skb_verdict; -+}; -+ -+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_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 { -+ struct sk_buff *skb; -+ 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; -+ struct sk_msg *cork; -+ struct sk_psock_progs progs; -+ struct strparser strp; -+ 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_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 work_struct work; -+ struct rcu_work rwork; -+}; -+ -+struct inet_ehash_bucket { -+ struct hlist_nulls_head chain; -+}; -+ -+struct inet_bind_hashbucket { -+ spinlock_t lock; -+ struct hlist_head chain; -+}; -+ -+struct ack_sample { -+ u32 pkts_acked; -+ s32 rtt_us; -+ u32 in_flight; -+}; -+ -+struct rate_sample { -+ u64 prior_mstamp; -+ u32 prior_delivered; -+ s32 delivered; -+ 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; -+ bool is_app_limited; -+ bool is_retrans; -+ bool is_ack_delayed; -+}; -+ -+struct sk_msg_sg { -+ u32 start; -+ u32 curr; -+ u32 end; -+ u32 size; -+ u32 copybreak; -+ long unsigned int copy; -+ struct scatterlist data[18]; -+}; -+ -+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 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 *); -+}; -+ -+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; -+}; -+ -+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_convert_unused = 30, -+}; -+ -+enum bpf_struct_walk_result { -+ WALK_SCALAR = 0, -+ WALK_PTR = 1, -+ WALK_STRUCT = 2, -+}; -+ -+struct btf_show_snprintf { -+ struct btf_show show; -+ int len_left; -+ int len; -+}; -+ -+struct btf_module { -+ struct list_head list; -+ struct module *module; -+ struct btf *btf; -+ struct bin_attribute *sysfs_attr; -+}; -+ -+typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); -+ -+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; -+ u32 image_off; -+ struct bpf_ksym ksym; -+}; -+ -+enum { -+ BPF_F_BROADCAST = 8, -+ BPF_F_EXCLUDE_INGRESS = 16, -+}; -+ -+struct bpf_devmap_val { -+ __u32 ifindex; -+ 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, -+}; -+ -+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; -+}; -+ -+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_RELEASE = 18, -+ NETDEV_NOTIFY_PEERS = 19, -+ NETDEV_JOIN = 20, -+ NETDEV_CHANGEUPPER = 21, -+ NETDEV_RESEND_IGMP = 22, -+ NETDEV_PRECHANGEMTU = 23, -+ NETDEV_CHANGEINFODATA = 24, -+ NETDEV_BONDING_INFO = 25, -+ NETDEV_PRECHANGEUPPER = 26, -+ NETDEV_CHANGELOWERSTATE = 27, -+ NETDEV_UDP_TUNNEL_PUSH_INFO = 28, -+ NETDEV_UDP_TUNNEL_DROP_INFO = 29, -+ NETDEV_CHANGE_TX_QUEUE_LEN = 30, -+ NETDEV_CVLAN_FILTER_PUSH_INFO = 31, -+ NETDEV_CVLAN_FILTER_DROP_INFO = 32, -+ NETDEV_SVLAN_FILTER_PUSH_INFO = 33, -+ NETDEV_SVLAN_FILTER_DROP_INFO = 34, -+}; -+ -+struct netdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+}; -+ -+struct bpf_nh_params { -+ u32 nh_family; -+ union { -+ u32 ipv4_nh; -+ struct in6_addr ipv6_nh; -+ }; -+}; -+ -+struct bpf_redirect_info { -+ u32 flags; -+ u32 tgt_index; -+ void *tgt_value; -+ struct bpf_map *map; -+ u32 map_id; -+ enum bpf_map_type map_type; -+ u32 kern_flags; -+ struct bpf_nh_params nh; -+}; -+ -+struct bpf_dtab; -+ -+struct bpf_dtab_netdev { -+ struct net_device *dev; -+ struct hlist_node index_hlist; -+ struct bpf_dtab *dtab; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cpumap_val { -+ __u32 qsize; -+ union { -+ int fd; -+ __u32 id; -+ } bpf_prog; -+}; -+ -+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; -+ -+struct bpf_cpu_map_entry { -+ u32 cpu; -+ int map_id; -+ struct xdp_bulk_queue *bulkq; -+ struct bpf_cpu_map *cmap; -+ struct ptr_ring *queue; -+ struct task_struct *kthread; -+ struct bpf_cpumap_val value; -+ struct bpf_prog *prog; -+ atomic_t refcnt; -+ struct callback_head rcu; -+ struct work_struct kthread_stop_wq; -+}; -+ -+struct bpf_cpu_map { -+ struct bpf_map map; -+ struct bpf_cpu_map_entry **cpu_map; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 rhlist_head { -+ struct rhash_head rhead; -+ struct rhlist_head *next; -+}; -+ -+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 *); -+ -+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 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; -+}; -+ -+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, -+}; -+ -+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]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct stack_map_irq_work { -+ struct irq_work irq_work; -+ struct mm_struct *mm; -+}; -+ -+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_task_stack)(struct task_struct *, void *, u32, u64); -+ -+typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); -+ -+enum { -+ BPF_F_SYSCTL_BASE_NAME = 1, -+}; -+ -+struct bpf_prog_list { -+ struct list_head node; -+ struct bpf_prog *prog; -+ struct bpf_cgroup_link *link; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+struct qdisc_skb_cb { -+ struct { -+ unsigned int pkt_len; -+ u16 slave_dev_queue_mapping; -+ u16 tc_classid; -+ }; -+ unsigned char data[20]; -+ u16 mru; -+ bool post_ct; -+}; -+ -+struct bpf_skb_data_end { -+ struct qdisc_skb_cb qdisc_cb; -+ void *data_meta; -+ void *data_end; -+}; -+ -+struct bpf_sockopt_buf { -+ u8 data[32]; -+}; -+ -+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, -+}; -+ -+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); -+ -+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_SCTP = 132, -+ IPPROTO_UDPLITE = 136, -+ IPPROTO_MPLS = 137, -+ IPPROTO_ETHERNET = 143, -+ IPPROTO_RAW = 255, -+ IPPROTO_MPTCP = 262, -+ IPPROTO_MAX = 263, -+}; -+ -+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, -+}; -+ -+struct reuseport_array { -+ struct bpf_map map; -+ struct sock *ptrs[0]; -+}; -+ -+enum bpf_struct_ops_state { -+ BPF_STRUCT_OPS_STATE_INIT = 0, -+ BPF_STRUCT_OPS_STATE_INUSE = 1, -+ BPF_STRUCT_OPS_STATE_TOBEFREE = 2, -+}; -+ -+struct bpf_struct_ops_value { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state 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; -+ char data[0]; -+}; -+ -+struct bpf_struct_ops_map { -+ struct bpf_map map; -+ const struct bpf_struct_ops *st_ops; -+ struct mutex lock; -+ struct bpf_prog **progs; -+ void *image; -+ struct bpf_struct_ops_value *uvalue; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct bpf_struct_ops_value kvalue; -+}; -+ -+struct bpf_struct_ops_tcp_congestion_ops { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state 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; -+ struct tcp_congestion_ops data; -+}; -+ -+struct sembuf { -+ short unsigned int sem_num; -+ short int sem_op; -+ short int sem_flg; -+}; -+ -+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 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; -+}; -+ -+enum { -+ BPF_F_BPRM_SECUREEXEC = 1, -+}; -+ -+struct watch_notification; -+ -+typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); -+ -+typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); -+ -+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_MAX = 16, -+}; -+ -+enum perf_event_ioc_flags { -+ PERF_IOC_FLAG_GROUP = 1, -+}; -+ -+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_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, -+}; -+ -+struct perf_guest_info_callbacks { -+ int (*is_in_guest)(); -+ int (*is_user_mode)(); -+ long unsigned int (*get_guest_ip)(); -+ void (*handle_intel_pt_intr)(); -+}; -+ -+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_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; -+ 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; -+ void **aux_pages; -+ void *aux_priv; -+ struct perf_event_mmap_page *user_page; -+ void *data_pages[0]; -+}; -+ -+struct match_token { -+ int token; -+ const char *pattern; -+}; -+ -+enum { -+ MAX_OPT_ARGS = 3, -+}; -+ -+struct min_heap { -+ void *data; -+ int nr; -+ int size; -+}; -+ -+struct min_heap_callbacks { -+ int elem_size; -+ bool (*less)(const void *, const void *); -+ void (*swp)(void *, void *); -+}; -+ -+typedef int (*remote_function_f)(void *); -+ -+struct remote_function_call { -+ struct task_struct *p; -+ remote_function_f func; -+ void *info; -+ int ret; -+}; -+ -+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; -+}; -+ -+enum event_type_t { -+ EVENT_FLEXIBLE = 1, -+ EVENT_PINNED = 2, -+ EVENT_TIME = 4, -+ EVENT_CPU = 8, -+ EVENT_ALL = 3, -+}; -+ -+struct __group_key { -+ int cpu; -+ struct cgroup *cgroup; -+}; -+ -+struct stop_event_data { -+ struct perf_event *event; -+ unsigned int restart; -+}; -+ -+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; -+ int recursion[4]; -+}; -+ -+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 = 4294967295, -+ 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; -+ u32 pid; -+ u32 tid; -+}; -+ -+struct perf_aux_event___2 { -+ struct perf_event_header header; -+ u64 offset; -+ u64 size; -+ u64 flags; -+}; -+ -+struct callchain_cpus_entries { -+ struct callback_head callback_head; -+ struct perf_callchain_entry *cpu_entries[0]; -+}; -+ -+struct bp_cpuinfo { -+ unsigned int cpu_pinned; -+ unsigned int *tsk_pinned; -+ unsigned int flexible; -+}; -+ -+struct bp_busy_slots { -+ unsigned int pinned; -+ unsigned int flexible; -+}; -+ -+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 uprobe_consumer *consumers; -+ struct inode *inode; -+ loff_t offset; -+ loff_t ref_ctr_offset; -+ long unsigned int flags; -+ struct arch_uprobe arch; -+}; -+ -+struct xol_area { -+ wait_queue_head_t wq; -+ atomic_t slot_count; -+ long unsigned int *bitmap; -+ struct vm_special_mapping xol_mapping; -+ struct page *pages[2]; -+ long unsigned int vaddr; -+}; -+ -+struct compact_control; -+ -+struct capture_control { -+ struct compact_control *cc; -+ struct page *page; -+}; -+ -+typedef int filler_t(void *, struct page *); -+ -+struct page_vma_mapped_walk { -+ struct page *page; -+ struct vm_area_struct *vma; -+ long unsigned int address; -+ pmd_t *pmd; -+ pte_t *pte; -+ spinlock_t *ptl; -+ unsigned int flags; -+}; -+ -+struct compact_control { -+ struct list_head freepages; -+ 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 rescan; -+ bool alloc_contig; -+}; -+ -+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 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; -+ atomic_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; -+ long: 64; -+ long: 64; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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; -+}; -+ -+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 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); -+ -+enum rseq_cpu_id_state { -+ RSEQ_CPU_ID_UNINITIALIZED = 4294967295, -+ RSEQ_CPU_ID_REGISTRATION_FAILED = 4294967294, -+}; -+ -+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; -+ 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 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___2 { -+ __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___2 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[2]; -+ }; -+ 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; -+ bool defunct; -+}; -+ -+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; -+}; -+ -+struct pkcs7_message; -+ -+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; -+}; -+ -+typedef int __kernel_rwf_t; -+ -+enum positive_aop_returns { -+ AOP_WRITEPAGE_ACTIVATE = 524288, -+ AOP_TRUNCATED_PAGE = 524289, -+}; -+ -+struct vm_event_state { -+ long unsigned int event[91]; -+}; -+ -+enum iter_type { -+ ITER_IOVEC = 0, -+ ITER_KVEC = 1, -+ ITER_BVEC = 2, -+ ITER_PIPE = 3, -+ ITER_XARRAY = 4, -+ ITER_DISCARD = 5, -+}; -+ -+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_THP_SUPPORT = 6, -+}; -+ -+struct wait_page_key { -+ struct page *page; -+ int bit_nr; -+ int page_match; -+}; -+ -+struct pagevec { -+ unsigned char nr; -+ bool percpu_pvec_drained; -+ struct page *pages[15]; -+}; -+ -+struct fid { -+ union { -+ struct { -+ u32 ino; -+ u32 gen; -+ u32 parent_ino; -+ u32 parent_gen; -+ } i32; -+ struct { -+ u32 block; -+ u16 partref; -+ u16 parent_partref; -+ u32 generation; -+ u32 parent_block; -+ u32 parent_generation; -+ } udf; -+ __u32 raw[0]; -+ }; -+}; -+ -+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; -+ 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_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 page *); -+ -+typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct page *); -+ -+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 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; -+ struct kmem_cache_order_objects oo; -+ struct kmem_cache_order_objects max; -+ 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[256]; -+}; -+ -+struct kmem_cache_cpu { -+ void **freelist; -+ long unsigned int tid; -+ struct page *page; -+ struct page *partial; -+}; -+ -+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 zap_details { -+ struct address_space *check_mapping; -+ long unsigned int first_index; -+ long unsigned int last_index; -+ struct page *single_page; -+}; -+ -+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, -+}; -+ -+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; -+ 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 {}; -+ -+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 *, int); -+ -+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); -+ -+enum wb_congested_state { -+ WB_async_congested = 0, -+ WB_sync_congested = 1, -+}; -+ -+enum { -+ XA_CHECK_SCHED = 4096, -+}; -+ -+enum wb_state { -+ WB_registered = 0, -+ WB_writeback_running = 1, -+ WB_has_dirty_io = 2, -+ WB_start_all = 3, -+}; -+ -+enum { -+ BLK_RW_ASYNC = 0, -+ BLK_RW_SYNC = 1, -+}; -+ -+struct wb_lock_cookie { -+ bool locked; -+ long unsigned int flags; -+}; -+ -+typedef int (*writepage_t)(struct page *, struct writeback_control *, void *); -+ -+enum page_memcg_data_flags { -+ MEMCG_DATA_OBJCGS = 1, -+ MEMCG_DATA_KMEM = 2, -+ __NR_MEMCG_DATA_FLAGS = 4, -+}; -+ -+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; -+}; -+ -+typedef void compound_page_dtor(struct page *); -+ -+struct trace_event_raw_mm_lru_insertion { -+ struct trace_entry ent; -+ struct page *page; -+ 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 page *page; -+ 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 page *); -+ -+typedef void (*btf_trace_mm_lru_activate)(void *, struct page *); -+ -+struct lru_rotate { -+ local_lock_t lock; -+ struct pagevec pvec; -+}; -+ -+struct lru_pvecs { -+ local_lock_t lock; -+ struct pagevec lru_add; -+ struct pagevec lru_deactivate_file; -+ struct pagevec lru_deactivate; -+ struct pagevec lru_lazyfree; -+ struct pagevec activate_page; -+}; -+ -+typedef struct { -+ long unsigned int val; -+} swp_entry_t; -+ -+enum lruvec_flags { -+ LRUVEC_CONGESTED = 0, -+}; -+ -+enum pgdat_flags { -+ PGDAT_DIRTY = 0, -+ PGDAT_WRITEBACK = 1, -+ PGDAT_RECLAIM_LOCKED = 2, -+}; -+ -+enum zone_flags { -+ ZONE_BOOSTED_WATERMARK = 0, -+ ZONE_RECLAIM_ACTIVE = 1, -+}; -+ -+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; -+}; -+ -+struct mem_cgroup_reclaim_cookie { -+ pg_data_t *pgdat; -+ unsigned int generation; -+}; -+ -+enum ttu_flags { -+ TTU_SPLIT_HUGE_PMD = 4, -+ TTU_IGNORE_MLOCK = 8, -+ TTU_SYNC = 16, -+ TTU_IGNORE_HWPOISON = 32, -+ TTU_BATCH_FLUSH = 64, -+ TTU_RMAP_LOCKED = 128, -+}; -+ -+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; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { -+ struct trace_entry ent; -+ int order; -+ gfp_t 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; -+ gfp_t 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; -+ isolate_mode_t isolate_mode; -+ int lru; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_writepage { -+ 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; -+ gfp_t gfp_flags; -+ 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_writepage {}; -+ -+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 {}; -+ -+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, isolate_mode_t, int); -+ -+typedef void (*btf_trace_mm_vmscan_writepage)(void *, struct page *); -+ -+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); -+ -+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; -+ 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 memcg_low_reclaim: 1; -+ unsigned int memcg_low_skipped: 1; -+ unsigned int hibernation_mode: 1; -+ unsigned int compaction_ready: 1; -+ unsigned int cache_trim_mode: 1; -+ unsigned int file_is_tiny: 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 page_references { -+ PAGEREF_RECLAIM = 0, -+ PAGEREF_RECLAIM_CLEAN = 1, -+ PAGEREF_KEEP = 2, -+ PAGEREF_ACTIVATE = 3, -+}; -+ -+enum scan_balance { -+ SCAN_EQUAL = 0, -+ SCAN_FRACT = 1, -+ SCAN_ANON = 2, -+ SCAN_FILE = 3, -+}; -+ -+enum transparent_hugepage_flag { -+ TRANSPARENT_HUGEPAGE_NEVER_DAX = 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 xattr; -+ -+typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); -+ -+struct xattr { -+ const char *name; -+ void *value; -+ size_t value_len; -+}; -+ -+struct constant_table { -+ const char *name; -+ int value; -+}; -+ -+enum { -+ MPOL_DEFAULT = 0, -+ MPOL_PREFERRED = 1, -+ MPOL_BIND = 2, -+ MPOL_INTERLEAVE = 3, -+ MPOL_LOCAL = 4, -+ MPOL_MAX = 5, -+}; -+ -+struct shared_policy { -+ struct rb_root root; -+ rwlock_t lock; -+}; -+ -+struct simple_xattrs { -+ struct list_head head; -+ spinlock_t lock; -+}; -+ -+struct simple_xattr { -+ struct list_head list; -+ char *name; -+ size_t size; -+ char value[0]; -+}; -+ -+struct shmem_inode_info { -+ spinlock_t lock; -+ unsigned int seals; -+ long unsigned int flags; -+ long unsigned int alloced; -+ long unsigned int swapped; -+ struct list_head shrinklist; -+ struct list_head swaplist; -+ struct shared_policy policy; -+ struct simple_xattrs xattrs; -+ atomic_t stop_eviction; -+ struct inode vfs_inode; -+}; -+ -+struct shmem_sb_info { -+ long unsigned int max_blocks; -+ struct percpu_counter used_blocks; -+ long unsigned int max_inodes; -+ long unsigned int free_inodes; -+ spinlock_t stat_lock; -+ umode_t mode; -+ unsigned char huge; -+ kuid_t uid; -+ kgid_t gid; -+ bool full_inums; -+ ino_t next_ino; -+ ino_t *ino_batch; -+ struct mempolicy *mpol; -+ spinlock_t shrinklist_lock; -+ struct list_head shrinklist; -+ long unsigned int shrinklist_len; -+}; -+ -+enum sgp_type { -+ SGP_READ = 0, -+ SGP_CACHE = 1, -+ SGP_NOHUGE = 2, -+ SGP_HUGE = 3, -+ SGP_WRITE = 4, -+ SGP_FALLOC = 5, -+}; -+ -+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_LUSTRE = 151, -+ FILEID_KERNFS = 254, -+ FILEID_INVALID = 255, -+}; -+ -+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; -+}; -+ -+enum shmem_param { -+ Opt_gid = 0, -+ Opt_huge = 1, -+ Opt_mode = 2, -+ Opt_mpol = 3, -+ Opt_nr_blocks = 4, -+ Opt_nr_inodes = 5, -+ Opt_size = 6, -+ Opt_uid = 7, -+ Opt_inode32 = 8, -+ Opt_inode64 = 9, -+}; -+ -+enum writeback_stat_item { -+ NR_DIRTY_THRESHOLD = 0, -+ NR_DIRTY_BG_THRESHOLD = 1, -+ NR_VM_WRITEBACK_STAT_ITEMS = 2, -+}; -+ -+struct contig_page_info { -+ long unsigned int free_pages; -+ long unsigned int free_blocks_total; -+ long unsigned int free_blocks_suitable; -+}; -+ -+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 mminit_level { -+ MMINIT_WARNING = 0, -+ MMINIT_VERIFY = 1, -+ MMINIT_TRACE = 2, -+}; -+ -+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]; -+}; -+ -+struct trace_event_raw_percpu_alloc_percpu { -+ struct trace_entry ent; -+ bool reserved; -+ bool is_atomic; -+ size_t size; -+ size_t align; -+ void *base_addr; -+ int off; -+ void *ptr; -+ 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 *, bool, bool, size_t, size_t, void *, int, void *); -+ -+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 pcpu_chunk { -+ struct list_head list; -+ int free_bytes; -+ struct pcpu_block_md chunk_md; -+ void *base_addr; -+ long unsigned int *alloc_map; -+ long unsigned int *bound_map; -+ struct pcpu_block_md *md_blocks; -+ void *data; -+ bool immutable; -+ bool isolated; -+ int start_offset; -+ int end_offset; -+ struct obj_cgroup **obj_cgroups; -+ int nr_pages; -+ int nr_populated; -+ int nr_empty_pop_pages; -+ long unsigned int populated[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc_node { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t 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; -+ gfp_t 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; -+ 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_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_alloc {}; -+ -+struct trace_event_data_offsets_kmem_alloc_node {}; -+ -+struct trace_event_data_offsets_kfree {}; -+ -+struct trace_event_data_offsets_kmem_cache_free { -+ u32 name; -+}; -+ -+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_rss_stat {}; -+ -+typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmalloc_node)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); -+ -+typedef void (*btf_trace_kmem_cache_alloc_node)(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 char *); -+ -+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); -+ -+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_rss_stat)(void *, struct mm_struct *, int, long int); -+ -+enum slab_state { -+ DOWN = 0, -+ PARTIAL = 1, -+ PARTIAL_NODE = 2, -+ UP = 3, -+ FULL = 4, -+}; -+ -+struct kmalloc_info_struct { -+ const char *name[3]; -+ 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 page *kp_page; -+ 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]; -+}; -+ -+enum pageblock_bits { -+ PB_migrate = 0, -+ PB_migrate_end = 2, -+ PB_migrate_skip = 3, -+ NR_PAGEBLOCK_BITS = 4, -+}; -+ -+typedef struct page *new_page_t(struct page *, long unsigned int); -+ -+typedef void free_page_t(struct page *, long unsigned int); -+ -+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; -+ gfp_t 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_migratepages)(void *, long unsigned int, int, struct list_head *); -+ -+typedef void (*btf_trace_mm_compaction_begin)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, bool); -+ -+typedef void (*btf_trace_mm_compaction_end)(void *, long unsigned int, long unsigned int, 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; -+ -+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 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 lru_status { -+ LRU_REMOVED = 0, -+ LRU_REMOVED_RETRY = 1, -+ LRU_ROTATE = 2, -+ LRU_SKIP = 3, -+ LRU_RETRY = 4, -+}; -+ -+typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, spinlock_t *, void *); -+ -+struct migration_target_control { -+ int nid; -+ nodemask_t *nmask; -+ gfp_t gfp_mask; -+}; -+ -+struct follow_page_context { -+ struct dev_pagemap *pgmap; -+ unsigned int page_mask; -+}; -+ -+struct trace_event_raw_mmap_lock_start_locking { -+ 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_raw_mmap_lock_released { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ u32 __data_loc_memcg_path; -+ bool write; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_start_locking { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_acquire_returned { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_released { -+ u32 memcg_path; -+}; -+ -+typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); -+ -+typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); -+ -+typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); -+ -+struct memcg_path { -+ local_lock_t lock; -+ char *buf; -+ local_t buf_idx; -+}; -+ -+typedef struct { -+ u64 val; -+} pfn_t; -+ -+typedef unsigned int pgtbl_mod_mask; -+ -+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, -+}; -+ -+struct copy_subpage_arg { -+ struct page *dst; -+ struct page *src; -+ struct vm_area_struct *vma; -+}; -+ -+enum { -+ HUGETLB_SHMFS_INODE = 1, -+ HUGETLB_ANONHUGE_INODE = 2, -+}; -+ -+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_data_offsets_vm_unmapped_area {}; -+ -+typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); -+ -+enum pgt_entry { -+ NORMAL_PMD = 0, -+ HPAGE_PMD = 1, -+ NORMAL_PUD = 2, -+ HPAGE_PUD = 3, -+}; -+ -+struct rmap_walk_control { -+ void *arg; -+ bool (*rmap_one)(struct page *, struct vm_area_struct *, long unsigned int, void *); -+ int (*done)(struct page *); -+ struct anon_vma * (*anon_lock)(struct page *); -+ bool (*invalid_vma)(struct vm_area_struct *, void *); -+}; -+ -+struct page_referenced_arg { -+ int mapcount; -+ int referenced; -+ long unsigned int vm_flags; -+ struct mem_cgroup *memcg; -+}; -+ -+struct make_exclusive_args { -+ struct mm_struct *mm; -+ long unsigned int address; -+ void *owner; -+ bool valid; -+}; -+ -+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; -+ }; -+}; -+ -+struct vfree_deferred { -+ struct llist_head list; -+ struct work_struct wq; -+}; -+ -+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 vmap_block { -+ spinlock_t lock; -+ struct vmap_area *va; -+ long unsigned int free; -+ long unsigned int dirty; -+ long unsigned int dirty_min; -+ long unsigned int dirty_max; -+ struct list_head free_list; -+ struct callback_head callback_head; -+ struct list_head purge; -+}; -+ -+struct page_frag_cache { -+ void *va; -+ __u32 offset; -+ unsigned int pagecnt_bias; -+ bool pfmemalloc; -+}; -+ -+typedef int fpi_t; -+ -+struct pagesets { -+ local_lock_t lock; -+}; -+ -+struct pcpu_drain { -+ struct zone *zone; -+ struct work_struct work; -+}; -+ -+struct mminit_pfnnid_cache { -+ long unsigned int last_start; -+ long unsigned int last_end; -+ int last_nid; -+}; -+ -+enum { -+ MMOP_OFFLINE = 0, -+ MMOP_ONLINE = 1, -+ MMOP_ONLINE_KERNEL = 2, -+ MMOP_ONLINE_MOVABLE = 3, -+}; -+ -+typedef void (*online_page_callback_t)(struct page *, unsigned int); -+ -+typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); -+ -+enum hugetlb_page_flags { -+ HPG_restore_reserve = 0, -+ HPG_migratable = 1, -+ HPG_temporary = 2, -+ HPG_freed = 3, -+ HPG_vmemmap_optimized = 4, -+ __NR_HPAGEFLAGS = 5, -+}; -+ -+enum mf_flags { -+ MF_COUNT_INCREASED = 1, -+ MF_ACTION_REQUIRED = 2, -+ MF_MUST_KILL = 4, -+ MF_SOFT_OFFLINE = 8, -+}; -+ -+struct madvise_walk_private { -+ struct mmu_gather *tlb; -+ bool pageout; -+}; -+ -+enum { -+ BIO_NO_PAGE_REF = 0, -+ BIO_CLONED = 1, -+ BIO_BOUNCED = 2, -+ BIO_WORKINGSET = 3, -+ BIO_QUIET = 4, -+ BIO_CHAIN = 5, -+ BIO_REFFED = 6, -+ BIO_THROTTLED = 7, -+ BIO_TRACE_COMPLETION = 8, -+ BIO_CGROUP_ACCT = 9, -+ BIO_TRACKED = 10, -+ BIO_REMAPPED = 11, -+ BIO_ZONE_WRITE_LOCKED = 12, -+ BIO_FLAG_LAST = 13, -+}; -+ -+struct vma_swap_readahead { -+ short unsigned int win; -+ short unsigned int offset; -+ short unsigned int nr_pte; -+ pte_t *ptes; -+}; -+ -+enum { -+ PERCPU_REF_INIT_ATOMIC = 1, -+ PERCPU_REF_INIT_DEAD = 2, -+ PERCPU_REF_ALLOW_REINIT = 4, -+}; -+ -+union swap_header { -+ struct { -+ char reserved[65526]; -+ 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 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; -+}; -+ -+struct frontswap_ops { -+ void (*init)(unsigned int); -+ int (*store)(unsigned int, long unsigned int, struct page *); -+ int (*load)(unsigned int, long unsigned int, struct page *); -+ void (*invalidate_page)(unsigned int, long unsigned int); -+ void (*invalidate_area)(unsigned int); -+ struct frontswap_ops *next; -+}; -+ -+struct crypto_async_request; -+ -+typedef void (*crypto_completion_t)(struct crypto_async_request *, int); -+ -+struct crypto_async_request { -+ struct list_head list; -+ crypto_completion_t complete; -+ void *data; -+ struct crypto_tfm *tfm; -+ u32 flags; -+}; -+ -+struct crypto_wait { -+ struct completion completion; -+ int err; -+}; -+ -+struct zpool; -+ -+struct zpool_ops { -+ int (*evict)(struct zpool *, long unsigned int); -+}; -+ -+enum zpool_mapmode { -+ ZPOOL_MM_RW = 0, -+ ZPOOL_MM_RO = 1, -+ ZPOOL_MM_WO = 2, -+ ZPOOL_MM_DEFAULT = 0, -+}; -+ -+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 crypto_acomp_ctx { -+ struct crypto_acomp *acomp; -+ struct acomp_req *req; -+ struct crypto_wait wait; -+ u8 *dstmem; -+ struct mutex *mutex; -+}; -+ -+struct zswap_pool { -+ struct zpool *zpool; -+ struct crypto_acomp_ctx *acomp_ctx; -+ struct kref kref; -+ struct list_head list; -+ struct work_struct release_work; -+ struct work_struct shrink_work; -+ struct hlist_node node; -+ char tfm_name[128]; -+}; -+ -+struct zswap_entry { -+ struct rb_node rbnode; -+ long unsigned int offset; -+ int refcount; -+ unsigned int length; -+ struct zswap_pool *pool; -+ union { -+ long unsigned int handle; -+ long unsigned int value; -+ }; -+}; -+ -+struct zswap_header { -+ swp_entry_t swpentry; -+}; -+ -+struct zswap_tree { -+ struct rb_root rbroot; -+ spinlock_t lock; -+}; -+ -+enum zswap_get_swap_ret { -+ ZSWAP_SWAPCACHE_NEW = 0, -+ ZSWAP_SWAPCACHE_EXIST = 1, -+ ZSWAP_SWAPCACHE_FAIL = 2, -+}; -+ -+struct dma_pool { -+ struct list_head page_list; -+ spinlock_t lock; -+ size_t size; -+ struct device *dev; -+ size_t allocation; -+ size_t boundary; -+ char name[32]; -+ struct list_head pools; -+}; -+ -+struct dma_page { -+ struct list_head page_list; -+ void *vaddr; -+ dma_addr_t dma; -+ unsigned int in_use; -+ unsigned int offset; -+}; -+ -+typedef void (*node_registration_func_t)(struct node *); -+ -+enum mcopy_atomic_mode { -+ MCOPY_ATOMIC_NORMAL = 0, -+ MCOPY_ATOMIC_ZEROPAGE = 1, -+ MCOPY_ATOMIC_CONTINUE = 2, -+}; -+ -+enum { -+ SUBPAGE_INDEX_SUBPOOL = 1, -+ SUBPAGE_INDEX_CGROUP = 2, -+ SUBPAGE_INDEX_CGROUP_RSVD = 3, -+ __MAX_CGROUP_SUBPAGE_INDEX = 3, -+ __NR_USED_SUBPAGE = 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 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; -+}; -+ -+enum hugetlb_memory_event { -+ HUGETLB_MAX = 0, -+ HUGETLB_NR_MEMORY_EVENTS = 1, -+}; -+ -+struct hugetlb_cgroup { -+ struct cgroup_subsys_state css; -+ struct page_counter hugepage[15]; -+ struct page_counter rsvd_hugepage[15]; -+ atomic_long_t events[15]; -+ atomic_long_t events_local[15]; -+ struct cgroup_file events_file[15]; -+ struct cgroup_file events_local_file[15]; -+}; -+ -+enum vma_resv_mode { -+ VMA_NEEDS_RESV = 0, -+ VMA_COMMIT_RESV = 1, -+ VMA_END_RESV = 2, -+ VMA_ADD_RESV = 3, -+ VMA_DEL_RESV = 4, -+}; -+ -+struct node_hstate { -+ struct kobject *hugepages_kobj; -+ struct kobject *hstate_kobjs[15]; -+}; -+ -+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 mempolicy_operations { -+ int (*create)(struct mempolicy *, const nodemask_t *); -+ void (*rebind)(struct mempolicy *, const nodemask_t *); -+}; -+ -+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; -+}; -+ -+enum { -+ MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12, -+ SECTION_INFO = 12, -+ MIX_SECTION_INFO = 13, -+ NODE_INFO = 14, -+ MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 14, -+}; -+ -+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; -+}; -+ -+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_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; -+}; -+ -+struct rmap_item; -+ -+struct mm_slot { -+ struct hlist_node link; -+ struct list_head mm_list; -+ struct rmap_item *rmap_list; -+ struct mm_struct *mm; -+}; -+ -+struct stable_node; -+ -+struct rmap_item { -+ struct rmap_item *rmap_list; -+ union { -+ struct anon_vma *anon_vma; -+ int nid; -+ }; -+ struct mm_struct *mm; -+ long unsigned int address; -+ unsigned int oldchecksum; -+ union { -+ struct rb_node node; -+ struct { -+ struct stable_node *head; -+ struct hlist_node hlist; -+ }; -+ }; -+}; -+ -+struct ksm_scan { -+ struct mm_slot *mm_slot; -+ long unsigned int address; -+ struct rmap_item **rmap_list; -+ long unsigned int seqnr; -+}; -+ -+struct 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; -+}; -+ -+enum get_ksm_page_flags { -+ GET_KSM_PAGE_NOLOCK = 0, -+ GET_KSM_PAGE_LOCK = 1, -+ GET_KSM_PAGE_TRYLOCK = 2, -+}; -+ -+typedef long unsigned int cycles_t; -+ -+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 track { -+ long unsigned int addr; -+ long unsigned int addrs[16]; -+ int cpu; -+ int pid; -+ long unsigned int when; -+}; -+ -+enum track_item { -+ TRACK_ALLOC = 0, -+ TRACK_FREE = 1, -+}; -+ -+struct detached_freelist { -+ struct page *page; -+ void *tail; -+ void *freelist; -+ int cnt; -+ struct kmem_cache *s; -+}; -+ -+struct location { -+ long unsigned int count; -+ long unsigned int addr; -+ 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[32]; -+ nodemask_t nodes; -+}; -+ -+struct loc_track { -+ long unsigned int max; -+ long unsigned int count; -+ struct location *loc; -+}; -+ -+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; -+}; -+ -+enum slab_modes { -+ M_NONE = 0, -+ M_PARTIAL = 1, -+ M_FULL = 2, -+ M_FREE = 3, -+}; -+ -+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; -+ struct page *b_page; -+ 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; -+}; -+ -+enum migrate_vma_direction { -+ MIGRATE_VMA_SELECT_SYSTEM = 1, -+ MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 2, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ 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_data_offsets_mm_migrate_pages {}; -+ -+struct trace_event_data_offsets_mm_migrate_pages_start {}; -+ -+typedef void (*btf_trace_mm_migrate_pages)(void *, 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); -+ -+enum scan_result { -+ SCAN_FAIL = 0, -+ SCAN_SUCCEED = 1, -+ SCAN_PMD_NULL = 2, -+ SCAN_EXCEED_NONE_PTE = 3, -+ SCAN_EXCEED_SWAP_PTE = 4, -+ SCAN_EXCEED_SHARED_PTE = 5, -+ SCAN_PTE_NON_PRESENT = 6, -+ SCAN_PTE_UFFD_WP = 7, -+ SCAN_PAGE_RO = 8, -+ SCAN_LACK_REFERENCED_PAGE = 9, -+ SCAN_PAGE_NULL = 10, -+ SCAN_SCAN_ABORT = 11, -+ SCAN_PAGE_COUNT = 12, -+ SCAN_PAGE_LRU = 13, -+ SCAN_PAGE_LOCK = 14, -+ SCAN_PAGE_ANON = 15, -+ SCAN_PAGE_COMPOUND = 16, -+ SCAN_ANY_PROCESS = 17, -+ SCAN_VMA_NULL = 18, -+ SCAN_VMA_CHECK = 19, -+ SCAN_ADDRESS_RANGE = 20, -+ SCAN_SWAP_CACHE_PAGE = 21, -+ SCAN_DEL_PAGE_LRU = 22, -+ SCAN_ALLOC_HUGE_PAGE_FAIL = 23, -+ SCAN_CGROUP_CHARGE_FAIL = 24, -+ SCAN_TRUNCATED = 25, -+ SCAN_PAGE_HAS_PRIVATE = 26, -+}; -+ -+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_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 {}; -+ -+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); -+ -+struct mm_slot___2 { -+ struct hlist_node hash; -+ struct list_head mm_node; -+ struct mm_struct *mm; -+ int nr_pte_mapped_thp; -+ long unsigned int pte_mapped_thp[8]; -+}; -+ -+struct khugepaged_scan { -+ struct list_head mm_head; -+ struct mm_slot___2 *mm_slot; -+ long unsigned int address; -+}; -+ -+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[256]; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum res_type { -+ _MEM = 0, -+ _MEMSWAP = 1, -+ _OOM_TYPE = 2, -+ _KMEM = 3, -+ _TCP = 4, -+}; -+ -+struct memory_stat { -+ const char *name; -+ unsigned int idx; -+}; -+ -+struct oom_wait_info { -+ struct mem_cgroup *memcg; -+ wait_queue_entry_t wait; -+}; -+ -+enum oom_status { -+ OOM_SUCCESS = 0, -+ OOM_FAILED = 1, -+ OOM_ASYNC = 2, -+ OOM_SKIPPED = 3, -+}; -+ -+struct obj_stock { -+ 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 memcg_stock_pcp { -+ struct mem_cgroup *cached; -+ unsigned int nr_pages; -+ struct obj_stock task_obj; -+ struct obj_stock irq_obj; -+ struct work_struct work; -+ long unsigned int flags; -+}; -+ -+enum { -+ RES_USAGE = 0, -+ RES_LIMIT = 1, -+ RES_MAX_USAGE = 2, -+ RES_FAILCNT = 3, -+ RES_SOFT_LIMIT = 4, -+}; -+ -+union mc_target { -+ struct page *page; -+ 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 uncharge_gather { -+ struct mem_cgroup *memcg; -+ long unsigned int nr_memory; -+ long unsigned int pgpgout; -+ long unsigned int nr_kmem; -+ struct page *dummy_page; -+}; -+ -+struct numa_stat { -+ const char *name; -+ unsigned int lru_mask; -+}; -+ -+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 swap_cgroup_ctrl { -+ struct page **map; -+ long unsigned int length; -+ spinlock_t lock; -+}; -+ -+struct swap_cgroup { -+ short unsigned int id; -+}; -+ -+enum { -+ RES_USAGE___2 = 0, -+ RES_RSVD_USAGE = 1, -+ RES_LIMIT___2 = 2, -+ RES_RSVD_LIMIT = 3, -+ RES_MAX_USAGE___2 = 4, -+ RES_RSVD_MAX_USAGE = 5, -+ RES_FAILCNT___2 = 6, -+ RES_RSVD_FAILCNT = 7, -+}; -+ -+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_SLAB = 2, -+ MF_MSG_DIFFERENT_COMPOUND = 3, -+ MF_MSG_POISONED_HUGE = 4, -+ MF_MSG_HUGE = 5, -+ MF_MSG_FREE_HUGE = 6, -+ MF_MSG_NON_PMD_HUGE = 7, -+ MF_MSG_UNMAP_FAILED = 8, -+ MF_MSG_DIRTY_SWAPCACHE = 9, -+ MF_MSG_CLEAN_SWAPCACHE = 10, -+ MF_MSG_DIRTY_MLOCKED_LRU = 11, -+ MF_MSG_CLEAN_MLOCKED_LRU = 12, -+ MF_MSG_DIRTY_UNEVICTABLE_LRU = 13, -+ MF_MSG_CLEAN_UNEVICTABLE_LRU = 14, -+ MF_MSG_DIRTY_LRU = 15, -+ MF_MSG_CLEAN_LRU = 16, -+ MF_MSG_TRUNCATED_LRU = 17, -+ MF_MSG_BUDDY = 18, -+ MF_MSG_BUDDY_2ND = 19, -+ MF_MSG_DAX = 20, -+ MF_MSG_UNSPLIT_THP = 21, -+ MF_MSG_UNKNOWN = 22, -+}; -+ -+typedef long unsigned int dax_entry_t; -+ -+struct __kfifo { -+ unsigned int in; -+ unsigned int out; -+ unsigned int mask; -+ unsigned int esize; -+ void *data; -+}; -+ -+struct to_kill { -+ struct list_head nd; -+ struct task_struct *tsk; -+ long unsigned int addr; -+ short int size_shift; -+}; -+ -+struct hwp_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 *, long unsigned int); -+}; -+ -+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; -+ spinlock_t lock; -+ struct work_struct work; -+}; -+ -+typedef u32 depot_stack_handle_t; -+ -+struct page_ext_operations { -+ size_t offset; -+ size_t size; -+ bool (*need)(); -+ void (*init)(); -+}; -+ -+enum page_ext_flags { -+ PAGE_EXT_OWNER = 0, -+ PAGE_EXT_OWNER_ALLOCATED = 1, -+}; -+ -+struct page_owner { -+ short unsigned int order; -+ short int last_migrate_reason; -+ gfp_t gfp_mask; -+ depot_stack_handle_t handle; -+ depot_stack_handle_t free_handle; -+ u64 ts_nsec; -+ u64 free_ts_nsec; -+ pid_t pid; -+}; -+ -+struct cleancache_filekey { -+ union { -+ ino_t ino; -+ __u32 fh[6]; -+ u32 key[6]; -+ } u; -+}; -+ -+struct cleancache_ops { -+ int (*init_fs)(size_t); -+ int (*init_shared_fs)(uuid_t *, size_t); -+ int (*get_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*put_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*invalidate_page)(int, struct cleancache_filekey, long unsigned int); -+ void (*invalidate_inode)(int, struct cleancache_filekey); -+ void (*invalidate_fs)(int); -+}; -+ -+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 zpool_driver; -+ -+struct zpool { -+ struct zpool_driver *driver; -+ void *pool; -+ const struct zpool_ops *ops; -+ bool evictable; -+ bool can_sleep_mapped; -+ struct list_head list; -+}; -+ -+struct zpool_driver { -+ char *type; -+ struct module *owner; -+ atomic_t refcount; -+ struct list_head list; -+ void * (*create)(const char *, gfp_t, const struct zpool_ops *, struct zpool *); -+ void (*destroy)(void *); -+ bool malloc_support_movable; -+ int (*malloc)(void *, size_t, gfp_t, long unsigned int *); -+ void (*free)(void *, long unsigned int); -+ int (*shrink)(void *, unsigned int, unsigned int *); -+ bool sleep_mapped; -+ void * (*map)(void *, long unsigned int, enum zpool_mapmode); -+ void (*unmap)(void *, long unsigned int); -+ u64 (*total_size)(void *); -+}; -+ -+struct zbud_pool; -+ -+struct zbud_ops { -+ int (*evict)(struct zbud_pool *, long unsigned int); -+}; -+ -+struct zbud_pool { -+ spinlock_t lock; -+ union { -+ struct list_head buddied; -+ struct list_head unbuddied[63]; -+ }; -+ struct list_head lru; -+ u64 pages_nr; -+ const struct zbud_ops *ops; -+ struct zpool *zpool; -+ const struct zpool_ops *zpool_ops; -+}; -+ -+struct zbud_header { -+ struct list_head buddy; -+ struct list_head lru; -+ unsigned int first_chunks; -+ unsigned int last_chunks; -+ bool under_reclaim; -+}; -+ -+enum buddy { -+ FIRST = 0, -+ LAST = 1, -+}; -+ -+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_EMPTY = 0, -+ ZS_ALMOST_EMPTY = 1, -+ ZS_ALMOST_FULL = 2, -+ ZS_FULL = 3, -+ NR_ZS_FULLNESS = 4, -+}; -+ -+enum zs_stat_type { -+ CLASS_EMPTY = 0, -+ CLASS_ALMOST_EMPTY = 1, -+ CLASS_ALMOST_FULL = 2, -+ CLASS_FULL = 3, -+ OBJ_ALLOCATED = 4, -+ OBJ_USED = 5, -+ NR_ZS_STAT_TYPE = 6, -+}; -+ -+struct zs_size_stat { -+ long unsigned int objs[6]; -+}; -+ -+struct size_class { -+ spinlock_t lock; -+ struct list_head fullness_list[4]; -+ 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[257]; -+ struct kmem_cache *handle_cachep; -+ struct kmem_cache *zspage_cachep; -+ atomic_long_t pages_allocated; -+ struct zs_pool_stats stats; -+ struct shrinker shrinker; -+ struct dentry *stat_dentry; -+ struct inode *inode; -+ struct work_struct free_work; -+ struct wait_queue_head migration_wait; -+ atomic_long_t isolated_pages; -+ bool destroying; -+}; -+ -+struct zspage { -+ struct { -+ unsigned int fullness: 2; -+ unsigned int class: 9; -+ unsigned int isolated: 3; -+ unsigned int magic: 8; -+ }; -+ unsigned int inuse; -+ unsigned int freeobj; -+ struct page *first_page; -+ struct list_head list; -+ rwlock_t lock; -+}; -+ -+struct mapping_area { -+ char *vm_buf; -+ char *vm_addr; -+ enum zs_mapmode vm_mm; -+}; -+ -+struct zs_compact_control { -+ struct page *s_page; -+ struct page *d_page; -+ int obj_idx; -+}; -+ -+enum fixed_addresses { -+ FIX_HOLE = 0, -+ __end_of_permanent_fixed_addresses = 1, -+ FIX_BTMAP_END = 1, -+ FIX_BTMAP_BEGIN = 64, -+ __end_of_fixed_addresses = 65, -+}; -+ -+struct trace_event_raw_cma_alloc_class { -+ 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_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_data_offsets_cma_alloc_class { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cma_release { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cma_alloc_start { -+ u32 name; -+}; -+ -+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); -+ -+typedef void (*btf_trace_cma_alloc_busy_retry)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int); -+ -+struct cma___2; -+ -+struct cma_kobject { -+ struct kobject kobj; -+ struct cma___2 *cma; -+}; -+ -+struct cma___2 { -+ long unsigned int base_pfn; -+ long unsigned int count; -+ long unsigned int *bitmap; -+ unsigned int order_per_bit; -+ spinlock_t lock; -+ char name[64]; -+ atomic64_t nr_pages_succeeded; -+ atomic64_t nr_pages_failed; -+ struct cma_kobject *cma_kobj; -+}; -+ -+enum { -+ BAD_STACK = 4294967295, -+ NOT_STACK = 0, -+ GOOD_FRAME = 1, -+ GOOD_STACK = 2, -+}; -+ -+enum hmm_pfn_flags { -+ HMM_PFN_VALID = 0, -+ HMM_PFN_WRITE = 0, -+ HMM_PFN_ERROR = 0, -+ HMM_PFN_ORDER_SHIFT = 56, -+ HMM_PFN_REQ_FAULT = 0, -+ HMM_PFN_REQ_WRITE = 0, -+ HMM_PFN_FLAGS = 0, -+}; -+ -+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_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, -+}; -+ -+struct hugetlbfs_inode_info { -+ struct shared_policy policy; -+ struct inode vfs_inode; -+ unsigned int seals; -+}; -+ -+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 open_how { -+ __u64 flags; -+ __u64 mode; -+ __u64 resolve; -+}; -+ -+struct open_flags { -+ int open_flag; -+ umode_t mode; -+ int acc_mode; -+ int intent; -+ int lookup_flags; -+}; -+ -+typedef __kernel_rwf_t rwf_t; -+ -+enum vfs_get_super_keying { -+ vfs_get_single_super = 0, -+ vfs_get_single_reconf_super = 1, -+ vfs_get_keyed_super = 2, -+ vfs_get_independent_super = 3, -+}; -+ -+typedef struct kobject *kobj_probe_t(dev_t, int *, void *); -+ -+struct kobj_map; -+ -+struct char_device_struct { -+ struct char_device_struct *next; -+ unsigned int major; -+ unsigned int baseminor; -+ int minorct; -+ char name[64]; -+ struct cdev *cdev; -+}; -+ -+typedef unsigned int __kernel_mode_t; -+ -+typedef __kernel_mode_t mode_t; -+ -+struct stat { -+ long unsigned int st_dev; -+ ino_t st_ino; -+ long unsigned int st_nlink; -+ mode_t st_mode; -+ uid_t st_uid; -+ gid_t st_gid; -+ long unsigned int st_rdev; -+ long int st_size; -+ long unsigned int st_blksize; -+ long unsigned int st_blocks; -+ long unsigned int st_atime; -+ long unsigned int st_atime_nsec; -+ long unsigned int st_mtime; -+ long unsigned int st_mtime_nsec; -+ long unsigned int st_ctime; -+ long unsigned int st_ctime_nsec; -+ long unsigned int __unused4; -+ long unsigned int __unused5; -+ long unsigned int __unused6; -+}; -+ -+struct stat64 { -+ long long unsigned int st_dev; -+ long long 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; -+ short unsigned int __pad2; -+ long long int st_size; -+ int st_blksize; -+ long long int st_blocks; -+ int st_atime; -+ unsigned int st_atime_nsec; -+ int st_mtime; -+ unsigned int st_mtime_nsec; -+ int st_ctime; -+ unsigned int st_ctime_nsec; -+ unsigned int __unused4; -+ unsigned int __unused5; -+}; -+ -+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; -+ __u64 __spare2; -+ __u64 __spare3[12]; -+}; -+ -+struct mount; -+ -+struct mnt_namespace { -+ struct ns_common ns; -+ struct mount *root; -+ struct list_head list; -+ spinlock_t ns_lock; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ u64 seq; -+ wait_queue_head_t poll; -+ u64 event; -+ unsigned int mounts; -+ unsigned int pending_mounts; -+}; -+ -+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 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; -+ 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; -+}; -+ -+typedef short unsigned int ushort; -+ -+struct user_arg_ptr { -+ union { -+ const char * const *native; -+ } ptr; -+}; -+ -+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 name_snapshot { -+ struct qstr name; -+ unsigned char inline_name[32]; -+}; -+ -+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 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; -+ kuid_t dir_uid; -+ umode_t dir_mode; -+}; -+ -+struct renamedata { -+ struct user_namespace *old_mnt_userns; -+ struct inode *old_dir; -+ struct dentry *old_dentry; -+ struct user_namespace *new_mnt_userns; -+ struct inode *new_dir; -+ struct dentry *new_dentry; -+ struct inode **delegated_inode; -+ unsigned int flags; -+}; -+ -+enum { -+ LAST_NORM = 0, -+ LAST_ROOT = 1, -+ LAST_DOT = 2, -+ LAST_DOTDOT = 3, -+}; -+ -+enum { -+ WALK_TRAILING = 1, -+ WALK_MORE = 2, -+ WALK_NOFOLLOW = 4, -+}; -+ -+struct word_at_a_time {}; -+ -+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_clone_range { -+ __s64 src_fd; -+ __u64 src_offset; -+ __u64 src_length; -+ __u64 dest_offset; -+}; -+ -+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]; -+}; -+ -+typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); -+ -+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 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 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_extent { -+ __u64 fe_logical; -+ __u64 fe_physical; -+ __u64 fe_length; -+ __u64 fe_reserved64[2]; -+ __u32 fe_flags; -+ __u32 fe_reserved[3]; -+}; -+ -+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 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[1]; -+}; -+ -+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[1]; -+}; -+ -+struct getdents_callback { -+ 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; -+}; -+ -+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; -+ int len; -+ struct pollfd entries[0]; -+}; -+ -+enum dentry_d_lock_class { -+ DENTRY_D_LOCK_NORMAL = 0, -+ DENTRY_D_LOCK_NESTED = 1, -+}; -+ -+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; -+}; -+ -+enum file_time_flags { -+ S_ATIME = 1, -+ S_MTIME = 2, -+ S_CTIME = 4, -+ S_VERSION = 8, -+}; -+ -+struct mount_attr { -+ __u64 attr_set; -+ __u64 attr_clr; -+ __u64 propagation; -+ __u64 userns_fd; -+}; -+ -+struct proc_mounts { -+ struct mnt_namespace *ns; -+ struct path root; -+ int (*show)(struct seq_file *, struct vfsmount *); -+ struct mount cursor; -+}; -+ -+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; -+}; -+ -+enum umount_tree_flags { -+ UMOUNT_SYNC = 1, -+ UMOUNT_PROPAGATE = 2, -+ UMOUNT_CONNECTED = 4, -+}; -+ -+struct simple_transaction_argresp { -+ ssize_t size; -+ char data[0]; -+}; -+ -+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; -+}; -+ -+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_page_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_congest_waited_template { -+ struct trace_entry ent; -+ unsigned int usec_timeout; -+ unsigned int usec_delayed; -+ 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_page_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_congest_waited_template {}; -+ -+struct trace_event_data_offsets_writeback_single_inode_template {}; -+ -+struct trace_event_data_offsets_writeback_inode_template {}; -+ -+typedef void (*btf_trace_writeback_dirty_page)(void *, struct page *, struct address_space *); -+ -+typedef void (*btf_trace_wait_on_page_writeback)(void *, struct page *, 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 page *, 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_congestion_wait)(void *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_writeback_wait_iff_congested)(void *, unsigned int, unsigned int); -+ -+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 splice_desc { -+ size_t total_len; -+ unsigned int len; -+ unsigned int flags; -+ union { -+ void *userptr; -+ struct file *file; -+ void *data; -+ } u; -+ 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 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; -+}; -+ -+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]; -+}; -+ -+struct ns_get_path_task_args { -+ const struct proc_ns_operations *ns_ops; -+ struct task_struct *task; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct dax_device; -+ -+struct iomap_page_ops; -+ -+struct iomap___2 { -+ 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_page_ops *page_ops; -+}; -+ -+struct iomap_page_ops { -+ int (*page_prepare)(struct inode *, loff_t, unsigned int, struct iomap___2 *); -+ void (*page_done)(struct inode *, loff_t, unsigned int, struct page *, struct iomap___2 *); -+}; -+ -+struct decrypt_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; -+}; -+ -+enum stat_group { -+ STAT_READ = 0, -+ STAT_WRITE = 1, -+ STAT_DISCARD = 2, -+ STAT_FLUSH = 3, -+ NR_STAT_GROUPS = 4, -+}; -+ -+enum { -+ DISK_EVENT_MEDIA_CHANGE = 1, -+ DISK_EVENT_EJECT_REQUEST = 2, -+}; -+ -+enum { -+ BIOSET_NEED_BVECS = 1, -+ BIOSET_NEED_RESCUER = 2, -+}; -+ -+struct bdev_inode { -+ struct block_device bdev; -+ struct inode vfs_inode; -+}; -+ -+struct blkdev_dio { -+ union { -+ struct kiocb *iocb; -+ struct task_struct *waiter; -+ }; -+ size_t size; -+ atomic_t ref; -+ bool multi_bio: 1; -+ bool should_dirty: 1; -+ bool is_sync: 1; -+ struct bio bio; -+}; -+ -+struct bd_holder_disk { -+ struct list_head list; -+ struct gendisk *disk; -+ int refcnt; -+}; -+ -+typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); -+ -+typedef void dio_submit_t(struct bio *, struct inode *, loff_t); -+ -+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; -+ dio_submit_t *submit_io; -+ 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; -+ int op; -+ int op_flags; -+ blk_qc_t bio_cookie; -+ struct gendisk *bio_disk; -+ struct inode *inode; -+ loff_t i_size; -+ dio_iodone_t *end_io; -+ 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 bvec_iter_all { -+ struct bio_vec bv; -+ int idx; -+ unsigned int done; -+}; -+ -+struct mpage_readpage_args { -+ struct bio *bio; -+ struct page *page; -+ 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; -+ unsigned int use_writepage; -+}; -+ -+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; -+ }; -+ 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]; -+}; -+ -+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 *); -+ const char *lsm; -+}; -+ -+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; -+}; -+ -+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 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 inotify_event_info { -+ struct fsnotify_event fse; -+ u32 mask; -+ int wd; -+ u32 sync_cookie; -+ int name_len; -+ char name[0]; -+}; -+ -+struct inotify_event { -+ __s32 wd; -+ __u32 mask; -+ __u32 cookie; -+ __u32 len; -+ char name[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 file_fh_totlen; -+ u8 name_len; -+ u8 pad; -+ 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_NUM = 5, -+}; -+ -+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 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_path_event { -+ struct fanotify_event fae; -+ struct path path; -+}; -+ -+struct fanotify_perm_event { -+ struct fanotify_event fae; -+ struct path path; -+ short unsigned int response; -+ short unsigned int state; -+ int fd; -+}; -+ -+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_response { -+ __s32 fd; -+ __u32 response; -+}; -+ -+struct epoll_event { -+ __poll_t events; -+ __u64 data; -+}; -+ -+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; -+ 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; -+ rwlock_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; -+ unsigned int napi_id; -+}; -+ -+struct ep_pqueue { -+ poll_table pt; -+ struct epitem *epi; -+}; -+ -+struct epitems_head { -+ struct hlist_head epitems; -+ struct epitems_head *next; -+}; -+ -+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 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 eventfd_ctx___2 { -+ struct kref kref; -+ wait_queue_head_t wqh; -+ __u64 count; -+ unsigned int flags; -+ int id; -+}; -+ -+enum userfaultfd_state { -+ UFFD_STATE_WAIT_API = 0, -+ UFFD_STATE_RUNNING = 1, -+}; -+ -+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; -+ enum userfaultfd_state state; -+ bool released; -+ bool mmap_changing; -+ struct mm_struct *mm; -+}; -+ -+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 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; -+}; -+ -+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 page **ring_pages; -+ long int nr_pages; -+ struct rcu_work free_rwork; -+ struct ctx_rq_wait *rq_wait; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct { -+ atomic_t reqs_available; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 { -+ spinlock_t ctx_lock; -+ struct list_head active_reqs; -+ long: 64; -+ 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 { -+ struct mutex ring_lock; -+ wait_queue_head_t wait; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ }; -+ struct { -+ unsigned int tail; -+ unsigned int completed_events; -+ spinlock_t completion_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ 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 page *internal_pages[8]; -+ struct file *aio_ring_file; -+ unsigned int id; -+ long: 32; -+ 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 done; -+ bool cancelled; -+ 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_poll_table { -+ struct poll_table_struct pt; -+ struct aio_kiocb *iocb; -+ int error; -+}; -+ -+struct __aio_sigset { -+ const sigset_t *sigmask; -+ size_t sigsetsize; -+}; -+ -+struct iomap_ops { -+ int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap___2 *, struct iomap___2 *); -+ int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap___2 *); -+}; -+ -+typedef loff_t (*iomap_actor_t)(struct inode *, loff_t, loff_t, void *, struct iomap___2 *, struct iomap___2 *); -+ -+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; -+ long unsigned int 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; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ struct page *zero_page; -+ void *radix_entry; -+ dev_t dev; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pmd_insert_mapping_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ long int length; -+ u64 pfn_val; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pte_fault_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int 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_insert_mapping { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ 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_pmd_insert_mapping_class {}; -+ -+struct trace_event_data_offsets_dax_pte_fault_class {}; -+ -+struct trace_event_data_offsets_dax_insert_mapping {}; -+ -+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 page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_insert_mapping)(void *, struct inode *, struct vm_fault *, long int, pfn_t, 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_insert_mapping)(void *, struct inode *, struct vm_fault *, void *); -+ -+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, -+}; -+ -+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 *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_pid; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *fl; -+ long unsigned int i_ino; -+ dev_t s_dev; -+ struct file_lock *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ long unsigned int fl_break_time; -+ long unsigned int fl_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 fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *); -+ -+typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lock *, struct file_lock *); -+ -+struct file_lock_list_struct { -+ spinlock_t lock; -+ struct hlist_head hlist; -+}; -+ -+struct locks_iterator { -+ int li_cpu; -+ loff_t li_pos; -+}; -+ -+typedef unsigned int __kernel_uid_t; -+ -+typedef unsigned int __kernel_gid_t; -+ -+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 core_vma_metadata { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int flags; -+ long unsigned int dump_size; -+}; -+ -+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 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 posix_acl_xattr_entry { -+ __le16 e_tag; -+ __le16 e_perm; -+ __le32 e_id; -+}; -+ -+struct posix_acl_xattr_header { -+ __le32 a_version; -+}; -+ -+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; -+ short unsigned int qlen; -+ struct rpc_timer timer_list; -+ const char *name; -+}; -+ -+struct nfs_seqid_counter { -+ ktime_t create_time; -+ int owner_id; -+ int flags; -+ u32 counter; -+ spinlock_t lock; -+ struct list_head list; -+ struct rpc_wait_queue wait; -+}; -+ -+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_state; -+ -+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 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; -+ unsigned int nwords; -+ struct rpc_rqst *rqst; -+}; -+ -+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 list_head 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_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; -+ int tk_rpc_status; -+ 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; -+ 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; -+ unsigned char tk_rebind_retry: 2; -+}; -+ -+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; -+ -+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_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_sysfs_client; -+ -+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_clnt { -+ atomic_t cl_count; -+ unsigned int cl_clid; -+ struct list_head cl_clients; -+ struct list_head cl_tasks; -+ 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; -+ 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; -+}; -+ -+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; -+ 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; -+ const char *servername; -+ const char *address_strings[6]; -+ struct dentry *debugfs; -+ atomic_t inject_disconnect; -+ 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 *); -+}; -+ -+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 (*buf_alloc)(struct rpc_task *); -+ void (*buf_free)(struct rpc_task *); -+ void (*prepare_request)(struct rpc_rqst *); -+ int (*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_ops; -+ -+struct svc_serv { -+ struct svc_program *sv_program; -+ struct svc_stat *sv_stats; -+ spinlock_t sv_lock; -+ 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; -+ struct svc_pool *sv_pools; -+ const struct svc_serv_ops *sv_ops; -+ struct list_head sv_cb_list; -+ spinlock_t sv_cb_lock; -+ wait_queue_head_t sv_cb_waitq; -+ 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 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; -+ 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; -+}; -+ -+struct svc_version; -+ -+struct svc_rqst; -+ -+struct svc_process_info; -+ -+struct svc_program { -+ struct svc_program *pg_next; -+ 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; -+ struct svc_stat *pg_stats; -+ int (*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_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 = 4294967295, -+}; -+ -+struct nfs4_label { -+ uint32_t lfs; -+ uint32_t pi; -+ u32 len; -+ char *label; -+}; -+ -+typedef struct { -+ char data[8]; -+} nfs4_verifier; -+ -+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_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 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 nlm_host; -+ -+struct nfs_iostats; -+ -+struct nfs_auth_info { -+ unsigned int flavor_len; -+ rpc_authflavor_t flavors[12]; -+}; -+ -+struct nfs_fscache_key; -+ -+struct fscache_cookie; -+ -+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; -+ atomic_long_t writeback; -+ 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; -+ __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 nfs_fscache_key *fscache_key; -+ struct fscache_cookie *fscache; -+ u32 pnfs_blksize; -+ u32 attr_bitmask[3]; -+ u32 attr_bitmask_nl[3]; -+ u32 exclcreat_bitmask[3]; -+ u32 cache_consistency_bitmask[3]; -+ u32 acl_bitmask; -+ u32 fh_expire_type; -+ struct pnfs_layoutdriver_type *pnfs_curr_ld; -+ struct rpc_wait_queue roc_rpcwaitq; -+ void *pnfs_ld_data; -+ struct rb_root state_owners; -+ struct ida openowner_id; -+ struct ida lockowner_id; -+ struct list_head state_owners_lru; -+ struct list_head layouts; -+ struct list_head delegations; -+ struct list_head ss_copies; -+ 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 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; -+ const char *cl_principal; -+ 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 fscache_cookie *fscache; -+ struct net *cl_net; -+ struct list_head pending_cb_stateids; -+}; -+ -+struct pnfs_layout_segment; -+ -+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; -+ }; -+ 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; -+ __u64 prev_cookie; -+ const char *name; -+ unsigned int len; -+ int eof; -+ struct nfs_fh *fh; -+ struct nfs_fattr *fattr; -+ struct nfs4_label *label; -+ 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 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; -+ 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; -+ 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 nfs4_label *, struct inode *); -+ int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); -+ int (*lookup)(struct inode *, struct dentry *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*access)(struct inode *, struct nfs_access_entry *); -+ 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 page *, 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); -+ 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); -+}; -+ -+struct nfs_access_entry { -+ struct rb_node rb_node; -+ struct list_head lru; -+ const struct cred *cred; -+ __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_fsinfo *); -+ 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 *); -+ 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; -+ int (*accept)(struct svc_rqst *, __be32 *); -+ int (*release)(struct svc_rqst *); -+ void (*domain_release)(struct auth_domain *); -+ int (*set_client)(struct svc_rqst *); -+}; -+ -+struct svc_cacherep; -+ -+struct svc_procedure; -+ -+struct svc_deferred_req; -+ -+struct svc_rqst { -+ struct list_head rq_all; -+ 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; -+ size_t rq_xprt_hlen; -+ 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[20]; -+ struct page **rq_respages; -+ struct page **rq_next_page; -+ struct page **rq_page_end; -+ struct kvec rq_vec[19]; -+ struct bio_vec rq_bvec[19]; -+ __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; -+ void *rq_auth_data; -+ 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 svc_cacherep *rq_cacherep; -+ struct task_struct *rq_task; -+ spinlock_t rq_lock; -+ struct net *rq_bc_net; -+ void **rq_lease_breaker; -+}; -+ -+struct svc_pool_stats { -+ atomic_long_t packets; -+ long unsigned int sockets_queued; -+ atomic_long_t threads_woken; -+ atomic_long_t threads_timedout; -+}; -+ -+struct svc_pool { -+ unsigned int sp_id; -+ spinlock_t sp_lock; -+ struct list_head sp_sockets; -+ unsigned int sp_nrthreads; -+ struct list_head sp_all_threads; -+ struct svc_pool_stats sp_stats; -+ long unsigned int sp_flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct svc_serv_ops { -+ void (*svo_shutdown)(struct svc_serv *, struct net *); -+ int (*svo_function)(void *); -+ void (*svo_enqueue_xprt)(struct svc_xprt *); -+ int (*svo_setup)(struct svc_serv *, struct svc_pool *, int); -+ struct module *svo_module; -+}; -+ -+struct svc_procedure { -+ __be32 (*pc_func)(struct svc_rqst *); -+ int (*pc_decode)(struct svc_rqst *, __be32 *); -+ int (*pc_encode)(struct svc_rqst *, __be32 *); -+ void (*pc_release)(struct svc_rqst *); -+ unsigned int pc_argsize; -+ 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; -+ struct cache_deferred_req handle; -+ size_t xprt_hlen; -+ int argslen; -+ __be32 args[0]; -+}; -+ -+struct svc_process_info { -+ union { -+ int (*dispatch)(struct svc_rqst *, __be32 *); -+ struct { -+ unsigned int lovers; -+ unsigned int hivers; -+ } mismatch; -+ }; -+}; -+ -+struct svc_version { -+ u32 vs_vers; -+ u32 vs_nproc; -+ const struct svc_procedure *vs_proc; -+ 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 *, __be32 *); -+}; -+ -+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 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 inode *, 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; -+ seqcount_spinlock_t so_reclaim_seqcount; -+ struct mutex so_delegreturn_mutex; -+}; -+ -+struct core_name { -+ char *corename; -+ int used; -+ int size; -+}; -+ -+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; -+ long unsigned int offset; -+ unsigned int 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_apply { -+ struct trace_entry ent; -+ dev_t dev; -+ u64 ino; -+ loff_t pos; -+ loff_t length; -+ unsigned int flags; -+ const void *ops; -+ void *actor; -+ long unsigned int caller; -+ 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_apply {}; -+ -+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 *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_releasepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_invalidatepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_apply_dstmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply_srcmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply)(void *, struct inode *, loff_t, loff_t, unsigned int, const void *, void *, long unsigned int); -+ -+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; -+ struct bio *io_bio; -+ struct bio io_inline_bio; -+}; -+ -+struct iomap_writepage_ctx; -+ -+struct iomap_writeback_ops { -+ int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t); -+ int (*prepare_ioend)(struct iomap_ioend *, int); -+ void (*discard_page)(struct page *, loff_t); -+}; -+ -+struct iomap_writepage_ctx { -+ struct iomap___2 iomap; -+ struct iomap_ioend *ioend; -+ const struct iomap_writeback_ops *ops; -+}; -+ -+typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); -+ -+struct iomap_page { -+ atomic_t read_bytes_pending; -+ atomic_t write_bytes_pending; -+ spinlock_t uptodate_lock; -+ long unsigned int uptodate[0]; -+}; -+ -+struct iomap_readpage_ctx { -+ struct page *cur_page; -+ bool cur_page_in_bio; -+ struct bio *bio; -+ struct readahead_control *rac; -+}; -+ -+enum { -+ IOMAP_WRITE_F_UNSHARE = 1, -+}; -+ -+struct iomap_dio_ops { -+ int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); -+ blk_qc_t (*submit_io)(struct inode *, struct iomap___2 *, struct bio *, loff_t); -+}; -+ -+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; -+ bool wait_for_completion; -+ union { -+ struct { -+ struct iov_iter *iter; -+ struct task_struct *waiter; -+ struct request_queue *last_queue; -+ blk_qc_t cookie; -+ } submit; -+ struct { -+ struct work_struct work; -+ } aio; -+ }; -+}; -+ -+struct fiemap_ctx { -+ struct fiemap_extent_info *fi; -+ struct iomap___2 prev; -+}; -+ -+struct iomap_swapfile_info { -+ struct iomap___2 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 { -+ 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; -+}; -+ -+struct qtree_fmt_operations { -+ void (*mem2disk_dqblk)(void *, struct dquot *); -+ void (*disk2mem_dqblk)(struct dquot *, void *); -+ int (*is_id)(void *, struct dquot *); -+}; -+ -+struct qtree_mem_dqinfo { -+ struct super_block *dqi_sb; -+ int dqi_type; -+ unsigned int dqi_blocks; -+ unsigned int dqi_free_blk; -+ unsigned int dqi_free_entry; -+ unsigned int dqi_blocksize_bits; -+ unsigned int dqi_entry_size; -+ unsigned int dqi_usable_bs; -+ unsigned int dqi_qtree_depth; -+ const struct qtree_fmt_operations *dqi_ops; -+}; -+ -+struct v2_disk_dqheader { -+ __le32 dqh_magic; -+ __le32 dqh_version; -+}; -+ -+struct v2r0_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_ihardlimit; -+ __le32 dqb_isoftlimit; -+ __le32 dqb_curinodes; -+ __le32 dqb_bhardlimit; -+ __le32 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2r1_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_pad; -+ __le64 dqb_ihardlimit; -+ __le64 dqb_isoftlimit; -+ __le64 dqb_curinodes; -+ __le64 dqb_bhardlimit; -+ __le64 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2_disk_dqinfo { -+ __le32 dqi_bgrace; -+ __le32 dqi_igrace; -+ __le32 dqi_flags; -+ __le32 dqi_blocks; -+ __le32 dqi_free_blk; -+ __le32 dqi_free_entry; -+}; -+ -+struct qt_disk_dqdbheader { -+ __le32 dqdh_next_free; -+ __le32 dqdh_prev_free; -+ __le16 dqdh_entries; -+ __le16 dqdh_pad1; -+ __le32 dqdh_pad2; -+}; -+ -+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 u32 compat_uint_t; -+ -+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; -+}; -+ -+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 proc_maps_private { -+ struct inode *inode; -+ struct task_struct *task; -+ struct mm_struct *mm; -+ struct vm_area_struct *tail_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; -+ u64 pss; -+ u64 pss_anon; -+ u64 pss_file; -+ u64 pss_shmem; -+ u64 pss_locked; -+ u64 swap_pss; -+ bool check_shmem_swap; -+}; -+ -+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 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[256]; -+}; -+ -+struct numa_maps_private { -+ struct proc_maps_private proc_maps; -+ struct numa_maps md; -+}; -+ -+struct pde_opener { -+ struct list_head lh; -+ struct file *file; -+ bool closing; -+ struct completion *c; -+}; -+ -+enum { -+ BIAS = 2147483648, -+}; -+ -+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___2 = 0, -+ Opt_hidepid = 1, -+ Opt_subset = 2, -+}; -+ -+struct genradix_root; -+ -+struct __genradix { -+ struct genradix_root *root; -+}; -+ -+struct syscall_info { -+ __u64 sp; -+ struct seccomp_data data; -+}; -+ -+typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); -+ -+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; -+}; -+ -+struct fd_data { -+ fmode_t mode; -+ unsigned int fd; -+}; -+ -+struct sysctl_alias { -+ const char *kernel_param; -+ const char *sysctl_param; -+}; -+ -+struct seq_net_private { -+ struct net *net; -+}; -+ -+struct bpf_iter_aux_info___2; -+ -+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 vmcore { -+ struct list_head list; -+ long long unsigned int paddr; -+ long long unsigned int size; -+ loff_t offset; -+}; -+ -+struct vmcoredd_node { -+ struct list_head list; -+ void *buf; -+ unsigned int size; -+}; -+ -+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; -+ -+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 vmcoredd_data { -+ char dump_name[44]; -+ unsigned int size; -+ int (*vmcoredd_callback)(struct vmcoredd_data *, void *); -+}; -+ -+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_super_info { -+ struct super_block *sb; -+ struct kernfs_root *root; -+ const void *ns; -+ struct list_head node; -+}; -+ -+enum kernfs_node_flag { -+ KERNFS_ACTIVATED = 16, -+ KERNFS_NS = 32, -+ KERNFS_HAS_SEQ_SHOW = 64, -+ KERNFS_HAS_MMAP = 128, -+ KERNFS_LOCKDEP = 256, -+ KERNFS_SUICIDAL = 1024, -+ KERNFS_SUICIDED = 2048, -+ KERNFS_EMPTY_DIR = 4096, -+ KERNFS_HAS_RELEASE = 8192, -+}; -+ -+struct kernfs_open_node { -+ atomic_t refcnt; -+ atomic_t event; -+ wait_queue_head_t poll; -+ struct list_head files; -+}; -+ -+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 *); -+ int (*commit_item)(struct config_item *); -+ void (*disconnect_notify)(struct config_group *, struct config_item *); -+ void (*drop_item)(struct config_group *, struct config_item *); -+}; -+ -+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; -+}; -+ -+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 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___2 = 0, -+ Opt_gid___3 = 1, -+ Opt_mode___2 = 2, -+ Opt_ptmxmode = 3, -+ Opt_newinstance = 4, -+ Opt_max = 5, -+ Opt_err = 6, -+}; -+ -+struct pts_fs_info { -+ struct ida allocated_ptys; -+ struct pts_mount_opts mount_opts; -+ struct super_block *sb; -+ struct dentry *ptmx_dentry; -+}; -+ -+struct ramfs_mount_opts { -+ umode_t mode; -+}; -+ -+struct ramfs_fs_info { -+ struct ramfs_mount_opts mount_opts; -+}; -+ -+enum ramfs_param { -+ Opt_mode___3 = 0, -+}; -+ -+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___4 = 0, -+ Opt_min_size = 1, -+ Opt_mode___4 = 2, -+ Opt_nr_inodes___2 = 3, -+ Opt_pagesize = 4, -+ Opt_size___2 = 5, -+ Opt_uid___3 = 6, -+}; -+ -+struct getdents_callback___2 { -+ struct dir_context ctx; -+ char *name; -+ u64 ino; -+ int found; -+ int sequence; -+}; -+ -+typedef u16 wchar_t; -+ -+typedef u32 unicode_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; -+}; -+ -+enum utf16_endian { -+ UTF16_HOST_ENDIAN = 0, -+ UTF16_LITTLE_ENDIAN = 1, -+ UTF16_BIG_ENDIAN = 2, -+}; -+ -+struct utf8_table { -+ int cmask; -+ int cval; -+ int shift; -+ long int lmask; -+ long int lval; -+}; -+ -+typedef unsigned int autofs_wqt_t; -+ -+struct autofs_sb_info; -+ -+struct autofs_info { -+ struct dentry *dentry; -+ struct inode *inode; -+ int flags; -+ struct completion expire_complete; -+ struct list_head active; -+ struct list_head expiring; -+ struct autofs_sb_info *sbi; -+ 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; -+}; -+ -+enum { -+ Opt_err___2 = 0, -+ Opt_fd = 1, -+ Opt_uid___4 = 2, -+ Opt_gid___5 = 3, -+ Opt_pgrp = 4, -+ Opt_minproto = 5, -+ Opt_maxproto = 6, -+ Opt_indirect = 7, -+ Opt_direct = 8, -+ Opt_offset = 9, -+ Opt_strictexpire = 10, -+ Opt_ignore = 11, -+}; -+ -+struct autofs_packet_hdr { -+ int proto_version; -+ int type; -+}; -+ -+struct autofs_packet_expire { -+ struct autofs_packet_hdr hdr; -+ int len; -+ char name[256]; -+}; -+ -+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_notify { -+ NFY_NONE = 0, -+ NFY_MOUNT = 1, -+ NFY_EXPIRE = 2, -+}; -+ -+enum { -+ AUTOFS_IOC_EXPIRE_MULTI_CMD = 102, -+ AUTOFS_IOC_PROTOSUBVER_CMD = 103, -+ AUTOFS_IOC_ASKUMOUNT_CMD = 112, -+}; -+ -+struct autofs_packet_missing { -+ struct autofs_packet_hdr hdr; -+ autofs_wqt_t wait_queue_token; -+ int len; -+ char name[256]; -+}; -+ -+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 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)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); -+ -+struct debugfs_fsdata { -+ const struct file_operations *real_fops; -+ refcount_t active_users; -+ struct completion active_users_drained; -+}; -+ -+struct debugfs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+enum { -+ Opt_uid___5 = 0, -+ Opt_gid___6 = 1, -+ Opt_mode___5 = 2, -+ Opt_err___3 = 3, -+}; -+ -+struct debugfs_fs_info { -+ struct debugfs_mount_opts mount_opts; -+}; -+ -+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; -+}; -+ -+struct debugfs_devm_entry { -+ int (*read)(struct seq_file *, void *); -+ struct device *dev; -+}; -+ -+struct tracefs_dir_ops { -+ int (*mkdir)(const char *); -+ int (*rmdir)(const char *); -+}; -+ -+struct tracefs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+struct tracefs_fs_info { -+ struct tracefs_mount_opts mount_opts; -+}; -+ -+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___4 = 1, -+}; -+ -+struct crypto_comp { -+ struct crypto_tfm base; -+}; -+ -+struct pstore_zbackend { -+ int (*zbufsize)(size_t); -+ const char *name; -+}; -+ -+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_uid_t uid; -+ __kernel_gid_t gid; -+ __kernel_uid_t cuid; -+ __kernel_gid_t cgid; -+ __kernel_mode_t mode; -+ unsigned int seq; -+ unsigned int __pad1; -+ long long unsigned int __unused1; -+ long long unsigned int __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 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_msgseg { -+ struct msg_msgseg *next; -+}; -+ -+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_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 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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_undo_list { -+ refcount_t refcnt; -+ spinlock_t lock; -+ struct list_head list_proc; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sem sems[0]; -+}; -+ -+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; -+ long int shm_atime; -+ long int shm_dtime; -+ long int shm_ctime; -+ size_t shm_segsz; -+ __kernel_pid_t shm_cpid; -+ __kernel_pid_t shm_lpid; -+ long unsigned int shm_nattch; -+ long unsigned int __unused5; -+ long unsigned int __unused6; -+}; -+ -+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; -+ long: 64; -+ 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 msgbuf___2; -+ -+struct ipc_kludge { -+ struct msgbuf___2 *msgp; -+ long int msgtyp; -+}; -+ -+struct msqid_ds___2; -+ -+struct mqueue_fs_context { -+ struct ipc_namespace *ipc_ns; -+}; -+ -+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 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; -+}; -+ -+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___2 watch; -+ __u32 key_id; -+ __u32 aux; -+}; -+ -+struct assoc_array_edit; -+ -+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___2 { -+ 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]; -+}; -+ -+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; -+}; -+ -+struct keyring_read_iterator_context { -+ size_t buflen; -+ size_t count; -+ key_serial_t *buffer; -+}; -+ -+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]; -+}; -+ -+struct user_key_payload { -+ struct callback_head rcu; -+ short unsigned int datalen; -+ long: 48; -+ char data[0]; -+}; -+ -+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 { -+ 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 *); -+ unsigned int reqsize; -+ struct crypto_alg base; -+}; -+ -+struct dh { -+ void *key; -+ void *p; -+ void *q; -+ void *g; -+ unsigned int key_size; -+ unsigned int p_size; -+ unsigned int q_size; -+ unsigned int g_size; -+}; -+ -+struct dh_completion { -+ struct completion completion; -+ int err; -+}; -+ -+struct kdf_sdesc { -+ struct shash_desc shash; -+ char ctx[0]; -+}; -+ -+enum { -+ Opt_err___5 = 0, -+ Opt_enc = 1, -+ Opt_hash = 2, -+}; -+ -+enum chacha20poly1305_lengths { -+ XCHACHA20POLY1305_NONCE_SIZE = 24, -+ CHACHA20POLY1305_KEY_SIZE = 32, -+ CHACHA20POLY1305_AUTHTAG_SIZE = 16, -+}; -+ -+enum { -+ big_key_data = 0, -+ big_key_path = 1, -+ big_key_path_2nd_part = 2, -+ big_key_len = 3, -+}; -+ -+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__LAST = 20, -+}; -+ -+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)(); -+ int (*seal)(struct trusted_key_payload *, char *); -+ int (*unseal)(struct trusted_key_payload *, char *); -+ int (*get_random)(unsigned char *, size_t); -+ void (*exit)(); -+}; -+ -+struct trusted_key_source { -+ char *name; -+ struct trusted_key_ops *ops; -+}; -+ -+enum { -+ Opt_err___6 = 0, -+ Opt_new = 1, -+ Opt_load = 2, -+ Opt_update = 3, -+}; -+ -+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 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); -+ 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[3]; -+ const struct attribute_group *groups[8]; -+ unsigned int groups_cnt; -+ u32 nr_allocated_banks; -+ struct tpm_bank_info *allocated_banks; -+ struct tpm_space work_space; -+ u32 last_cc; -+ u32 nr_commands; -+ u32 *cc_attrs_tbl; -+ int locality; -+}; -+ -+struct tpm_header { -+ __be16 tag; -+ __be32 length; -+ union { -+ __be32 ordinal; -+ __be32 return_code; -+ }; -+} __attribute__((packed)); -+ -+enum tpm_buf_flags { -+ TPM_BUF_OVERFLOW = 1, -+}; -+ -+struct tpm_buf { -+ unsigned int flags; -+ u8 *data; -+}; -+ -+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 osapsess { -+ uint32_t handle; -+ unsigned char secret[20]; -+ unsigned char enonce[20]; -+}; -+ -+enum { -+ SEAL_keytype = 1, -+ SRK_keytype = 4, -+}; -+ -+struct sdesc { -+ struct shash_desc shash; -+ char ctx[0]; -+}; -+ -+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___2 = 7, -+ Opt_policydigest = 8, -+ Opt_policyhandle = 9, -+}; -+ -+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 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_md2WithRSAEncryption = 11, -+ OID_md3WithRSAEncryption = 12, -+ OID_md4WithRSAEncryption = 13, -+ OID_sha1WithRSAEncryption = 14, -+ OID_sha256WithRSAEncryption = 15, -+ OID_sha384WithRSAEncryption = 16, -+ OID_sha512WithRSAEncryption = 17, -+ OID_sha224WithRSAEncryption = 18, -+ OID_data = 19, -+ OID_signed_data = 20, -+ OID_email_address = 21, -+ OID_contentType = 22, -+ OID_messageDigest = 23, -+ OID_signingTime = 24, -+ OID_smimeCapabilites = 25, -+ OID_smimeAuthenticatedAttrs = 26, -+ OID_md2 = 27, -+ OID_md4 = 28, -+ OID_md5 = 29, -+ OID_mskrb5 = 30, -+ OID_krb5 = 31, -+ OID_krb5u2u = 32, -+ OID_msIndirectData = 33, -+ OID_msStatementType = 34, -+ OID_msSpOpusInfo = 35, -+ OID_msPeImageDataObjId = 36, -+ OID_msIndividualSPKeyPurpose = 37, -+ OID_msOutlookExpress = 38, -+ OID_ntlmssp = 39, -+ OID_spnego = 40, -+ OID_certAuthInfoAccess = 41, -+ OID_sha1 = 42, -+ OID_id_ansip384r1 = 43, -+ OID_sha256 = 44, -+ OID_sha384 = 45, -+ OID_sha512 = 46, -+ OID_sha224 = 47, -+ OID_commonName = 48, -+ OID_surname = 49, -+ OID_countryName = 50, -+ OID_locality = 51, -+ OID_stateOrProvinceName = 52, -+ OID_organizationName = 53, -+ OID_organizationUnitName = 54, -+ OID_title = 55, -+ OID_description = 56, -+ OID_name = 57, -+ OID_givenName = 58, -+ OID_initials = 59, -+ OID_generationalQualifier = 60, -+ OID_subjectKeyIdentifier = 61, -+ OID_keyUsage = 62, -+ OID_subjectAltName = 63, -+ OID_issuerAltName = 64, -+ OID_basicConstraints = 65, -+ OID_crlDistributionPoints = 66, -+ OID_certPolicies = 67, -+ OID_authorityKeyIdentifier = 68, -+ OID_extKeyUsage = 69, -+ OID_gostCPSignA = 70, -+ OID_gostCPSignB = 71, -+ OID_gostCPSignC = 72, -+ OID_gost2012PKey256 = 73, -+ OID_gost2012PKey512 = 74, -+ OID_gost2012Digest256 = 75, -+ OID_gost2012Digest512 = 76, -+ OID_gost2012Signature256 = 77, -+ OID_gost2012Signature512 = 78, -+ OID_gostTC26Sign256A = 79, -+ OID_gostTC26Sign256B = 80, -+ OID_gostTC26Sign256C = 81, -+ OID_gostTC26Sign256D = 82, -+ OID_gostTC26Sign512A = 83, -+ OID_gostTC26Sign512B = 84, -+ OID_gostTC26Sign512C = 85, -+ OID_sm2 = 86, -+ OID_sm3 = 87, -+ OID_SM2_with_SM3 = 88, -+ OID_sm3WithRSAEncryption = 89, -+ OID_TPMLoadableKey = 90, -+ OID_TPMImportableKey = 91, -+ OID_TPMSealedData = 92, -+ OID__NR = 93, -+}; -+ -+enum tpm_algorithms { -+ TPM_ALG_ERROR = 0, -+ TPM_ALG_SHA1 = 4, -+ 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, -+}; -+ -+enum tpm2_structures { -+ TPM2_ST_NO_SESSIONS = 32769, -+ TPM2_ST_SESSIONS = 32770, -+}; -+ -+enum tpm2_return_codes { -+ TPM2_RC_SUCCESS = 0, -+ TPM2_RC_HASH = 131, -+ TPM2_RC_HANDLE = 139, -+ TPM2_RC_INITIALIZE = 256, -+ TPM2_RC_FAILURE = 257, -+ TPM2_RC_DISABLED = 288, -+ TPM2_RC_COMMAND_CODE = 323, -+ TPM2_RC_TESTING = 2314, -+ TPM2_RC_REFERENCE_H0 = 2320, -+ TPM2_RC_RETRY = 2338, -+}; -+ -+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_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 tpm2_permanent_handles { -+ TPM2_RS_PW = 1073741833, -+}; -+ -+enum tpm2_object_attributes { -+ TPM2_OA_FIXED_TPM = 2, -+ TPM2_OA_FIXED_PARENT = 16, -+ TPM2_OA_USER_WITH_AUTH = 64, -+}; -+ -+enum tpm2_session_attributes { -+ TPM2_SA_CONTINUE_SESSION = 1, -+}; -+ -+struct tpm2_hash { -+ unsigned int crypto_id; -+ unsigned int tpm_id; -+}; -+ -+struct tpm2_key_context { -+ u32 parent; -+ const u8 *pub; -+ u32 pub_len; -+ const u8 *priv; -+ u32 priv_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, -+}; -+ -+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 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; -+ }; -+ 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 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 { -+ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct skcipher_request *); -+ int (*decrypt)(struct skcipher_request *); -+ int (*init)(struct crypto_skcipher *); -+ void (*exit)(struct crypto_skcipher *); -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+ unsigned int chunksize; -+ unsigned int walksize; -+ 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___8 = 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 ecryptfs_token_types { -+ ECRYPTFS_PASSWORD = 0, -+ ECRYPTFS_PRIVATE_KEY = 1, -+}; -+ -+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 sctp_endpoint; -+ -+union security_list_options { -+ int (*binder_set_context_mgr)(struct task_struct *); -+ int (*binder_transaction)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_binder)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_file)(struct task_struct *, struct task_struct *, struct file *); -+ int (*ptrace_access_check)(struct task_struct *, unsigned int); -+ int (*ptrace_traceme)(struct task_struct *); -+ int (*capget)(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, 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 *, struct file *); -+ int (*bprm_check_security)(struct linux_binprm *); -+ void (*bprm_committing_creds)(struct linux_binprm *); -+ void (*bprm_committed_creds)(struct linux_binprm *); -+ 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)(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 (*sb_add_mnt_opt)(const char *, const char *, int, void **); -+ int (*move_mount)(const struct path *, const struct path *); -+ int (*dentry_init_security)(struct dentry *, int, const struct qstr *, 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 *); -+ int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, const char **, void **, size_t *); -+ int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); -+ int (*inode_create)(struct inode *, struct dentry *, umode_t); -+ 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 dentry *, struct iattr *); -+ int (*inode_getattr)(const struct path *); -+ int (*inode_setxattr)(struct user_namespace *, 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 user_namespace *, struct dentry *, const char *); -+ int (*inode_need_killpriv)(struct dentry *); -+ int (*inode_killpriv)(struct user_namespace *, struct dentry *); -+ int (*inode_getsecurity)(struct user_namespace *, 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)(const char *); -+ int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); -+ int (*file_permission)(struct file *, int); -+ int (*file_alloc_security)(struct file *); -+ void (*file_free_security)(struct file *); -+ int (*file_ioctl)(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 (*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_setpgid)(struct task_struct *, pid_t); -+ int (*task_getpgid)(struct task_struct *); -+ int (*task_getsid)(struct task_struct *); -+ void (*task_getsecid_subj)(struct task_struct *, 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 (*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 (*getprocattr)(struct task_struct *, 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 (*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 *, char *, int *, 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)(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 (*secmark_refcount_dec)(); -+ void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); -+ int (*tun_dev_alloc_security)(void **); -+ void (*tun_dev_free_security)(void *); -+ int (*tun_dev_create)(); -+ int (*tun_dev_attach_queue)(void *); -+ int (*tun_dev_attach)(struct sock *, void *); -+ int (*tun_dev_open)(void *); -+ int (*sctp_assoc_request)(struct sctp_endpoint *, struct sk_buff *); -+ int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); -+ void (*sctp_sk_clone)(struct sctp_endpoint *, 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 **); -+ void (*ib_free_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); -+ void (*key_free)(struct key *); -+ int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); -+ int (*key_getsecurity)(struct key *, char **); -+ int (*audit_rule_init)(u32, u32, char *, void **); -+ 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_alloc_security)(struct bpf_map *); -+ void (*bpf_map_free_security)(struct bpf_map *); -+ int (*bpf_prog_alloc_security)(struct bpf_prog_aux *); -+ void (*bpf_prog_free_security)(struct bpf_prog_aux *); -+ int (*locked_down)(enum lockdown_reason); -+ int (*lock_kernel_down)(const char *, enum lockdown_reason); -+ int (*perf_event_open)(struct perf_event_attr *, int); -+ int (*perf_event_alloc)(struct perf_event *); -+ void (*perf_event_free)(struct perf_event *); -+ int (*perf_event_read)(struct perf_event *); -+ int (*perf_event_write)(struct perf_event *); -+}; -+ -+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_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 sb_add_mnt_opt; -+ struct hlist_head move_mount; -+ struct hlist_head dentry_init_security; -+ struct hlist_head dentry_create_files_as; -+ struct hlist_head path_notify; -+ struct hlist_head inode_alloc_security; -+ struct hlist_head inode_free_security; -+ struct hlist_head inode_init_security; -+ struct hlist_head inode_init_security_anon; -+ struct hlist_head inode_create; -+ 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_getattr; -+ 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_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_getsecid; -+ struct hlist_head inode_copy_up; -+ struct hlist_head inode_copy_up_xattr; -+ struct hlist_head kernfs_init_security; -+ struct hlist_head file_permission; -+ struct hlist_head file_alloc_security; -+ struct hlist_head file_free_security; -+ struct hlist_head file_ioctl; -+ 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 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 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_setpgid; -+ struct hlist_head task_getpgid; -+ struct hlist_head task_getsid; -+ struct hlist_head task_getsecid_subj; -+ struct hlist_head task_getsecid_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 ipc_permission; -+ struct hlist_head ipc_getsecid; -+ 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 getprocattr; -+ struct hlist_head setprocattr; -+ struct hlist_head ismaclabel; -+ struct hlist_head secid_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_free_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 ib_pkey_access; -+ struct hlist_head ib_endport_manage_subnet; -+ struct hlist_head ib_alloc_security; -+ struct hlist_head ib_free_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_free; -+ struct hlist_head key_permission; -+ struct hlist_head key_getsecurity; -+ 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_alloc_security; -+ struct hlist_head bpf_map_free_security; -+ struct hlist_head bpf_prog_alloc_security; -+ struct hlist_head bpf_prog_free_security; -+ 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_free; -+ struct hlist_head perf_event_read; -+ struct hlist_head perf_event_write; -+}; -+ -+struct security_hook_list { -+ struct hlist_node list; -+ struct hlist_head *head; -+ union security_list_options hook; -+ char *lsm; -+}; -+ -+enum lsm_order { -+ LSM_ORDER_FIRST = 4294967295, -+ LSM_ORDER_MUTABLE = 0, -+}; -+ -+struct lsm_info { -+ const char *name; -+ enum lsm_order order; -+ long unsigned int flags; -+ int *enabled; -+ int (*init)(); -+ struct lsm_blob_sizes *blobs; -+}; -+ -+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_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_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, -+}; -+ -+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, -+}; -+ -+enum ethtool_link_ext_substate_cable_issue { -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, -+}; -+ -+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_ts_info { -+ __u32 cmd; -+ __u32 so_timestamping; -+ __s32 phc_index; -+ __u32 tx_types; -+ __u32 tx_reserved[3]; -+ __u32 rx_filters; -+ __u32 rx_reserved[3]; -+}; -+ -+struct ethtool_fecparam { -+ __u32 cmd; -+ __u32 active_fec; -+ __u32 fec; -+ __u32 reserved; -+}; -+ -+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_MASK_NBITS = 92, -+}; -+ -+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 reserved1[1]; -+ __u32 reserved[7]; -+ __u32 link_mode_masks[0]; -+}; -+ -+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; -+ u8 __link_ext_substate; -+ }; -+}; -+ -+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_eth_mac_stats { -+ 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 ethtool_eth_phy_stats { -+ u64 SymbolErrorDuringCarrier; -+}; -+ -+struct ethtool_eth_ctrl_stats { -+ u64 MACControlFramesTransmitted; -+ u64 MACControlFramesReceived; -+ u64 UnsupportedOpcodesReceived; -+}; -+ -+struct ethtool_pause_stats { -+ u64 tx_pause_frames; -+ u64 rx_pause_frames; -+}; -+ -+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 { -+ u64 undersize_pkts; -+ u64 oversize_pkts; -+ u64 fragments; -+ u64 jabbers; -+ u64 hist[10]; -+ u64 hist_tx[10]; -+}; -+ -+struct ethtool_module_eeprom { -+ u32 offset; -+ u32 length; -+ u8 page; -+ u8 bank; -+ u8 i2c_address; -+ u8 *data; -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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_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_state; -+ -+struct selinux_audit_data { -+ u32 ssid; -+ u32 tsid; -+ u16 tclass; -+ u32 requested; -+ u32 audited; -+ u32 denied; -+ int result; -+ struct selinux_state *state; -+}; -+ -+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; -+ } u; -+ union { -+ struct selinux_audit_data *selinux_audit_data; -+ }; -+}; -+ -+enum { -+ POLICYDB_CAPABILITY_NETPEER = 0, -+ POLICYDB_CAPABILITY_OPENPERM = 1, -+ POLICYDB_CAPABILITY_EXTSOCKCLASS = 2, -+ POLICYDB_CAPABILITY_ALWAYSNETWORK = 3, -+ POLICYDB_CAPABILITY_CGROUPSECLABEL = 4, -+ POLICYDB_CAPABILITY_NNP_NOSUID_TRANSITION = 5, -+ POLICYDB_CAPABILITY_GENFS_SECLABEL_SYMLINKS = 6, -+ __POLICYDB_CAPABILITY_MAX = 7, -+}; -+ -+struct selinux_avc; -+ -+struct selinux_policy; -+ -+struct selinux_state { -+ bool enforcing; -+ bool checkreqprot; -+ bool initialized; -+ bool policycap[7]; -+ struct page *status_page; -+ struct mutex status_lock; -+ struct selinux_avc *avc; -+ struct selinux_policy *policy; -+ struct mutex policy_mutex; -+}; -+ -+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 selinux_avc { -+ unsigned int avc_cache_threshold; -+ struct avc_cache avc_cache; -+}; -+ -+struct av_decision { -+ u32 allowed; -+ u32 auditallow; -+ u32 auditdeny; -+ u32 seqno; -+ u32 flags; -+}; -+ -+struct extended_perms_data { -+ u32 p[8]; -+}; -+ -+struct extended_perms_decision { -+ u8 used; -+ u8 driver; -+ struct extended_perms_data *allowed; -+ struct extended_perms_data *auditallow; -+ struct extended_perms_data *dontaudit; -+}; -+ -+struct extended_perms { -+ u16 len; -+ struct extended_perms_data drivers; -+}; -+ -+struct avc_cache_stats { -+ unsigned int lookups; -+ unsigned int misses; -+ unsigned int allocations; -+ unsigned int reclaims; -+ unsigned int frees; -+}; -+ -+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; -+ u32 tcontext; -+ u32 tclass; -+}; -+ -+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_callback_node { -+ int (*callback)(u32); -+ u32 events; -+ struct avc_callback_node *next; -+}; -+ -+typedef __u16 __sum16; -+ -+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 { -+ struct hlist_node node; -+ int hashent; -+ 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; -+}; -+ -+struct crypto_shash___2; -+ -+struct sctp_hmac_algo_param; -+ -+struct sctp_chunks_param; -+ -+struct sctp_endpoint { -+ struct sctp_ep_common base; -+ struct list_head asocs; -+ __u8 secret_key[32]; -+ __u8 *digest; -+ __u32 sndbuf_policy; -+ __u32 rcvbuf_policy; -+ struct crypto_shash___2 **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; -+ u32 secid; -+ u32 peer_secid; -+}; -+ -+struct sockaddr_in6 { -+ short unsigned int sin6_family; -+ __be16 sin6_port; -+ __be32 sin6_flowinfo; -+ struct in6_addr sin6_addr; -+ __u32 sin6_scope_id; -+}; -+ -+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 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 *); -+}; -+ -+enum nf_hook_ops_type { -+ NF_HOOK_OP_UNDEFINED = 0, -+ NF_HOOK_OP_NF_TABLES = 1, -+}; -+ -+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 = 4294966846, -+ NF_IP_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP_PRI_RAW = 4294966996, -+ NF_IP_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP_PRI_CONNTRACK = 4294967096, -+ NF_IP_PRI_MANGLE = 4294967146, -+ NF_IP_PRI_NAT_DST = 4294967196, -+ 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 = 4294966846, -+ NF_IP6_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP6_PRI_RAW = 4294966996, -+ NF_IP6_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP6_PRI_CONNTRACK = 4294967096, -+ NF_IP6_PRI_MANGLE = 4294967146, -+ NF_IP6_PRI_NAT_DST = 4294967196, -+ 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 socket_alloc { -+ struct socket socket; -+ struct inode vfs_inode; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_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; -+ __be32 inet_saddr; -+ __s16 uc_ttl; -+ __u16 cmsg_flags; -+ __be16 inet_sport; -+ __u16 inet_id; -+ struct ip_options_rcu *inet_opt; -+ int rx_dst_ifindex; -+ __u8 tos; -+ __u8 min_ttl; -+ __u8 mc_ttl; -+ __u8 pmtudisc; -+ __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 rcv_tos; -+ __u8 convert_csum; -+ int uc_index; -+ int mc_index; -+ __be32 mc_addr; -+ 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; -+}; -+ -+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; -+ __be32 flow_label; -+ __u32 frag_size; -+ __u16 __unused_1: 7; -+ __s16 hop_limit: 9; -+ __u16 mc_loop: 1; -+ __u16 __unused_2: 6; -+ __s16 mcast_hops: 9; -+ 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; -+ __u16 recverr: 1; -+ __u16 sndflow: 1; -+ __u16 repflow: 1; -+ __u16 pmtudisc: 3; -+ __u16 padding: 1; -+ __u16 srcprefs: 3; -+ __u16 dontfrag: 1; -+ __u16 autoflowlabel: 1; -+ __u16 autoflowlabel_set: 1; -+ __u16 mc_all: 1; -+ __u16 recverr_rfc4884: 1; -+ __u16 rtalert_isolate: 1; -+ __u8 min_hopcount; -+ __u8 tclass; -+ __be32 rcv_flowinfo; -+ __u32 dst_cookie; -+ __u32 rx_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 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 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; -+}; -+ -+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; -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+}; -+ -+struct udphdr { -+ __be16 source; -+ __be16 dest; -+ __be16 len; -+ __sum16 check; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct inet_skb_parm { -+ int iif; -+ struct ip_options opt; -+ u16 flags; -+ u16 frag_max_size; -+}; -+ -+struct tty_file_private { -+ struct tty_struct *tty; -+ struct file *file; -+ struct list_head list; -+}; -+ -+struct netlbl_lsm_cache { -+ refcount_t refcount; -+ void (*free)(const void *); -+ void *data; -+}; -+ -+struct netlbl_lsm_catmap { -+ u32 startbit; -+ u64 bitmap[4]; -+ struct netlbl_lsm_catmap *next; -+}; -+ -+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 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 = 13, -+ DCCP_PASSIVE_CLOSEREQ = 14, -+ DCCP_MAX_STATES = 15, -+}; -+ -+typedef __s32 sctp_assoc_t; -+ -+enum sctp_msg_flags { -+ MSG_NOTIFICATION = 32768, -+}; -+ -+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; -+ char: 8; -+} __attribute__((packed)); -+ -+struct sctphdr { -+ __be16 source; -+ __be16 dest; -+ __be32 vtag; -+ __le32 checksum; -+}; -+ -+struct sctp_chunkhdr { -+ __u8 type; -+ __u8 flags; -+ __be16 length; -+}; -+ -+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_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; -+ __u8 payload[0]; -+}; -+ -+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; -+ __u8 params[0]; -+}; -+ -+struct sctp_init_chunk { -+ struct sctp_chunkhdr chunk_hdr; -+ struct sctp_inithdr init_hdr; -+}; -+ -+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_gap_ack_block { -+ __be16 start; -+ __be16 end; -+}; -+ -+union sctp_sack_variable { -+ struct sctp_gap_ack_block gab; -+ __be32 dup; -+}; -+ -+struct sctp_sackhdr { -+ __be32 cum_tsn_ack; -+ __be32 a_rwnd; -+ __be16 num_gap_ack_blocks; -+ __be16 num_dup_tsns; -+ union sctp_sack_variable variable[0]; -+}; -+ -+struct sctp_heartbeathdr { -+ struct sctp_paramhdr info; -+}; -+ -+struct sctp_shutdownhdr { -+ __be32 cum_tsn_ack; -+}; -+ -+struct sctp_errhdr { -+ __be16 cause; -+ __be16 length; -+ __u8 variable[0]; -+}; -+ -+struct sctp_ecnehdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_cwrhdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_fwdtsn_skip { -+ __be16 stream; -+ __be16 ssn; -+}; -+ -+struct sctp_fwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_fwdtsn_skip skip[0]; -+}; -+ -+struct sctp_ifwdtsn_skip { -+ __be16 stream; -+ __u8 reserved; -+ __u8 flags; -+ __be32 mid; -+}; -+ -+struct sctp_ifwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_ifwdtsn_skip skip[0]; -+}; -+ -+struct sctp_addip_param { -+ struct sctp_paramhdr param_hdr; -+ __be32 crr_id; -+}; -+ -+struct sctp_addiphdr { -+ __be32 serial; -+ __u8 params[0]; -+}; -+ -+struct sctp_authhdr { -+ __be16 shkey_id; -+ __be16 hmac_id; -+ __u8 hmac[0]; -+}; -+ -+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_init_chunk peer_init[0]; -+}; -+ -+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 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_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 hostname_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]; -+ 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_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_scope { -+ SCTP_SCOPE_GLOBAL = 0, -+ SCTP_SCOPE_PRIVATE = 1, -+ SCTP_SCOPE_LINK = 2, -+ SCTP_SCOPE_LOOPBACK = 3, -+ SCTP_SCOPE_UNUSABLE = 4, -+}; -+ -+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 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; -+ int: 32; -+ struct sctp_pf *pf; -+ struct crypto_shash___2 *hmac; -+ char *sctp_hmac_alg; -+ struct sctp_endpoint *ep; -+ struct sctp_bind_bucket *bind_hash; -+ __u16 default_stream; -+ short: 16; -+ __u32 default_ppid; -+ __u16 default_flags; -+ short: 16; -+ __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; -+ short: 16; -+ __u32 flowlabel; -+ __u8 dscp; -+ char: 8; -+ __u16 pf_retrans; -+ __u16 ps_retrans; -+ short: 16; -+ __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; -+ short: 16; -+ 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; -+ int: 22; -+ atomic_t pd_mode; -+ struct sk_buff_head pd_lobby; -+ struct list_head auto_asconf_list; -+ int do_auto_asconf; -+ int: 32; -+} __attribute__((packed)); -+ -+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_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 (*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 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 { -+ __u32 last_rtx_chunks; -+ __u16 pmtu; -+ __u16 probe_size; -+ __u16 probe_high; -+ __u8 probe_count: 3; -+ __u8 raise_count: 5; -+ __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; -+}; -+ -+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 task_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; -+}; -+ -+struct file_security_struct { -+ u32 sid; -+ u32 fown_sid; -+ u32 isid; -+ u32 pseqno; -+}; -+ -+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; -+}; -+ -+struct msg_security_struct { -+ u32 sid; -+}; -+ -+struct ipc_security_struct { -+ u16 sclass; -+ u32 sid; -+}; -+ -+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 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 { -+ const char *fscontext; -+ const char *context; -+ const char *rootcontext; -+ const char *defcontext; -+}; -+ -+enum { -+ Opt_error___2 = 4294967295, -+ Opt_context = 0, -+ Opt_defcontext = 1, -+ Opt_fscontext = 2, -+ Opt_rootcontext = 3, -+ Opt_seclabel = 4, -+}; -+ -+struct selinux_policy_convert_data; -+ -+struct selinux_load_state { -+ struct selinux_policy *policy; -+ struct selinux_policy_convert_data *convert_data; -+}; -+ -+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; -+ unsigned 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 selinux_state *state; -+ struct super_block *sb; -+}; -+ -+struct policy_load_memory { -+ size_t len; -+ void *data; -+}; -+ -+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; -+}; -+ -+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_MAX = 39, -+}; -+ -+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_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_MAX = 119, -+}; -+ -+struct nlmsg_perm { -+ u16 nlmsg_type; -+ u32 perm; -+}; -+ -+struct netif_security_struct { -+ 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 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 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 hashtab_node { -+ void *key; -+ void *datum; -+ struct hashtab_node *next; -+}; -+ -+struct hashtab { -+ struct hashtab_node **htable; -+ u32 size; -+ u32 nel; -+}; -+ -+struct hashtab_info { -+ u32 slots_used; -+ u32 max_chain_len; -+}; -+ -+struct hashtab_key_params { -+ u32 (*hash)(const void *); -+ int (*cmp)(const void *, const void *); -+}; -+ -+struct symtab { -+ struct hashtab table; -+ u32 nprim; -+}; -+ -+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_str_cache { -+ struct callback_head rcu_member; -+ struct list_head lru_member; -+ struct sidtab_entry *parent; -+ u32 len; -+ char str[0]; -+}; -+ -+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[8192]; -+}; -+ -+struct sidtab_node_leaf { -+ struct sidtab_entry entries[630]; -+}; -+ -+struct sidtab_isid_entry { -+ int set; -+ struct sidtab_entry entry; -+}; -+ -+struct sidtab; -+ -+struct sidtab_convert_params { -+ int (*func)(struct context *, struct context *, void *); -+ void *args; -+ struct sidtab *target; -+}; -+ -+struct sidtab { -+ union sidtab_entry_inner roots[3]; -+ 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 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 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 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_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 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; -+ size_t len; -+ unsigned int policyvers; -+ unsigned int reject_unknown: 1; -+ unsigned int allow_unknown: 1; -+ u16 process_class; -+ u32 process_trans_perms; -+}; -+ -+struct perm_datum { -+ u32 value; -+}; -+ -+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 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_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; -+ void *fp; -+}; -+ -+struct cond_expr_node { -+ u32 expr_type; -+ u32 bool; -+}; -+ -+struct policydb_compat_info { -+ int version; -+ int sym_num; -+ int ocon_num; -+}; -+ -+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 convert_context_args { -+ struct selinux_state *state; -+ struct policydb *oldp; -+ struct policydb *newp; -+}; -+ -+struct selinux_policy_convert_data { -+ struct convert_context_args args; -+ struct sidtab_convert_params sidtab_params; -+}; -+ -+struct selinux_mapping { -+ u16 value; -+ unsigned int num_perms; -+ u32 perms[32]; -+}; -+ -+struct selinux_audit_rule { -+ u32 au_seqno; -+ struct context au_ctxt; -+}; -+ -+struct cond_insertf_data { -+ struct policydb *p; -+ struct avtab_node **dst; -+ struct cond_av_list *other; -+}; -+ -+struct rt6key { -+ struct in6_addr addr; -+ int plen; -+}; -+ -+struct rtable; -+ -+struct fnhe_hash_bucket; -+ -+struct fib_nh_common { -+ struct net_device *nhc_dev; -+ 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 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 should_flush: 1; -+ u8 dst_nocount: 1; -+ u8 dst_nopolicy: 1; -+ u8 fib6_destroying: 1; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 1; -+ struct callback_head rcu; -+ struct nexthop *nh; -+ struct fib6_nh fib6_nh[0]; -+}; -+ -+struct uncached_list; -+ -+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; -+ struct list_head rt6i_uncached; -+ struct uncached_list *rt6i_uncached_list; -+ 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; -+ atomic_t fib_rt_uncache; -+}; -+ -+struct fib6_node { -+ struct fib6_node *parent; -+ struct fib6_node *left; -+ struct fib6_node *right; -+ 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; -+}; -+ -+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; -+}; -+ -+enum { -+ XFRM_POLICY_TYPE_MAIN = 0, -+ XFRM_POLICY_TYPE_SUB = 1, -+ XFRM_POLICY_TYPE_MAX = 2, -+ XFRM_POLICY_TYPE_ANY = 255, -+}; -+ -+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_MAX = 32, -+}; -+ -+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 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_state_offload { -+ struct net_device *dev; -+ struct net_device *real_dev; -+ long unsigned int offload_handle; -+ unsigned int num_exthdrs; -+ u8 flags; -+}; -+ -+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; -+ }; -+ struct hlist_node bysrc; -+ struct hlist_node byspi; -+ struct hlist_node byseq; -+ refcount_t refcnt; -+ spinlock_t lock; -+ 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; -+ struct xfrm_encap_tmpl *encap; -+ struct sock *encap_sk; -+ 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_state_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; -+}; -+ -+struct dst_metrics { -+ u32 metrics[17]; -+ refcount_t refcnt; -+}; -+ -+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; -+ 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 hlist_node bydst_inexact_list; -+ struct callback_head rcu; -+}; -+ -+struct udp_hslot; -+ -+struct udp_table { -+ struct udp_hslot *hash; -+ struct udp_hslot *hash2; -+ unsigned int mask; -+ unsigned int log; -+}; -+ -+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 list_head rt_uncached; -+ struct uncached_list *rt_uncached_list; -+}; -+ -+struct fnhe_hash_bucket { -+ struct fib_nh_exception *chain; -+}; -+ -+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 *); -+ 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_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 xfrm_offload { -+ struct { -+ __u32 low; -+ __u32 hi; -+ } seq; -+ __u32 flags; -+ __u32 status; -+ __u8 proto; -+ __u8 inner_ipproto; -+}; -+ -+struct sec_path { -+ int len; -+ int olen; -+ struct xfrm_state *xvec[6]; -+ struct xfrm_offload ovec[1]; -+}; -+ -+struct udp_hslot { -+ struct hlist_head head; -+ int count; -+ spinlock_t lock; -+}; -+ -+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 sockaddr_un { -+ __kernel_sa_family_t sun_family; -+ char sun_path[108]; -+}; -+ -+struct unix_address { -+ refcount_t refcnt; -+ int len; -+ unsigned int hash; -+ struct sockaddr_un name[0]; -+}; -+ -+struct scm_stat { -+ atomic_t nr_fds; -+}; -+ -+struct unix_sock { -+ struct sock sk; -+ struct unix_address *addr; -+ struct path path; -+ struct mutex iolock; -+ struct mutex bindlock; -+ struct sock *peer; -+ struct list_head link; -+ atomic_long_t inflight; -+ spinlock_t lock; -+ long unsigned int gc_flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 socket_wq peer_wq; -+ wait_queue_entry_t peer_wake; -+ struct scm_stat scm_stat; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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 ima_digest_data { -+ u8 algo; -+ u8 length; -+ union { -+ struct { -+ u8 unused; -+ u8 type; -+ } sha1; -+ struct { -+ u8 type; -+ u8 algo; -+ } ng; -+ u8 data[2]; -+ } xattr; -+ u8 digest[0]; -+}; -+ -+struct integrity_iint_cache { -+ struct rb_node rb_node; -+ struct mutex mutex; -+ struct inode *inode; -+ u64 version; -+ 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; -+ enum integrity_status evm_status: 4; -+ struct ima_digest_data *ima_hash; -+}; -+ -+struct modsig; -+ -+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; -+}; -+ -+struct asymmetric_key_id; -+ -+struct public_key_signature { -+ struct asymmetric_key_id *auth_ids[2]; -+ u8 *s; -+ u32 s_size; -+ u8 *digest; -+ u8 digest_size; -+ const char *pkey_algo; -+ const char *hash_algo; -+ const char *encoding; -+ const void *data; -+ unsigned int data_size; -+}; -+ -+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)); -+ -+typedef struct { -+ __u8 b[16]; -+} guid_t; -+ -+typedef guid_t efi_guid_t; -+ -+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; -+ -+typedef void (*efi_element_handler_t)(const char *, const void *, size_t); -+ -+struct evm_ima_xattr_data { -+ u8 type; -+ u8 data[0]; -+}; -+ -+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_event_data { -+ struct integrity_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_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]; -+}; -+ -+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 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_XATTR_LAST = 6, -+}; -+ -+enum ima_hooks { -+ NONE = 0, -+ FILE_CHECK = 1, -+ MMAP_CHECK = 2, -+ BPRM_CHECK = 3, -+ CREDS_CHECK = 4, -+ POST_SETATTR = 5, -+ MODULE_CHECK = 6, -+ FIRMWARE_CHECK = 7, -+ KEXEC_KERNEL_CHECK = 8, -+ KEXEC_INITRAMFS_CHECK = 9, -+ POLICY_CHECK = 10, -+ KEXEC_CMDLINE = 11, -+ KEY_CHECK = 12, -+ CRITICAL_DATA = 13, -+ MAX_CHECK = 14, -+}; -+ -+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; -+ struct scatterlist *src; -+ u8 *result; -+ void *priv; -+ void *__ctx[0]; -+}; -+ -+struct crypto_ahash { -+ 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); -+ unsigned int reqsize; -+ struct crypto_tfm base; -+}; -+ -+enum tpm_pcrs { -+ TPM_PCR0 = 0, -+ TPM_PCR8 = 8, -+ TPM_PCR10 = 10, -+}; -+ -+struct ima_algo_desc { -+ struct crypto_shash *tfm; -+ enum hash_algo algo; -+}; -+ -+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; -+ kuid_t fowner; -+ bool (*uid_op)(kuid_t, kuid_t); -+ bool (*fowner_op)(kuid_t, kuid_t); -+ int pcr; -+ 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 { -+ Opt_measure = 0, -+ Opt_dont_measure = 1, -+ Opt_appraise = 2, -+ Opt_dont_appraise = 3, -+ Opt_audit = 4, -+ Opt_hash___3 = 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_fowner_eq = 20, -+ Opt_uid_gt = 21, -+ Opt_euid_gt = 22, -+ Opt_fowner_gt = 23, -+ Opt_uid_lt = 24, -+ Opt_euid_lt = 25, -+ Opt_fowner_lt = 26, -+ Opt_appraise_type = 27, -+ Opt_appraise_flag = 28, -+ Opt_permit_directio = 29, -+ Opt_pcr = 30, -+ Opt_template = 31, -+ Opt_keyrings = 32, -+ Opt_label = 33, -+ Opt_err___9 = 34, -+}; -+ -+enum { -+ mask_exec = 0, -+ mask_write = 1, -+ mask_read = 2, -+ mask_append = 3, -+}; -+ -+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, -+}; -+ -+enum data_formats { -+ DATA_FMT_DIGEST = 0, -+ DATA_FMT_DIGEST_WITH_ALGO = 1, -+ DATA_FMT_STRING = 2, -+ DATA_FMT_HEX = 3, -+ DATA_FMT_UINT = 4, -+}; -+ -+struct modsig___2 { -+ 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_key_entry { -+ struct list_head list; -+ void *payload; -+ size_t payload_len; -+ char *keyring_name; -+}; -+ -+struct evm_xattr { -+ struct evm_ima_xattr_data data; -+ u8 digest[20]; -+}; -+ -+struct xattr_list { -+ struct list_head list; -+ char *name; -+ bool enabled; -+}; -+ -+struct evm_digest { -+ struct ima_digest_data hdr; -+ char digest[64]; -+}; -+ -+struct h_misc { -+ long unsigned int ino; -+ __u32 generation; -+ uid_t uid; -+ gid_t gid; -+ umode_t mode; -+}; -+ -+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; -+}; -+ -+struct crypto_cipher { -+ struct crypto_tfm base; -+}; -+ -+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 { -+ 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, -+}; -+ -+enum { -+ CRYPTOA_UNSPEC = 0, -+ CRYPTOA_ALG = 1, -+ CRYPTOA_TYPE = 2, -+ __CRYPTOA_MAX = 3, -+}; -+ -+struct scatter_walk { -+ struct scatterlist *sg; -+ unsigned int offset; -+}; -+ -+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; -+}; -+ -+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_MAX = 22, -+}; -+ -+struct crypto_report_aead { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int maxauthsize; -+ unsigned int ivsize; -+}; -+ -+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 crypto_cipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_sync_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct skcipher_instance { -+ void (*free)(struct skcipher_instance *); -+ union { -+ struct { -+ char head[64]; -+ struct crypto_instance base; -+ } s; -+ struct skcipher_alg alg; -+ }; -+}; -+ -+struct crypto_skcipher_spawn { -+ struct crypto_spawn 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 skcipher_ctx_simple { -+ struct crypto_cipher *cipher; -+}; -+ -+struct crypto_report_blkcipher { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+}; -+ -+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 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 *); -+ struct hash_alg_common halg; -+}; -+ -+struct crypto_hash_walk { -+ char *data; -+ unsigned int offset; -+ unsigned int alignmask; -+ struct page *pg; -+ unsigned int entrylen; -+ unsigned int total; -+ struct scatterlist *sg; -+ unsigned int flags; -+}; -+ -+struct ahash_instance { -+ void (*free)(struct ahash_instance *); -+ union { -+ struct { -+ char head[88]; -+ struct crypto_instance base; -+ } s; -+ struct ahash_alg alg; -+ }; -+}; -+ -+struct crypto_ahash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_hash { -+ char type[64]; -+ unsigned int blocksize; -+ unsigned int digestsize; -+}; -+ -+struct ahash_request_priv { -+ crypto_completion_t complete; -+ void *data; -+ u8 *result; -+ u32 flags; -+ void *ubuf[0]; -+}; -+ -+struct shash_instance { -+ void (*free)(struct shash_instance *); -+ union { -+ struct { -+ char head[96]; -+ struct crypto_instance base; -+ } s; -+ struct shash_alg alg; -+ }; -+}; -+ -+struct crypto_shash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_akcipher { -+ char type[64]; -+}; -+ -+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 { -+ 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 *); -+ unsigned int reqsize; -+ struct crypto_alg base; -+}; -+ -+struct akcipher_instance { -+ void (*free)(struct akcipher_instance *); -+ union { -+ struct { -+ char head[80]; -+ struct crypto_instance base; -+ } s; -+ struct akcipher_alg alg; -+ }; -+}; -+ -+struct crypto_akcipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_kpp { -+ char type[64]; -+}; -+ -+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 q; -+ MPI g; -+ MPI xa; -+}; -+ -+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 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 rsa_mpi_key { -+ MPI n; -+ MPI e; -+ MPI d; -+}; -+ -+struct asn1_decoder___2; -+ -+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 crypto_report_acomp { -+ char type[64]; -+}; -+ -+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; -+ struct crypto_alg base; -+}; -+ -+struct crypto_report_comp { -+ char type[64]; -+}; -+ -+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 *); -+ struct crypto_alg base; -+}; -+ -+struct scomp_scratch { -+ spinlock_t lock; -+ void *src; -+ void *dst; -+}; -+ -+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 drbg_string { -+ const unsigned char *buf; -+ size_t len; -+ struct list_head list; -+}; -+ -+struct drbg_test_data { -+ struct drbg_string *testentropy; -+}; -+ -+struct hash_testvec { -+ const char *key; -+ const char *plaintext; -+ const char *digest; -+ unsigned int psize; -+ short unsigned int ksize; -+ int setkey_error; -+ int digest_error; -+}; -+ -+struct cipher_testvec { -+ const char *key; -+ const char *iv; -+ const char *iv_out; -+ const char *ptext; -+ const char *ctext; -+ unsigned char wk; -+ short unsigned int klen; -+ unsigned int len; -+ bool fips_skip; -+ bool generates_iv; -+ int setkey_error; -+ int crypt_error; -+}; -+ -+struct aead_testvec { -+ const char *key; -+ const char *iv; -+ const char *ptext; -+ const char *assoc; -+ const char *ctext; -+ unsigned char novrfy; -+ unsigned char wk; -+ unsigned char klen; -+ unsigned int plen; -+ unsigned int clen; -+ unsigned int alen; -+ int setkey_error; -+ int setauthsize_error; -+ int crypt_error; -+}; -+ -+struct cprng_testvec { -+ const char *key; -+ const char *dt; -+ const char *v; -+ const char *result; -+ unsigned char klen; -+ short unsigned int dtlen; -+ short unsigned int vlen; -+ short unsigned int rlen; -+ short unsigned int loops; -+}; -+ -+struct drbg_testvec { -+ const unsigned char *entropy; -+ size_t entropylen; -+ const unsigned char *entpra; -+ const unsigned char *entprb; -+ size_t entprlen; -+ const unsigned char *addtla; -+ const unsigned char *addtlb; -+ size_t addtllen; -+ const unsigned char *pers; -+ size_t perslen; -+ const unsigned char *expected; -+ size_t expectedlen; -+}; -+ -+struct akcipher_testvec { -+ const unsigned char *key; -+ const unsigned char *params; -+ const unsigned char *m; -+ const unsigned char *c; -+ unsigned int key_len; -+ unsigned int param_len; -+ unsigned int m_size; -+ unsigned int c_size; -+ bool public_key_vec; -+ bool siggen_sigver_test; -+ enum OID algo; -+}; -+ -+struct kpp_testvec { -+ const unsigned char *secret; -+ const unsigned char *b_secret; -+ const unsigned char *b_public; -+ const unsigned char *expected_a_public; -+ const unsigned char *expected_ss; -+ short unsigned int secret_size; -+ short unsigned int b_secret_size; -+ short unsigned int b_public_size; -+ short unsigned int expected_a_public_size; -+ short unsigned int expected_ss_size; -+ bool genkey; -+}; -+ -+struct comp_testvec { -+ int inlen; -+ int outlen; -+ char input[512]; -+ char output[512]; -+}; -+ -+struct aead_test_suite { -+ const struct aead_testvec *vecs; -+ unsigned int count; -+ unsigned int einval_allowed: 1; -+ unsigned int aad_iv: 1; -+}; -+ -+struct cipher_test_suite { -+ const struct cipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct comp_test_suite { -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } comp; -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } decomp; -+}; -+ -+struct hash_test_suite { -+ const struct hash_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct cprng_test_suite { -+ const struct cprng_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct drbg_test_suite { -+ const struct drbg_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct akcipher_test_suite { -+ const struct akcipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct kpp_test_suite { -+ const struct kpp_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct alg_test_desc { -+ const char *alg; -+ const char *generic_driver; -+ int (*test)(const struct alg_test_desc *, const char *, u32, u32); -+ int fips_allowed; -+ union { -+ struct aead_test_suite aead; -+ struct cipher_test_suite cipher; -+ struct comp_test_suite comp; -+ struct hash_test_suite hash; -+ struct cprng_test_suite cprng; -+ struct drbg_test_suite drbg; -+ struct akcipher_test_suite akcipher; -+ struct kpp_test_suite kpp; -+ } suite; -+}; -+ -+enum flush_type { -+ FLUSH_TYPE_NONE___2 = 0, -+ FLUSH_TYPE_FLUSH = 1, -+ FLUSH_TYPE_REIMPORT = 2, -+}; -+ -+enum finalization_type { -+ FINALIZATION_TYPE_FINAL = 0, -+ FINALIZATION_TYPE_FINUP = 1, -+ FINALIZATION_TYPE_DIGEST = 2, -+}; -+ -+struct test_sg_division { -+ unsigned int proportion_of_total; -+ unsigned int offset; -+ bool offset_relative_to_alignmask; -+ enum flush_type flush_type; -+ bool nosimd; -+}; -+ -+struct testvec_config { -+ const char *name; -+ bool inplace; -+ u32 req_flags; -+ struct test_sg_division src_divs[8]; -+ struct test_sg_division dst_divs[8]; -+ unsigned int iv_offset; -+ unsigned int key_offset; -+ bool iv_offset_relative_to_alignmask; -+ bool key_offset_relative_to_alignmask; -+ enum finalization_type finalization_type; -+ bool nosimd; -+}; -+ -+struct test_sglist { -+ char *bufs[8]; -+ struct scatterlist sgl[8]; -+ struct scatterlist sgl_saved[8]; -+ struct scatterlist *sgl_ptr; -+ unsigned int nents; -+}; -+ -+struct cipher_test_sglists { -+ struct test_sglist src; -+ struct test_sglist dst; -+}; -+ -+struct cmac_tfm_ctx { -+ struct crypto_cipher *child; -+ u8 ctx[0]; -+}; -+ -+struct cmac_desc_ctx { -+ unsigned int len; -+ u8 ctx[0]; -+}; -+ -+struct hmac_ctx { -+ struct crypto_shash *hash; -+}; -+ -+struct md5_state { -+ u32 hash[4]; -+ u32 block[16]; -+ u64 byte_count; -+}; -+ -+struct sha1_state { -+ u32 state[5]; -+ u64 count; -+ u8 buffer[64]; -+}; -+ -+typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); -+ -+struct sha256_state { -+ u32 state[8]; -+ u64 count; -+ u8 buf[64]; -+}; -+ -+struct sha512_state { -+ u64 state[8]; -+ u64 count[2]; -+ u8 buf[128]; -+}; -+ -+typedef void sha512_block_fn(struct sha512_state *, const u8 *, int); -+ -+struct sha3_state { -+ u64 st[25]; -+ unsigned int rsiz; -+ unsigned int rsizw; -+ unsigned int partial; -+ u8 buf[144]; -+}; -+ -+typedef struct { -+ u64 a; -+ u64 b; -+} u128; -+ -+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 crypto_cts_ctx { -+ struct crypto_skcipher *child; -+}; -+ -+struct crypto_cts_reqctx { -+ struct scatterlist sg[2]; -+ unsigned int offset; -+ struct skcipher_request subreq; -+}; -+ -+struct xts_tfm_ctx { -+ struct crypto_skcipher *child; -+ struct crypto_cipher *tweak; -+}; -+ -+struct xts_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ char name[128]; -+}; -+ -+struct xts_request_ctx { -+ le128 t; -+ struct scatterlist *tail; -+ struct scatterlist sg[2]; -+ struct skcipher_request subreq; -+}; -+ -+struct crypto_rfc3686_ctx { -+ struct crypto_skcipher *child; -+ u8 nonce[4]; -+}; -+ -+struct crypto_rfc3686_req_ctx { -+ u8 iv[16]; -+ struct skcipher_request subreq; -+}; -+ -+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 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; -+}; -+ -+struct cryptd_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct cryptd_ahash { -+ struct crypto_ahash base; -+}; -+ -+struct cryptd_aead { -+ struct crypto_aead base; -+}; -+ -+struct cryptd_cpu_queue { -+ struct crypto_queue queue; -+ struct work_struct work; -+}; -+ -+struct cryptd_queue { -+ struct cryptd_cpu_queue *cpu_queue; -+}; -+ -+struct cryptd_instance_ctx { -+ struct crypto_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct skcipherd_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct hashd_instance_ctx { -+ struct crypto_shash_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct aead_instance_ctx { -+ struct crypto_aead_spawn aead_spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct cryptd_skcipher_ctx { -+ refcount_t refcnt; -+ struct crypto_sync_skcipher *child; -+}; -+ -+struct cryptd_skcipher_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+struct cryptd_hash_ctx { -+ refcount_t refcnt; -+ struct crypto_shash *child; -+}; -+ -+struct cryptd_hash_request_ctx { -+ crypto_completion_t complete; -+ struct shash_desc desc; -+}; -+ -+struct cryptd_aead_ctx { -+ refcount_t refcnt; -+ struct crypto_aead *child; -+}; -+ -+struct cryptd_aead_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+struct crypto_aes_ctx { -+ u32 key_enc[60]; -+ u32 key_dec[60]; -+ u32 key_length; -+}; -+ -+struct deflate_ctx { -+ struct z_stream_s comp_stream; -+ struct z_stream_s decomp_stream; -+}; -+ -+struct chksum_ctx { -+ u32 key; -+}; -+ -+struct chksum_desc_ctx { -+ u32 crc; -+}; -+ -+struct chksum_desc_ctx___2 { -+ __u16 crc; -+}; -+ -+enum { -+ CRYPTO_AUTHENC_KEYA_UNSPEC = 0, -+ CRYPTO_AUTHENC_KEYA_PARAM = 1, -+}; -+ -+struct crypto_authenc_key_param { -+ __be32 enckeylen; -+}; -+ -+struct crypto_authenc_keys { -+ const u8 *authkey; -+ const u8 *enckey; -+ unsigned int authkeylen; -+ unsigned int enckeylen; -+}; -+ -+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 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]; -+}; -+ -+struct lzo_ctx { -+ void *lzo_comp_mem; -+}; -+ -+struct lzorle_ctx { -+ void *lzorle_comp_mem; -+}; -+ -+struct random_extrng { -+ ssize_t (*extrng_read)(void *, size_t); -+ struct module *owner; -+}; -+ -+struct crypto_report_rng { -+ char type[64]; -+ unsigned int seedsize; -+}; -+ -+struct random_ready_callback { -+ struct list_head list; -+ void (*func)(struct random_ready_callback *); -+ struct module *owner; -+}; -+ -+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 *); -+}; -+ -+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; -+ bool seeded; -+ bool pr; -+ bool fips_primed; -+ unsigned char *prev; -+ struct work_struct seed_work; -+ struct crypto_rng *jent; -+ const struct drbg_state_ops *d_ops; -+ const struct drbg_core *core; -+ struct drbg_string test_data; -+ struct random_ready_callback random_ready; -+}; -+ -+enum drbg_prefixes { -+ DRBG_PREFIX0 = 0, -+ DRBG_PREFIX1 = 1, -+ DRBG_PREFIX2 = 2, -+ DRBG_PREFIX3 = 3, -+}; -+ -+struct s { -+ __be32 conv; -+}; -+ -+struct rand_data { -+ __u64 data; -+ __u64 old_data; -+ __u64 prev_time; -+ __u64 last_delta; -+ __s64 last_delta2; -+ unsigned int osr; -+ unsigned char *mem; -+ unsigned int memlocation; -+ unsigned int memblocks; -+ unsigned int memblocksize; -+ unsigned int memaccessloops; -+ int rct_count; -+ unsigned int apt_observations; -+ unsigned int apt_count; -+ unsigned int apt_base; -+ unsigned int apt_base_set: 1; -+ unsigned int health_failure: 1; -+}; -+ -+struct rand_data___2; -+ -+struct jitterentropy { -+ spinlock_t jent_lock; -+ struct rand_data___2 *entropy_collector; -+ unsigned int reset_cnt; -+}; -+ -+struct ghash_ctx { -+ struct gf128mul_4k *gf128; -+}; -+ -+struct ghash_desc_ctx { -+ u8 buffer[16]; -+ u32 bytes; -+}; -+ -+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 cmsghdr { -+ __kernel_size_t cmsg_len; -+ int cmsg_level; -+ int cmsg_type; -+}; -+ -+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_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_control { -+ struct af_alg_iv *iv; -+ int op; -+ unsigned int aead_assoclen; -+}; -+ -+struct af_alg_sgl { -+ struct scatterlist sg[17]; -+ struct page *pages[16]; -+ unsigned int npages; -+}; -+ -+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; -+ size_t aead_assoclen; -+ struct crypto_wait wait; -+ size_t used; -+ atomic_t rcvused; -+ bool more; -+ bool merge; -+ bool enc; -+ bool init; -+ unsigned int len; -+}; -+ -+struct alg_type_list { -+ const struct af_alg_type *type; -+ struct list_head list; -+}; -+ -+struct hash_ctx { -+ struct af_alg_sgl sgl; -+ u8 *result; -+ struct crypto_wait wait; -+ unsigned int len; -+ bool more; -+ struct ahash_request req; -+}; -+ -+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; -+}; -+ -+struct aead_tfm { -+ struct crypto_aead *aead; -+ struct crypto_sync_skcipher *null_tfm; -+}; -+ -+struct asymmetric_key_ids { -+ void *id[2]; -+}; -+ -+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 *); -+}; -+ -+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_pkey_algo = 7, -+ ACT_x509_note_serial = 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_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_key; -+ bool unsupported_sig; -+ bool blacklisted; -+}; -+ -+struct x509_parse_context { -+ struct x509_certificate *cert; -+ long unsigned int data; -+ const void *cert_start; -+ const void *key; -+ size_t key_size; -+ const void *params; -+ size_t params_size; -+ enum OID key_algo; -+ enum OID last_oid; -+ enum OID algo_oid; -+ unsigned char nr_mpi; -+ 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, -+}; -+ -+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___2 { -+ 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___2 *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 rq_qos_id { -+ RQ_QOS_WBT = 0, -+ RQ_QOS_LATENCY = 1, -+ RQ_QOS_COST = 2, -+ RQ_QOS_IOPRIO = 3, -+}; -+ -+struct rq_qos_ops; -+ -+struct rq_qos { -+ struct rq_qos_ops *ops; -+ struct request_queue *q; -+ enum rq_qos_id id; -+ struct rq_qos *next; -+ struct dentry *debugfs_dir; -+}; -+ -+enum hctx_type { -+ HCTX_TYPE_DEFAULT = 0, -+ HCTX_TYPE_READ = 1, -+ HCTX_TYPE_POLL = 2, -+ HCTX_MAX_TYPES = 3, -+}; -+ -+enum xen_domain_type { -+ XEN_NATIVE = 0, -+ XEN_PV_DOMAIN = 1, -+ XEN_HVM_DOMAIN = 2, -+}; -+ -+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 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[8]; -+}; -+ -+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 = 32, -+ BLK_MQ_F_NO_SCHED = 64, -+ BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, -+ BLK_MQ_F_ALLOC_POLICY_BITS = 1, -+ BLK_MQ_S_STOPPED = 0, -+ BLK_MQ_S_TAG_ACTIVE = 1, -+ BLK_MQ_S_SCHED_RESTART = 2, -+ BLK_MQ_S_INACTIVE = 3, -+ BLK_MQ_MAX_DEPTH = 10240, -+ BLK_MQ_CPU_WORK_BATCH = 8, -+}; -+ -+enum { -+ WBT_RWQ_BG = 0, -+ WBT_RWQ_KSWAPD = 1, -+ WBT_RWQ_DISCARD = 2, -+ WBT_NUM_RWQ = 3, -+}; -+ -+struct req_iterator { -+ struct bvec_iter iter; -+ struct bio *bio; -+}; -+ -+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, -+}; -+ -+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; -+ char rwbs[8]; -+ u32 __data_loc_cmd; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_block_rq_complete { -+ struct trace_entry ent; -+ dev_t dev; -+ sector_t sector; -+ unsigned int nr_sector; -+ int error; -+ 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; -+ 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; -+}; -+ -+struct trace_event_data_offsets_block_rq_complete { -+ u32 cmd; -+}; -+ -+struct trace_event_data_offsets_block_rq { -+ u32 cmd; -+}; -+ -+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 *, int, 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_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); -+ -+enum { -+ BLK_MQ_NO_TAG = 4294967295, -+ BLK_MQ_TAG_MIN = 1, -+ BLK_MQ_TAG_MAX = 4294967294, -+}; -+ -+struct queue_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct request_queue *, char *); -+ ssize_t (*store)(struct request_queue *, const char *, size_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 = 500, -+}; -+ -+enum blk_default_limits { -+ BLK_MAX_SEGMENTS = 128, -+ BLK_SAFE_MAX_SECTORS = 255, -+ BLK_DEF_MAX_SECTORS = 2560, -+ BLK_MAX_SEGMENT_SIZE = 65536, -+ BLK_SEG_BOUNDARY_MASK = 4294967295, -+}; -+ -+enum { -+ ICQ_EXITED = 4, -+ ICQ_DESTROYED = 8, -+}; -+ -+struct rq_map_data { -+ struct page **pages; -+ int page_order; -+ int nr_entries; -+ long unsigned int offset; -+ int null_mapped; -+ int from_user; -+}; -+ -+struct bio_map_data { -+ bool is_our_pages: 1; -+ bool is_null_mapped: 1; -+ struct iov_iter iter; -+ struct iovec iov[0]; -+}; -+ -+enum bio_merge_status { -+ BIO_MERGE_OK = 0, -+ BIO_MERGE_NONE = 1, -+ BIO_MERGE_FAILED = 2, -+}; -+ -+typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); -+ -+typedef bool busy_iter_fn(struct blk_mq_hw_ctx *, struct request *, void *, bool); -+ -+typedef bool busy_tag_iter_fn(struct request *, void *, bool); -+ -+enum { -+ BLK_MQ_UNIQUE_TAG_BITS = 16, -+ BLK_MQ_UNIQUE_TAG_MASK = 65535, -+}; -+ -+struct mq_inflight { -+ struct block_device *part; -+ unsigned int inflight[2]; -+}; -+ -+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 sbq_wait { -+ struct sbitmap_queue *sbq; -+ struct wait_queue_entry wait; -+}; -+ -+struct bt_iter_data { -+ struct blk_mq_hw_ctx *hctx; -+ busy_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; -+}; -+ -+struct blk_queue_stats { -+ struct list_head callbacks; -+ spinlock_t lock; -+ bool enable_accounting; -+}; -+ -+struct blk_mq_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t); -+}; -+ -+struct blk_mq_hw_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_hw_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t); -+}; -+ -+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 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 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 class_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+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 blk_major_name { -+ struct blk_major_name *next; -+ int major; -+ char name[16]; -+ void (*probe)(dev_t); -+}; -+ -+enum { -+ IOPRIO_WHO_PROCESS = 1, -+ IOPRIO_WHO_PGRP = 2, -+ IOPRIO_WHO_USER = 3, -+}; -+ -+struct parsed_partitions { -+ struct block_device *bdev; -+ 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 page *v; -+} Sector; -+ -+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 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 = 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 d_partition { -+ __le32 p_size; -+ __le32 p_offset; -+ __le32 p_fsize; -+ u8 p_fstype; -+ u8 p_frag; -+ __le16 p_cpg; -+}; -+ -+struct disklabel { -+ __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 d_partitions[18]; -+}; -+ -+enum { -+ LINUX_RAID_PARTITION___2 = 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; -+}; -+ -+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 _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 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; -+}; -+ -+enum { -+ DISK_EVENT_FLAG_POLL = 1, -+ DISK_EVENT_FLAG_UEVENT = 2, -+}; -+ -+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 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 for_data; -+ int (*exit)(struct cdrom_device_info *); -+ int mrw_mode_page; -+}; -+ -+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; -+}; -+ -+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 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 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 *, int); -+ int (*select_disc)(struct cdrom_device_info *, 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 *); -+ const int capability; -+ int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); -+}; -+ -+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]; -+}; -+ -+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 scsi_request { -+ unsigned char __cmd[16]; -+ unsigned char *cmd; -+ short unsigned int cmd_len; -+ int result; -+ unsigned int sense_len; -+ unsigned int resid_len; -+ int retries; -+ void *sense; -+}; -+ -+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; -+}; -+ -+struct blk_cmd_filter { -+ long unsigned int read_ok[4]; -+ long unsigned int write_ok[4]; -+}; -+ -+enum { -+ OMAX_SB_LEN = 16, -+}; -+ -+struct bsg_device { -+ struct request_queue *queue; -+ spinlock_t lock; -+ struct hlist_node dev_list; -+ refcount_t ref_count; -+ char name[20]; -+ int max_queue; -+}; -+ -+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 *); -+ -+struct bsg_set { -+ struct blk_mq_tag_set tag_set; -+ bsg_job_fn *job_fn; -+ bsg_timeout_fn *timeout_fn; -+}; -+ -+typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); -+ -+typedef void blkcg_pol_init_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_bind_cpd_fn(struct blkcg_policy_data *); -+ -+typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(gfp_t, struct request_queue *, struct blkcg *); -+ -+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 size_t blkcg_pol_stat_pd_fn(struct blkg_policy_data *, char *, size_t); -+ -+struct blkcg_policy { -+ int plid; -+ struct cftype *dfl_cftypes; -+ struct cftype *legacy_cftypes; -+ blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; -+ blkcg_pol_init_cpd_fn *cpd_init_fn; -+ blkcg_pol_free_cpd_fn *cpd_free_fn; -+ blkcg_pol_bind_cpd_fn *cpd_bind_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 { -+ struct block_device *bdev; -+ struct blkcg_gq *blkg; -+ char *body; -+}; -+ -+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 blkg_rwstat { -+ struct percpu_counter cpu_cnt[5]; -+ atomic64_t aux_cnt[5]; -+}; -+ -+struct blkg_rwstat_sample { -+ u64 cnt[5]; -+}; -+ -+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 latency_bucket { -+ long unsigned int total_latency; -+ int samples; -+}; -+ -+struct avg_latency_bucket { -+ long unsigned int latency; -+ bool valid; -+}; -+ -+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; -+ unsigned int limit_index; -+ bool limit_valid[2]; -+ long unsigned int low_upgrade_time; -+ long unsigned int low_downgrade_time; -+ unsigned int scale; -+ struct latency_bucket tmp_buckets[18]; -+ struct avg_latency_bucket avg_buckets[18]; -+ struct latency_bucket *latency_buckets[2]; -+ long unsigned int last_calculate_time; -+ long unsigned int filtered_latency; -+ bool track_bio_latency; -+}; -+ -+struct throtl_grp; -+ -+struct throtl_qnode { -+ struct list_head node; -+ struct bio_list bios; -+ 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[2]; -+ uint64_t bps[4]; -+ uint64_t bps_conf[4]; -+ unsigned int iops[4]; -+ unsigned int iops_conf[4]; -+ uint64_t bytes_disp[2]; -+ unsigned int io_disp[2]; -+ long unsigned int last_low_overflow_time[2]; -+ uint64_t last_bytes_disp[2]; -+ unsigned int last_io_disp[2]; -+ long unsigned int last_check_time; -+ long unsigned int latency_target; -+ long unsigned int latency_target_conf; -+ long unsigned int slice_start[2]; -+ long unsigned int slice_end[2]; -+ long unsigned int last_finish_time; -+ long unsigned int checked_last_finish_time; -+ long unsigned int avg_idletime; -+ long unsigned int idletime_threshold; -+ long unsigned int idletime_threshold_conf; -+ unsigned int bio_cnt; -+ unsigned int bad_bio_cnt; -+ long unsigned int bio_cnt_reset_time; -+ struct blkg_rwstat stat_bytes; -+ struct blkg_rwstat stat_ios; -+}; -+ -+enum tg_state_flags { -+ THROTL_TG_PENDING = 1, -+ THROTL_TG_WAS_EMPTY = 2, -+}; -+ -+enum { -+ LIMIT_LOW = 0, -+ LIMIT_MAX = 1, -+ LIMIT_CNT = 2, -+}; -+ -+struct blk_iolatency { -+ struct rq_qos rqos; -+ struct timer_list timer; -+ atomic_t enabled; -+}; -+ -+struct iolatency_grp; -+ -+struct child_latency_info { -+ spinlock_t lock; -+ u64 last_scale_event; -+ u64 scale_lat; -+ u64 nr_samples; -+ struct iolatency_grp *scale_grp; -+ atomic_t scale_cookie; -+}; -+ -+struct percentile_stats { -+ u64 total; -+ u64 missed; -+}; -+ -+struct latency_stat { -+ union { -+ struct percentile_stats ps; -+ struct blk_rq_stat rqs; -+ }; -+}; -+ -+struct iolatency_grp { -+ struct blkg_policy_data pd; -+ struct latency_stat *stats; -+ struct latency_stat cur_stat; -+ struct blk_iolatency *blkiolat; -+ struct rq_depth rq_depth; -+ struct rq_wait rq_wait; -+ atomic64_t window_start; -+ atomic_t scale_cookie; -+ u64 min_lat_nsec; -+ u64 cur_win_nsec; -+ u64 lat_avg; -+ u64 nr_samples; -+ bool ssd; -+ struct child_latency_info child_lat; -+}; -+ -+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 { -+ local_t inserted; -+ local_t merged; -+ local_t dispatched; -+ local_t completed; -+}; -+ -+struct io_stats { -+ struct io_stats_per_prio stats[3]; -+}; -+ -+struct dd_per_prio { -+ struct list_head dispatch; -+ struct rb_root sort_list[2]; -+ struct list_head fifo_list[2]; -+ struct request *next_rq[2]; -+}; -+ -+struct deadline_data { -+ struct dd_per_prio per_prio[3]; -+ enum dd_data_dir last_dir; -+ unsigned int batching; -+ unsigned int starved; -+ struct io_stats *stats; -+ int fifo_expire[2]; -+ int fifo_batch; -+ int writes_starved; -+ int front_merges; -+ u32 async_depth; -+ spinlock_t lock; -+ spinlock_t zone_lock; -+}; -+ -+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 *, struct request_queue *, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_kyber_adjust)(void *, struct request_queue *, const char *, unsigned int); -+ -+typedef void (*btf_trace_kyber_throttled)(void *, struct request_queue *, 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; -+ 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 bfq_entity; -+ -+struct bfq_service_tree { -+ struct rb_root active; -+ struct rb_root idle; -+ struct bfq_entity *first_idle; -+ struct bfq_entity *last_idle; -+ u64 vtime; -+ long unsigned int wsum; -+}; -+ -+struct bfq_sched_data; -+ -+struct bfq_queue; -+ -+struct bfq_entity { -+ struct rb_node rb_node; -+ bool on_st_or_in_serv; -+ u64 start; -+ u64 finish; -+ struct rb_root *tree; -+ u64 min_start; -+ int service; -+ int budget; -+ int dev_weight; -+ int weight; -+ int new_weight; -+ int orig_weight; -+ struct bfq_entity *parent; -+ struct bfq_sched_data *my_sched_data; -+ struct bfq_sched_data *sched_data; -+ int prio_changed; -+ bool in_groups_with_pending_reqs; -+ struct bfq_queue *last_bfqq_created; -+}; -+ -+struct bfq_sched_data { -+ struct bfq_entity *in_service_entity; -+ struct bfq_entity *next_in_service; -+ struct bfq_service_tree service_tree[3]; -+ long unsigned int bfq_class_idle_last_service; -+}; -+ -+struct bfq_weight_counter { -+ unsigned int weight; -+ unsigned int num_active; -+ struct rb_node weights_node; -+}; -+ -+struct bfq_ttime { -+ u64 last_end_request; -+ u64 ttime_total; -+ long unsigned int ttime_samples; -+ u64 ttime_mean; -+}; -+ -+struct bfq_data; -+ -+struct bfq_io_cq; -+ -+struct bfq_queue { -+ int ref; -+ int stable_ref; -+ struct bfq_data *bfqd; -+ short unsigned int ioprio; -+ short unsigned int ioprio_class; -+ short unsigned int new_ioprio; -+ short unsigned int new_ioprio_class; -+ u64 last_serv_time_ns; -+ unsigned int inject_limit; -+ long unsigned int decrease_time_jif; -+ struct bfq_queue *new_bfqq; -+ struct rb_node pos_node; -+ struct rb_root *pos_root; -+ struct rb_root sort_list; -+ struct request *next_rq; -+ int queued[2]; -+ int allocated; -+ int meta_pending; -+ struct list_head fifo; -+ struct bfq_entity entity; -+ struct bfq_weight_counter *weight_counter; -+ int max_budget; -+ long unsigned int budget_timeout; -+ int dispatched; -+ long unsigned int flags; -+ struct list_head bfqq_list; -+ struct bfq_ttime ttime; -+ u64 io_start_time; -+ u64 tot_idle_time; -+ u32 seek_history; -+ struct hlist_node burst_list_node; -+ sector_t last_request_pos; -+ unsigned int requests_within_timer; -+ pid_t pid; -+ struct bfq_io_cq *bic; -+ long unsigned int wr_cur_max_time; -+ long unsigned int soft_rt_next_start; -+ long unsigned int last_wr_start_finish; -+ unsigned int wr_coeff; -+ long unsigned int last_idle_bklogged; -+ long unsigned int service_from_backlogged; -+ long unsigned int service_from_wr; -+ long unsigned int wr_start_at_switch_to_srt; -+ long unsigned int split_time; -+ long unsigned int first_IO_time; -+ long unsigned int creation_time; -+ u32 max_service_rate; -+ struct bfq_queue *waker_bfqq; -+ struct bfq_queue *tentative_waker_bfqq; -+ unsigned int num_waker_detections; -+ struct hlist_node woken_list_node; -+ struct hlist_head woken_list; -+}; -+ -+struct bfq_group; -+ -+struct bfq_data { -+ struct request_queue *queue; -+ struct list_head dispatch; -+ struct bfq_group *root_group; -+ struct rb_root_cached queue_weights_tree; -+ unsigned int num_groups_with_pending_reqs; -+ unsigned int busy_queues[3]; -+ int wr_busy_queues; -+ int queued; -+ int rq_in_driver; -+ bool nonrot_with_queueing; -+ int max_rq_in_driver; -+ int hw_tag_samples; -+ int hw_tag; -+ int budgets_assigned; -+ struct hrtimer idle_slice_timer; -+ struct bfq_queue *in_service_queue; -+ sector_t last_position; -+ sector_t in_serv_last_pos; -+ u64 last_completion; -+ struct bfq_queue *last_completed_rq_bfqq; -+ struct bfq_queue *last_bfqq_created; -+ u64 last_empty_occupied_ns; -+ bool wait_dispatch; -+ struct request *waited_rq; -+ bool rqs_injected; -+ u64 first_dispatch; -+ u64 last_dispatch; -+ ktime_t last_budget_start; -+ ktime_t last_idling_start; -+ long unsigned int last_idling_start_jiffies; -+ int peak_rate_samples; -+ u32 sequential_samples; -+ u64 tot_sectors_dispatched; -+ u32 last_rq_max_size; -+ u64 delta_from_first; -+ u32 peak_rate; -+ int bfq_max_budget; -+ struct list_head active_list; -+ struct list_head idle_list; -+ u64 bfq_fifo_expire[2]; -+ unsigned int bfq_back_penalty; -+ unsigned int bfq_back_max; -+ u32 bfq_slice_idle; -+ int bfq_user_max_budget; -+ unsigned int bfq_timeout; -+ bool strict_guarantees; -+ long unsigned int last_ins_in_burst; -+ long unsigned int bfq_burst_interval; -+ int burst_size; -+ struct bfq_entity *burst_parent_entity; -+ long unsigned int bfq_large_burst_thresh; -+ bool large_burst; -+ struct hlist_head burst_list; -+ bool low_latency; -+ unsigned int bfq_wr_coeff; -+ unsigned int bfq_wr_max_time; -+ unsigned int bfq_wr_rt_max_time; -+ unsigned int bfq_wr_min_idle_time; -+ long unsigned int bfq_wr_min_inter_arr_async; -+ unsigned int bfq_wr_max_softrt_rate; -+ u64 rate_dur_prod; -+ struct bfq_queue oom_bfqq; -+ spinlock_t lock; -+ struct bfq_io_cq *bio_bic; -+ struct bfq_queue *bio_bfqq; -+ unsigned int word_depths[4]; -+}; -+ -+struct bfq_io_cq { -+ struct io_cq icq; -+ struct bfq_queue *bfqq[2]; -+ int ioprio; -+ uint64_t blkcg_serial_nr; -+ bool saved_has_short_ttime; -+ bool saved_IO_bound; -+ u64 saved_io_start_time; -+ u64 saved_tot_idle_time; -+ bool saved_in_large_burst; -+ bool was_in_burst_list; -+ unsigned int saved_weight; -+ long unsigned int saved_wr_coeff; -+ long unsigned int saved_last_wr_start_finish; -+ long unsigned int saved_service_from_wr; -+ long unsigned int saved_wr_start_at_switch_to_srt; -+ unsigned int saved_wr_cur_max_time; -+ struct bfq_ttime saved_ttime; -+ u64 saved_last_serv_time_ns; -+ unsigned int saved_inject_limit; -+ long unsigned int saved_decrease_time_jif; -+ struct bfq_queue *stable_merge_bfqq; -+ bool stably_merged; -+}; -+ -+struct bfqg_stats { -+ struct blkg_rwstat bytes; -+ struct blkg_rwstat ios; -+}; -+ -+struct bfq_group { -+ struct blkg_policy_data pd; -+ char blkg_path[128]; -+ int ref; -+ struct bfq_entity entity; -+ struct bfq_sched_data sched_data; -+ void *bfqd; -+ struct bfq_queue *async_bfqq[16]; -+ struct bfq_queue *async_idle_bfqq; -+ struct bfq_entity *my_entity; -+ int active_entities; -+ struct rb_root rq_pos_tree; -+ struct bfqg_stats stats; -+}; -+ -+enum bfqq_state_flags { -+ BFQQF_just_created = 0, -+ BFQQF_busy = 1, -+ BFQQF_wait_request = 2, -+ BFQQF_non_blocking_wait_rq = 3, -+ BFQQF_fifo_expire = 4, -+ BFQQF_has_short_ttime = 5, -+ BFQQF_sync = 6, -+ BFQQF_IO_bound = 7, -+ BFQQF_in_large_burst = 8, -+ BFQQF_softrt_update = 9, -+ BFQQF_coop = 10, -+ BFQQF_split_coop = 11, -+}; -+ -+enum bfqq_expiration { -+ BFQQE_TOO_IDLE = 0, -+ BFQQE_BUDGET_TIMEOUT = 1, -+ BFQQE_BUDGET_EXHAUSTED = 2, -+ BFQQE_NO_MORE_REQUESTS = 3, -+ BFQQE_PREEMPTED = 4, -+}; -+ -+struct bfq_group_data { -+ struct blkcg_policy_data pd; -+ unsigned int weight; -+}; -+ -+enum bip_flags { -+ BIP_BLOCK_INTEGRITY = 1, -+ BIP_MAPPED_INTEGRITY = 2, -+ BIP_CTRL_NOCHECK = 4, -+ BIP_DISK_NOCHECK = 8, -+ BIP_IP_CHECKSUM = 16, -+}; -+ -+enum blk_integrity_flags { -+ BLK_INTEGRITY_VERIFY = 1, -+ BLK_INTEGRITY_GENERATE = 2, -+ BLK_INTEGRITY_DEVICE_CAPABLE = 4, -+ BLK_INTEGRITY_IP_CHECKSUM = 8, -+}; -+ -+struct integrity_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_integrity *, char *); -+ ssize_t (*store)(struct blk_integrity *, const char *, size_t); -+}; -+ -+struct virtio_device_id { -+ __u32 device; -+ __u32 vendor; -+}; -+ -+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; -+ void *priv; -+}; -+ -+struct vringh_config_ops; -+ -+struct virtio_config_ops; -+ -+struct virtio_device { -+ int index; -+ bool failed; -+ bool config_enabled; -+ 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; -+}; -+ -+typedef void vq_callback_t(struct virtqueue *); -+ -+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 **, vq_callback_t **, const char * const *, const bool *, struct irq_affinity *); -+ void (*del_vqs)(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); -+}; -+ -+struct virtio_shm_region { -+ u64 addr; -+ u64 len; -+}; -+ -+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 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_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_MAX = 8, -+}; -+ -+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; -+}; -+ -+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_hw_stats { -+ struct mutex lock; -+ long unsigned int timestamp; -+ long unsigned int lifespan; -+ const char * const *names; -+ 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, -+}; -+ -+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, -+}; -+ -+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 uverbs_attr_bundle; -+ -+struct rdma_cm_id; -+ -+struct iw_cm_id; -+ -+struct iw_cm_conn_param; -+ -+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_sge; -+ -+struct ib_mr_status; -+ -+struct ib_mw; -+ -+struct ib_xrcd; -+ -+struct ib_flow; -+ -+struct ib_flow_attr; -+ -+struct ib_flow_action; -+ -+struct ib_flow_action_attrs_esp; -+ -+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 *); -+ struct ib_qp * (*create_qp)(struct ib_pd *, 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 ib_udata *); -+ 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 *); -+ 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_udata *); -+ struct ib_mr * (*reg_user_mr_dmabuf)(struct ib_pd *, u64, u64, u64, int, int, struct ib_udata *); -+ 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 *); -+ struct ib_flow_action * (*create_flow_action_esp)(struct ib_device *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ int (*destroy_flow_action)(struct ib_flow_action *); -+ int (*modify_flow_action_esp)(struct ib_flow_action *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ 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 *); -+ 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 (*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 (*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 *); -+ int (*counter_unbind_qp)(struct ib_qp *); -+ int (*counter_dealloc)(struct rdma_counter *); -+ struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); -+ int (*counter_update_stats)(struct rdma_counter *); -+ int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); -+ int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); -+ size_t size_ib_ah; -+ size_t size_ib_counters; -+ size_t size_ib_cq; -+ size_t size_ib_mw; -+ size_t size_ib_pd; -+ size_t size_ib_rwq_ind_table; -+ size_t size_ib_srq; -+ size_t size_ib_ucontext; -+ size_t size_ib_xrcd; -+}; -+ -+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; -+ 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]; -+ 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; -+}; -+ -+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 ib_uverbs_flow_action_esp_keymat { -+ IB_UVERBS_FLOW_ACTION_ESP_KEYMAT_AES_GCM = 0, -+}; -+ -+struct ib_uverbs_flow_action_esp_keymat_aes_gcm { -+ __u64 iv; -+ __u32 iv_algo; -+ __u32 salt; -+ __u32 icv_len; -+ __u32 key_len; -+ __u32 aes_key[8]; -+}; -+ -+enum ib_uverbs_flow_action_esp_replay { -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_NONE = 0, -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_BMP = 1, -+}; -+ -+struct ib_uverbs_flow_action_esp_replay_bmp { -+ __u32 size; -+}; -+ -+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 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 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 *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_REG_MR = 8, -+ IB_WC_MASKED_COMP_SWAP = 9, -+ IB_WC_MASKED_FETCH_ADD = 10, -+ 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_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 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_uverbs_file; -+ -+struct ib_ucontext { -+ struct ib_device *device; -+ struct ib_uverbs_file *ufile; -+ struct ib_rdmacg_object cg_obj; -+ 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_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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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_flow_action_attrs_esp_keymats { -+ enum ib_uverbs_flow_action_esp_keymat protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_keymat_aes_gcm aes_gcm; -+ } keymat; -+}; -+ -+struct ib_flow_action_attrs_esp_replays { -+ enum ib_uverbs_flow_action_esp_replay protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_replay_bmp bmp; -+ } replay; -+}; -+ -+struct ib_flow_spec_list { -+ struct ib_flow_spec_list *next; -+ union ib_flow_spec spec; -+}; -+ -+struct ib_flow_action_attrs_esp { -+ struct ib_flow_action_attrs_esp_keymats *keymat; -+ struct ib_flow_action_attrs_esp_replays *replay; -+ struct ib_flow_spec_list *encap; -+ u32 esn; -+ u32 spi; -+ u32 seq; -+ u32 tfc_pad; -+ u64 flags; -+ u64 hard_limit_pkts; -+}; -+ -+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; -+}; -+ -+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; -+ 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; -+}; -+ -+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 zone_report_args { -+ struct blk_zone *zones; -+}; -+ -+struct blk_revalidate_zone_args { -+ struct gendisk *disk; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int nr_zones; -+ sector_t zone_sectors; -+ sector_t sector; -+}; -+ -+enum wbt_flags { -+ WBT_TRACKED = 1, -+ WBT_READ = 2, -+ WBT_KSWAPD = 4, -+ WBT_DISCARD = 8, -+ WBT_NR_BITS = 4, -+}; -+ -+enum { -+ WBT_STATE_ON_DEFAULT = 1, -+ WBT_STATE_ON_MANUAL = 2, -+ WBT_STATE_OFF_DEFAULT = 3, -+}; -+ -+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; -+ unsigned int wc; -+ 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; -+}; -+ -+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 { -+ 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; -+ long unsigned int rw; -+}; -+ -+struct show_busy_params { -+ struct seq_file *m; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+typedef int (*cmp_r_func_t)(const void *, const void *, const void *); -+ -+struct siprand_state { -+ long unsigned int v0; -+ long unsigned int v1; -+ long unsigned int v2; -+ long unsigned int v3; -+}; -+ -+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; -+}; -+ -+enum { -+ REG_OP_ISFREE = 0, -+ REG_OP_ALLOC = 1, -+ REG_OP_RELEASE = 2, -+}; -+ -+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 csum_state { -+ __wsum csum; -+ size_t off; -+}; -+ -+typedef u32 compat_size_t; -+ -+typedef s32 compat_ssize_t; -+ -+typedef u32 compat_uptr_t; -+ -+struct compat_iovec { -+ compat_uptr_t iov_base; -+ compat_size_t iov_len; -+}; -+ -+struct rhltable { -+ struct rhashtable ht; -+}; -+ -+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; -+}; -+ -+union nested_table { -+ union nested_table *table; -+ struct rhash_lock_head *bucket; -+}; -+ -+struct once_work { -+ struct work_struct work; -+ struct static_key_true *key; -+ struct module *module; -+}; -+ -+struct genradix_iter { -+ size_t offset; -+ size_t pos; -+}; -+ -+struct genradix_node { -+ union { -+ struct genradix_node *children[8192]; -+ u8 data[65536]; -+ }; -+}; -+ -+struct test_fail { -+ const char *str; -+ unsigned int base; -+}; -+ -+struct test_s8 { -+ const char *str; -+ unsigned int base; -+ s8 expected_res; -+}; -+ -+struct test_u8 { -+ const char *str; -+ unsigned int base; -+ u8 expected_res; -+}; -+ -+struct test_s16 { -+ const char *str; -+ unsigned int base; -+ s16 expected_res; -+}; -+ -+struct test_u16 { -+ const char *str; -+ unsigned int base; -+ u16 expected_res; -+}; -+ -+struct test_s32 { -+ const char *str; -+ unsigned int base; -+ s32 expected_res; -+}; -+ -+struct test_u32 { -+ const char *str; -+ unsigned int base; -+ u32 expected_res; -+}; -+ -+struct test_s64 { -+ const char *str; -+ unsigned int base; -+ s64 expected_res; -+}; -+ -+struct test_u64 { -+ const char *str; -+ unsigned int base; -+ u64 expected_res; -+}; -+ -+struct test_ll { -+ const char *str; -+ unsigned int base; -+ long long int expected_res; -+}; -+ -+struct test_ull { -+ const char *str; -+ unsigned int base; -+ long long unsigned int expected_res; -+}; -+ -+struct reciprocal_value_adv { -+ u32 m; -+ u8 sh; -+ u8 exp; -+ bool is_wide_m; -+}; -+ -+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[1]; -+ struct poly1305_core_key core_r; -+ }; -+}; -+ -+struct chacha20poly1305_testvec { -+ const u8 *input; -+ const u8 *output; -+ const u8 *assoc; -+ const u8 *nonce; -+ const u8 *key; -+ size_t ilen; -+ size_t alen; -+ size_t nlen; -+ bool failure; -+}; -+ -+enum { -+ MAXIMUM_TEST_BUFFER_LEN = 4096, -+}; -+ -+enum devm_ioremap_type { -+ DEVM_IOREMAP = 0, -+ DEVM_IOREMAP_UC = 1, -+ DEVM_IOREMAP_WC = 2, -+ DEVM_IOREMAP_NP = 3, -+}; -+ -+struct pcim_iomap_devres { -+ void *table[6]; -+}; -+ -+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); -+ -+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; -+}; -+ -+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; -+}; -+ -+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 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 sw842_param { -+ u8 *in; -+ u8 bit; -+ u64 ilen; -+ u8 *out; -+ u8 *ostart; -+ u64 olen; -+}; -+ -+typedef struct { -+ unsigned char op; -+ unsigned char bits; -+ short unsigned int val; -+} code; -+ -+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]; -+}; -+ -+union uu { -+ short unsigned int us; -+ unsigned char b[2]; -+}; -+ -+typedef unsigned int uInt; -+ -+typedef enum { -+ CODES = 0, -+ LENS = 1, -+ DISTS = 2, -+} codetype; -+ -+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 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 tree_desc_s tree_desc; -+ -+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 uint8_t BYTE; -+ -+typedef uint16_t U16; -+ -+typedef uint32_t U32; -+ -+typedef uint64_t U64; -+ -+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; -+ -+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 xz_dec; -+ -+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___2 { -+ 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; -+}; -+ -+struct xz_dec_lzma2___2 { -+ 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_bcj___2 { -+ enum { -+ BCJ_X86 = 4, -+ BCJ_POWERPC = 5, -+ BCJ_IA64 = 6, -+ BCJ_ARM = 7, -+ BCJ_ARMTHUMB = 8, -+ BCJ_SPARC = 9, -+ } 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_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 ts_linear_state { -+ unsigned int len; -+ const void *data; -+}; -+ -+struct ei_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+ int etype; -+ void *priv; -+}; -+ -+struct ddebug_table { -+ struct list_head link; -+ 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; -+ unsigned int first_lineno; -+ unsigned int last_lineno; -+}; -+ -+struct ddebug_iter { -+ struct ddebug_table *table; -+ unsigned int idx; -+}; -+ -+struct flag_settings { -+ unsigned int flags; -+ unsigned int mask; -+}; -+ -+struct flagsbuf { -+ char buf[7]; -+}; -+ -+struct nla_bitfield32 { -+ __u32 value; -+ __u32 selector; -+}; -+ -+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 cpu_rmap { -+ struct kref refcount; -+ u16 size; -+ u16 used; -+ void **obj; -+ struct { -+ u16 index; -+ u16 dist; -+ } near[0]; -+}; -+ -+struct irq_glue { -+ struct irq_affinity_notify notify; -+ struct cpu_rmap *rmap; -+ u16 index; -+}; -+ -+typedef mpi_limb_t *mpi_ptr_t; -+ -+typedef int mpi_size_t; -+ -+typedef mpi_limb_t UWtype; -+ -+typedef unsigned int UHWtype; -+ -+enum gcry_mpi_constants { -+ MPI_C_ZERO = 0, -+ MPI_C_ONE = 1, -+ MPI_C_TWO = 2, -+ MPI_C_THREE = 3, -+ MPI_C_FOUR = 4, -+ MPI_C_EIGHT = 5, -+}; -+ -+struct barrett_ctx_s; -+ -+typedef struct barrett_ctx_s *mpi_barrett_t; -+ -+struct gcry_mpi_point { -+ MPI x; -+ MPI y; -+ MPI z; -+}; -+ -+typedef struct gcry_mpi_point *MPI_POINT; -+ -+enum gcry_mpi_ec_models { -+ MPI_EC_WEIERSTRASS = 0, -+ MPI_EC_MONTGOMERY = 1, -+ MPI_EC_EDWARDS = 2, -+}; -+ -+enum ecc_dialects { -+ ECC_DIALECT_STANDARD = 0, -+ ECC_DIALECT_ED25519 = 1, -+ ECC_DIALECT_SAFECURVE = 2, -+}; -+ -+struct mpi_ec_ctx { -+ enum gcry_mpi_ec_models model; -+ enum ecc_dialects dialect; -+ int flags; -+ unsigned int nbits; -+ MPI p; -+ MPI a; -+ MPI b; -+ MPI_POINT G; -+ MPI n; -+ unsigned int h; -+ MPI_POINT Q; -+ MPI d; -+ const char *name; -+ struct { -+ struct { -+ unsigned int a_is_pminus3: 1; -+ unsigned int two_inv_p: 1; -+ } valid; -+ int a_is_pminus3; -+ MPI two_inv_p; -+ mpi_barrett_t p_barrett; -+ MPI scratch[11]; -+ } t; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+}; -+ -+struct field_table { -+ const char *p; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+}; -+ -+enum gcry_mpi_format { -+ GCRYMPI_FMT_NONE = 0, -+ GCRYMPI_FMT_STD = 1, -+ GCRYMPI_FMT_PGP = 2, -+ GCRYMPI_FMT_SSH = 3, -+ GCRYMPI_FMT_HEX = 4, -+ GCRYMPI_FMT_USG = 5, -+ GCRYMPI_FMT_OPAQUE = 8, -+}; -+ -+struct barrett_ctx_s___2; -+ -+typedef struct barrett_ctx_s___2 *mpi_barrett_t___2; -+ -+struct barrett_ctx_s___2 { -+ MPI m; -+ int m_copied; -+ int k; -+ MPI y; -+ MPI r1; -+ MPI r2; -+ MPI r3; -+}; -+ -+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 long int mpi_limb_signed_t; -+ -+enum dim_tune_state { -+ DIM_PARKING_ON_TOP = 0, -+ DIM_PARKING_TIRED = 1, -+ DIM_GOING_RIGHT = 2, -+ DIM_GOING_LEFT = 3, -+}; -+ -+struct dim_cq_moder { -+ u16 usec; -+ u16 pkts; -+ u16 comps; -+ u8 cq_period_mode; -+}; -+ -+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, -+}; -+ -+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)); -+ -+struct sg_pool { -+ size_t size; -+ char *name; -+ struct kmem_cache *slab; -+ mempool_t *pool; -+}; -+ -+enum { -+ IRQ_POLL_F_SCHED = 0, -+ IRQ_POLL_F_DISABLE = 1, -+}; -+ -+union handle_parts { -+ depot_stack_handle_t handle; -+ struct { -+ u32 slabindex: 17; -+ u32 offset: 14; -+ u32 valid: 1; -+ }; -+}; -+ -+struct stack_record { -+ struct stack_record *next; -+ u32 hash; -+ u32 size; -+ union handle_parts handle; -+ long unsigned int entries[0]; -+}; -+ -+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 firmware { -+ size_t size; -+ const u8 *data; -+ void *priv; -+}; -+ -+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; -+}; -+ -+struct pldmfw_ops; -+ -+struct pldmfw { -+ const struct pldmfw_ops *ops; -+ struct device *dev; -+}; -+ -+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 warn_args___2; -+ -+struct compress_format { -+ unsigned char magic[2]; -+ const char *name; -+ decompress_fn decompressor; -+}; -+ -+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 { -+ int state; -+ uint32_t rep0; -+ uint32_t rep1; -+ uint32_t rep2; -+ uint32_t rep3; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+struct fprop_local_single { -+ long unsigned int events; -+ unsigned int period; -+ raw_spinlock_t lock; -+}; -+ -+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 uevent_sock { -+ struct list_head list; -+ struct sock *sk; -+}; -+ -+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); -+}; -+ -+typedef struct { -+ long unsigned int key[2]; -+} hsiphash_key_t; -+ -+struct clk_core; -+ -+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 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 minmax_sample { -+ u32 t; -+ u32 v; -+}; -+ -+struct minmax { -+ struct minmax_sample s[3]; -+}; -+ -+struct xa_limit { -+ u32 max; -+ u32 min; -+}; -+ -+typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *); -+ -+struct gpio_chip; -+ -+struct gpio_irq_chip { -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ const struct irq_domain_ops *domain_ops; -+ 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 *); -+ void * (*populate_parent_alloc_arg)(struct gpio_chip *, 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; -+ void *parent_handler_data; -+ unsigned int num_parents; -+ unsigned int *parents; -+ unsigned int *map; -+ bool threaded; -+ 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 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 base; -+ u16 ngpio; -+ const char * const *names; -+ bool can_sleep; -+ struct gpio_irq_chip irq; -+ long unsigned int *valid_mask; -+ struct device_node *of_node; -+ unsigned int of_gpio_n_cells; -+ int (*of_xlate)(struct gpio_chip *, const struct of_phandle_args *, u32 *); -+}; -+ -+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_MODE_LOW_POWER = 15, -+ PIN_CONFIG_MODE_PWM = 16, -+ PIN_CONFIG_OUTPUT = 17, -+ PIN_CONFIG_OUTPUT_ENABLE = 18, -+ PIN_CONFIG_PERSIST_STATE = 19, -+ PIN_CONFIG_POWER_SOURCE = 20, -+ PIN_CONFIG_SKEW_DELAY = 21, -+ PIN_CONFIG_SLEEP_HARDWARE_STATE = 22, -+ PIN_CONFIG_SLEW_RATE = 23, -+ PIN_CONFIG_END = 127, -+ PIN_CONFIG_MAX = 255, -+}; -+ -+struct gpio_desc___2; -+ -+struct gpio_device { -+ int id; -+ struct device dev; -+ struct cdev chrdev; -+ struct device *mockdev; -+ struct module *owner; -+ struct gpio_chip *chip; -+ struct gpio_desc___2 *descs; -+ int base; -+ u16 ngpio; -+ const char *label; -+ void *data; -+ struct list_head list; -+ struct blocking_notifier_head notifier; -+}; -+ -+struct gpio_array; -+ -+struct gpio_descs { -+ struct gpio_array *info; -+ unsigned int ndescs; -+ struct gpio_desc___2 *desc[0]; -+}; -+ -+struct gpio_array { -+ struct gpio_desc___2 **desc; -+ unsigned int size; -+ struct gpio_chip *chip; -+ long unsigned int *get_mask; -+ long unsigned int *set_mask; -+ long unsigned int invert_mask[0]; -+}; -+ -+struct gpio_desc___2 { -+ struct gpio_device *gdev; -+ long unsigned int flags; -+ const char *label; -+ const char *name; -+ struct device_node *hog; -+ 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, -+}; -+ -+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_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 acpi_device; -+ -+struct acpi_gpio_info { -+ struct acpi_device *adev; -+ enum gpiod_flags flags; -+ bool gpioint; -+ int pin_config; -+ int polarity; -+ int triggering; -+ unsigned int debounce; -+ unsigned int quirks; -+}; -+ -+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 devres; -+ -+struct gpio { -+ unsigned int gpio; -+ long unsigned int flags; -+ const char *label; -+}; -+ -+enum of_reconfig_change { -+ OF_RECONFIG_NO_CHANGE = 0, -+ OF_RECONFIG_CHANGE_ADD = 1, -+ OF_RECONFIG_CHANGE_REMOVE = 2, -+}; -+ -+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, -+}; -+ -+struct of_mm_gpio_chip { -+ struct gpio_chip gc; -+ void (*save_regs)(struct of_mm_gpio_chip *); -+ void *regs; -+}; -+ -+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, -+}; -+ -+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 linereq; -+ -+struct line { -+ struct gpio_desc___2 *desc; -+ struct linereq *req; -+ unsigned int irq; -+ u64 eflags; -+ u64 timestamp_ns; -+ u32 req_seqno; -+ u32 line_seqno; -+ struct delayed_work work; -+ unsigned int sw_debounced; -+ unsigned int level; -+}; -+ -+struct linereq { -+ struct gpio_device *gdev; -+ const char *label; -+ u32 num_lines; -+ wait_queue_head_t wait; -+ 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 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; -+ long unsigned int *watched_lines; -+}; -+ -+enum device_link_state { -+ DL_STATE_NONE = 4294967295, -+ 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; -+}; -+ -+enum pwm_polarity { -+ PWM_POLARITY_NORMAL = 0, -+ PWM_POLARITY_INVERSED = 1, -+}; -+ -+struct pwm_args { -+ u64 period; -+ enum pwm_polarity polarity; -+}; -+ -+enum { -+ PWMF_REQUESTED = 1, -+ PWMF_EXPORTED = 2, -+}; -+ -+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; -+ unsigned int pwm; -+ struct pwm_chip *chip; -+ void *chip_data; -+ struct pwm_args args; -+ struct pwm_state state; -+ struct pwm_state last; -+}; -+ -+struct pwm_ops; -+ -+struct pwm_chip { -+ struct device *dev; -+ const struct pwm_ops *ops; -+ int base; -+ unsigned int npwm; -+ struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); -+ unsigned int of_pwm_n_cells; -+ struct list_head list; -+ struct pwm_device *pwms; -+}; -+ -+struct pwm_capture; -+ -+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); -+ int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); -+ void (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -+ struct module *owner; -+ int (*config)(struct pwm_chip *, struct pwm_device *, int, int); -+ int (*set_polarity)(struct pwm_chip *, struct pwm_device *, enum pwm_polarity); -+ int (*enable)(struct pwm_chip *, struct pwm_device *); -+ void (*disable)(struct pwm_chip *, struct pwm_device *); -+}; -+ -+struct pwm_capture { -+ unsigned int period; -+ unsigned int duty_cycle; -+}; -+ -+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; -+}; -+ -+struct trace_event_raw_pwm { -+ struct trace_entry ent; -+ struct pwm_device *pwm; -+ u64 period; -+ u64 duty_cycle; -+ enum pwm_polarity polarity; -+ bool enabled; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_pwm {}; -+ -+typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *); -+ -+typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *); -+ -+struct pwm_export { -+ struct device child; -+ struct pwm_device *pwm; -+ struct mutex lock; -+ struct pwm_state suspend; -+}; -+ -+struct pci_bus_resource { -+ struct list_head list; -+ struct resource *res; -+ unsigned int flags; -+}; -+ -+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, -+}; -+ -+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 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_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 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 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, -+}; -+ -+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; -+}; -+ -+typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); -+ -+struct pci_platform_pm_ops { -+ bool (*bridge_d3)(struct pci_dev *); -+ bool (*is_manageable)(struct pci_dev *); -+ int (*set_state)(struct pci_dev *, pci_power_t); -+ pci_power_t (*get_state)(struct pci_dev *); -+ void (*refresh_state)(struct pci_dev *); -+ pci_power_t (*choose_state)(struct pci_dev *); -+ int (*set_wakeup)(struct pci_dev *, bool); -+ bool (*need_resume)(struct pci_dev *); -+}; -+ -+struct pci_pme_device { -+ struct list_head list; -+ struct pci_dev *dev; -+}; -+ -+struct pci_saved_state { -+ u32 config_space[16]; -+ struct pci_cap_saved_data cap[0]; -+}; -+ -+struct pci_devres { -+ unsigned int enabled: 1; -+ unsigned int pinned: 1; -+ unsigned int orig_intx: 1; -+ unsigned int restore_intx: 1; -+ unsigned int mwi: 1; -+ u32 region_mask; -+}; -+ -+struct driver_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct device_driver *, char *); -+ ssize_t (*store)(struct device_driver *, const char *, size_t); -+}; -+ -+enum dev_dma_attr { -+ DEV_DMA_NOT_SUPPORTED = 0, -+ DEV_DMA_NON_COHERENT = 1, -+ DEV_DMA_COHERENT = 2, -+}; -+ -+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 *); -+ void (*error_resume)(struct pci_dev *); -+ 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; -+}; -+ -+enum pci_mmap_api { -+ PCI_MMAP_SYSFS = 0, -+ PCI_MMAP_PROCFS = 1, -+}; -+ -+struct pci_vpd_ops; -+ -+struct pci_vpd { -+ const struct pci_vpd_ops *ops; -+ struct mutex lock; -+ unsigned int len; -+ u16 flag; -+ u8 cap; -+ unsigned int busy: 1; -+ unsigned int valid: 1; -+}; -+ -+struct pci_vpd_ops { -+ ssize_t (*read)(struct pci_dev *, loff_t, size_t, void *); -+ ssize_t (*write)(struct pci_dev *, loff_t, size_t, const void *); -+}; -+ -+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 = 4294967295, -+ user_disabled = 0, -+ auto_disabled = 1, -+ user_enabled = 2, -+ auto_enabled = 3, -+}; -+ -+struct msix_entry { -+ u32 vector; -+ u16 entry; -+}; -+ -+struct portdrv_service_data { -+ struct pcie_port_service_driver *drv; -+ struct device *dev; -+ u32 service; -+}; -+ -+typedef int (*pcie_pm_callback_t)(struct pcie_device *); -+ -+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 walk_rcec_data { -+ struct pci_dev *rcec; -+ int (*user_callback)(struct pci_dev *, void *); -+ void *user_data; -+}; -+ -+struct aspm_latency { -+ u32 l0s; -+ u32 l1; -+}; -+ -+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; -+ char: 4; -+ u32 aspm_disable: 7; -+ u32 clkpm_capable: 1; -+ u32 clkpm_enabled: 1; -+ u32 clkpm_default: 1; -+ u32 clkpm_disable: 1; -+ struct aspm_latency latency_up; -+ struct aspm_latency latency_dw; -+ struct aspm_latency acceptable[8]; -+}; -+ -+struct aer_stats { -+ u64 dev_cor_errs[16]; -+ u64 dev_fatal_errs[27]; -+ u64 dev_nonfatal_errs[27]; -+ 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 aer_header_log_regs { -+ unsigned int dw0; -+ unsigned int dw1; -+ unsigned int dw2; -+ unsigned int dw3; -+}; -+ -+struct aer_err_info { -+ struct pci_dev *dev[5]; -+ int error_dev_num; -+ unsigned int id: 16; -+ unsigned int severity: 2; -+ unsigned int __pad1: 5; -+ 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 aer_header_log_regs tlp; -+}; -+ -+struct aer_err_source { -+ unsigned int status; -+ unsigned int 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 pcie_pme_service_data { -+ spinlock_t lock; -+ struct pcie_device *srv; -+ struct work_struct work; -+ bool noirq; -+}; -+ -+struct pci_filp_private { -+ enum pci_mmap_state mmap_state; -+ int write_combine; -+}; -+ -+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 { -+ 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_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_CAP_CSS_NVM = 1, -+ NVME_CAP_CSS_CSI = 64, -+ 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, -+ NVME_CMBMSC_CRE = 1, -+ NVME_CMBMSC_CMSE = 2, -+}; -+ -+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 *, int); -+}; -+ -+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 controller; -+ -+struct hpc_ops; -+ -+struct slot { -+ 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 *ctrl; -+ const struct hpc_ops *hpc_ops; -+ 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 { -+ 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; -+ const struct hpc_ops *hpc_ops; -+ 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; -+}; -+ -+struct hpc_ops { -+ int (*power_on_slot)(struct slot *); -+ int (*slot_enable)(struct slot *); -+ int (*slot_disable)(struct slot *); -+ int (*set_bus_speed_mode)(struct slot *, enum pci_bus_speed); -+ int (*get_power_status)(struct slot *, u8 *); -+ int (*get_attention_status)(struct slot *, u8 *); -+ int (*set_attention_status)(struct slot *, u8); -+ int (*get_latch_status)(struct slot *, u8 *); -+ int (*get_adapter_status)(struct slot *, u8 *); -+ int (*get_adapter_speed)(struct slot *, enum pci_bus_speed *); -+ int (*get_mode1_ECC_cap)(struct slot *, u8 *); -+ int (*get_prog_int)(struct slot *, u8 *); -+ int (*query_power_fault)(struct slot *); -+ void (*green_led_on)(struct slot *); -+ void (*green_led_off)(struct slot *); -+ void (*green_led_blink)(struct slot *); -+ void (*release_ctlr)(struct controller *); -+ int (*check_cmd_status)(struct controller *); -+}; -+ -+struct event_info { -+ u32 event_type; -+ struct slot *p_slot; -+ struct work_struct work; -+}; -+ -+struct pushbutton_work_info { -+ struct slot *p_slot; -+ struct work_struct work; -+}; -+ -+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 of_changeset { -+ struct list_head entries; -+}; -+ -+enum OpalPciSlotPresence { -+ OPAL_PCI_SLOT_EMPTY = 0, -+ OPAL_PCI_SLOT_PRESENT = 1, -+}; -+ -+enum OpalPciSlotPower { -+ OPAL_PCI_SLOT_POWER_OFF = 0, -+ OPAL_PCI_SLOT_POWER_ON = 1, -+ OPAL_PCI_SLOT_OFFLINE = 2, -+ OPAL_PCI_SLOT_ONLINE = 3, -+}; -+ -+struct pnv_php_slot { -+ struct hotplug_slot slot; -+ uint64_t id; -+ char *name; -+ int slot_no; -+ unsigned int flags; -+ struct kref kref; -+ int state; -+ int irq; -+ struct workqueue_struct *wq; -+ struct device_node *dn; -+ struct pci_dev *pdev; -+ struct pci_bus *bus; -+ bool power_state_check; -+ u8 attention_state; -+ void *fdt; -+ void *dt; -+ struct of_changeset ocs; -+ struct pnv_php_slot *parent; -+ struct list_head children; -+ struct list_head link; -+}; -+ -+struct pnv_php_event { -+ bool added; -+ struct pnv_php_slot *php_slot; -+ struct work_struct work; -+}; -+ -+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; -+ 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; -+ bool itc; -+ 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; -+ unsigned char pixel_repeat; -+ 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 = 4294967295, -+ 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; -+}; -+ -+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 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 (*con_init)(struct vc_data *, int); -+ void (*con_deinit)(struct vc_data *); -+ void (*con_clear)(struct vc_data *, int, int, int, int); -+ void (*con_putc)(struct vc_data *, int, int, int); -+ void (*con_putcs)(struct vc_data *, const short unsigned int *, int, int, int); -+ void (*con_cursor)(struct vc_data *, int); -+ bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); -+ int (*con_switch)(struct vc_data *); -+ int (*con_blank)(struct vc_data *, int, int); -+ int (*con_font_set)(struct vc_data *, struct console_font *, unsigned int); -+ int (*con_font_get)(struct vc_data *, struct console_font *); -+ int (*con_font_default)(struct vc_data *, struct console_font *, char *); -+ int (*con_resize)(struct vc_data *, unsigned int, unsigned int, unsigned int); -+ void (*con_set_palette)(struct vc_data *, const unsigned char *); -+ void (*con_scrolldelta)(struct vc_data *, int); -+ int (*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); -+ u16 * (*con_screen_pos)(const struct vc_data *, int); -+ long unsigned int (*con_getxy)(struct vc_data *, long unsigned int, int *, int *); -+ void (*con_flush_scrollback)(struct vc_data *); -+ int (*con_debug_enter)(struct vc_data *); -+ int (*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 { -+ char mode; -+ char waitv; -+ short int relsig; -+ short int acqsig; -+ short int frsig; -+}; -+ -+struct uni_pagedir; -+ -+struct uni_screen; -+ -+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_resize_user; -+ 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_pagedir *vc_uni_pagedir; -+ struct uni_pagedir **vc_uni_pagedir_loc; -+ struct uni_screen *vc_uni_screen; -+}; -+ -+struct vc { -+ struct vc_data *d; -+ struct work_struct SAK_work; -+}; -+ -+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_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_event { -+ struct fb_info *info; -+ void *data; -+}; -+ -+struct fb_pixmap { -+ u8 *addr; -+ u32 size; -+ u32 offset; -+ u32 buf_align; -+ u32 scan_align; -+ u32 access_align; -+ u32 flags; -+ u32 blit_x; -+ u32 blit_y; -+ void (*writeio)(struct fb_info *, void *, void *, unsigned int); -+ void (*readio)(struct fb_info *, void *, void *, unsigned int); -+}; -+ -+struct backlight_device; -+ -+struct fb_deferred_io; -+ -+struct fb_ops; -+ -+struct fb_tile_ops; -+ -+struct apertures_struct; -+ -+struct fb_info { -+ atomic_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 work_struct queue; -+ struct fb_pixmap pixmap; -+ struct fb_pixmap sprite; -+ struct fb_cmap cmap; -+ struct list_head modelist; -+ struct fb_videomode *mode; -+ struct backlight_device *bl_dev; -+ struct mutex bl_curve_mutex; -+ u8 bl_curve[128]; -+ struct delayed_work deferred_work; -+ 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; -+ struct apertures_struct *apertures; -+ bool skip_vt_switch; -+}; -+ -+struct fb_blit_caps { -+ u32 x; -+ u32 y; -+ u32 len; -+ u32 flags; -+}; -+ -+struct fb_deferred_io { -+ long unsigned int delay; -+ struct mutex lock; -+ struct list_head pagelist; -+ void (*first_io)(struct fb_info *); -+ 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 aperture { -+ resource_size_t base; -+ resource_size_t size; -+}; -+ -+struct apertures_struct { -+ unsigned int count; -+ struct aperture ranges[0]; -+}; -+ -+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; -+ int fb_blank; -+ 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 notifier_block fb_notif; -+ struct list_head entry; -+ struct device dev; -+ bool fb_bl_on[32]; -+ int use_count; -+}; -+ -+enum backlight_update_reason { -+ BACKLIGHT_UPDATE_HOTKEY = 0, -+ BACKLIGHT_UPDATE_SYSFS = 1, -+}; -+ -+enum backlight_notification { -+ BACKLIGHT_REGISTERED = 0, -+ BACKLIGHT_UNREGISTERED = 1, -+}; -+ -+struct backlight_ops { -+ unsigned int options; -+ int (*update_status)(struct backlight_device *); -+ int (*get_brightness)(struct backlight_device *); -+ int (*check_fb)(struct backlight_device *, struct fb_info *); -+}; -+ -+struct fb_cmap_user { -+ __u32 start; -+ __u32 len; -+ __u16 *red; -+ __u16 *green; -+ __u16 *blue; -+ __u16 *transp; -+}; -+ -+struct fb_modelist { -+ struct list_head list; -+ struct fb_videomode mode; -+}; -+ -+struct logo_data { -+ int depth; -+ int needs_directpalette; -+ int needs_truepalette; -+ int needs_cmapreset; -+ const struct linux_logo *logo; -+}; -+ -+struct dmt_videomode { -+ u32 dmt_id; -+ u32 std_2byte_code; -+ u32 cvt_3byte_code; -+ const struct fb_videomode *mode; -+}; -+ -+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 int u_int; -+ -+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; -+}; -+ -+typedef unsigned char u_char; -+ -+struct fb_con2fbmap { -+ __u32 console; -+ __u32 framebuffer; -+}; -+ -+struct fbcon_display { -+ const u_char *fontdata; -+ int userfont; -+ u_short scrollmode; -+ 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); -+ 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 *, int, int, int); -+ int (*update_start)(struct fb_info *); -+ int (*rotate_font)(struct fb_info *, struct vc_data *); -+ struct fb_var_screeninfo var; -+ struct timer_list cursor_timer; -+ 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; -+ int flags; -+ int rotate; -+ int cur_rotate; -+ char *cursor_data; -+ u8 *fontbuffer; -+ u8 *fontdata; -+ u8 *cursor_src; -+ u32 cursor_size; -+ u32 fd_size; -+}; -+ -+enum { -+ FBCON_LOGO_CANSHOW = 4294967295, -+ FBCON_LOGO_DRAW = 4294967294, -+ FBCON_LOGO_DONTSHOW = 4294967293, -+}; -+ -+struct mode_map { -+ int vmode; -+ const struct fb_videomode *mode; -+}; -+ -+struct monitor_map { -+ int sense; -+ int vmode; -+}; -+ -+typedef u16 u_int16_t; -+ -+typedef u32 u_int32_t; -+ -+struct fb_vblank { -+ __u32 flags; -+ __u32 count; -+ __u32 vcount; -+ __u32 hcount; -+ __u32 reserved[4]; -+}; -+ -+typedef struct { -+ void *vaddr; -+} vaddr_t; -+ -+struct my_timming { -+ unsigned int pixclock; -+ int mnp; -+ unsigned int crtc; -+ unsigned int HDisplay; -+ unsigned int HSyncStart; -+ unsigned int HSyncEnd; -+ unsigned int HTotal; -+ unsigned int VDisplay; -+ unsigned int VSyncStart; -+ unsigned int VSyncEnd; -+ unsigned int VTotal; -+ unsigned int sync; -+ int dblscan; -+ int interlaced; -+ unsigned int delay; -+}; -+ -+struct matrox_pll_cache { -+ unsigned int valid; -+ struct { -+ unsigned int mnp_key; -+ unsigned int mnp_value; -+ } data[4]; -+}; -+ -+struct matrox_pll_limits { -+ unsigned int vcomin; -+ unsigned int vcomax; -+}; -+ -+struct matrox_pll_features { -+ unsigned int vco_freq_min; -+ unsigned int ref_freq; -+ unsigned int feed_div_min; -+ unsigned int feed_div_max; -+ unsigned int in_div_min; -+ unsigned int in_div_max; -+ unsigned int post_shift_max; -+}; -+ -+struct matroxfb_par { -+ unsigned int final_bppShift; -+ unsigned int cmap_len; -+ struct { -+ unsigned int bytes; -+ unsigned int pixels; -+ unsigned int chunks; -+ } ydstorg; -+}; -+ -+struct matrox_DAC1064_features { -+ u_int8_t xvrefctrl; -+ u_int8_t xmiscctrl; -+}; -+ -+struct mavenregs { -+ u_int8_t regs[256]; -+ int mode; -+ int vlines; -+ int xtal; -+ int fv; -+ u_int16_t htotal; -+ u_int16_t hcorr; -+}; -+ -+struct matrox_crtc2 { -+ u_int32_t ctl; -+}; -+ -+struct matrox_hw_state { -+ u_int32_t MXoptionReg; -+ unsigned char DACclk[6]; -+ unsigned char DACreg[80]; -+ unsigned char MiscOutReg; -+ unsigned char DACpal[768]; -+ unsigned char CRTC[25]; -+ unsigned char CRTCEXT[9]; -+ unsigned char SEQ[5]; -+ unsigned char GCTL[9]; -+ unsigned char ATTR[21]; -+ struct mavenregs maven; -+ struct matrox_crtc2 crtc2; -+}; -+ -+struct matrox_accel_data { -+ u_int32_t m_dwg_rect; -+ u_int32_t m_opmode; -+ u_int32_t m_access; -+ u_int32_t m_pitch; -+}; -+ -+struct v4l2_queryctrl; -+ -+struct v4l2_control; -+ -+struct matrox_altout { -+ const char *name; -+ int (*compute)(void *, struct my_timming *); -+ int (*program)(void *); -+ int (*start)(void *); -+ int (*verifymode)(void *, u_int32_t); -+ int (*getqueryctrl)(void *, struct v4l2_queryctrl *); -+ int (*getctrl)(void *, struct v4l2_control *); -+ int (*setctrl)(void *, struct v4l2_control *); -+}; -+ -+struct v4l2_queryctrl { -+ __u32 id; -+ __u32 type; -+ __u8 name[32]; -+ __s32 minimum; -+ __s32 maximum; -+ __s32 step; -+ __s32 default_value; -+ __u32 flags; -+ __u32 reserved[2]; -+}; -+ -+struct v4l2_control { -+ __u32 id; -+ __s32 value; -+}; -+ -+enum mga_chip { -+ MGA_2064 = 0, -+ MGA_2164 = 1, -+ MGA_1064 = 2, -+ MGA_1164 = 3, -+ MGA_G100 = 4, -+ MGA_G200 = 5, -+ MGA_G400 = 6, -+ MGA_G450 = 7, -+ MGA_G550 = 8, -+}; -+ -+struct matrox_bios { -+ unsigned int bios_valid: 1; -+ unsigned int pins_len; -+ unsigned char pins[128]; -+ struct { -+ unsigned char vMaj; -+ unsigned char vMin; -+ unsigned char vRev; -+ } version; -+ struct { -+ unsigned char state; -+ unsigned char tvout; -+ } output; -+}; -+ -+struct matrox_vsync { -+ wait_queue_head_t wait; -+ unsigned int cnt; -+}; -+ -+struct matrox_fb_info; -+ -+struct matroxfb_dh_fb_info { -+ struct fb_info fbcon; -+ int fbcon_registered; -+ int initialized; -+ struct matrox_fb_info *primary_dev; -+ struct { -+ long unsigned int base; -+ vaddr_t vbase; -+ unsigned int len; -+ unsigned int len_usable; -+ unsigned int len_maximum; -+ unsigned int offbase; -+ unsigned int borrowed; -+ } video; -+ struct { -+ long unsigned int base; -+ vaddr_t vbase; -+ unsigned int len; -+ } mmio; -+ unsigned int interlaced: 1; -+ u_int32_t cmap[16]; -+}; -+ -+struct matroxfb_driver; -+ -+struct matrox_switch; -+ -+struct matrox_fb_info { -+ struct fb_info fbcon; -+ struct list_head next_fb; -+ int dead; -+ int initialized; -+ unsigned int usecount; -+ unsigned int userusecount; -+ long unsigned int irq_flags; -+ struct matroxfb_par curr; -+ struct matrox_hw_state hw; -+ struct matrox_accel_data accel; -+ struct pci_dev *pcidev; -+ struct { -+ struct matrox_vsync vsync; -+ unsigned int pixclock; -+ int mnp; -+ int panpos; -+ } crtc1; -+ struct { -+ struct matrox_vsync vsync; -+ unsigned int pixclock; -+ int mnp; -+ struct matroxfb_dh_fb_info *info; -+ struct rw_semaphore lock; -+ } crtc2; -+ struct { -+ struct rw_semaphore lock; -+ struct { -+ int brightness; -+ int contrast; -+ int saturation; -+ int hue; -+ int gamma; -+ int testout; -+ int deflicker; -+ } tvo_params; -+ } altout; -+ struct { -+ unsigned int src; -+ struct matrox_altout *output; -+ void *data; -+ unsigned int mode; -+ unsigned int default_src; -+ } outputs[3]; -+ struct matroxfb_driver *drivers[5]; -+ void *drivers_data[5]; -+ unsigned int drivers_count; -+ struct { -+ long unsigned int base; -+ vaddr_t vbase; -+ unsigned int len; -+ unsigned int len_usable; -+ unsigned int len_maximum; -+ } video; -+ struct { -+ long unsigned int base; -+ vaddr_t vbase; -+ unsigned int len; -+ } mmio; -+ unsigned int max_pixel_clock; -+ unsigned int max_pixel_clock_panellink; -+ struct matrox_switch *hw_switch; -+ struct { -+ struct matrox_pll_features pll; -+ struct matrox_DAC1064_features DAC1064; -+ } features; -+ struct { -+ spinlock_t DAC; -+ spinlock_t accel; -+ } lock; -+ enum mga_chip chip; -+ int interleave; -+ int millenium; -+ int milleniumII; -+ struct { -+ int cfb4; -+ const int *vxres; -+ int cross4MB; -+ int text; -+ int plnwt; -+ int srcorg; -+ } capable; -+ int wc_cookie; -+ struct { -+ int precise_width; -+ int mga_24bpp_fix; -+ int novga; -+ int nobios; -+ int nopciretry; -+ int noinit; -+ int sgram; -+ int support32MB; -+ int accelerator; -+ int text_type_aux; -+ int video64bits; -+ int crtc2; -+ int maven_capable; -+ unsigned int vgastep; -+ unsigned int textmode; -+ unsigned int textstep; -+ unsigned int textvram; -+ unsigned int ydstorg; -+ int memtype; -+ int g450dac; -+ int dfp_type; -+ int panellink; -+ int dualhead; -+ unsigned int fbResource; -+ } devflags; -+ struct fb_ops fbops; -+ struct matrox_bios bios; -+ struct { -+ struct matrox_pll_limits pixel; -+ struct matrox_pll_limits system; -+ struct matrox_pll_limits video; -+ } limits; -+ struct { -+ struct matrox_pll_cache pixel; -+ struct matrox_pll_cache system; -+ struct matrox_pll_cache video; -+ } cache; -+ struct { -+ struct { -+ unsigned int video; -+ unsigned int system; -+ } pll; -+ struct { -+ u_int32_t opt; -+ u_int32_t opt2; -+ u_int32_t opt3; -+ u_int32_t mctlwtst; -+ u_int32_t mctlwtst_core; -+ u_int32_t memmisc; -+ u_int32_t memrdbk; -+ u_int32_t maccess; -+ } reg; -+ struct { -+ unsigned int ddr: 1; -+ unsigned int emrswen: 1; -+ unsigned int dll: 1; -+ } memory; -+ } values; -+ u_int32_t cmap[16]; -+}; -+ -+struct matroxfb_driver { -+ struct list_head node; -+ char *name; -+ void * (*probe)(struct matrox_fb_info *); -+ void (*remove)(struct matrox_fb_info *, void *); -+}; -+ -+struct matrox_switch { -+ int (*preinit)(struct matrox_fb_info *); -+ void (*reset)(struct matrox_fb_info *); -+ int (*init)(struct matrox_fb_info *, struct my_timming *); -+ void (*restore)(struct matrox_fb_info *); -+}; -+ -+enum v4l2_preemphasis { -+ V4L2_PREEMPHASIS_DISABLED = 0, -+ V4L2_PREEMPHASIS_50_uS = 1, -+ V4L2_PREEMPHASIS_75_uS = 2, -+}; -+ -+struct v4l2_capability { -+ __u8 driver[16]; -+ __u8 card[32]; -+ __u8 bus_info[32]; -+ __u32 version; -+ __u32 capabilities; -+ __u32 device_caps; -+ __u32 reserved[3]; -+}; -+ -+struct matroxioc_output_mode { -+ __u32 output; -+ __u32 mode; -+}; -+ -+struct video_board { -+ int maxvram; -+ int maxdisplayable; -+ int accelID; -+ struct matrox_switch *lowlevel; -+}; -+ -+struct board { -+ short unsigned int vendor; -+ short unsigned int device; -+ short unsigned int rev; -+ short unsigned int svid; -+ short unsigned int sid; -+ unsigned int flags; -+ unsigned int maxclk; -+ enum mga_chip chip; -+ struct video_board *base; -+ const char *name; -+}; -+ -+struct RGBT { -+ unsigned char bpp; -+ 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; -+ } transp; -+ signed char visual; -+}; -+ -+enum { -+ M_SYSTEM_PLL = 0, -+ M_PIXEL_PLL_A = 1, -+ M_PIXEL_PLL_B = 2, -+ M_PIXEL_PLL_C = 3, -+ M_VIDEO_PLL = 4, -+}; -+ -+enum POS1064 { -+ POS1064_XCURADDL = 0, -+ POS1064_XCURADDH = 1, -+ POS1064_XCURCTRL = 2, -+ POS1064_XCURCOL0RED = 3, -+ POS1064_XCURCOL0GREEN = 4, -+ POS1064_XCURCOL0BLUE = 5, -+ POS1064_XCURCOL1RED = 6, -+ POS1064_XCURCOL1GREEN = 7, -+ POS1064_XCURCOL1BLUE = 8, -+ POS1064_XCURCOL2RED = 9, -+ POS1064_XCURCOL2GREEN = 10, -+ POS1064_XCURCOL2BLUE = 11, -+ POS1064_XVREFCTRL = 12, -+ POS1064_XMULCTRL = 13, -+ POS1064_XPIXCLKCTRL = 14, -+ POS1064_XGENCTRL = 15, -+ POS1064_XMISCCTRL = 16, -+ POS1064_XGENIOCTRL = 17, -+ POS1064_XGENIODATA = 18, -+ POS1064_XZOOMCTRL = 19, -+ POS1064_XSENSETEST = 20, -+ POS1064_XCRCBITSEL = 21, -+ POS1064_XCOLKEYMASKL = 22, -+ POS1064_XCOLKEYMASKH = 23, -+ POS1064_XCOLKEYL = 24, -+ POS1064_XCOLKEYH = 25, -+ POS1064_XOUTPUTCONN = 26, -+ POS1064_XPANMODE = 27, -+ POS1064_XPWRCTRL = 28, -+}; -+ -+enum v4l2_ctrl_type { -+ V4L2_CTRL_TYPE_INTEGER = 1, -+ V4L2_CTRL_TYPE_BOOLEAN = 2, -+ V4L2_CTRL_TYPE_MENU = 3, -+ V4L2_CTRL_TYPE_BUTTON = 4, -+ V4L2_CTRL_TYPE_INTEGER64 = 5, -+ V4L2_CTRL_TYPE_CTRL_CLASS = 6, -+ V4L2_CTRL_TYPE_STRING = 7, -+ V4L2_CTRL_TYPE_BITMASK = 8, -+ V4L2_CTRL_TYPE_INTEGER_MENU = 9, -+ V4L2_CTRL_COMPOUND_TYPES = 256, -+ V4L2_CTRL_TYPE_U8 = 256, -+ V4L2_CTRL_TYPE_U16 = 257, -+ V4L2_CTRL_TYPE_U32 = 258, -+ V4L2_CTRL_TYPE_AREA = 262, -+ V4L2_CTRL_TYPE_HDR10_CLL_INFO = 272, -+ V4L2_CTRL_TYPE_HDR10_MASTERING_DISPLAY = 273, -+ V4L2_CTRL_TYPE_H264_SPS = 512, -+ V4L2_CTRL_TYPE_H264_PPS = 513, -+ V4L2_CTRL_TYPE_H264_SCALING_MATRIX = 514, -+ V4L2_CTRL_TYPE_H264_SLICE_PARAMS = 515, -+ V4L2_CTRL_TYPE_H264_DECODE_PARAMS = 516, -+ V4L2_CTRL_TYPE_H264_PRED_WEIGHTS = 517, -+ V4L2_CTRL_TYPE_FWHT_PARAMS = 544, -+ V4L2_CTRL_TYPE_VP8_FRAME = 576, -+ V4L2_CTRL_TYPE_MPEG2_QUANTISATION = 592, -+ V4L2_CTRL_TYPE_MPEG2_SEQUENCE = 593, -+ V4L2_CTRL_TYPE_MPEG2_PICTURE = 594, -+}; -+ -+enum matroxfb_ctrl_id { -+ MATROXFB_CID_TESTOUT = 134217728, -+ MATROXFB_CID_DEFLICKER = 134217729, -+ MATROXFB_CID_LAST = 134217730, -+}; -+ -+struct mctl { -+ struct v4l2_queryctrl desc; -+ size_t control; -+}; -+ -+struct output_desc { -+ unsigned int h_vis; -+ unsigned int h_f_porch; -+ unsigned int h_sync; -+ unsigned int h_b_porch; -+ long long unsigned int chromasc; -+ unsigned int burst; -+ unsigned int v_total; -+}; -+ -+struct gxt4500_par { -+ void *regs; -+ int wc_cookie; -+ int pixfmt; -+ int refclk_ps; -+ int pll_m; -+ int pll_n; -+ int pll_pd1; -+ int pll_pd2; -+ u32 pseudo_palette[16]; -+}; -+ -+enum gxt_cards { -+ GXT4500P = 0, -+ GXT6500P = 1, -+ GXT4000P = 2, -+ GXT6000P = 3, -+}; -+ -+struct cardinfo { -+ int refclk_ps; -+ const char *cardname; -+}; -+ -+enum { -+ cmap_unknown = 0, -+ cmap_simple = 1, -+ cmap_r128 = 2, -+ cmap_M3A = 3, -+ cmap_M3B = 4, -+ cmap_radeon = 5, -+ cmap_gxt2000 = 6, -+ cmap_avivo = 7, -+ cmap_qemu = 8, -+}; -+ -+struct offb_par { -+ volatile void *cmap_adr; -+ volatile void *cmap_data; -+ int cmap_type; -+ int blanked; -+}; -+ -+struct software_node { -+ const char *name; -+ const struct software_node *parent; -+ const struct property_entry *properties; -+}; -+ -+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 clk_bulk_data { -+ const char *id; -+ struct clk *clk; -+}; -+ -+struct clk_bulk_devres { -+ struct clk_bulk_data *clks; -+ int num_clks; -+}; -+ -+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_init_data; -+ -+struct clk_hw { -+ struct clk_core *core; -+ struct clk *clk; -+ const struct clk_init_data *init; -+}; -+ -+struct clk_rate_request { -+ 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[20]; -+ char con_id[16]; -+}; -+ -+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 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_data_offsets_clk { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate_range { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_parent { -+ u32 name; -+ u32 pname; -+}; -+ -+struct trace_event_data_offsets_clk_phase { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_duty_cycle { -+ u32 name; -+}; -+ -+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 *); -+ -+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 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; -+}; -+ -+typedef void (*of_init_fn_1)(struct device_node *); -+ -+struct clk_fixed_factor { -+ struct clk_hw hw; -+ unsigned int mult; -+ unsigned int div; -+}; -+ -+struct clk_fixed_rate { -+ struct clk_hw hw; -+ long unsigned int fixed_rate; -+ long unsigned int fixed_accuracy; -+ long unsigned int flags; -+}; -+ -+struct clk_gate { -+ struct clk_hw hw; -+ void *reg; -+ u8 bit_idx; -+ u8 flags; -+ 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; -+ u32 *table; -+ u32 mask; -+ u8 shift; -+ 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 clk_fractional_divider { -+ struct clk_hw hw; -+ void *reg; -+ u8 mshift; -+ u8 mwidth; -+ u32 mmask; -+ u8 nshift; -+ u8 nwidth; -+ u32 nmask; -+ u8 flags; -+ void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); -+ spinlock_t *lock; -+}; -+ -+struct clk_gpio { -+ struct clk_hw hw; -+ struct gpio_desc *gpiod; -+}; -+ -+struct clk_sp810; -+ -+struct clk_sp810_timerclken { -+ struct clk_hw hw; -+ struct clk *clk; -+ struct clk_sp810 *sp810; -+ int channel; -+}; -+ -+struct clk_sp810 { -+ struct device_node *node; -+ void *base; -+ spinlock_t lock; -+ struct clk_sp810_timerclken timerclken[4]; -+}; -+ -+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]; -+}; -+ -+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___2 { -+ 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___2 *, 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; -+ struct mutex chan_mutex; -+ 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___2 *); -+ int (*device_router_config)(struct dma_chan___2 *); -+ void (*device_free_chan_resources)(struct dma_chan___2 *); -+ struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan___2 *, dma_addr_t, dma_addr_t, size_t, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan___2 *, 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___2 *, 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___2 *, 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___2 *, 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___2 *, dma_addr_t, int, size_t, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan___2 *, struct scatterlist *, unsigned int, int, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan___2 *, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan___2 *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); -+ struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan___2 *, 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___2 *, struct dma_interleaved_template *, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_imm_data)(struct dma_chan___2 *, dma_addr_t, u64, long unsigned int); -+ void (*device_caps)(struct dma_chan___2 *, struct dma_slave_caps *); -+ int (*device_config)(struct dma_chan___2 *, struct dma_slave_config *); -+ int (*device_pause)(struct dma_chan___2 *); -+ int (*device_resume)(struct dma_chan___2 *); -+ int (*device_terminate_all)(struct dma_chan___2 *); -+ void (*device_synchronize)(struct dma_chan___2 *); -+ enum dma_status (*device_tx_status)(struct dma_chan___2 *, dma_cookie_t, struct dma_tx_state *); -+ void (*device_issue_pending)(struct dma_chan___2 *); -+ 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___2 *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, -+}; -+ -+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; -+ unsigned int slave_id; -+ 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___2 *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 dma_chan_tbl_ent { -+ struct dma_chan___2 *chan; -+}; -+ -+struct dmaengine_unmap_pool { -+ struct kmem_cache *cache; -+ const char *name; -+ mempool_t *pool; -+ size_t size; -+}; -+ -+struct of_dma { -+ struct list_head of_dma_controllers; -+ struct device_node *of_node; -+ struct dma_chan___2 * (*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 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 *); -+}; -+ -+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 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 { -+ 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 { -+ 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; -+ } split; -+ struct { -+ 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; -+ bool used_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; -+ } packed; -+ }; -+ bool (*notify)(struct virtqueue *); -+ bool we_own_ring; -+}; -+ -+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_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; -+ int notify_map_cap; -+ u32 notify_offset_multiplier; -+ int modern_bars; -+ struct virtio_device_id id; -+}; -+ -+struct virtio_pci_vq_info { -+ struct virtqueue *vq; -+ struct list_head node; -+ unsigned int msix_vector; -+}; -+ -+struct virtio_pci_device { -+ struct virtio_device vdev; -+ struct pci_dev *pci_dev; -+ struct virtio_pci_modern_device mdev; -+ u8 *isr; -+ void *ioaddr; -+ spinlock_t lock; -+ struct list_head virtqueues; -+ struct virtio_pci_vq_info **vqs; -+ 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); -+}; -+ -+enum { -+ VP_MSIX_CONFIG_VECTOR = 0, -+ VP_MSIX_VQ_VECTOR = 1, -+}; -+ -+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; -+ 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; -+ char read_buf[4096]; -+ long unsigned int read_flags[64]; -+ unsigned char echo_buf[4096]; -+ size_t read_tail; -+ size_t line_start; -+ 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 termios { -+ tcflag_t c_iflag; -+ tcflag_t c_oflag; -+ tcflag_t c_cflag; -+ tcflag_t c_lflag; -+ cc_t c_cc[19]; -+ cc_t c_line; -+ speed_t c_ispeed; -+ speed_t c_ospeed; -+}; -+ -+struct sgttyb { -+ char sg_ispeed; -+ char sg_ospeed; -+ char sg_erase; -+ char sg_kill; -+ short int sg_flags; -+}; -+ -+struct tchars { -+ char t_intrc; -+ char t_quitc; -+ char t_startc; -+ char t_stopc; -+ char t_eofc; -+ char t_brkc; -+}; -+ -+struct ltchars { -+ char t_suspc; -+ char t_dsuspc; -+ char t_rprntc; -+ char t_flushc; -+ char t_werasc; -+ char t_lnextc; -+}; -+ -+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[10]; -+}; -+ -+struct ldsem_waiter { -+ struct list_head list; -+ struct task_struct *task; -+}; -+ -+struct pts_fs_info___2; -+ -+struct tty_audit_buf { -+ struct mutex mutex; -+ dev_t dev; -+ unsigned int icanon: 1; -+ size_t valid; -+ unsigned char *data; -+}; -+ -+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; -+ 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); -+ void (*events)(struct input_handle *, const 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 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 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 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_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 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 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; -+ char: 1; -+ unsigned char modeflags: 5; -+}; -+ -+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; -+ 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 work_struct set_brightness_work; -+ int delayed_set_value; -+ 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; -+ 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 *); -+ struct led_hw_trigger_type *trigger_type; -+ rwlock_t leddev_list_lock; -+ struct list_head led_cdevs; -+ struct list_head next_trig; -+ const struct attribute_group **groups; -+}; -+ -+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 kbd_led_trigger { -+ struct led_trigger trigger; -+ unsigned int mask; -+}; -+ -+struct uni_pagedir { -+ u16 **uni_pgdir[32]; -+ long unsigned int refcount; -+ long unsigned int sum; -+ unsigned char *inverse_translations[4]; -+ u16 *inverse_trans_unicode; -+}; -+ -+typedef uint32_t char32_t; -+ -+struct uni_screen { -+ char32_t *lines[0]; -+}; -+ -+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, -+}; -+ -+struct rgb { -+ u8 r; -+ u8 g; -+ u8 b; -+}; -+ -+enum { -+ 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, -+}; -+ -+struct interval { -+ uint32_t first; -+ uint32_t last; -+}; -+ -+struct vc_draw_region { -+ long unsigned int from; -+ long unsigned int to; -+ int x; -+}; -+ -+struct hvsi_priv { -+ unsigned int inbuf_len; -+ unsigned char inbuf[255]; -+ unsigned int inbuf_cur; -+ unsigned int inbuf_pktlen; -+ atomic_t seqno; -+ unsigned int opened: 1; -+ unsigned int established: 1; -+ unsigned int is_console: 1; -+ unsigned int mctrl_update: 1; -+ short unsigned int mctrl; -+ struct tty_struct *tty; -+ int (*get_chars)(uint32_t, char *, int); -+ int (*put_chars)(uint32_t, const char *, int); -+ uint32_t termno; -+}; -+ -+struct hv_ops; -+ -+struct hvc_struct { -+ struct tty_port port; -+ spinlock_t lock; -+ int index; -+ int do_wakeup; -+ char *outbuf; -+ 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; -+}; -+ -+struct hv_ops { -+ int (*get_chars)(uint32_t, char *, int); -+ int (*put_chars)(uint32_t, const char *, int); -+ 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 *, int); -+}; -+ -+enum hv_protocol { -+ HV_PROTOCOL_RAW = 0, -+ HV_PROTOCOL_HVSI = 1, -+}; -+ -+typedef enum hv_protocol hv_protocol_t; -+ -+struct hvterm_priv { -+ u32 termno; -+ hv_protocol_t proto; -+ struct hvsi_priv hvsi; -+ spinlock_t buf_lock; -+ char buf[16]; -+ int left; -+ int offset; -+}; -+ -+struct hvsi_header { -+ uint8_t type; -+ uint8_t len; -+ __be16 seqno; -+}; -+ -+struct hvsi_data { -+ struct hvsi_header hdr; -+ uint8_t data[12]; -+}; -+ -+struct hvsi_control { -+ struct hvsi_header hdr; -+ __be16 verb; -+ __be32 word; -+ __be32 mask; -+} __attribute__((packed)); -+ -+struct hvsi_query { -+ struct hvsi_header hdr; -+ __be16 verb; -+}; -+ -+struct hvsi_query_response { -+ struct hvsi_header hdr; -+ __be16 verb; -+ __be16 query_seqno; -+ union { -+ uint8_t version; -+ __be32 mctrl_word; -+ } u; -+}; -+ -+struct hvc_opal_priv { -+ hv_protocol_t proto; -+ struct hvsi_priv hvsi; -+}; -+ -+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 uart_match { -+ struct uart_port *port; -+ struct uart_driver *driver; -+}; -+ -+struct earlycon_device { -+ struct console *con; -+ struct uart_port port; -+ char options[16]; -+ unsigned int baud; -+}; -+ -+struct earlycon_id { -+ char name[15]; -+ char name_term; -+ char compatible[128]; -+ int (*setup)(struct earlycon_device *, const char *); -+}; -+ -+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 uart_8250_ops { -+ int (*setup_irq)(struct uart_8250_port *); -+ void (*release_irq)(struct uart_8250_port *); -+}; -+ -+struct mctrl_gpios; -+ -+struct uart_8250_dma; -+ -+struct uart_8250_em485; -+ -+struct uart_8250_port { -+ struct uart_port port; -+ struct timer_list timer; -+ struct list_head list; -+ u32 capabilities; -+ short unsigned int bugs; -+ bool fifo_bug; -+ unsigned int tx_loadsz; -+ unsigned char acr; -+ unsigned char fcr; -+ unsigned char ier; -+ unsigned char lcr; -+ unsigned char mcr; -+ unsigned char mcr_mask; -+ unsigned char mcr_force; -+ unsigned char cur_iotype; -+ unsigned int rpm_tx_active; -+ unsigned char canary; -+ unsigned char probe; -+ struct mctrl_gpios *gpios; -+ unsigned char lsr_saved_flags; -+ unsigned char msr_saved_flags; -+ struct uart_8250_dma *dma; -+ const struct uart_8250_ops *ops; -+ int (*dl_read)(struct uart_8250_port *); -+ void (*dl_write)(struct uart_8250_port *, int); -+ 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_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 *); -+ dma_filter_fn fn; -+ void *rx_param; -+ void *tx_param; -+ struct dma_slave_config rxconf; -+ struct dma_slave_config txconf; -+ struct dma_chan___2 *rxchan; -+ struct dma_chan___2 *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; -+}; -+ -+struct irq_info { -+ struct hlist_node node; -+ int irq; -+ spinlock_t lock; -+ struct list_head *head; -+}; -+ -+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 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; -+}; -+ -+struct quatech_feature { -+ u16 devid; -+ bool amcc; -+}; -+ -+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_3906250 = 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_endrun_2_4000000 = 71, -+ pbn_oxsemi = 72, -+ pbn_oxsemi_1_3906250 = 73, -+ pbn_oxsemi_2_3906250 = 74, -+ pbn_oxsemi_4_3906250 = 75, -+ pbn_oxsemi_8_3906250 = 76, -+ pbn_intel_i960 = 77, -+ pbn_sgi_ioc3 = 78, -+ pbn_computone_4 = 79, -+ pbn_computone_6 = 80, -+ pbn_computone_8 = 81, -+ pbn_sbsxrsio = 82, -+ pbn_pasemi_1682M = 83, -+ pbn_ni8430_2 = 84, -+ pbn_ni8430_4 = 85, -+ pbn_ni8430_8 = 86, -+ pbn_ni8430_16 = 87, -+ pbn_ADDIDATA_PCIe_1_3906250 = 88, -+ pbn_ADDIDATA_PCIe_2_3906250 = 89, -+ pbn_ADDIDATA_PCIe_4_3906250 = 90, -+ pbn_ADDIDATA_PCIe_8_3906250 = 91, -+ pbn_ce4100_1_115200 = 92, -+ pbn_omegapci = 93, -+ pbn_NETMOS9900_2s_115200 = 94, -+ pbn_brcm_trumanage = 95, -+ pbn_fintek_4 = 96, -+ pbn_fintek_8 = 97, -+ pbn_fintek_12 = 98, -+ pbn_fintek_F81504A = 99, -+ pbn_fintek_F81508A = 100, -+ pbn_fintek_F81512A = 101, -+ pbn_wch382_2 = 102, -+ pbn_wch384_4 = 103, -+ pbn_wch384_8 = 104, -+ pbn_pericom_PI7C9X7951 = 105, -+ pbn_pericom_PI7C9X7952 = 106, -+ pbn_pericom_PI7C9X7954 = 107, -+ pbn_pericom_PI7C9X7958 = 108, -+ pbn_sunix_pci_1s = 109, -+ pbn_sunix_pci_2s = 110, -+ pbn_sunix_pci_4s = 111, -+ pbn_sunix_pci_8s = 112, -+ pbn_sunix_pci_16s = 113, -+ pbn_titan_1_4000000 = 114, -+ pbn_titan_2_4000000 = 115, -+ pbn_titan_4_4000000 = 116, -+ pbn_titan_8_4000000 = 117, -+ pbn_moxa8250_2p = 118, -+ pbn_moxa8250_4p = 119, -+ pbn_moxa8250_8p = 120, -+}; -+ -+struct exar8250_platform { -+ int (*rs485_config)(struct uart_port *, struct serial_rs485 *); -+ int (*register_gpio)(struct pci_dev *, 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; -+ struct exar8250_board *board; -+ void *virt; -+ int line[0]; -+}; -+ -+struct gpio_array___2; -+ -+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___2 { -+ struct uart_port *port; -+ struct gpio_desc *gpio[6]; -+ int irq[6]; -+ unsigned int mctrl_prev; -+ bool mctrl_on; -+}; -+ -+struct memdev { -+ const char *name; -+ umode_t mode; -+ const struct file_operations *fops; -+ fmode_t fmode; -+}; -+ -+struct timer_rand_state { -+ cycles_t last_time; -+ long int last_delta; -+ long int last_delta2; -+}; -+ -+struct trace_event_raw_add_device_randomness { -+ struct trace_entry ent; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__mix_pool_bytes { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_credit_entropy_bits { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bits; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_debit_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int debit_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_input_randomness { -+ struct trace_entry ent; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_disk_randomness { -+ struct trace_entry ent; -+ dev_t dev; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__get_random_bytes { -+ struct trace_entry ent; -+ int nbytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__extract_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int nbytes; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_urandom_read { -+ struct trace_entry ent; -+ int got_bits; -+ int pool_left; -+ int input_left; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_prandom_u32 { -+ struct trace_entry ent; -+ unsigned int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_add_device_randomness {}; -+ -+struct trace_event_data_offsets_random__mix_pool_bytes {}; -+ -+struct trace_event_data_offsets_credit_entropy_bits {}; -+ -+struct trace_event_data_offsets_debit_entropy {}; -+ -+struct trace_event_data_offsets_add_input_randomness {}; -+ -+struct trace_event_data_offsets_add_disk_randomness {}; -+ -+struct trace_event_data_offsets_random__get_random_bytes {}; -+ -+struct trace_event_data_offsets_random__extract_entropy {}; -+ -+struct trace_event_data_offsets_urandom_read {}; -+ -+struct trace_event_data_offsets_prandom_u32 {}; -+ -+typedef void (*btf_trace_add_device_randomness)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes_nolock)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_credit_entropy_bits)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_debit_entropy)(void *, const char *, int); -+ -+typedef void (*btf_trace_add_input_randomness)(void *, int); -+ -+typedef void (*btf_trace_add_disk_randomness)(void *, dev_t, int); -+ -+typedef void (*btf_trace_get_random_bytes)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_get_random_bytes_arch)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_extract_entropy)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_urandom_read)(void *, int, int, int); -+ -+typedef void (*btf_trace_prandom_u32)(void *, unsigned int); -+ -+struct poolinfo { -+ int poolbitshift; -+ int poolwords; -+ int poolbytes; -+ int poolfracbits; -+ int tap1; -+ int tap2; -+ int tap3; -+ int tap4; -+ int tap5; -+}; -+ -+struct crng_state { -+ __u32 state[16]; -+ long unsigned int init_time; -+ spinlock_t lock; -+}; -+ -+struct entropy_store { -+ const struct poolinfo *poolinfo; -+ __u32 *pool; -+ const char *name; -+ spinlock_t lock; -+ short unsigned int add_ptr; -+ short unsigned int input_rotate; -+ int entropy_count; -+ unsigned int last_data_init: 1; -+ __u8 last_data[10]; -+}; -+ -+struct fast_pool { -+ __u32 pool[4]; -+ long unsigned int last; -+ short unsigned int reg_idx; -+ unsigned char count; -+}; -+ -+struct batched_entropy { -+ union { -+ u64 entropy_u64[8]; -+ u32 entropy_u32[16]; -+ }; -+ unsigned int position; -+ spinlock_t batch_lock; -+}; -+ -+struct virtrng_info { -+ struct hwrng hwrng; -+ struct virtqueue *vq; -+ struct completion have_data; -+ char name[25]; -+ unsigned int data_avail; -+ int index; -+ bool busy; -+ bool hwrng_register_done; -+ bool hwrng_removed; -+}; -+ -+enum tpm2_startup_types { -+ TPM2_SU_CLEAR = 0, -+ TPM2_SU_STATE = 1, -+}; -+ -+enum tpm_chip_flags { -+ 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, -+}; -+ -+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]; -+}; -+ -+enum TPM_OPS_FLAGS { -+ TPM_OPS_AUTO_STARTUP = 1, -+}; -+ -+enum tpm2_timeouts { -+ TPM2_TIMEOUT_A = 750, -+ TPM2_TIMEOUT_B = 2000, -+ 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 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, -+}; -+ -+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 tpm1_get_random_out { -+ __be32 rng_data_len; -+ u8 rng_data[128]; -+}; -+ -+enum tpm2_const { -+ TPM2_PLATFORM_PCR = 24, -+ TPM2_PCR_SELECT_MIN = 3, -+}; -+ -+enum tpm2_capabilities { -+ TPM2_CAP_HANDLES = 1, -+ TPM2_CAP_COMMANDS = 2, -+ TPM2_CAP_PCRS = 5, -+ TPM2_CAP_TPM_PROPERTIES = 6, -+}; -+ -+enum tpm2_properties { -+ TPM_PT_TOTAL_COMMANDS = 297, -+}; -+ -+enum tpm2_cc_attrs { -+ TPM2_CC_ATTR_CHANDLES = 25, -+ TPM2_CC_ATTR_RHANDLE = 28, -+}; -+ -+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_null_auth_area { -+ __be32 handle; -+ __be16 nonce_size; -+ u8 attributes; -+ __be16 auth_size; -+} __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 tpmrm_priv { -+ struct file_priv priv; -+ struct tpm_space space; -+}; -+ -+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 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; -+}; -+ -+struct tcpa_event { -+ u32 pcr_index; -+ u32 event_type; -+ u8 pcr_value[20]; -+ u32 event_size; -+ u8 event_data[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 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, -+}; -+ -+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 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 void *acpi_handle; -+ -+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_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, -+}; -+ -+enum tis_defaults { -+ TIS_MEM_LEN = 20480, -+ TIS_SHORT_TIMEOUT = 750, -+ TIS_LONG_TIMEOUT = 2000, -+}; -+ -+enum tpm_tis_flags { -+ TPM_TIS_ITPM_WORKAROUND = 1, -+ TPM_TIS_INVALID_STATUS = 2, -+}; -+ -+struct tpm_tis_phy_ops; -+ -+struct tpm_tis_data { -+ u16 manufacturer_id; -+ int locality; -+ int irq; -+ bool irq_tested; -+ 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; -+}; -+ -+struct tpm_tis_phy_ops { -+ int (*read_bytes)(struct tpm_tis_data *, u32, u16, u8 *); -+ int (*write_bytes)(struct tpm_tis_data *, u32, u16, const u8 *); -+ int (*read16)(struct tpm_tis_data *, u32, u16 *); -+ int (*read32)(struct tpm_tis_data *, u32, u32 *); -+ int (*write32)(struct tpm_tis_data *, u32, u32); -+}; -+ -+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]; -+}; -+ -+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 tpm_info { -+ struct resource res; -+ int irq; -+}; -+ -+struct tpm_tis_tcg_phy { -+ struct tpm_tis_data priv; -+ void *iobase; -+}; -+ -+struct i2c_device_id { -+ char name[20]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct regulator; -+ -+struct i2c_msg { -+ __u16 addr; -+ __u16 flags; -+ __u16 len; -+ __u8 *buf; -+}; -+ -+union i2c_smbus_data { -+ __u8 byte; -+ __u16 word; -+ __u8 block[34]; -+}; -+ -+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; -+ void *devres_group_id; -+}; -+ -+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 *, const struct i2c_device_id *); -+ int (*remove)(struct i2c_client *); -+ int (*probe_new)(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; -+}; -+ -+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; -+}; -+ -+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 i2c_algorithm { -+ int (*master_xfer)(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; -+}; -+ -+struct priv_data { -+ size_t len; -+ u8 buffer[35]; -+}; -+ -+enum i2c_chip_type { -+ SLB9635 = 0, -+ SLB9645 = 1, -+ UNKNOWN___2 = 2, -+}; -+ -+struct tpm_inf_dev { -+ struct i2c_client *client; -+ int locality; -+ u8 buf[1261]; -+ struct tpm_chip *chip; -+ enum i2c_chip_type chip_type; -+ unsigned int adapterlimit; -+}; -+ -+enum tis_status___2 { -+ TPM_STS_VALID___2 = 128, -+ TPM_STS_COMMAND_READY___2 = 64, -+ TPM_STS_GO___2 = 32, -+ TPM_STS_DATA_AVAIL___2 = 16, -+ TPM_STS_DATA_EXPECT___2 = 8, -+}; -+ -+enum tis_defaults___2 { -+ TIS_SHORT_TIMEOUT___2 = 750, -+ TIS_LONG_TIMEOUT___2 = 2000, -+}; -+ -+struct priv_data___2 { -+ int irq; -+ unsigned int intrs; -+ wait_queue_head_t read_queue; -+}; -+ -+struct ibmvtpm_crq { -+ u8 valid; -+ u8 msg; -+ __be16 len; -+ __be32 data; -+ __be64 reserved; -+}; -+ -+struct ibmvtpm_crq_queue { -+ struct ibmvtpm_crq *crq_addr; -+ u32 index; -+ u32 num_entry; -+ wait_queue_head_t wq; -+}; -+ -+struct ibmvtpm_dev { -+ struct device *dev; -+ struct vio_dev *vdev; -+ struct ibmvtpm_crq_queue crq_queue; -+ dma_addr_t crq_dma_handle; -+ u32 rtce_size; -+ void *rtce_buf; -+ dma_addr_t rtce_dma_handle; -+ spinlock_t rtce_lock; -+ wait_queue_head_t wq; -+ u16 res_len; -+ u32 vtpm_version; -+ bool tpm_processing_cmd; -+}; -+ -+struct iommu_group { -+ struct kobject kobj; -+ struct kobject *devices_kobj; -+ struct list_head devices; -+ struct mutex mutex; -+ struct blocking_notifier_head notifier; -+ void *iommu_data; -+ void (*iommu_data_release)(void *); -+ char *name; -+ int id; -+ struct iommu_domain *default_domain; -+ struct iommu_domain *domain; -+ struct list_head entry; -+}; -+ -+typedef unsigned int ioasid_t; -+ -+enum iommu_fault_type { -+ IOMMU_FAULT_DMA_UNRECOV = 1, -+ IOMMU_FAULT_PAGE_REQ = 2, -+}; -+ -+enum iommu_inv_granularity { -+ IOMMU_INV_GRANU_DOMAIN = 0, -+ IOMMU_INV_GRANU_PASID = 1, -+ IOMMU_INV_GRANU_ADDR = 2, -+ IOMMU_INV_GRANU_NR = 3, -+}; -+ -+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; -+ 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 { -+ struct msi_desc *msi_desc; -+ 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; -+ }; -+}; -+ -+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); -+}; -+ -+struct group_for_pci_data { -+ struct pci_dev *pdev; -+ struct iommu_group *group; -+}; -+ -+struct __group_domain_type { -+ struct device *dev; -+ unsigned int type; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_iommu_device_event { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_map {}; -+ -+struct trace_event_data_offsets_unmap {}; -+ -+struct trace_event_data_offsets_iommu_error { -+ u32 device; -+ u32 driver; -+}; -+ -+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_detach_device_from_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); -+ -+struct of_pci_iommu_alias_info { -+ struct device *dev; -+ struct device_node *np; -+}; -+ -+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; -+ void *cookie; -+ void (*irq_set_state)(void *, bool); -+ unsigned int (*set_vga_decode)(void *, 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[64]; -+ spinlock_t lock; -+}; -+ -+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; -+}; -+ -+enum proc_cn_mcast_op { -+ PROC_CN_MCAST_LISTEN = 1, -+ PROC_CN_MCAST_IGNORE = 2, -+}; -+ -+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 what 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 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 master; -+ -+struct component { -+ struct list_head node; -+ struct master *master; -+ 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 master { -+ struct list_head node; -+ bool bound; -+ const struct component_master_ops *ops; -+ struct device *parent; -+ struct component_match *match; -+}; -+ -+struct fwnode_link { -+ struct fwnode_handle *supplier; -+ struct list_head s_hook; -+ struct fwnode_handle *consumer; -+ struct list_head c_hook; -+}; -+ -+struct wake_irq { -+ struct device *dev; -+ unsigned int status; -+ int irq; -+ const char *name; -+}; -+ -+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 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; -+ struct bus_type *bus; -+ struct kset glue_dirs; -+ struct class *class; -+}; -+ -+struct driver_private { -+ struct kobject kobj; -+ struct klist klist_devices; -+ struct klist_node knode_bus; -+ struct module_kobject *mkobj; -+ struct device_driver *driver; -+}; -+ -+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; -+ struct device_driver *async_driver; -+ char *deferred_probe_reason; -+ struct device *device; -+ u8 dead: 1; -+}; -+ -+union device_attr_group_devres { -+ const struct attribute_group *group; -+ const struct attribute_group **groups; -+}; -+ -+struct class_dir { -+ struct kobject kobj; -+ struct class *class; -+}; -+ -+struct root_device { -+ struct device dev; -+ struct module *owner; -+}; -+ -+struct subsys_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+struct subsys_interface { -+ const char *name; -+ 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_attach_data { -+ struct device *dev; -+ bool check_async; -+ bool want_async; -+ bool have_async; -+}; -+ -+struct class_compat { -+ struct kobject *kobj; -+}; -+ -+struct pm_domain_data { -+ struct list_head list_node; -+ 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 cpu_attr { -+ struct device_attribute attr; -+ const struct cpumask * const map; -+}; -+ -+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___2 { -+ struct probe *probes[255]; -+ struct mutex *lock; -+}; -+ -+struct devres_node { -+ struct list_head entry; -+ dr_release_t release; -+ const char *name; -+ size_t size; -+}; -+ -+struct devres___2 { -+ 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 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 internal_container { -+ struct klist_node node; -+ struct attribute_container *cont; -+ struct device classdev; -+}; -+ -+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 *); -+}; -+ -+typedef void * (*devcon_match_fn_t)(struct fwnode_handle *, const char *, void *); -+ -+struct reset_control; -+ -+struct mii_bus; -+ -+struct mdio_device { -+ struct device dev; -+ struct mii_bus *bus; -+ char modalias[32]; -+ int (*bus_match)(struct device *, struct device_driver *); -+ void (*device_free)(struct mdio_device *); -+ void (*device_remove)(struct mdio_device *); -+ int addr; -+ int flags; -+ 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_UP = 3, -+ PHY_RUNNING = 4, -+ PHY_NOLINK = 5, -+ PHY_CABLETEST = 6, -+}; -+ -+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_QSGMII = 18, -+ PHY_INTERFACE_MODE_TRGMII = 19, -+ PHY_INTERFACE_MODE_100BASEX = 20, -+ PHY_INTERFACE_MODE_1000BASEX = 21, -+ PHY_INTERFACE_MODE_2500BASEX = 22, -+ PHY_INTERFACE_MODE_5GBASER = 23, -+ PHY_INTERFACE_MODE_RXAUI = 24, -+ PHY_INTERFACE_MODE_XAUI = 25, -+ PHY_INTERFACE_MODE_10GBASER = 26, -+ PHY_INTERFACE_MODE_25GBASER = 27, -+ PHY_INTERFACE_MODE_USXGMII = 28, -+ PHY_INTERFACE_MODE_10GKR = 29, -+ PHY_INTERFACE_MODE_MAX = 30, -+} phy_interface_t; -+ -+struct phylink; -+ -+struct phy_driver; -+ -+struct phy_led_trigger; -+ -+struct phy_package_shared; -+ -+struct mii_timestamper; -+ -+struct phy_device { -+ struct mdio_device mdio; -+ struct phy_driver *drv; -+ 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 autoneg: 1; -+ unsigned int link: 1; -+ unsigned int autoneg_complete: 1; -+ unsigned int interrupts: 1; -+ enum phy_state state; -+ u32 dev_flags; -+ phy_interface_t interface; -+ 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]; -+ u32 eee_broken_modes; -+ struct phy_led_trigger *phy_led_triggers; -+ unsigned int phy_num_led_triggers; -+ struct phy_led_trigger *last_triggered; -+ struct phy_led_trigger *led_link_trigger; -+ 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; -+ u8 mdix; -+ u8 mdix_ctrl; -+ void (*phy_link_change)(struct phy_device *, bool); -+ void (*adjust_link)(struct net_device *); -+ const struct macsec_ops *macsec_ops; -+}; -+ -+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 (*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; -+ enum { -+ MDIOBUS_NO_CAP = 0, -+ MDIOBUS_C22 = 1, -+ MDIOBUS_C45 = 2, -+ MDIOBUS_C22_C45 = 3, -+ } probe_capabilities; -+ 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 ifreq *); -+ void (*link_state)(struct mii_timestamper *, struct phy_device *); -+ int (*ts_info)(struct mii_timestamper *, struct ethtool_ts_info *); -+ struct device *device; -+}; -+ -+struct phy_package_shared { -+ int addr; -+ 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 (*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 *); -+ 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 *); -+}; -+ -+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 num_levels; -+ unsigned int num_leaves; -+ bool cpu_map_populated; -+}; -+ -+struct cache_type_info___2 { -+ const char *size_prop; -+ const char *line_size_props[2]; -+ const char *nr_sets_prop; -+}; -+ -+struct software_node_ref_args { -+ const struct software_node *node; -+ unsigned int nargs; -+ u64 args[8]; -+}; -+ -+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 auxiliary_device_id { -+ char name[32]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct auxiliary_device { -+ struct device dev; -+ const char *name; -+ u32 id; -+}; -+ -+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 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 = 4294967295, -+ PM_QOS_FLAGS_NONE = 0, -+ PM_QOS_FLAGS_SOME = 1, -+ PM_QOS_FLAGS_ALL = 2, -+}; -+ -+typedef int (*pm_callback_t)(struct device *); -+ -+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; -+}; -+ -+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, -+}; -+ -+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_power_state { -+ s64 power_off_latency_ns; -+ s64 power_on_latency_ns; -+ s64 residency_ns; -+ u64 usage; -+ u64 rejected; -+ struct fwnode_handle *fwnode; -+ ktime_t idle_time; -+ void *data; -+}; -+ -+struct opp_table; -+ -+struct dev_pm_opp; -+ -+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 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 suspended_count; -+ unsigned int prepared_count; -+ unsigned int performance_state; -+ cpumask_var_t cpus; -+ 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; -+ unsigned int (*opp_to_performance_state)(struct generic_pm_domain *, struct dev_pm_opp *); -+ int (*set_performance_state)(struct generic_pm_domain *, unsigned int); -+ struct gpd_dev_ops dev_ops; -+ s64 max_off_time_ns; -+ ktime_t next_wakeup; -+ bool max_off_time_changed; -+ bool cached_power_down_ok; -+ bool cached_power_down_state_idx; -+ 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; -+ ktime_t on_time; -+ ktime_t accounting_time; -+ const struct genpd_lock_ops *lock_ops; -+ union { -+ struct mutex mlock; -+ struct { -+ spinlock_t slock; -+ long unsigned int 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; -+ 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 rpm_pstate; -+ ktime_t next_wakeup; -+ void *data; -+}; -+ -+typedef struct generic_pm_domain * (*genpd_xlate_t)(struct of_phandle_args *, void *); -+ -+struct genpd_onecell_data { -+ struct generic_pm_domain **domains; -+ unsigned int num_domains; -+ genpd_xlate_t xlate; -+}; -+ -+struct of_genpd_provider { -+ struct list_head link; -+ struct device_node *node; -+ genpd_xlate_t xlate; -+ void *data; -+}; -+ -+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 builtin_fw { -+ char *name; -+ void *data; -+ long unsigned int size; -+}; -+ -+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; -+ 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; -+}; -+ -+struct node_access_nodes { -+ struct device dev; -+ struct list_head list_node; -+ unsigned int access; -+}; -+ -+struct node_attr { -+ struct device_attribute attr; -+ enum node_states state; -+}; -+ -+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_COMPRESSED = 2, -+ REGCACHE_FLAT = 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 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); -+ bool disable_locking; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ int (*reg_read)(void *, unsigned int, unsigned int *); -+ int (*reg_write)(void *, unsigned int, unsigned int); -+ bool fast_io; -+ unsigned int max_register; -+ 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; -+ enum regmap_endian reg_format_endian; -+ enum regmap_endian val_format_endian; -+ const struct regmap_range_cfg *ranges; -+ unsigned int num_ranges; -+ bool use_hwlock; -+ unsigned int hwlock_id; -+ unsigned int hwlock_mode; -+ bool can_sleep; -+}; -+ -+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; -+ -+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_write)(void *, unsigned int, unsigned int); -+ -+typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); -+ -+typedef struct regmap_async * (*regmap_hw_async_alloc)(); -+ -+typedef void (*regmap_hw_free_context)(void *); -+ -+struct regmap_bus { -+ bool fast_io; -+ 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_update_bits reg_update_bits; -+ regmap_hw_read read; -+ regmap_hw_reg_read reg_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; -+ bool free_on_exit; -+}; -+ -+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; -+ 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; -+ }; -+ }; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ gfp_t alloc_flags; -+ 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 (*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); -+ 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; -+ 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 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_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; -+}; -+ -+struct trace_event_data_offsets_regmap_block { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_sync { -+ u32 name; -+ u32 status; -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_regmap_bool { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regmap_async { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_drop_region { -+ u32 name; -+}; -+ -+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_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 regcache_rbtree_node { -+ void *block; -+ long 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 devcd_entry { -+ struct device devcd_dev; -+ void *data; -+ size_t datalen; -+ 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 void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); -+ -+struct platform_msi_priv_data { -+ struct device *dev; -+ void *host_data; -+ msi_alloc_info_t arg; -+ irq_write_msi_msg_t write_msg; -+ int devid; -+}; -+ -+struct trace_event_raw_devres { -+ struct trace_entry ent; -+ u32 __data_loc_devname; -+ struct device *dev; -+ const char *op; -+ void *node; -+ const char *name; -+ size_t size; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devres { -+ u32 devname; -+}; -+ -+typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); -+ -+struct test_struct { -+ char *get; -+ char *put; -+ void (*get_handler)(char *); -+ int (*put_handler)(char *, char *); -+}; -+ -+struct test_state { -+ char *name; -+ struct test_struct *tst; -+ int idx; -+ int (*run_test)(int, int); -+ int (*validate_put)(char *); -+}; -+ -+enum cxl_context_status { -+ CLOSED = 0, -+ OPENED = 1, -+ STARTED = 2, -+}; -+ -+struct cxl_afu; -+ -+struct cxl_sste; -+ -+struct cxl_process_element; -+ -+struct cxl_afu_driver_ops; -+ -+struct cxl_context { -+ struct cxl_afu *afu; -+ phys_addr_t psn_phys; -+ u64 psn_size; -+ struct address_space *mapping; -+ struct mutex mapping_lock; -+ struct page *ff_page; -+ bool mmio_err_ff; -+ bool kernelapi; -+ spinlock_t sste_lock; -+ struct cxl_sste *sstp; -+ u64 sstp0; -+ u64 sstp1; -+ unsigned int sst_size; -+ unsigned int sst_lru; -+ wait_queue_head_t wq; -+ struct pid *pid; -+ spinlock_t lock; -+ u64 process_token; -+ void *priv; -+ long unsigned int *irq_bitmap; -+ struct cxl_irq_ranges irqs; -+ struct list_head irq_names; -+ u64 fault_addr; -+ u64 fault_dsisr; -+ u64 afu_err; -+ enum cxl_context_status status; -+ struct mutex status_mutex; -+ struct work_struct fault_work; -+ u64 dsisr; -+ u64 dar; -+ struct cxl_process_element *elem; -+ int pe; -+ int external_pe; -+ u32 irq_count; -+ bool pe_inserted; -+ bool master; -+ bool kernel; -+ bool pending_irq; -+ bool pending_fault; -+ bool pending_afu_err; -+ struct cxl_afu_driver_ops *afu_driver_ops; -+ atomic_t afu_driver_events; -+ struct callback_head rcu; -+ struct mm_struct *mm; -+ u16 tidr; -+ bool assign_tidr; -+}; -+ -+struct cxl_event_afu_driver_reserved { -+ __u32 data_size; -+ __u8 data[0]; -+}; -+ -+struct cxl_afu_driver_ops { -+ struct cxl_event_afu_driver_reserved * (*fetch_event)(struct cxl_context *); -+ void (*event_delivered)(struct cxl_context *, struct cxl_event_afu_driver_reserved *, int); -+}; -+ -+typedef struct { -+ const int x; -+} cxl_p1_reg_t; -+ -+typedef struct { -+ const int x; -+} cxl_p1n_reg_t; -+ -+typedef struct { -+ const int x; -+} cxl_p2n_reg_t; -+ -+enum prefault_modes { -+ CXL_PREFAULT_NONE = 0, -+ CXL_PREFAULT_WED = 1, -+ CXL_PREFAULT_ALL = 2, -+}; -+ -+struct cxl_sste { -+ __be64 esid_data; -+ __be64 vsid_data; -+}; -+ -+struct cxl_afu_native { -+ void *p1n_mmio; -+ void *afu_desc_mmio; -+ irq_hw_number_t psl_hwirq; -+ unsigned int psl_virq; -+ struct mutex spa_mutex; -+ struct cxl_process_element *spa; -+ __be64 *sw_command_status; -+ unsigned int spa_size; -+ int spa_order; -+ int spa_max_procs; -+ u64 pp_offset; -+}; -+ -+struct cxl_process_element_common { -+ __be32 tid; -+ __be32 pid; -+ __be64 csrp; -+ union { -+ struct { -+ __be64 aurp0; -+ __be64 aurp1; -+ __be64 sstp0; -+ __be64 sstp1; -+ } psl8; -+ struct { -+ u8 reserved2[8]; -+ u8 reserved3[8]; -+ u8 reserved4[8]; -+ u8 reserved5[8]; -+ } psl9; -+ } u; -+ __be64 amr; -+ u8 reserved6[4]; -+ __be64 wed; -+} __attribute__((packed)); -+ -+struct cxl_process_element { -+ __be64 sr; -+ __be64 SPOffset; -+ union { -+ __be64 sdr; -+ u8 reserved1[8]; -+ } u; -+ __be64 haurp; -+ __be32 ctxtime; -+ __be16 ivte_offsets[4]; -+ __be16 ivte_ranges[4]; -+ __be32 lpid; -+ struct cxl_process_element_common common; -+ __be32 software_state; -+}; -+ -+struct cxl_afu_guest { -+ struct cxl_afu *parent; -+ u64 handle; -+ phys_addr_t p2n_phys; -+ u64 p2n_size; -+ int max_ints; -+ bool handle_err; -+ struct delayed_work work_err; -+ int previous_state; -+}; -+ -+struct cxl; -+ -+struct cxl_afu { -+ struct cxl_afu_native *native; -+ struct cxl_afu_guest *guest; -+ irq_hw_number_t serr_hwirq; -+ unsigned int serr_virq; -+ char *psl_irq_name; -+ char *err_irq_name; -+ void *p2n_mmio; -+ phys_addr_t psn_phys; -+ u64 pp_size; -+ struct cxl *adapter; -+ struct device dev; -+ struct cdev afu_cdev_s; -+ struct cdev afu_cdev_m; -+ struct cdev afu_cdev_d; -+ struct device *chardev_s; -+ struct device *chardev_m; -+ struct device *chardev_d; -+ struct idr contexts_idr; -+ struct dentry *debugfs; -+ struct mutex contexts_lock; -+ spinlock_t afu_cntl_lock; -+ atomic_t configured_state; -+ u64 eb_len; -+ u64 eb_offset; -+ struct bin_attribute attr_eb; -+ struct pci_controller *phb; -+ int pp_irqs; -+ int irqs_max; -+ int num_procs; -+ int max_procs_virtualised; -+ int slice; -+ int modes_supported; -+ int current_mode; -+ int crs_num; -+ u64 crs_len; -+ u64 crs_offset; -+ struct list_head crs; -+ enum prefault_modes prefault_mode; -+ bool psa; -+ bool pp_psa; -+ bool enabled; -+}; -+ -+struct cxl_native; -+ -+struct cxl_guest; -+ -+struct cxl { -+ struct cxl_native *native; -+ struct cxl_guest *guest; -+ spinlock_t afu_list_lock; -+ struct cxl_afu *afu[4]; -+ struct device dev; -+ struct dentry *trace; -+ struct dentry *psl_err_chk; -+ struct dentry *debugfs; -+ char *irq_name; -+ struct bin_attribute cxl_attr; -+ int adapter_num; -+ int user_irqs; -+ u64 ps_size; -+ u16 psl_rev; -+ u16 base_image; -+ u8 vsec_status; -+ u8 caia_major; -+ u8 caia_minor; -+ u8 slices; -+ bool user_image_loaded; -+ bool perst_loads_image; -+ bool perst_select_user; -+ bool perst_same_image; -+ bool psl_timebase_synced; -+ bool tunneled_ops_supported; -+ atomic_t contexts_num; -+}; -+ -+struct irq_avail { -+ irq_hw_number_t offset; -+ irq_hw_number_t range; -+ long unsigned int *bitmap; -+}; -+ -+struct cxl_irq_info; -+ -+struct cxl_service_layer_ops { -+ int (*adapter_regs_init)(struct cxl *, struct pci_dev *); -+ int (*invalidate_all)(struct cxl *); -+ int (*afu_regs_init)(struct cxl_afu *); -+ int (*sanitise_afu_regs)(struct cxl_afu *); -+ int (*register_serr_irq)(struct cxl_afu *); -+ void (*release_serr_irq)(struct cxl_afu *); -+ irqreturn_t (*handle_interrupt)(int, struct cxl_context *, struct cxl_irq_info *); -+ irqreturn_t (*fail_irq)(struct cxl_afu *, struct cxl_irq_info *); -+ int (*activate_dedicated_process)(struct cxl_afu *); -+ int (*attach_afu_directed)(struct cxl_context *, u64, u64); -+ int (*attach_dedicated_process)(struct cxl_context *, u64, u64); -+ void (*update_dedicated_ivtes)(struct cxl_context *); -+ void (*debugfs_add_adapter_regs)(struct cxl *, struct dentry *); -+ void (*debugfs_add_afu_regs)(struct cxl_afu *, struct dentry *); -+ void (*psl_irq_dump_registers)(struct cxl_context *); -+ void (*err_irq_dump_registers)(struct cxl *); -+ void (*debugfs_stop_trace)(struct cxl *); -+ void (*write_timebase_ctrl)(struct cxl *); -+ u64 (*timebase_read)(struct cxl *); -+ int capi_mode; -+ bool needs_reset_before_disable; -+}; -+ -+struct cxl_irq_info { -+ u64 dsisr; -+ u64 dar; -+ u64 dsr; -+ u64 reserved; -+ u64 afu_err; -+ u64 errstat; -+ u64 proc_handle; -+ u64 padding[2]; -+}; -+ -+struct cxl_native { -+ u64 afu_desc_off; -+ u64 afu_desc_size; -+ void *p1_mmio; -+ void *p2_mmio; -+ irq_hw_number_t err_hwirq; -+ unsigned int err_virq; -+ u64 ps_off; -+ bool no_data_cache; -+ const struct cxl_service_layer_ops *sl_ops; -+}; -+ -+struct cxl_guest { -+ struct platform_device *pdev; -+ int irq_nranges; -+ struct cdev cdev; -+ irq_hw_number_t irq_base_offset; -+ struct irq_avail *irq_avail; -+ spinlock_t irq_alloc_lock; -+ u64 handle; -+ char *status; -+ u16 vendor; -+ u16 device; -+ u16 subsystem_vendor; -+ u16 subsystem; -+}; -+ -+struct cxl_calls { -+ void (*cxl_slbia)(struct mm_struct *); -+ struct module *owner; -+}; -+ -+struct dax_operations { -+ long int (*direct_access)(struct dax_device *, long unsigned int, long int, void **, pfn_t *); -+ bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); -+ size_t (*copy_from_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ size_t (*copy_to_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); -+}; -+ -+struct dax_device { -+ struct hlist_node list; -+ struct inode inode; -+ struct cdev cdev; -+ const char *host; -+ void *private; -+ long unsigned int flags; -+ const struct dax_operations *ops; -+}; -+ -+enum dax_device_flags { -+ DAXDEV_ALIVE = 0, -+ DAXDEV_WRITE_CACHE = 1, -+ DAXDEV_SYNC = 2, -+}; -+ -+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; -+ int id; -+ struct ida ida; -+ struct device dev; -+ struct dev_pagemap *pgmap; -+ int nr_range; -+ struct dev_dax_range *ranges; -+}; -+ -+enum dev_dax_subsys { -+ DEV_DAX_BUS = 0, -+ DEV_DAX_CLASS = 1, -+}; -+ -+struct dev_dax_data { -+ struct dax_region *dax_region; -+ struct dev_pagemap *pgmap; -+ enum dev_dax_subsys subsys; -+ resource_size_t size; -+ int id; -+}; -+ -+struct dax_device_driver { -+ struct device_driver drv; -+ struct list_head ids; -+ int match_always; -+ 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 nvdimm; -+ -+struct nvdimm_bus_descriptor; -+ -+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 nvdimm_bus; -+ -+struct cxl_component_regs { -+ void *hdm_decoder; -+}; -+ -+struct cxl_device_regs { -+ void *status; -+ void *mbox; -+ void *memdev; -+}; -+ -+struct cxl_regs { -+ union { -+ struct { -+ void *hdm_decoder; -+ }; -+ struct cxl_component_regs component; -+ }; -+ union { -+ struct { -+ void *status; -+ void *mbox; -+ void *memdev; -+ }; -+ struct cxl_device_regs device_regs; -+ }; -+}; -+ -+struct cxl_reg_map { -+ bool valid; -+ long unsigned int offset; -+ long unsigned int size; -+}; -+ -+struct cxl_component_reg_map { -+ struct cxl_reg_map hdm_decoder; -+}; -+ -+struct cxl_device_reg_map { -+ struct cxl_reg_map status; -+ struct cxl_reg_map mbox; -+ struct cxl_reg_map memdev; -+}; -+ -+struct cxl_register_map { -+ struct list_head list; -+ u64 block_offset; -+ u8 reg_type; -+ u8 barno; -+ union { -+ struct cxl_component_reg_map component_map; -+ struct cxl_device_reg_map device_map; -+ }; -+}; -+ -+enum cxl_decoder_type { -+ CXL_DECODER_ACCELERATOR = 2, -+ CXL_DECODER_EXPANDER = 3, -+}; -+ -+struct cxl_dport; -+ -+struct cxl_decoder { -+ struct device dev; -+ int id; -+ struct range range; -+ int interleave_ways; -+ int interleave_granularity; -+ enum cxl_decoder_type target_type; -+ long unsigned int flags; -+ struct cxl_dport *target[0]; -+}; -+ -+struct cxl_port; -+ -+struct cxl_dport { -+ struct device *dport; -+ int port_id; -+ resource_size_t component_reg_phys; -+ struct cxl_port *port; -+ struct list_head list; -+}; -+ -+enum cxl_nvdimm_brige_state { -+ CXL_NVB_NEW = 0, -+ CXL_NVB_DEAD = 1, -+ CXL_NVB_ONLINE = 2, -+ CXL_NVB_OFFLINE = 3, -+}; -+ -+struct cxl_nvdimm_bridge { -+ struct device dev; -+ struct cxl_port *port; -+ struct nvdimm_bus *nvdimm_bus; -+ struct nvdimm_bus_descriptor nd_desc; -+ struct work_struct state_work; -+ enum cxl_nvdimm_brige_state state; -+}; -+ -+struct cxl_port { -+ struct device dev; -+ struct device *uport; -+ int id; -+ struct list_head dports; -+ struct ida decoder_ida; -+ resource_size_t component_reg_phys; -+}; -+ -+struct cxl_memdev; -+ -+struct cxl_nvdimm { -+ struct device dev; -+ struct cxl_memdev *cxlmd; -+ struct nvdimm *nvdimm; -+}; -+ -+struct cxl_mem; -+ -+struct cxl_memdev { -+ struct device dev; -+ struct cdev cdev; -+ struct cxl_mem *cxlm; -+ int id; -+}; -+ -+struct cxl_driver { -+ const char *name; -+ int (*probe)(struct device *); -+ void (*remove)(struct device *); -+ struct device_driver drv; -+ int id; -+}; -+ -+struct cxl_mem { -+ struct pci_dev *pdev; -+ struct cxl_memdev *cxlmd; -+ struct cxl_regs regs; -+ size_t payload_size; -+ size_t lsa_size; -+ struct mutex mbox_mutex; -+ char firmware_version[16]; -+ long unsigned int *enabled_cmds; -+ struct range pmem_range; -+ struct range ram_range; -+}; -+ -+struct seqcount_ww_mutex { -+ seqcount_t seqcount; -+}; -+ -+typedef struct seqcount_ww_mutex seqcount_ww_mutex_t; -+ -+struct dma_buf_map { -+ union { -+ void *vaddr_iomem; -+ void *vaddr; -+ }; -+ bool is_iomem; -+}; -+ -+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 { -+ 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); -+}; -+ -+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_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; -+ -+struct dma_buf_attachment; -+ -+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 dma_buf_map *); -+ void (*vunmap)(struct dma_buf *, struct dma_buf_map *); -+}; -+ -+struct dma_buf_poll_cb_t { -+ struct dma_fence_cb cb; -+ wait_queue_head_t *poll; -+ __poll_t active; -+}; -+ -+struct dma_resv; -+ -+struct dma_buf { -+ size_t size; -+ struct file *file; -+ struct list_head attachments; -+ const struct dma_buf_ops *ops; -+ struct mutex lock; -+ unsigned int vmapping_counter; -+ struct dma_buf_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_excl; -+ struct dma_buf_poll_cb_t cb_shared; -+}; -+ -+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_resv_list; -+ -+struct dma_resv { -+ struct ww_mutex lock; -+ seqcount_ww_mutex_t seq; -+ struct dma_fence *fence_excl; -+ struct dma_resv_list *fence; -+}; -+ -+struct dma_buf_attach_ops { -+ bool allow_peer2peer; -+ void (*move_notify)(struct dma_buf_attachment *); -+}; -+ -+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_list { -+ struct callback_head rcu; -+ u32 shared_count; -+ u32 shared_max; -+ struct dma_fence *shared[0]; -+}; -+ -+struct dma_buf_sync { -+ __u64 flags; -+}; -+ -+struct dma_buf_list { -+ struct list_head head; -+ struct mutex lock; -+}; -+ -+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; -+ u32 timeline; -+}; -+ -+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_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_chain { -+ struct dma_fence base; -+ spinlock_t lock; -+ struct dma_fence *prev; -+ u64 prev_seqno; -+ struct dma_fence *fence; -+ struct dma_fence_cb cb; -+ struct irq_work work; -+}; -+ -+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 seqno_fence_condition { -+ SEQNO_FENCE_WAIT_GEQUAL = 0, -+ SEQNO_FENCE_WAIT_NONZERO = 1, -+}; -+ -+struct seqno_fence { -+ struct dma_fence base; -+ const struct dma_fence_ops *ops; -+ struct dma_buf *sync_buf; -+ uint32_t seqno_ofs; -+ enum seqno_fence_condition condition; -+}; -+ -+struct dma_heap; -+ -+struct dma_heap_ops { -+ struct dma_buf * (*allocate)(struct dma_heap *, long unsigned int, long unsigned int, long unsigned int); -+}; -+ -+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_export_info { -+ const char *name; -+ const struct dma_heap_ops *ops; -+ void *priv; -+}; -+ -+struct dma_heap_allocation_data { -+ __u64 len; -+ __u32 fd; -+ __u32 fd_flags; -+ __u64 heap_flags; -+}; -+ -+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_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; -+}; -+ -+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_TARGET_FAILURE = 16, -+ DID_NEXUS_FAILURE = 17, -+ DID_ALLOC_FAILURE = 18, -+ DID_MEDIUM_ERROR = 19, -+ 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; -+ -+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; -+ unsigned char current_tag; -+ struct scsi_target *sdev_target; -+ blist_flags_t sdev_bflags; -+ unsigned int eh_timeout; -+ 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 no_report_opcodes: 1; -+ unsigned int no_write_same: 1; -+ unsigned int use_16_for_rw: 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 manage_start_stop: 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; -+ 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; -+ struct device sdev_gendev; -+ struct device sdev_dev; -+ struct execute_work ew; -+ struct work_struct requeue_work; -+ struct scsi_device_handler *handler; -+ void *handler_data; -+ size_t dma_drain_len; -+ void *dma_drain_buf; -+ 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_cmd_q; -+ struct task_struct *ehandler; -+ struct completion *eh_action; -+ wait_queue_head_t host_wait; -+ struct scsi_host_template *hostt; -+ struct scsi_transport_template *transportt; -+ 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 max_segment_size; -+ 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 short_inquiry: 1; -+ unsigned int no_scsi2_lun_in_cdb: 1; -+ char work_q_name[20]; -+ 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; -+ 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_host_cmd_pool; -+ -+struct scsi_cmnd; -+ -+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 (*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); -+ int (*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 blk_eh_timer_return (*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; -+ struct proc_dir_entry *proc_dir; -+ 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; -+ long unsigned int dma_boundary; -+ long unsigned int virt_boundary_mask; -+ short int cmd_per_lun; -+ unsigned char present; -+ 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 max_host_blocked; -+ struct device_attribute **shost_attrs; -+ struct device_attribute **sdev_attrs; -+ const struct attribute_group **sdev_groups; -+ u64 vendor_id; -+ struct scsi_host_cmd_pool *cmd_pool; -+ int rpm_autosuspend_delay; -+}; -+ -+struct scsi_data_buffer { -+ struct sg_table table; -+ unsigned int length; -+}; -+ -+struct scsi_pointer { -+ char *ptr; -+ int this_residual; -+ struct scatterlist *buffer; -+ int buffers_residual; -+ dma_addr_t dma_handle; -+ volatile int Status; -+ volatile int Message; -+ volatile int have_data_in; -+ volatile int sent_command; -+ volatile int phase; -+}; -+ -+struct scsi_cmnd { -+ struct scsi_request req; -+ 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; -+ short unsigned int cmd_len; -+ enum dma_data_direction sc_data_direction; -+ unsigned char *cmnd; -+ struct scsi_data_buffer sdb; -+ struct scsi_data_buffer *prot_sdb; -+ unsigned int underflow; -+ unsigned int transfersize; -+ struct request *request; -+ unsigned char *sense_buffer; -+ void (*scsi_done)(struct scsi_cmnd *); -+ struct scsi_pointer SCp; -+ unsigned char *host_scribble; -+ int result; -+ int flags; -+ long unsigned int state; -+ unsigned char tag; -+ unsigned int extra_len; -+}; -+ -+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; -+ 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 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; -+ 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; -+ 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; -+ unsigned int data_sglen; -+ unsigned int prot_sglen; -+ unsigned char prot_op; -+ u32 __data_loc_cmnd; -+ 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; -+}; -+ -+struct trace_event_data_offsets_scsi_dispatch_cmd_error { -+ u32 cmnd; -+}; -+ -+struct trace_event_data_offsets_scsi_cmd_done_timeout_template { -+ u32 cmnd; -+}; -+ -+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 *); -+ -+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 scsi_host_busy_iter_data { -+ bool (*fn)(struct scsi_cmnd *, void *, bool); -+ void *priv; -+}; -+ -+struct scsi_idlun { -+ __u32 dev_id; -+ __u32 host_unique_id; -+}; -+ -+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_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; -+ struct scsi_data_buffer sdb; -+ unsigned char eh_cmnd[16]; -+ struct scatterlist sense_sgl; -+}; -+ -+struct scsi_varlen_cdb_hdr { -+ __u8 opcode; -+ __u8 control; -+ __u8 misc[5]; -+ __u8 additional_cdb_length; -+ __be16 service_action; -+}; -+ -+struct scsi_mode_data { -+ __u32 length; -+ __u16 block_descriptor_length; -+ __u8 medium_type; -+ __u8 device_specific; -+ __u8 header_length; -+ __u8 longlba: 1; -+}; -+ -+struct scsi_event { -+ enum scsi_device_event evt_type; -+ struct list_head node; -+}; -+ -+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_RETRY = 2, -+ ACTION_DELAYED_RETRY = 3, -+}; -+ -+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_lun { -+ __u8 scsi_lun[8]; -+}; -+ -+enum scsi_timeouts { -+ SCSI_DEFAULT_EH_TIMEOUT = 1000, -+}; -+ -+enum scsi_scan_mode { -+ SCSI_SCAN_INITIAL = 0, -+ SCSI_SCAN_RESCAN = 1, -+ SCSI_SCAN_MANUAL = 2, -+}; -+ -+struct async_scan_data { -+ struct list_head list; -+ struct Scsi_Host *shost; -+ struct completion prev_finished; -+}; -+ -+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_nl_hdr { -+ __u8 version; -+ __u8 transport; -+ __u16 magic; -+ __u16 msgtype; -+ __u16 msglen; -+}; -+ -+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 rdac_mode_6_hdr { -+ u8 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u8 block_desc_len; -+}; -+ -+struct rdac_mode_10_hdr { -+ u16 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u16 reserved; -+ u16 block_desc_len; -+}; -+ -+struct rdac_mode_common { -+ u8 controller_serial[16]; -+ u8 alt_controller_serial[16]; -+ u8 rdac_mode[2]; -+ u8 alt_rdac_mode[2]; -+ u8 quiescence_timeout; -+ u8 rdac_options; -+}; -+ -+struct rdac_pg_legacy { -+ struct rdac_mode_6_hdr hdr; -+ u8 page_code; -+ u8 page_len; -+ struct rdac_mode_common common; -+ u8 lun_table[32]; -+ u8 reserved2[32]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct rdac_pg_expanded { -+ struct rdac_mode_10_hdr hdr; -+ u8 page_code; -+ u8 subpage_code; -+ u8 page_len[2]; -+ struct rdac_mode_common common; -+ u8 lun_table[256]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct c9_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 avte_cvp; -+ u8 path_prio; -+ u8 reserved2[38]; -+}; -+ -+struct c4_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 subsys_id[16]; -+ u8 revision[4]; -+ u8 slot_id[2]; -+ u8 reserved[2]; -+}; -+ -+struct c8_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 reserved2[3]; -+ u8 vol_uniq_id_len; -+ u8 vol_uniq_id[16]; -+ u8 vol_user_label_len; -+ u8 vol_user_label[60]; -+ u8 array_uniq_id_len; -+ u8 array_unique_id[16]; -+ u8 array_user_label_len; -+ u8 array_user_label[60]; -+ u8 lun[8]; -+}; -+ -+struct rdac_controller { -+ u8 array_id[16]; -+ int use_ms10; -+ struct kref kref; -+ struct list_head node; -+ union { -+ struct rdac_pg_legacy legacy; -+ struct rdac_pg_expanded expanded; -+ } mode_select; -+ u8 index; -+ u8 array_name[31]; -+ struct Scsi_Host *host; -+ spinlock_t ms_lock; -+ int ms_queued; -+ struct work_struct ms_work; -+ struct scsi_device *ms_sdev; -+ struct list_head ms_head; -+ struct list_head dh_list; -+}; -+ -+struct c2_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 sw_version[3]; -+ u8 sw_date[3]; -+ u8 features_enabled; -+ u8 max_lun_supported; -+ u8 partitions[239]; -+}; -+ -+struct rdac_dh_data { -+ struct list_head node; -+ struct rdac_controller *ctlr; -+ struct scsi_device *sdev; -+ unsigned int lun; -+ unsigned char mode; -+ unsigned char state; -+ char lun_state; -+ char preferred; -+ union { -+ struct c2_inquiry c2; -+ struct c4_inquiry c4; -+ struct c8_inquiry c8; -+ struct c9_inquiry c9; -+ } inq; -+}; -+ -+struct rdac_queue_data { -+ struct list_head entry; -+ struct rdac_dh_data *h; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+struct hp_sw_dh_data { -+ int path_state; -+ int retries; -+ int retry_cnt; -+ struct scsi_device *sdev; -+}; -+ -+struct clariion_dh_data { -+ unsigned int flags; -+ unsigned char buffer[252]; -+ int lun_state; -+ int port; -+ int default_sp; -+ int current_sp; -+}; -+ -+struct alua_port_group { -+ struct kref kref; -+ struct callback_head rcu; -+ struct list_head node; -+ struct list_head dh_list; -+ unsigned char device_id_str[256]; -+ int device_id_len; -+ int group_id; -+ int tpgs; -+ int state; -+ int pref; -+ int valid_states; -+ unsigned int flags; -+ unsigned char transition_tmo; -+ long unsigned int expiry; -+ long unsigned int interval; -+ struct delayed_work rtpg_work; -+ spinlock_t lock; -+ struct list_head rtpg_list; -+ struct scsi_device *rtpg_sdev; -+}; -+ -+struct alua_dh_data { -+ struct list_head node; -+ struct alua_port_group *pg; -+ int group_id; -+ spinlock_t pg_lock; -+ struct scsi_device *sdev; -+ int init_error; -+ struct mutex init_mutex; -+ bool disabled; -+}; -+ -+struct alua_queue_data { -+ struct list_head entry; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+struct devprobe2 { -+ struct net_device * (*probe)(int); -+ int status; -+}; -+ -+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, -+ NETIF_F_LLTX_BIT = 12, -+ NETIF_F_NETNS_LOCAL_BIT = 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, -+ NETIF_F_FCOE_MTU_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, -+}; -+ -+typedef struct bio_vec skb_frag_t; -+ -+struct skb_shared_hwtstamps { -+ ktime_t hwtstamp; -+}; -+ -+enum { -+ SKBTX_HW_TSTAMP = 1, -+ SKBTX_SW_TSTAMP = 2, -+ SKBTX_IN_PROGRESS = 4, -+ SKBTX_WIFI_STATUS = 16, -+ SKBTX_SCHED_TSTAMP = 64, -+}; -+ -+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; -+ struct skb_shared_hwtstamps hwtstamps; -+ unsigned int gso_type; -+ u32 tskey; -+ atomic_t dataref; -+ void *destructor_arg; -+ skb_frag_t frags[16]; -+}; -+ -+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_LIVE_RENAME_OK = 1073741824, -+ IFF_TX_SKB_NO_LINEAR = 2147483648, -+}; -+ -+struct mdio_board_info { -+ const char *bus_id; -+ char modalias[32]; -+ int mdio_addr; -+ const void *platform_data; -+}; -+ -+struct mdio_board_entry { -+ struct list_head list; -+ struct mdio_board_info board_info; -+}; -+ -+struct mdiobus_devres { -+ struct mii_bus *mii; -+}; -+ -+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 mii_ioctl_data { -+ __u16 phy_id; -+ __u16 reg_num; -+ __u16 val_in; -+ __u16 val_out; -+}; -+ -+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_KERNEL_CNT = 35, -+ ETHTOOL_MSG_KERNEL_MAX = 34, -+}; -+ -+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_CNT = 5, -+ ETHTOOL_A_STATS_MAX = 4, -+}; -+ -+struct phy_led_trigger { -+ struct led_trigger trigger; -+ char name[76]; -+ unsigned int speed; -+}; -+ -+struct phy_setting { -+ u32 speed; -+ u8 duplex; -+ u8 bit; -+}; -+ -+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 (*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 *); -+}; -+ -+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 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 mdio_driver { -+ struct mdio_driver_common mdiodrv; -+ int (*probe)(struct mdio_device *); -+ void (*remove)(struct mdio_device *); -+}; -+ -+struct fixed_phy_status { -+ int link; -+ int speed; -+ int duplex; -+ int pause; -+ int asym_pause; -+}; -+ -+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 mii_timestamping_ctrl { -+ struct mii_timestamper * (*probe_channel)(struct device *, unsigned int); -+ void (*release_channel)(struct device *, struct mii_timestamper *); -+}; -+ -+struct mii_timestamping_desc { -+ struct list_head list; -+ struct mii_timestamping_ctrl *ctrl; -+ struct device *device; -+}; -+ -+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; -+}; -+ -+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_MAX = 58, -+}; -+ -+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 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_MAX = 5, -+ WWAN_PORT_MAX = 4, -+ WWAN_PORT_UNKNOWN = 5, -+}; -+ -+struct wwan_port; -+ -+struct wwan_port_ops { -+ int (*start)(struct wwan_port *); -+ void (*stop)(struct wwan_port *); -+ int (*tx)(struct wwan_port *, struct sk_buff *); -+ int (*tx_blocking)(struct wwan_port *, struct sk_buff *); -+ __poll_t (*tx_poll)(struct wwan_port *, struct file *, poll_table *); -+}; -+ -+struct wwan_port { -+ enum wwan_port_type type; -+ unsigned int start_count; -+ long unsigned int flags; -+ const struct wwan_port_ops *ops; -+ struct mutex ops_lock; -+ struct device dev; -+ struct sk_buff_head rxq; -+ wait_queue_head_t waitqueue; -+ struct mutex data_lock; -+ union { -+ struct { -+ struct ktermios termios; -+ int mdmbits; -+ } at_data; -+ }; -+}; -+ -+struct wwan_netdev_priv { -+ u32 link_id; -+ int: 32; -+ u8 drv_priv[0]; -+}; -+ -+struct wwan_ops { -+ unsigned int priv_size; -+ void (*setup)(struct net_device *); -+ int (*newlink)(void *, struct net_device *, u32, struct netlink_ext_ack *); -+ void (*dellink)(void *, struct net_device *, struct list_head *); -+}; -+ -+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 { -+ IFLA_WWAN_UNSPEC = 0, -+ IFLA_WWAN_LINK_ID = 1, -+ __IFLA_WWAN_MAX = 2, -+}; -+ -+struct wwan_device { -+ unsigned int id; -+ struct device dev; -+ atomic_t port_id; -+ const struct wwan_ops *ops; -+ void *ops_ctxt; -+}; -+ -+struct socket_state_t { -+ u_int flags; -+ u_int csc_mask; -+ u_char Vcc; -+ u_char Vpp; -+ u_char io_irq; -+}; -+ -+typedef struct socket_state_t socket_state_t; -+ -+struct pccard_io_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t start; -+ phys_addr_t stop; -+}; -+ -+struct pccard_mem_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t static_start; -+ u_int card_start; -+ struct resource *res; -+}; -+ -+typedef struct pccard_mem_map pccard_mem_map; -+ -+struct io_window_t { -+ u_int InUse; -+ u_int Config; -+ struct resource *res; -+}; -+ -+typedef struct io_window_t io_window_t; -+ -+struct pcmcia_socket; -+ -+struct pccard_operations { -+ int (*init)(struct pcmcia_socket *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*get_status)(struct pcmcia_socket *, u_int *); -+ int (*set_socket)(struct pcmcia_socket *, socket_state_t *); -+ int (*set_io_map)(struct pcmcia_socket *, struct pccard_io_map *); -+ int (*set_mem_map)(struct pcmcia_socket *, struct pccard_mem_map *); -+}; -+ -+struct pccard_resource_ops; -+ -+struct pcmcia_callback; -+ -+struct pcmcia_socket { -+ struct module *owner; -+ socket_state_t socket; -+ u_int state; -+ u_int suspended_state; -+ u_short functions; -+ u_short lock_count; -+ pccard_mem_map cis_mem; -+ void *cis_virt; -+ io_window_t io[2]; -+ pccard_mem_map win[4]; -+ struct list_head cis_cache; -+ size_t fake_cis_len; -+ u8 *fake_cis; -+ struct list_head socket_list; -+ struct completion socket_released; -+ unsigned int sock; -+ u_int features; -+ u_int irq_mask; -+ u_int map_size; -+ u_int io_offset; -+ u_int pci_irq; -+ struct pci_dev *cb_dev; -+ u8 resource_setup_done; -+ struct pccard_operations *ops; -+ struct pccard_resource_ops *resource_ops; -+ void *resource_data; -+ void (*zoom_video)(struct pcmcia_socket *, int); -+ int (*power_hook)(struct pcmcia_socket *, int); -+ void (*tune_bridge)(struct pcmcia_socket *, struct pci_bus *); -+ struct task_struct *thread; -+ struct completion thread_done; -+ unsigned int thread_events; -+ unsigned int sysfs_events; -+ struct mutex skt_mutex; -+ struct mutex ops_mutex; -+ spinlock_t thread_lock; -+ struct pcmcia_callback *callback; -+ struct device dev; -+ void *driver_data; -+ int resume_status; -+}; -+ -+struct pccard_resource_ops { -+ int (*validate_mem)(struct pcmcia_socket *); -+ int (*find_io)(struct pcmcia_socket *, unsigned int, unsigned int *, unsigned int, unsigned int, struct resource **); -+ struct resource * (*find_mem)(long unsigned int, long unsigned int, long unsigned int, int, struct pcmcia_socket *); -+ int (*init)(struct pcmcia_socket *); -+ void (*exit)(struct pcmcia_socket *); -+}; -+ -+struct pcmcia_callback { -+ struct module *owner; -+ int (*add)(struct pcmcia_socket *); -+ int (*remove)(struct pcmcia_socket *); -+ void (*requery)(struct pcmcia_socket *); -+ int (*validate)(struct pcmcia_socket *, unsigned int *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*early_resume)(struct pcmcia_socket *); -+ int (*resume)(struct pcmcia_socket *); -+}; -+ -+enum { -+ PCMCIA_IOPORT_0 = 0, -+ PCMCIA_IOPORT_1 = 1, -+ PCMCIA_IOMEM_0 = 2, -+ PCMCIA_IOMEM_1 = 3, -+ PCMCIA_IOMEM_2 = 4, -+ PCMCIA_IOMEM_3 = 5, -+ PCMCIA_NUM_RESOURCES = 6, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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_descriptor_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+}; -+ -+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_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; -+ __le32 bmSublinkSpeedAttr[1]; -+}; -+ -+struct usb_ptm_cap_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+enum usb3_link_state { -+ USB3_LPM_U0 = 0, -+ USB3_LPM_U1 = 1, -+ USB3_LPM_U2 = 2, -+ USB3_LPM_U3 = 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; -+ char: 8; -+ struct list_head urb_list; -+ void *hcpriv; -+ struct ep_device *ep_dev; -+ unsigned char *extra; -+ int extralen; -+ int enabled; -+ int streams; -+ int: 32; -+} __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, -+}; -+ -+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; -+ 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_devmap { -+ long unsigned int devicemap[2]; -+}; -+ -+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; -+ struct usb_devmap devmap; -+ 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; -+}; -+ -+struct wusb_dev; -+ -+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 have_langid: 1; -+ unsigned int authorized: 1; -+ unsigned int authenticated: 1; -+ unsigned int wusb: 1; -+ unsigned int lpm_capable: 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; -+ struct wusb_dev *wusb_dev; -+ 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; -+}; -+ -+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_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 usbdrv_wrap { -+ struct device_driver driver; -+ int for_devices; -+}; -+ -+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 *); -+ const struct usb_device_id *id_table; -+ const struct attribute_group **dev_groups; -+ struct usb_dynids dynids; -+ struct usbdrv_wrap drvwrap; -+ 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); -+ const struct attribute_group **dev_groups; -+ struct usbdrv_wrap drvwrap; -+ const struct usb_device_id *id_table; -+ unsigned int supports_autosuspend: 1; -+ unsigned int generic_subclass: 1; -+}; -+ -+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 giveback_urb_bh { -+ bool running; -+ spinlock_t lock; -+ struct list_head head; -+ struct tasklet_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 usb_phy_roothub; -+ -+struct dma_pool___2; -+ -+struct hc_driver; -+ -+struct usb_phy; -+ -+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 wireless: 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___2 *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 *, 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 *); -+ 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); -+}; -+ -+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_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 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_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; -+ -+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 *); -+ 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 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 *); -+}; -+ -+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 work_struct events; -+ spinlock_t irq_urb_lock; -+ struct timer_list irq_urb_retry; -+ struct usb_port **ports; -+}; -+ -+struct usb_dev_state; -+ -+struct usb_port { -+ struct usb_device *child; -+ struct device dev; -+ struct usb_dev_state *port_owner; -+ struct usb_port *peer; -+ struct dev_pm_qos_request *req; -+ enum usb_port_connect_type connect_type; -+ usb_port_location_t location; -+ struct mutex status_lock; -+ u32 over_current_count; -+ u8 portnum; -+ u32 quirks; -+ unsigned int is_superspeed: 1; -+ unsigned int usb3_lpm_u1_permit: 1; -+ unsigned int usb3_lpm_u2_permit: 1; -+}; -+ -+struct find_interface_arg { -+ int minor; -+ struct device_driver *drv; -+}; -+ -+struct each_dev_arg { -+ void *data; -+ int (*fn)(struct usb_device *, void *); -+}; -+ -+struct each_hub_arg { -+ void *data; -+ int (*fn)(struct device *, void *); -+}; -+ -+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, -+}; -+ -+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_ctrlrequest { -+ __u8 bRequestType; -+ __u8 bRequest; -+ __le16 wValue; -+ __le16 wIndex; -+ __le16 wLength; -+}; -+ -+enum usb_led_event { -+ USB_LED_EVENT_HOST = 0, -+ USB_LED_EVENT_GADGET = 1, -+}; -+ -+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); -+}; -+ -+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 usb_dynid { -+ struct list_head node; -+ struct usb_device_id id; -+}; -+ -+struct usb_dev_cap_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+struct usb_class_driver { -+ char *name; -+ char * (*devnode)(struct device *, umode_t *); -+ const struct file_operations *fops; -+ int minor_base; -+}; -+ -+struct usb_class { -+ struct kref kref; -+ struct class *class; -+}; -+ -+struct ep_device { -+ struct usb_endpoint_descriptor *desc; -+ struct usb_device *udev; -+ struct device dev; -+}; -+ -+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___2 { -+ 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___2 *ps; -+}; -+ -+struct async { -+ struct list_head asynclist; -+ struct usb_dev_state___2 *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 quirk_entry { -+ u16 vid; -+ u16 pid; -+ u32 flags; -+}; -+ -+struct class_info { -+ int class; -+ char *class_name; -+}; -+ -+struct usb_phy_roothub___2 { -+ struct phy *phy; -+ struct list_head list; -+}; -+ -+typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); -+ -+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 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 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 snap { -+ int slen; -+ char str[80]; -+}; -+ -+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 = 10, -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct ehci_stats { -+ long unsigned int normal; -+ long unsigned int error; -+ long unsigned int iaa; -+ long unsigned int lost_iaa; -+ long unsigned int complete; -+ long unsigned int unlink; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *qtd_pool; -+ struct dma_pool___2 *itd_pool; -+ struct dma_pool___2 *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 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; -+ __le32 *ohci_hcctrl_reg; -+ unsigned int has_hostpc: 1; -+ unsigned int has_tdi_phy_lpm: 1; -+ unsigned int has_ppcd: 1; -+ u8 sbrn; -+ struct ehci_stats stats; -+ struct dentry *debug_dir; -+ 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; -+ u32 port_status[0]; -+ u32 reserved3[9]; -+ u32 usbmode; -+ u32 reserved4[6]; -+ u32 hostpc[0]; -+ u32 reserved5[17]; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_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_tt { -+ u16 bandwidth[8]; -+ struct list_head tt_list; -+ struct list_head ps_list; -+ struct usb_tt *usb_tt; -+ int tt_port; -+}; -+ -+struct ehci_driver_overrides { -+ size_t extra_priv_size; -+ int (*reset)(struct usb_hcd *); -+ int (*port_power)(struct usb_hcd *, int, bool); -+}; -+ -+struct debug_buffer { -+ ssize_t (*fill_func)(struct debug_buffer *); -+ struct usb_bus *bus; -+ struct mutex mutex; -+ size_t count; -+ char *output_buf; -+ size_t alloc_size; -+}; -+ -+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; -+}; -+ -+struct urb_priv { -+ struct ed *ed; -+ u16 length; -+ u16 td_cnt; -+ struct list_head pending; -+ struct td *td[0]; -+}; -+ -+typedef struct urb_priv urb_priv_t; -+ -+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___2 *td_cache; -+ struct dma_pool___2 *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 debug_buffer___2 { -+ ssize_t (*fill_func)(struct debug_buffer___2 *); -+ struct ohci_hcd *ohci; -+ struct mutex mutex; -+ size_t count; -+ char *page; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *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; -+}; -+ -+struct uhci_debug { -+ int size; -+ char *data; -+}; -+ -+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]; -+}; -+ -+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]; -+}; -+ -+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; -+}; -+ -+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 err_count; -+ unsigned int stream_id; -+ unsigned int num_segs; -+ unsigned int num_trbs_free; -+ unsigned int num_trbs_free_temp; -+ unsigned int bounce_buf_len; -+ enum xhci_ring_type type; -+ bool last_td_was_short; -+ 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 ep_state; -+ struct list_head cancelled_td_list; -+ struct timer_list stop_cmd_timer; -+ 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; -+ int next_frame_id; -+ bool use_extended_tbc; -+}; -+ -+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]; -+ u8 fake_port; -+ u8 real_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_erst_entry; -+ -+struct xhci_erst { -+ struct xhci_erst_entry *entries; -+ unsigned int num_entries; -+ dma_addr_t erst_dma_addr; -+ unsigned int erst_size; -+}; -+ -+struct s3_save { -+ u32 command; -+ u32 dev_nt; -+ u64 dcbaa_ptr; -+ u32 config_reg; -+ u32 irq_pending; -+ u32 irq_control; -+ u32 erst_size; -+ u64 erst_base; -+ u64 erst_dequeue; -+}; -+ -+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 resume_done[31]; -+ long unsigned int resuming_ports; -+ long unsigned int rexit_ports; -+ struct completion rexit_done[31]; -+ struct completion u3exit_done[31]; -+}; -+ -+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_device_context_array; -+ -+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; -+ struct xhci_intr_reg *ir_set; -+ __u32 hcs_params1; -+ __u32 hcs_params2; -+ __u32 hcs_params3; -+ __u32 hcc_params; -+ __u32 hcc_params2; -+ spinlock_t lock; -+ u8 sbrn; -+ u16 hci_version; -+ u8 max_slots; -+ u8 max_interrupters; -+ u8 max_ports; -+ u8 isoc_threshold; -+ u32 imod_interval; -+ u32 isoc_bei_interval; -+ int event_ring_max; -+ int page_size; -+ int page_shift; -+ int msix_count; -+ struct clk *clk; -+ struct clk *reg_clk; -+ struct reset_control *reset; -+ struct xhci_device_context_array *dcbaa; -+ 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_ring *event_ring; -+ struct xhci_erst erst; -+ struct xhci_scratchpad *scratchpad; -+ struct list_head lpm_failed_devs; -+ struct mutex mutex; -+ struct xhci_command *lpm_command; -+ struct xhci_virt_device *devs[256]; -+ struct xhci_root_port_bw_info *rh_bw; -+ struct dma_pool___2 *device_pool; -+ struct dma_pool___2 *segment_pool; -+ struct dma_pool___2 *small_streams_pool; -+ struct dma_pool___2 *medium_streams_pool; -+ unsigned int xhc_state; -+ u32 command; -+ 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; -+ u32 *ext_caps; -+ unsigned int num_ext_caps; -+ 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; -+ 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_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_CLEARED = 3, -+}; -+ -+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; -+ unsigned int num_trbs; -+}; -+ -+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___3 { -+ 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; -+}; -+ -+struct xhci_port { -+ __le32 *addr; -+ int hw_portnum; -+ int hcd_portnum; -+ struct xhci_hub *rhub; -+ struct xhci_port_cap *port_cap; -+}; -+ -+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 *); -+}; -+ -+typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); -+ -+enum xhci_ep_reset_type { -+ EP_HARD_RESET = 0, -+ EP_SOFT_RESET = 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_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_STALLED = 5, -+}; -+ -+struct xhci_dbc; -+ -+struct dbc_ep { -+ struct xhci_dbc *dbc; -+ struct list_head list_pending; -+ struct xhci_ring *ring; -+ unsigned int direction: 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; -+ enum dbc_state state; -+ struct delayed_work event_work; -+ 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; -+ int slot_id; -+ 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; -+ u8 fake_port; -+ u8 real_port; -+ 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; -+ 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 num_trbs_free; -+ unsigned int bounce_buf_len; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xhci_log_portsc { -+ struct trace_entry ent; -+ 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; -+}; -+ -+struct trace_event_data_offsets_xhci_log_ctx { -+ u32 ctx_data; -+}; -+ -+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 {}; -+ -+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 *, u32, u32); -+ -+typedef void (*btf_trace_xhci_get_port_status)(void *, u32, u32); -+ -+typedef void (*btf_trace_xhci_hub_status_data)(void *, u32, 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 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 xhci_driver_data { -+ u64 quirks; -+ const char *firmware; -+}; -+ -+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 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 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 *, struct ktermios *); -+ void (*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]; -+}; -+ -+struct usbcons_info { -+ int magic; -+ int break_flag; -+ struct usb_serial_port *port; -+}; -+ -+enum typec_port_type { -+ TYPEC_PORT_SRC = 0, -+ TYPEC_PORT_SNK = 1, -+ TYPEC_PORT_DRP = 2, -+}; -+ -+enum typec_port_data { -+ TYPEC_PORT_DFP = 0, -+ TYPEC_PORT_UFP = 1, -+ TYPEC_PORT_DRD = 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, -+}; -+ -+enum typec_orientation { -+ TYPEC_ORIENTATION_NONE = 0, -+ TYPEC_ORIENTATION_NORMAL = 1, -+ TYPEC_ORIENTATION_REVERSE = 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; -+}; -+ -+enum typec_plug_index { -+ TYPEC_PLUG_SOP_P = 0, -+ TYPEC_PLUG_SOP_PP = 1, -+}; -+ -+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_desc { -+ unsigned int usb_pd: 1; -+ enum typec_accessory accessory; -+ struct usb_pd_identity *identity; -+ u16 pd_revision; -+}; -+ -+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 typec_switch; -+ -+struct typec_mux; -+ -+struct typec_capability; -+ -+struct typec_port { -+ unsigned int id; -+ struct device dev; -+ struct ida mode_ids; -+ 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; -+ enum typec_orientation orientation; -+ struct typec_switch *sw; -+ struct typec_mux *mux; -+ const struct typec_capability *cap; -+ const struct typec_operations *ops; -+ struct list_head port_list; -+ struct mutex port_list_lock; -+ void *pld; -+}; -+ -+enum usb_pd_svdm_ver { -+ SVDM_VER_1_0 = 0, -+ SVDM_VER_2_0 = 1, -+ SVDM_VER_MAX = 1, -+}; -+ -+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; -+ const struct typec_operations *ops; -+}; -+ -+struct typec_altmode; -+ -+struct typec_mux_state { -+ struct typec_altmode *alt; -+ long unsigned int mode; -+ void *data; -+}; -+ -+struct typec_altmode_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; -+}; -+ -+struct typec_device_id { -+ __u16 svid; -+ __u8 mode; -+ kernel_ulong_t driver_data; -+}; -+ -+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); -+}; -+ -+enum { -+ TYPEC_STATE_SAFE = 0, -+ TYPEC_STATE_USB = 1, -+ TYPEC_STATE_MODAL = 2, -+}; -+ -+struct altmode { -+ unsigned int id; -+ struct typec_altmode adev; -+ struct typec_mux *mux; -+ 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_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; -+}; -+ -+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 typec_switch___2; -+ -+typedef int (*typec_switch_set_fn_t)(struct typec_switch___2 *, enum typec_orientation); -+ -+struct typec_switch___2 { -+ struct device dev; -+ typec_switch_set_fn_t set; -+}; -+ -+typedef int (*typec_mux_set_fn_t)(struct typec_mux *, struct typec_mux_state *); -+ -+struct typec_mux { -+ struct device dev; -+ typec_mux_set_fn_t set; -+}; -+ -+struct typec_switch_desc { -+ struct fwnode_handle *fwnode; -+ typec_switch_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+struct typec_mux_desc { -+ struct fwnode_handle *fwnode; -+ typec_mux_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+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 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; -+}; -+ -+struct port_node { -+ struct list_head list; -+ struct device *dev; -+ void *pld; -+}; -+ -+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_INPUT_CURRENT_LIMIT = 37, -+ POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 38, -+ POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 39, -+ POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 40, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 41, -+ POWER_SUPPLY_PROP_ENERGY_FULL = 42, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY = 43, -+ POWER_SUPPLY_PROP_ENERGY_NOW = 44, -+ POWER_SUPPLY_PROP_ENERGY_AVG = 45, -+ POWER_SUPPLY_PROP_CAPACITY = 46, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 47, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 48, -+ POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 49, -+ POWER_SUPPLY_PROP_CAPACITY_LEVEL = 50, -+ POWER_SUPPLY_PROP_TEMP = 51, -+ POWER_SUPPLY_PROP_TEMP_MAX = 52, -+ POWER_SUPPLY_PROP_TEMP_MIN = 53, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 54, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 55, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT = 56, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 57, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 58, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 59, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 60, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 61, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 62, -+ POWER_SUPPLY_PROP_TYPE = 63, -+ POWER_SUPPLY_PROP_USB_TYPE = 64, -+ POWER_SUPPLY_PROP_SCOPE = 65, -+ POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 66, -+ POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 67, -+ POWER_SUPPLY_PROP_CALIBRATE = 68, -+ POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 69, -+ POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 70, -+ POWER_SUPPLY_PROP_MANUFACTURE_DAY = 71, -+ POWER_SUPPLY_PROP_MODEL_NAME = 72, -+ POWER_SUPPLY_PROP_MANUFACTURER = 73, -+ POWER_SUPPLY_PROP_SERIAL_NUMBER = 74, -+}; -+ -+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, -+}; -+ -+union power_supply_propval { -+ int intval; -+ const char *strval; -+}; -+ -+struct power_supply; -+ -+struct power_supply_desc { -+ const char *name; -+ enum power_supply_type type; -+ const enum power_supply_usb_type *usb_types; -+ size_t num_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 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; -+ 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 thermal_zone_device *tzd; -+ struct thermal_cooling_device *tcd; -+ struct led_trigger *charging_full_trig; -+ char *charging_full_trig_name; -+ struct led_trigger *charging_trig; -+ char *charging_trig_name; -+ struct led_trigger *full_trig; -+ char *full_trig_name; -+ struct led_trigger *online_trig; -+ char *online_trig_name; -+ struct led_trigger *charging_blink_full_solid_trig; -+ char *charging_blink_full_solid_trig_name; -+}; -+ -+enum usb_role { -+ USB_ROLE_NONE = 0, -+ USB_ROLE_HOST = 1, -+ USB_ROLE_DEVICE = 2, -+}; -+ -+struct usb_role_switch; -+ -+struct ucsi; -+ -+struct ucsi_altmode; -+ -+struct ucsi_operations { -+ int (*read)(struct ucsi *, unsigned int, void *, size_t); -+ int (*sync_write)(struct ucsi *, unsigned int, const void *, size_t); -+ int (*async_write)(struct ucsi *, unsigned int, const void *, size_t); -+ bool (*update_altmodes)(struct ucsi *, struct ucsi_altmode *, struct ucsi_altmode *); -+}; -+ -+struct driver_data; -+ -+struct ucsi_capability { -+ u32 attributes; -+ u8 num_connectors; -+ u8 features; -+ u16 reserved_1; -+ u8 num_alt_modes; -+ u8 reserved_2; -+ u16 bc_version; -+ u16 pd_version; -+ u16 typec_version; -+}; -+ -+struct ucsi_connector; -+ -+struct ucsi { -+ u16 version; -+ struct device *dev; -+ struct driver_data *driver_data; -+ const struct ucsi_operations *ops; -+ struct ucsi_capability cap; -+ struct ucsi_connector *connector; -+ struct work_struct work; -+ struct mutex ppm_lock; -+ u64 ntfy; -+ long unsigned int flags; -+}; -+ -+struct ucsi_altmode { -+ u16 svid; -+ u32 mid; -+} __attribute__((packed)); -+ -+struct ucsi_connector_capability { -+ u8 op_mode; -+ u8 flags; -+}; -+ -+struct ucsi_connector_status { -+ u16 change; -+ u16 flags; -+ u32 request_data_obj; -+ u8 pwr_status; -+} __attribute__((packed)); -+ -+struct typec_partner___2; -+ -+struct ucsi_connector { -+ int num; -+ int: 32; -+ struct ucsi *ucsi; -+ struct mutex lock; -+ struct work_struct work; -+ struct completion complete; -+ struct typec_port *port; -+ struct typec_partner___2 *partner; -+ struct typec_altmode *port_altmode[30]; -+ struct typec_altmode *partner_altmode[30]; -+ struct typec_capability typec_cap; -+ u16 unprocessed_changes; -+ struct ucsi_connector_status status; -+ struct ucsi_connector_capability cap; -+ int: 24; -+ struct power_supply *psy; -+ struct power_supply_desc psy_desc; -+ u32 rdo; -+ u32 src_pdos[7]; -+ int num_pdos; -+ int: 32; -+ struct usb_role_switch *usb_role_sw; -+} __attribute__((packed)); -+ -+struct trace_event_raw_ucsi_log_command { -+ struct trace_entry ent; -+ u64 ctrl; -+ int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_connector_status { -+ struct trace_entry ent; -+ int port; -+ u16 change; -+ u8 opmode; -+ u8 connected; -+ u8 pwr_dir; -+ u8 partner_flags; -+ u8 partner_type; -+ u32 request_data_obj; -+ u8 bc_status; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_register_altmode { -+ struct trace_entry ent; -+ u8 recipient; -+ u16 svid; -+ u8 mode; -+ u32 vdo; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ucsi_log_command {}; -+ -+struct trace_event_data_offsets_ucsi_log_connector_status {}; -+ -+struct trace_event_data_offsets_ucsi_log_register_altmode {}; -+ -+typedef void (*btf_trace_ucsi_run_command)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_reset_ppm)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_connector_change)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_port)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_altmode)(void *, u8, struct typec_altmode *); -+ -+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; -+}; -+ -+enum ucsi_psy_online_states { -+ UCSI_PSY_OFFLINE = 0, -+ UCSI_PSY_FIXED_ONLINE = 1, -+ UCSI_PSY_PROG_ONLINE = 2, -+}; -+ -+struct typec_displayport_data { -+ u32 status; -+ u32 conf; -+}; -+ -+enum { -+ DP_PIN_ASSIGN_A = 0, -+ DP_PIN_ASSIGN_B = 1, -+ DP_PIN_ASSIGN_C = 2, -+ DP_PIN_ASSIGN_D = 3, -+ DP_PIN_ASSIGN_E = 4, -+ DP_PIN_ASSIGN_F = 5, -+}; -+ -+struct ucsi_dp { -+ struct typec_displayport_data data; -+ struct ucsi_connector *con; -+ struct typec_altmode *alt; -+ struct work_struct work; -+ int offset; -+ bool override; -+ bool initialized; -+ u32 header; -+ u32 *vdo_data; -+ u8 vdo_size; -+}; -+ -+struct usb_role_switch___2; -+ -+typedef int (*usb_role_switch_set_t)(struct usb_role_switch___2 *, enum usb_role); -+ -+typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch___2 *); -+ -+struct usb_role_switch___2 { -+ struct device dev; -+ struct mutex lock; -+ enum usb_role role; -+ 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; -+}; -+ -+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 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_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]; -+}; -+ -+union input_seq_state { -+ struct { -+ short unsigned int pos; -+ bool mutex_acquired; -+ }; -+ void *p; -+}; -+ -+struct input_devres { -+ struct input_dev *input; -+}; -+ -+struct input_event { -+ __kernel_ulong_t __sec; -+ __kernel_ulong_t __usec; -+ __u16 type; -+ __u16 code; -+ __s32 value; -+}; -+ -+struct input_mt_pos { -+ s16 x; -+ s16 y; -+}; -+ -+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 touchscreen_properties { -+ unsigned int max_x; -+ unsigned int max_y; -+ bool invert_x; -+ bool invert_y; -+ bool swap_x_y; -+}; -+ -+struct led_init_data { -+ struct fwnode_handle *fwnode; -+ const char *default_label; -+ const char *devicename; -+ bool devname_mandatory; -+}; -+ -+struct input_led { -+ struct led_classdev cdev; -+ struct input_handle *handle; -+ unsigned int code; -+}; -+ -+struct input_leds { -+ struct input_handle handle; -+ unsigned int num_leds; -+ struct input_led leds[0]; -+}; -+ -+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_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 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 nvmem_cell_info { -+ const char *name; -+ unsigned int offset; -+ unsigned int bytes; -+ unsigned int bit_offset; -+ unsigned int nbits; -+}; -+ -+typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); -+ -+typedef int (*nvmem_reg_write_t)(void *, 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_config { -+ struct device *dev; -+ const char *name; -+ int id; -+ struct module *owner; -+ struct gpio_desc *wp_gpio; -+ const struct nvmem_cell_info *cells; -+ int ncells; -+ const struct nvmem_keepout *keepout; -+ unsigned int nkeepout; -+ enum nvmem_type type; -+ bool read_only; -+ bool root_only; -+ struct device_node *of_node; -+ bool no_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_device; -+ -+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 i2c_devinfo { -+ struct list_head list; -+ int busnum; -+ struct i2c_board_info board_info; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_i2c_read {}; -+ -+struct trace_event_data_offsets_i2c_reply { -+ u32 buf; -+}; -+ -+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 class_compat___2; -+ -+struct i2c_cmd_arg { -+ unsigned int cmd; -+ void *arg; -+}; -+ -+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 pps_ktime { -+ __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_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_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; -+ wait_queue_head_t queue; -+ unsigned int id; -+ const void *lookup_cookie; -+ struct cdev cdev; -+ struct device *dev; -+ struct fasync_struct *async_queue; -+ spinlock_t lock; -+}; -+ -+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 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_system_timestamp { -+ struct timespec64 pre_ts; -+ struct timespec64 post_ts; -+}; -+ -+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; -+ struct ptp_pin_desc *pin_config; -+ int (*adjfine)(struct ptp_clock_info *, long int); -+ int (*adjfreq)(struct ptp_clock_info *, s32); -+ int (*adjphase)(struct ptp_clock_info *, s32); -+ 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 (*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_PPS = 2, -+ PTP_CLOCK_PPSUSR = 3, -+}; -+ -+struct ptp_clock_event { -+ int type; -+ int index; -+ union { -+ u64 timestamp; -+ struct pps_event_time pps_times; -+ }; -+}; -+ -+struct timestamp_event_queue { -+ struct ptp_extts_event buf[128]; -+ int head; -+ int tail; -+ spinlock_t lock; -+}; -+ -+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 timestamp_event_queue tsevq; -+ struct mutex tsevq_mux; -+ 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; -+}; -+ -+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 rsv[12]; -+}; -+ -+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; -+ unsigned int rsv[3]; -+ 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 ptp_vclock { -+ struct ptp_clock *pclock; -+ struct ptp_clock_info info; -+ struct ptp_clock *clock; -+ struct cyclecounter cc; -+ struct timecounter tc; -+ spinlock_t lock; -+}; -+ -+enum power_supply_notifier_events { -+ PSY_EVENT_PROP_CHANGED = 0, -+}; -+ -+enum thermal_device_mode { -+ THERMAL_DEVICE_DISABLED = 0, -+ THERMAL_DEVICE_ENABLED = 1, -+}; -+ -+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, -+}; -+ -+struct thermal_attr; -+ -+struct thermal_zone_device_ops; -+ -+struct thermal_zone_params; -+ -+struct thermal_governor; -+ -+struct thermal_zone_device { -+ int id; -+ char type[20]; -+ struct device device; -+ struct attribute_group trips_attribute_group; -+ struct thermal_attr *trip_temp_attrs; -+ struct thermal_attr *trip_type_attrs; -+ struct thermal_attr *trip_hyst_attrs; -+ enum thermal_device_mode mode; -+ void *devdata; -+ int trips; -+ long unsigned int trips_disabled; -+ long unsigned int passive_delay_jiffies; -+ long unsigned int polling_delay_jiffies; -+ int temperature; -+ int last_temperature; -+ int emul_temperature; -+ int passive; -+ int prev_low_trip; -+ int prev_high_trip; -+ atomic_t need_update; -+ struct thermal_zone_device_ops *ops; -+ struct thermal_zone_params *tzp; -+ struct thermal_governor *governor; -+ void *governor_data; -+ struct list_head thermal_instances; -+ struct ida ida; -+ struct mutex lock; -+ struct list_head node; -+ struct delayed_work poll_queue; -+ enum thermal_notify_event notify_event; -+}; -+ -+struct thermal_cooling_device_ops; -+ -+struct thermal_cooling_device { -+ int id; -+ char *type; -+ 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; -+}; -+ -+struct power_supply_battery_ocv_table { -+ int ocv; -+ int capacity; -+}; -+ -+struct power_supply_resistance_temp_table { -+ int temp; -+ int resistance; -+}; -+ -+struct power_supply_battery_info { -+ 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; -+ int factory_internal_resistance_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; -+}; -+ -+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, -+ THERMAL_TREND_RAISE_FULL = 3, -+ THERMAL_TREND_DROP_FULL = 4, -+}; -+ -+struct thermal_zone_device_ops { -+ int (*bind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ int (*unbind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ 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 (*get_trip_type)(struct thermal_zone_device *, int, enum thermal_trip_type *); -+ int (*get_trip_temp)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_temp)(struct thermal_zone_device *, int, int); -+ int (*get_trip_hyst)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_hyst)(struct thermal_zone_device *, int, 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 *, int, enum thermal_trend *); -+ void (*hot)(struct thermal_zone_device *); -+ void (*critical)(struct thermal_zone_device *); -+}; -+ -+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 thermal_bind_params; -+ -+struct thermal_zone_params { -+ char governor_name[20]; -+ bool no_hwmon; -+ int num_tbps; -+ struct thermal_bind_params *tbp; -+ 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 { -+ char name[20]; -+ int (*bind_to_tz)(struct thermal_zone_device *); -+ void (*unbind_from_tz)(struct thermal_zone_device *); -+ int (*throttle)(struct thermal_zone_device *, int); -+ struct list_head governor_list; -+}; -+ -+struct thermal_bind_params { -+ struct thermal_cooling_device *cdev; -+ int weight; -+ int trip_mask; -+ long unsigned int *binding_limits; -+ int (*match)(struct thermal_zone_device *, struct thermal_cooling_device *); -+}; -+ -+struct psy_am_i_supplied_data { -+ struct power_supply *psy; -+ unsigned int count; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 **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 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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum hwmon_pwm_attributes { -+ hwmon_pwm_input = 0, -+ hwmon_pwm_enable = 1, -+ hwmon_pwm_mode = 2, -+ hwmon_pwm_freq = 3, -+}; -+ -+enum hwmon_intrusion_attributes { -+ hwmon_intrusion_alarm = 0, -+ hwmon_intrusion_beep = 1, -+}; -+ -+struct thermal_zone_of_device_ops { -+ int (*get_temp)(void *, int *); -+ int (*get_trend)(void *, int, enum thermal_trend *); -+ int (*set_trips)(void *, int, int); -+ int (*set_emul_temp)(void *, int); -+ int (*set_trip_temp)(void *, int, int); -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_hwmon_attr_show_string { -+ u32 attr_name; -+ u32 label; -+}; -+ -+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; -+ 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 thermal_attr { -+ struct device_attribute attr; -+ char name[20]; -+}; -+ -+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_data_offsets_thermal_temperature { -+ u32 thermal_zone; -+}; -+ -+struct trace_event_data_offsets_cdev_update { -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_thermal_zone_trip { -+ u32 thermal_zone; -+}; -+ -+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); -+ -+struct thermal_instance { -+ int id; -+ char name[20]; -+ struct thermal_zone_device *tz; -+ struct thermal_cooling_device *cdev; -+ int 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 tz_node; -+ struct list_head cdev_node; -+ unsigned int weight; -+}; -+ -+struct genl_dumpit_info { -+ const struct genl_family *family; -+ struct genl_ops op; -+ struct nlattr **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_MAX = 20, -+}; -+ -+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_MAX = 14, -+}; -+ -+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_MAX = 7, -+}; -+ -+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 cdev_state; -+ int cdev_max_state; -+}; -+ -+typedef int (*cb_t)(struct param *); -+ -+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 thermal_trip { -+ struct device_node *np; -+ int temperature; -+ int hysteresis; -+ enum thermal_trip_type type; -+}; -+ -+struct __thermal_cooling_bind_param { -+ struct device_node *cooling_device; -+ long unsigned int min; -+ long unsigned int max; -+}; -+ -+struct __thermal_bind_params { -+ struct __thermal_cooling_bind_param *tcbp; -+ unsigned int count; -+ unsigned int trip_id; -+ unsigned int usage; -+}; -+ -+struct __thermal_zone { -+ int passive_delay; -+ int polling_delay; -+ int slope; -+ int offset; -+ int ntrips; -+ struct thermal_trip *trips; -+ int num_tbps; -+ struct __thermal_bind_params *tbps; -+ void *sensor_data; -+ const struct thermal_zone_of_device_ops *ops; -+}; -+ -+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; -+ 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 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; -+ -+struct mddev; -+ -+struct md_rdev; -+ -+struct md_cluster_operations { -+ int (*join)(struct mddev *, int); -+ int (*leave)(struct mddev *); -+ int (*slot_number)(struct mddev *); -+ int (*resync_info_update)(struct mddev *, sector_t, sector_t); -+ 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); -+}; -+ -+struct md_cluster_info; -+ -+struct md_personality; -+ -+struct md_thread; -+ -+struct bitmap; -+ -+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; -+ atomic_t active_io; -+ int ro; -+ int sysfs_active; -+ struct gendisk *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; -+ char *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 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; -+ atomic_t recovery_active; -+ wait_queue_head_t recovery_wait; -+ sector_t recovery_cp; -+ 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; -+ 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; -+ struct request_queue *queue; -+ struct bitmap *bitmap; -+ 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_acct_set; -+ struct bio *flush_bio; -+ atomic_t flush_pending; -+ ktime_t start_flush; -+ ktime_t prev_flush_start; -+ struct work_struct flush_work; -+ struct work_struct event_work; -+ mempool_t *serial_info_pool; -+ void (*sync_super)(struct mddev *, struct md_rdev *); -+ struct md_cluster_info *cluster_info; -+ unsigned int good_device_nr; -+ unsigned int noio_flag; -+ bool has_superblocks: 1; -+ bool fail_last_dev: 1; -+ bool serialize_policy: 1; -+}; -+ -+struct serial_in_rdev; -+ -+struct md_rdev { -+ struct list_head same_set; -+ sector_t sectors; -+ struct mddev *mddev; -+ int last_events; -+ struct block_device *meta_bdev; -+ struct block_device *bdev; -+ 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 work_struct del_work; -+ 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 serial_in_rdev { -+ struct rb_root_cached serial_rb; -+ spinlock_t serial_lock; -+ wait_queue_head_t serial_io_wait; -+}; -+ -+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, -+ RemoveSynchronized = 14, -+ ExternalBbl = 15, -+ FailFast = 16, -+ LastDev = 17, -+ CollisionCheck = 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_ALLOW_SB_UPDATE = 8, -+ MD_UPDATING_SB = 9, -+ MD_NOT_READY = 10, -+ MD_BROKEN = 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, -+}; -+ -+struct md_personality { -+ char *name; -+ int level; -+ struct list_head list; -+ struct module *owner; -+ 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, 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 (*quiesce)(struct mddev *, int); -+ void * (*takeover)(struct mddev *); -+ int (*change_consistency_policy)(struct mddev *, const char *); -+}; -+ -+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 bitmap_page; -+ -+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; -+ 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 recovery_flags { -+ MD_RECOVERY_RUNNING = 0, -+ MD_RECOVERY_SYNC = 1, -+ MD_RECOVERY_RECOVER = 2, -+ MD_RECOVERY_INTR = 3, -+ MD_RECOVERY_DONE = 4, -+ MD_RECOVERY_NEEDED = 5, -+ MD_RECOVERY_REQUESTED = 6, -+ MD_RECOVERY_CHECK = 7, -+ MD_RECOVERY_RESHAPE = 8, -+ MD_RECOVERY_FROZEN = 9, -+ MD_RECOVERY_ERROR = 10, -+ MD_RECOVERY_WAIT = 11, -+ MD_RESYNCING_REMOTE = 12, -+}; -+ -+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_acct { -+ struct bio *orig_bio; -+ long unsigned int start_time; -+ struct bio bio_clone; -+}; -+ -+struct bitmap_page { -+ char *map; -+ unsigned int hijacked: 1; -+ unsigned int pending: 1; -+ unsigned int count: 30; -+}; -+ -+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 *); -+ 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 bitmap_counter_t; -+ -+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; -+ -+enum bitmap_page_attr { -+ BITMAP_PAGE_DIRTY = 0, -+ BITMAP_PAGE_PENDING = 1, -+ BITMAP_PAGE_NEEDWRITE = 2, -+}; -+ -+struct md_setup_args { -+ int minor; -+ int partitioned; -+ int level; -+ int chunk; -+ char *device_names; -+}; -+ -+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_MAX = 4, -+}; -+ -+struct dm_kobject_holder { -+ struct kobject kobj; -+ struct completion completion; -+}; -+ -+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_NVDIMM = 24, -+ MEM_WIO2 = 25, -+}; -+ -+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; -+ 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; -+}; -+ -+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_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; -+ 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; -+ struct completion removal_complete; -+ char name[32]; -+ u32 nr_instances; -+ struct edac_device_instance *instances; -+ struct edac_device_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_device_block; -+ -+struct edac_dev_sysfs_block_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct kobject *, struct attribute *, char *); -+ ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -+ struct edac_device_block *block; -+ unsigned int value; -+}; -+ -+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 dev_ch_attribute { -+ struct device_attribute attr; -+ unsigned int channel; -+}; -+ -+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); -+}; -+ -+struct edac_pci_counter { -+ atomic_t pe_count; -+ atomic_t npe_count; -+}; -+ -+struct edac_pci_ctl_info { -+ struct list_head link; -+ int pci_idx; -+ struct bus_type *edac_subsys; -+ 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; -+ struct completion complete; -+ char name[32]; -+ struct edac_pci_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_pci_gen_data { -+ int edac_idx; -+}; -+ -+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 cpufreq_policy_data { -+ struct cpufreq_cpuinfo cpuinfo; -+ struct cpufreq_frequency_table *freq_table; -+ unsigned int cpu; -+ unsigned int min; -+ unsigned int max; -+}; -+ -+struct cpufreq_freqs { -+ struct cpufreq_policy *policy; -+ unsigned int old; -+ unsigned int new; -+ u8 flags; -+}; -+ -+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)(unsigned int); -+ int (*bios_limit)(int, unsigned int *); -+ int (*online)(struct cpufreq_policy *); -+ int (*offline)(struct cpufreq_policy *); -+ int (*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); -+}; -+ -+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; -+}; -+ -+enum { -+ OD_NORMAL_SAMPLE = 0, -+ OD_SUB_SAMPLE = 1, -+}; -+ -+struct dbs_data { -+ struct gov_attr_set attr_set; -+ 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 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 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 (*free)(struct policy_dbs_info *); -+ int (*init)(struct dbs_data *); -+ void (*exit)(struct dbs_data *); -+ void (*start)(struct cpufreq_policy *); -+}; -+ -+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 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; -+}; -+ -+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 opal_occ_msg { -+ __be64 type; -+ __be64 chip; -+ __be64 throttle_status; -+}; -+ -+struct global_pstate_info { -+ int highest_lpstate_idx; -+ unsigned int elapsed_time; -+ unsigned int last_sampled_time; -+ int last_lpstate_idx; -+ int last_gpstate_idx; -+ spinlock_t gpstate_lock; -+ struct timer_list timer; -+ struct cpufreq_policy *policy; -+}; -+ -+struct pstate_idx_revmap_data { -+ u8 pstate_id; -+ unsigned int cpufreq_table_idx; -+ struct hlist_node hentry; -+}; -+ -+enum throttle_reason_type { -+ NO_THROTTLE = 0, -+ POWERCAP = 1, -+ CPU_OVERTEMP = 2, -+ POWER_SUPPLY_FAILURE = 3, -+ OVERCURRENT = 4, -+ OCC_RESET_THROTTLE = 5, -+ OCC_MAX_REASON = 6, -+}; -+ -+struct chip { -+ unsigned int id; -+ bool throttled; -+ bool restore; -+ u8 throttle_reason; -+ cpumask_t mask; -+ struct work_struct throttle; -+ int throttle_turbo; -+ int throttle_sub_turbo; -+ int reason[6]; -+}; -+ -+struct powernv_pstate_info { -+ unsigned int min; -+ unsigned int max; -+ unsigned int nominal; -+ unsigned int nr_pstates; -+ bool wof_enabled; -+}; -+ -+struct powernv_smp_call_data { -+ unsigned int freq; -+ u8 pstate_id; -+ u8 gpstate_id; -+}; -+ -+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); -+}; -+ -+struct menu_device { -+ int needs_update; -+ int tick_wakeup; -+ u64 next_timer_ns; -+ unsigned int bucket; -+ unsigned int correction_factor[12]; -+ unsigned int intervals[8]; -+ int interval_ptr; -+}; -+ -+struct xcede_latency_record { -+ u8 hint; -+ __be64 latency_ticks; -+ u8 wake_on_irqs; -+} __attribute__((packed)); -+ -+struct xcede_latency_payload { -+ u8 record_size; -+ struct xcede_latency_record records[16]; -+} __attribute__((packed)); -+ -+struct xcede_latency_parameter { -+ __be16 payload_size; -+ struct xcede_latency_payload payload; -+ u8 null_char; -+} __attribute__((packed)); -+ -+struct stop_psscr_table { -+ u64 val; -+ u64 mask; -+}; -+ -+struct sdhci_pci_data { -+ struct pci_dev *pdev; -+ int slotno; -+ int rst_n_gpio; -+ int cd_gpio; -+ int (*setup)(struct sdhci_pci_data *); -+ void (*cleanup)(struct sdhci_pci_data *); -+}; -+ -+struct led_properties { -+ u32 color; -+ bool color_present; -+ const char *function; -+ u32 func_enum; -+ bool func_enum_present; -+ const char *label; -+}; -+ -+struct nx842_constraints { -+ int alignment; -+ int multiple; -+ int minimum; -+ int maximum; -+}; -+ -+struct nx842_driver { -+ char *name; -+ struct module *owner; -+ size_t workmem_size; -+ struct nx842_constraints *constraints; -+ int (*compress)(const unsigned char *, unsigned int, unsigned char *, unsigned int *, void *); -+ int (*decompress)(const unsigned char *, unsigned int, unsigned char *, unsigned int *, void *); -+}; -+ -+struct cop_symcpb_aes_ecb { -+ u8 key[32]; -+ u8 __rsvd[80]; -+}; -+ -+struct cop_symcpb_aes_cbc { -+ u8 iv[16]; -+ u8 key[32]; -+ u8 cv[16]; -+ u32 spbc; -+ u8 __rsvd[44]; -+}; -+ -+struct cop_symcpb_aes_gca { -+ u8 in_pat[16]; -+ u8 key[32]; -+ u8 out_pat[16]; -+ u32 spbc; -+ u8 __rsvd[44]; -+}; -+ -+struct cop_symcpb_aes_gcm { -+ u8 in_pat_or_aad[16]; -+ u8 iv_or_cnt[16]; -+ u64 bit_length_aad; -+ u64 bit_length_data; -+ u8 in_s0[16]; -+ u8 key[32]; -+ u8 __rsvd1[16]; -+ u8 out_pat_or_mac[16]; -+ u8 out_s0[16]; -+ u8 out_cnt[16]; -+ u32 spbc; -+ u8 __rsvd2[12]; -+}; -+ -+struct cop_symcpb_aes_ctr { -+ u8 iv[16]; -+ u8 key[32]; -+ u8 cv[16]; -+ u32 spbc; -+ u8 __rsvd2[44]; -+}; -+ -+struct cop_symcpb_aes_cca { -+ u8 b0[16]; -+ u8 b1[16]; -+ u8 key[16]; -+ u8 out_pat_or_b0[16]; -+ u32 spbc; -+ u8 __rsvd[44]; -+}; -+ -+struct cop_symcpb_aes_ccm { -+ u8 in_pat_or_b0[16]; -+ u8 iv_or_ctr[16]; -+ u8 in_s0[16]; -+ u8 key[16]; -+ u8 __rsvd1[48]; -+ u8 out_pat_or_mac[16]; -+ u8 out_s0[16]; -+ u8 out_ctr[16]; -+ u32 spbc; -+ u8 __rsvd2[12]; -+}; -+ -+struct cop_symcpb_aes_xcbc { -+ u8 cv[16]; -+ u8 key[16]; -+ u8 __rsvd1[16]; -+ u8 out_cv_mac[16]; -+ u32 spbc; -+ u8 __rsvd2[44]; -+}; -+ -+struct cop_symcpb_sha256 { -+ u64 message_bit_length; -+ u64 __rsvd1; -+ u8 input_partial_digest[32]; -+ u8 message_digest[32]; -+ u32 spbc; -+ u8 __rsvd2[44]; -+}; -+ -+struct cop_symcpb_sha512 { -+ u64 message_bit_length_hi; -+ u64 message_bit_length_lo; -+ u8 input_partial_digest[64]; -+ u8 __rsvd1[32]; -+ u8 message_digest[64]; -+ u32 spbc; -+ u8 __rsvd2[76]; -+}; -+ -+struct cop_symcpb_header { -+ u8 mode; -+ u8 fdm; -+ u8 ks_ds; -+ u8 pad_byte; -+ u8 __rsvd[12]; -+}; -+ -+struct cop_parameter_block { -+ struct cop_symcpb_header hdr; -+ union { -+ struct cop_symcpb_aes_ecb aes_ecb; -+ struct cop_symcpb_aes_cbc aes_cbc; -+ struct cop_symcpb_aes_gca aes_gca; -+ struct cop_symcpb_aes_gcm aes_gcm; -+ struct cop_symcpb_aes_cca aes_cca; -+ struct cop_symcpb_aes_ccm aes_ccm; -+ struct cop_symcpb_aes_ctr aes_ctr; -+ struct cop_symcpb_aes_xcbc aes_xcbc; -+ struct cop_symcpb_sha256 sha256; -+ struct cop_symcpb_sha512 sha512; -+ }; -+}; -+ -+struct cop_status_block { -+ u8 valid; -+ u8 crb_seq_number; -+ u8 completion_code; -+ u8 completion_extension; -+ __be32 processed_byte_count; -+ __be64 address; -+}; -+ -+struct nx_csbcpb { -+ unsigned char __rsvd[112]; -+ struct cop_status_block csb; -+ struct cop_parameter_block cpb; -+}; -+ -+struct hv_nx_cop_caps { -+ __be64 descriptor; -+ __be64 req_max_processed_len; -+ __be64 min_compress_len; -+ __be64 min_decompress_len; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 nx_cop_caps { -+ u64 descriptor; -+ u64 req_max_processed_len; -+ u64 min_compress_len; -+ u64 min_decompress_len; -+}; -+ -+struct nx842_workmem { -+ char slin[4096]; -+ char slout[4096]; -+ struct nx_csbcpb csbcpb; -+ char padding[256]; -+ long: 64; -+ long: 64; -+ 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 ibm_nx842_counters { -+ atomic64_t comp_complete; -+ atomic64_t comp_failed; -+ atomic64_t decomp_complete; -+ atomic64_t decomp_failed; -+ atomic64_t swdecomp; -+ atomic64_t comp_times[32]; -+ atomic64_t decomp_times[32]; -+}; -+ -+struct nx842_devdata { -+ struct vio_dev *vdev; -+ struct device *dev; -+ struct ibm_nx842_counters *counters; -+ unsigned int max_sg_len; -+ unsigned int max_sync_size; -+ unsigned int max_sync_sg; -+}; -+ -+struct nx842_slentry { -+ __be64 ptr; -+ __be64 len; -+}; -+ -+struct nx842_scatterlist { -+ int entry_nr; -+ struct nx842_slentry *entries; -+}; -+ -+struct maxsynccop_t { -+ __be32 comp_elements; -+ __be32 comp_data_limit; -+ __be32 comp_sg_limit; -+ __be32 decomp_elements; -+ __be32 decomp_data_limit; -+ __be32 decomp_sg_limit; -+}; -+ -+struct nx842_crypto_header_group { -+ __be16 padding; -+ __be32 compressed_length; -+ __be32 uncompressed_length; -+} __attribute__((packed)); -+ -+struct nx842_crypto_header { -+ __be16 magic; -+ __be16 ignore; -+ u8 groups; -+ struct nx842_crypto_header_group group[0]; -+} __attribute__((packed)); -+ -+struct nx842_crypto_ctx { -+ spinlock_t lock; -+ int: 32; -+ u8 *wmem; -+ u8 *sbounce; -+ u8 *dbounce; -+ struct nx842_crypto_header header; -+ struct nx842_crypto_header_group group[32]; -+ int: 24; -+ struct nx842_driver *driver; -+} __attribute__((packed)); -+ -+struct nx842_crypto_param { -+ u8 *in; -+ unsigned int iremain; -+ u8 *out; -+ unsigned int oremain; -+ unsigned int ototal; -+}; -+ -+struct nx842_workmem___2 { -+ struct coprocessor_request_block crb; -+ struct data_descriptor_entry ddl_in[17]; -+ struct data_descriptor_entry ddl_out[17]; -+ ktime_t start; -+ char padding[256]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct nx_coproc { -+ unsigned int chip_id; -+ unsigned int ct; -+ unsigned int ci; -+ struct { -+ struct vas_window *rxwin; -+ int id; -+ } vas; -+ struct list_head list; -+}; -+ -+struct hid_device_id { -+ __u16 bus; -+ __u16 group; -+ __u32 vendor; -+ __u32 product; -+ kernel_ulong_t driver_data; -+}; -+ -+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; -+ __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_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; -+ __s8 hat_min; -+ __s8 hat_max; -+ __s8 hat_dir; -+ __s16 wheel_accumulated; -+}; -+ -+struct hid_report; -+ -+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 logical_minimum; -+ __s32 logical_maximum; -+ __s32 physical_minimum; -+ __s32 physical_maximum; -+ __s32 unit_exponent; -+ unsigned int unit; -+ struct hid_report *report; -+ unsigned int index; -+ struct hid_input *hidinput; -+ __u16 dpad; -+}; -+ -+struct hid_device; -+ -+struct hid_report { -+ struct list_head list; -+ struct list_head hidinput_list; -+ unsigned int id; -+ unsigned int type; -+ unsigned int application; -+ struct hid_field *field[256]; -+ unsigned int maxfield; -+ unsigned int size; -+ struct hid_device *device; -+}; -+ -+struct hid_input { -+ struct list_head list; -+ struct hid_report *report; -+ struct input_dev *input; -+ const char *name; -+ bool registered; -+ struct list_head reports; -+ unsigned int application; -+}; -+ -+enum hid_type { -+ HID_TYPE_OTHER = 0, -+ HID_TYPE_USBMOUSE = 1, -+ HID_TYPE_USBNONE = 2, -+}; -+ -+struct hid_report_enum { -+ unsigned int numbered; -+ struct list_head report_list; -+ struct hid_report *report_id_hash[256]; -+}; -+ -+enum hid_battery_status { -+ HID_BATTERY_UNKNOWN = 0, -+ HID_BATTERY_QUERIED = 1, -+ HID_BATTERY_REPORTED = 2, -+}; -+ -+struct hid_driver; -+ -+struct hid_ll_driver; -+ -+struct hid_device { -+ __u8 *dev_rdesc; -+ unsigned int dev_rsize; -+ __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; -+ struct hid_ll_driver *ll_driver; -+ struct mutex ll_open_lock; -+ unsigned int ll_open_count; -+ struct power_supply *battery; -+ __s32 battery_capacity; -+ __s32 battery_min; -+ __s32 battery_max; -+ __s32 battery_report_type; -+ __s32 battery_report_id; -+ enum hid_battery_status battery_status; -+ bool battery_avoid_query; -+ ktime_t battery_ratelimit_time; -+ long unsigned int status; -+ unsigned int claimed; -+ unsigned int 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 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 *); -+ __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 *); -+}; -+ -+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 hid_report_id { -+ __u32 report_type; -+}; -+ -+struct hid_usage_id { -+ __u32 usage_hid; -+ __u32 usage_type; -+ __u32 usage_code; -+}; -+ -+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 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; -+}; -+ -+typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); -+ -+struct quirks_list_struct { -+ struct hid_device_id hid_bl_item; -+ struct list_head node; -+}; -+ -+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 hidraw_devinfo { -+ __u32 bustype; -+ __s16 vendor; -+ __s16 product; -+}; -+ -+struct hidraw_report { -+ __u8 *value; -+ int len; -+}; -+ -+struct hidraw_list { -+ struct hidraw_report buffer[64]; -+ int head; -+ int tail; -+ struct fasync_struct *fasync; -+ struct hidraw *hidraw; -+ struct list_head node; -+ struct mutex read_mutex; -+}; -+ -+struct magicmouse_sc { -+ struct input_dev *input; -+ long unsigned int quirks; -+ int ntouches; -+ int scroll_accel; -+ long unsigned int scroll_jiffies; -+ struct { -+ short int x; -+ short int y; -+ short int scroll_x; -+ short int scroll_y; -+ u8 size; -+ } touches[16]; -+ int tracking_ids[16]; -+ struct hid_device *hdev; -+ struct delayed_work work; -+}; -+ -+struct ntrig_data { -+ __u16 x; -+ __u16 y; -+ __u16 w; -+ __u16 h; -+ __u16 id; -+ bool tipswitch; -+ bool confidence; -+ bool first_contact_touch; -+ bool reading_mt; -+ __u8 mt_footer[4]; -+ __u8 mt_foot_count; -+ __s8 act_state; -+ __s8 deactivate_slack; -+ __s8 activate_slack; -+ __u16 min_width; -+ __u16 min_height; -+ __u16 activation_width; -+ __u16 activation_height; -+ __u16 sensor_logical_width; -+ __u16 sensor_logical_height; -+ __u16 sensor_physical_width; -+ __u16 sensor_physical_height; -+}; -+ -+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 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 desc[1]; -+} __attribute__((packed)); -+ -+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_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_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 pidff_usage { -+ struct hid_field *field; -+ s32 *value; -+}; -+ -+struct pidff_device { -+ struct hid_device *hid; -+ struct hid_report *reports[13]; -+ struct pidff_usage set_effect[7]; -+ struct pidff_usage set_envelope[5]; -+ struct pidff_usage set_condition[8]; -+ struct pidff_usage set_periodic[5]; -+ struct pidff_usage set_constant[2]; -+ struct pidff_usage set_ramp[3]; -+ struct pidff_usage device_gain[1]; -+ struct pidff_usage block_load[2]; -+ struct pidff_usage pool[3]; -+ struct pidff_usage effect_operation[2]; -+ struct pidff_usage block_free[1]; -+ struct hid_field *create_new_effect_type; -+ struct hid_field *set_effect_type; -+ struct hid_field *effect_direction; -+ struct hid_field *device_control; -+ struct hid_field *block_load_status; -+ struct hid_field *effect_operation_status; -+ int control_id[2]; -+ int type_id[11]; -+ int status_id[2]; -+ int operation_id[2]; -+ int pid_id[64]; -+}; -+ -+struct alias_prop { -+ struct list_head link; -+ const char *alias; -+ struct device_node *np; -+ int id; -+ char stem[0]; -+}; -+ -+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; -+ unsigned int cid; -+ struct amba_cs_uci_id uci; -+ unsigned int irq[9]; -+ char *driver_override; -+}; -+ -+struct of_dev_auxdata { -+ char *compatible; -+ resource_size_t phys_addr; -+ char *name; -+ void *platform_data; -+}; -+ -+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); -+ bool optional; -+ bool node_not_dev; -+}; -+ -+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_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_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 (*translate)(__be32 *, u64, int); -+ bool has_flags; -+ unsigned int (*get_flags)(const __be32 *); -+}; -+ -+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 nvmem_cell; -+ -+struct rmem_assigned_device { -+ struct device *dev; -+ struct reserved_mem *rmem; -+ struct list_head list; -+}; -+ -+struct hwspinlock___2; -+ -+struct hwspinlock_ops { -+ int (*trylock)(struct hwspinlock___2 *); -+ void (*unlock)(struct hwspinlock___2 *); -+ void (*relax)(struct hwspinlock___2 *); -+}; -+ -+struct hwspinlock_device; -+ -+struct hwspinlock___2 { -+ 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___2 lock[0]; -+}; -+ -+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 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; -+ 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[4]; -+ 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_mc_event { -+ u32 msg; -+ u32 label; -+ u32 driver_detail; -+}; -+ -+struct trace_event_data_offsets_arm_event {}; -+ -+struct trace_event_data_offsets_non_standard_event { -+ u32 fru_text; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_aer_event { -+ u32 dev_name; -+}; -+ -+struct trace_event_data_offsets_memory_failure_event {}; -+ -+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 *); -+ -+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 aer_header_log_regs *); -+ -+typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); -+ -+enum tb_cfg_pkg_type { -+ TB_CFG_PKG_READ = 1, -+ TB_CFG_PKG_WRITE = 2, -+ TB_CFG_PKG_ERROR = 3, -+ TB_CFG_PKG_NOTIFY_ACK = 4, -+ TB_CFG_PKG_EVENT = 5, -+ TB_CFG_PKG_XDOMAIN_REQ = 6, -+ TB_CFG_PKG_XDOMAIN_RESP = 7, -+ TB_CFG_PKG_OVERRIDE = 8, -+ TB_CFG_PKG_RESET = 9, -+ TB_CFG_PKG_ICM_EVENT = 10, -+ TB_CFG_PKG_ICM_CMD = 11, -+ TB_CFG_PKG_ICM_RESP = 12, -+ TB_CFG_PKG_PREPARE_TO_SLEEP = 13, -+}; -+ -+enum tb_security_level { -+ TB_SECURITY_NONE = 0, -+ TB_SECURITY_USER = 1, -+ TB_SECURITY_SECURE = 2, -+ TB_SECURITY_DPONLY = 3, -+ TB_SECURITY_USBONLY = 4, -+ TB_SECURITY_NOPCIE = 5, -+}; -+ -+struct tb_nhi; -+ -+struct tb_ctl; -+ -+struct tb_switch; -+ -+struct tb_cm_ops; -+ -+struct tb { -+ struct device dev; -+ struct mutex lock; -+ struct tb_nhi *nhi; -+ struct tb_ctl *ctl; -+ struct workqueue_struct *wq; -+ struct tb_switch *root_switch; -+ const struct tb_cm_ops *cm_ops; -+ int index; -+ enum tb_security_level security_level; -+ size_t nboot_acl; -+ long unsigned int privdata[0]; -+}; -+ -+struct tb_nhi_ops; -+ -+struct tb_ring; -+ -+struct tb_nhi { -+ spinlock_t lock; -+ struct pci_dev *pdev; -+ const struct tb_nhi_ops *ops; -+ void *iobase; -+ struct tb_ring **tx_rings; -+ struct tb_ring **rx_rings; -+ struct ida msix_ida; -+ bool going_away; -+ struct work_struct interrupt_work; -+ u32 hop_count; -+}; -+ -+struct tb_regs_switch_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 upstream_port_number: 6; -+ u32 max_port_number: 6; -+ u32 depth: 3; -+ u32 __unknown1: 1; -+ u32 revision: 8; -+ u32 route_lo; -+ u32 route_hi: 31; -+ bool enabled: 1; -+ u32 plug_events_delay: 8; -+ u32 cmuv: 8; -+ u32 __unknown4: 8; -+ u32 thunderbolt_version: 8; -+}; -+ -+enum tb_switch_tmu_rate { -+ TB_SWITCH_TMU_RATE_OFF = 0, -+ TB_SWITCH_TMU_RATE_HIFI = 16, -+ TB_SWITCH_TMU_RATE_NORMAL = 1000, -+}; -+ -+struct tb_switch_tmu { -+ int cap; -+ bool has_ucap; -+ enum tb_switch_tmu_rate rate; -+ bool unidirectional; -+}; -+ -+struct tb_port; -+ -+struct tb_dma_port; -+ -+struct tb_nvm; -+ -+struct tb_switch { -+ struct device dev; -+ struct tb_regs_switch_header config; -+ struct tb_port *ports; -+ struct tb_dma_port *dma_port; -+ struct tb_switch_tmu tmu; -+ struct tb *tb; -+ u64 uid; -+ uuid_t *uuid; -+ u16 vendor; -+ u16 device; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool link_usb4; -+ unsigned int generation; -+ int cap_plug_events; -+ int cap_lc; -+ bool is_unplugged; -+ u8 *drom; -+ struct tb_nvm *nvm; -+ bool no_nvm_upgrade; -+ bool safe_mode; -+ bool boot; -+ bool rpm; -+ unsigned int authorized; -+ enum tb_security_level security_level; -+ struct dentry *debugfs_dir; -+ u8 *key; -+ u8 connection_id; -+ u8 connection_key; -+ u8 link; -+ u8 depth; -+ struct completion rpm_complete; -+ long unsigned int quirks; -+ bool credit_allocation; -+ unsigned int max_usb3_credits; -+ unsigned int min_dp_aux_credits; -+ unsigned int min_dp_main_credits; -+ unsigned int max_pcie_credits; -+ unsigned int max_dma_credits; -+}; -+ -+struct tb_xdomain; -+ -+struct tb_cm_ops { -+ int (*driver_ready)(struct tb *); -+ int (*start)(struct tb *); -+ void (*stop)(struct tb *); -+ int (*suspend_noirq)(struct tb *); -+ int (*resume_noirq)(struct tb *); -+ int (*suspend)(struct tb *); -+ int (*freeze_noirq)(struct tb *); -+ int (*thaw_noirq)(struct tb *); -+ void (*complete)(struct tb *); -+ int (*runtime_suspend)(struct tb *); -+ int (*runtime_resume)(struct tb *); -+ int (*runtime_suspend_switch)(struct tb_switch *); -+ int (*runtime_resume_switch)(struct tb_switch *); -+ void (*handle_event)(struct tb *, enum tb_cfg_pkg_type, const void *, size_t); -+ int (*get_boot_acl)(struct tb *, uuid_t *, size_t); -+ int (*set_boot_acl)(struct tb *, const uuid_t *, size_t); -+ int (*disapprove_switch)(struct tb *, struct tb_switch *); -+ int (*approve_switch)(struct tb *, struct tb_switch *); -+ int (*add_switch_key)(struct tb *, struct tb_switch *); -+ int (*challenge_switch_key)(struct tb *, struct tb_switch *, const u8 *, u8 *); -+ int (*disconnect_pcie_paths)(struct tb *); -+ int (*approve_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*disconnect_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*usb4_switch_op)(struct tb_switch *, u16, u32 *, u8 *, const void *, size_t, void *, size_t); -+ int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *, u32 *); -+}; -+ -+struct tb_property_dir { -+ const uuid_t *uuid; -+ struct list_head properties; -+}; -+ -+struct tb_xdomain { -+ struct device dev; -+ struct tb *tb; -+ uuid_t *remote_uuid; -+ const uuid_t *local_uuid; -+ u64 route; -+ u16 vendor; -+ u16 device; -+ unsigned int local_max_hopid; -+ unsigned int remote_max_hopid; -+ struct mutex lock; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool is_unplugged; -+ bool needs_uuid; -+ struct ida service_ids; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ u32 *local_property_block; -+ u32 local_property_block_gen; -+ u32 local_property_block_len; -+ struct tb_property_dir *remote_properties; -+ u32 remote_property_block_gen; -+ struct delayed_work get_uuid_work; -+ int uuid_retries; -+ struct delayed_work get_properties_work; -+ int properties_retries; -+ struct delayed_work properties_changed_work; -+ int properties_changed_retries; -+ u8 link; -+ u8 depth; -+}; -+ -+struct tb_nhi_ops { -+ int (*init)(struct tb_nhi *); -+ int (*suspend_noirq)(struct tb_nhi *, bool); -+ int (*resume_noirq)(struct tb_nhi *); -+ int (*runtime_suspend)(struct tb_nhi *); -+ int (*runtime_resume)(struct tb_nhi *); -+ void (*shutdown)(struct tb_nhi *); -+}; -+ -+struct ring_desc; -+ -+struct tb_ring { -+ spinlock_t lock; -+ struct tb_nhi *nhi; -+ int size; -+ int hop; -+ int head; -+ int tail; -+ struct ring_desc *descriptors; -+ dma_addr_t descriptors_dma; -+ struct list_head queue; -+ struct list_head in_flight; -+ struct work_struct work; -+ bool is_tx: 1; -+ bool running: 1; -+ int irq; -+ u8 vector; -+ unsigned int flags; -+ int e2e_tx_hop; -+ u16 sof_mask; -+ u16 eof_mask; -+ void (*start_poll)(void *); -+ void *poll_data; -+}; -+ -+enum ring_desc_flags { -+ RING_DESC_ISOCH = 1, -+ RING_DESC_CRC_ERROR = 1, -+ RING_DESC_COMPLETED = 2, -+ RING_DESC_POSTED = 4, -+ RING_DESC_BUFFER_OVERRUN = 4, -+ RING_DESC_INTERRUPT = 8, -+}; -+ -+struct ring_desc { -+ u64 phys; -+ u32 length: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+ enum ring_desc_flags flags: 12; -+ u32 time; -+}; -+ -+struct ring_frame; -+ -+typedef void (*ring_cb)(struct tb_ring *, struct ring_frame *, bool); -+ -+struct ring_frame { -+ dma_addr_t buffer_phy; -+ ring_cb callback; -+ struct list_head list; -+ u32 size: 12; -+ u32 flags: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+}; -+ -+enum nhi_fw_mode { -+ NHI_FW_SAFE_MODE = 0, -+ NHI_FW_AUTH_MODE = 1, -+ NHI_FW_EP_MODE = 2, -+ NHI_FW_CM_MODE = 3, -+}; -+ -+enum nhi_mailbox_cmd { -+ NHI_MAILBOX_SAVE_DEVS = 5, -+ NHI_MAILBOX_DISCONNECT_PCIE_PATHS = 6, -+ NHI_MAILBOX_DRV_UNLOADS = 7, -+ NHI_MAILBOX_DISCONNECT_PA = 16, -+ NHI_MAILBOX_DISCONNECT_PB = 17, -+ NHI_MAILBOX_ALLOW_ALL_DEVS = 35, -+}; -+ -+enum ring_flags { -+ RING_FLAG_ISOCH_ENABLE = 134217728, -+ RING_FLAG_E2E_FLOW_CONTROL = 268435456, -+ RING_FLAG_PCI_NO_SNOOP = 536870912, -+ RING_FLAG_RAW = 1073741824, -+ RING_FLAG_ENABLE = 2147483648, -+}; -+ -+enum tb_port_type { -+ TB_TYPE_INACTIVE = 0, -+ TB_TYPE_PORT = 1, -+ TB_TYPE_NHI = 2, -+ TB_TYPE_DP_HDMI_IN = 917761, -+ TB_TYPE_DP_HDMI_OUT = 917762, -+ TB_TYPE_PCIE_DOWN = 1048833, -+ TB_TYPE_PCIE_UP = 1048834, -+ TB_TYPE_USB3_DOWN = 2097409, -+ TB_TYPE_USB3_UP = 2097410, -+}; -+ -+struct tb_regs_port_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 max_counters: 11; -+ u32 counters_support: 1; -+ u32 __unknown1: 4; -+ u32 revision: 8; -+ enum tb_port_type type: 24; -+ u32 thunderbolt_version: 8; -+ u32 __unknown2: 20; -+ u32 port_number: 6; -+ u32 __unknown3: 6; -+ u32 nfc_credits; -+ u32 max_in_hop_id: 11; -+ u32 max_out_hop_id: 11; -+ u32 __unknown4: 10; -+ u32 __unknown5; -+ u32 __unknown6; -+}; -+ -+struct tb_nvm { -+ struct device *dev; -+ u8 major; -+ u8 minor; -+ int id; -+ struct nvmem_device *active; -+ struct nvmem_device *non_active; -+ void *buf; -+ size_t buf_data_size; -+ bool authenticating; -+ bool flushed; -+}; -+ -+struct usb4_port; -+ -+struct tb_port { -+ struct tb_regs_port_header config; -+ struct tb_switch *sw; -+ struct tb_port *remote; -+ struct tb_xdomain *xdomain; -+ int cap_phy; -+ int cap_tmu; -+ int cap_adap; -+ int cap_usb4; -+ struct usb4_port *usb4; -+ u8 port; -+ bool disabled; -+ bool bonded; -+ struct tb_port *dual_link_port; -+ u8 link_nr: 1; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ struct list_head list; -+ unsigned int total_credits; -+ unsigned int ctl_credits; -+ unsigned int dma_credits; -+}; -+ -+struct usb4_port { -+ struct device dev; -+ struct tb_port *port; -+ bool can_offline; -+ bool offline; -+}; -+ -+enum icl_lc_mailbox_cmd { -+ ICL_LC_GO2SX = 2, -+ ICL_LC_GO2SX_NO_WAKE = 3, -+ ICL_LC_PREPARE_FOR_RESET = 33, -+}; -+ -+typedef bool (*event_cb)(void *, enum tb_cfg_pkg_type, const void *, size_t); -+ -+struct ctl_pkg; -+ -+struct tb_ctl { -+ struct tb_nhi *nhi; -+ struct tb_ring *tx; -+ struct tb_ring *rx; -+ struct dma_pool___2 *frame_pool; -+ struct ctl_pkg *rx_packets[10]; -+ struct mutex request_queue_lock; -+ struct list_head request_queue; -+ bool running; -+ int timeout_msec; -+ event_cb callback; -+ void *callback_data; -+}; -+ -+enum tb_cfg_space { -+ TB_CFG_HOPS = 0, -+ TB_CFG_PORT = 1, -+ TB_CFG_SWITCH = 2, -+ TB_CFG_COUNTERS = 3, -+}; -+ -+enum tb_cfg_error { -+ TB_CFG_ERROR_PORT_NOT_CONNECTED = 0, -+ TB_CFG_ERROR_LINK_ERROR = 1, -+ TB_CFG_ERROR_INVALID_CONFIG_SPACE = 2, -+ TB_CFG_ERROR_NO_SUCH_PORT = 4, -+ TB_CFG_ERROR_ACK_PLUG_EVENT = 7, -+ TB_CFG_ERROR_LOOP = 8, -+ TB_CFG_ERROR_HEC_ERROR_DETECTED = 12, -+ TB_CFG_ERROR_FLOW_CONTROL_ERROR = 13, -+ TB_CFG_ERROR_LOCK = 15, -+}; -+ -+struct tb_cfg_header { -+ u32 route_hi: 22; -+ u32 unknown: 10; -+ u32 route_lo; -+}; -+ -+struct tb_cfg_address { -+ u32 offset: 13; -+ u32 length: 6; -+ u32 port: 6; -+ enum tb_cfg_space space: 2; -+ u32 seq: 2; -+ u32 zero: 3; -+}; -+ -+struct cfg_read_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+}; -+ -+struct cfg_write_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+ u32 data[64]; -+}; -+ -+struct cfg_error_pkg { -+ struct tb_cfg_header header; -+ enum tb_cfg_error error: 4; -+ u32 zero1: 4; -+ u32 port: 6; -+ u32 zero2: 2; -+ u32 zero3: 14; -+ u32 pg: 2; -+}; -+ -+struct cfg_reset_pkg { -+ struct tb_cfg_header header; -+}; -+ -+struct tb_cfg_result { -+ u64 response_route; -+ u32 response_port; -+ int err; -+ enum tb_cfg_error tb_error; -+}; -+ -+struct ctl_pkg { -+ struct tb_ctl *ctl; -+ void *buffer; -+ struct ring_frame frame; -+}; -+ -+struct tb_cfg_request { -+ struct kref kref; -+ struct tb_ctl *ctl; -+ const void *request; -+ size_t request_size; -+ enum tb_cfg_pkg_type request_type; -+ void *response; -+ size_t response_size; -+ enum tb_cfg_pkg_type response_type; -+ size_t npackets; -+ bool (*match)(const struct tb_cfg_request *, const struct ctl_pkg *); -+ bool (*copy)(struct tb_cfg_request *, const struct ctl_pkg *); -+ void (*callback)(void *); -+ void *callback_data; -+ long unsigned int flags; -+ struct work_struct work; -+ struct tb_cfg_result result; -+ struct list_head list; -+}; -+ -+struct cfg_event_pkg { -+ struct tb_cfg_header header; -+ u32 port: 6; -+ u32 zero: 25; -+ bool unplug: 1; -+}; -+ -+struct tb_path_hop { -+ struct tb_port *in_port; -+ struct tb_port *out_port; -+ int in_hop_index; -+ int in_counter_index; -+ int next_hop_index; -+ unsigned int initial_credits; -+ unsigned int nfc_credits; -+}; -+ -+enum tb_path_port { -+ TB_PATH_NONE = 0, -+ TB_PATH_SOURCE = 1, -+ TB_PATH_INTERNAL = 2, -+ TB_PATH_DESTINATION = 4, -+ TB_PATH_ALL = 7, -+}; -+ -+struct tb_path { -+ struct tb *tb; -+ const char *name; -+ enum tb_path_port ingress_shared_buffer; -+ enum tb_path_port egress_shared_buffer; -+ enum tb_path_port ingress_fc_enable; -+ enum tb_path_port egress_fc_enable; -+ unsigned int priority: 3; -+ int weight: 4; -+ bool drop_packages; -+ bool activated; -+ bool clear_fc; -+ struct tb_path_hop *hops; -+ int path_length; -+}; -+ -+enum tb_tunnel_type { -+ TB_TUNNEL_PCI = 0, -+ TB_TUNNEL_DP = 1, -+ TB_TUNNEL_DMA = 2, -+ TB_TUNNEL_USB3 = 3, -+}; -+ -+struct tb_tunnel { -+ struct tb *tb; -+ struct tb_port *src_port; -+ struct tb_port *dst_port; -+ struct tb_path **paths; -+ size_t npaths; -+ int (*init)(struct tb_tunnel *); -+ void (*deinit)(struct tb_tunnel *); -+ int (*activate)(struct tb_tunnel *, bool); -+ int (*consumed_bandwidth)(struct tb_tunnel *, int *, int *); -+ int (*release_unused_bandwidth)(struct tb_tunnel *); -+ void (*reclaim_available_bandwidth)(struct tb_tunnel *, int *, int *); -+ struct list_head list; -+ enum tb_tunnel_type type; -+ int max_up; -+ int max_down; -+ int allocated_up; -+ int allocated_down; -+}; -+ -+struct tb_cm { -+ struct list_head tunnel_list; -+ struct list_head dp_resources; -+ bool hotplug_active; -+ struct delayed_work remove_work; -+}; -+ -+struct tb_hotplug_event { -+ struct work_struct work; -+ struct tb *tb; -+ u64 route; -+ u8 port; -+ bool unplug; -+}; -+ -+enum tb_switch_vse_cap { -+ TB_VSE_CAP_PLUG_EVENTS = 1, -+ TB_VSE_CAP_TIME2 = 3, -+ TB_VSE_CAP_IECS = 4, -+ TB_VSE_CAP_LINK_CONTROLLER = 6, -+}; -+ -+enum tb_port_cap { -+ TB_PORT_CAP_PHY = 1, -+ TB_PORT_CAP_POWER = 2, -+ TB_PORT_CAP_TIME1 = 3, -+ TB_PORT_CAP_ADAP = 4, -+ TB_PORT_CAP_VSE = 5, -+ TB_PORT_CAP_USB4 = 6, -+}; -+ -+enum tb_port_state { -+ TB_PORT_DISABLED = 0, -+ TB_PORT_CONNECTING = 1, -+ TB_PORT_UP = 2, -+ TB_PORT_UNPLUGGED = 7, -+}; -+ -+struct tb_cap_basic { -+ u8 next; -+ u8 cap; -+}; -+ -+struct tb_cap_phy { -+ struct tb_cap_basic cap_header; -+ u32 unknown1: 16; -+ u32 unknown2: 14; -+ bool disable: 1; -+ u32 unknown3: 11; -+ enum tb_port_state state: 4; -+ u32 unknown4: 2; -+}; -+ -+struct tb_regs_hop { -+ u32 next_hop: 11; -+ u32 out_port: 6; -+ u32 initial_credits: 8; -+ u32 unknown1: 6; -+ bool enable: 1; -+ u32 weight: 4; -+ u32 unknown2: 4; -+ u32 priority: 3; -+ bool drop_packages: 1; -+ u32 counter: 11; -+ bool counter_enable: 1; -+ bool ingress_fc: 1; -+ bool egress_fc: 1; -+ bool ingress_shared_buffer: 1; -+ bool egress_shared_buffer: 1; -+ bool pending: 1; -+ u32 unknown3: 3; -+}; -+ -+enum tb_nvm_write_ops { -+ WRITE_AND_AUTHENTICATE = 1, -+ WRITE_ONLY = 2, -+ AUTHENTICATE_ONLY = 3, -+}; -+ -+struct nvm_auth_status { -+ struct list_head list; -+ uuid_t uuid; -+ u32 status; -+}; -+ -+struct tb_sw_lookup { -+ struct tb *tb; -+ u8 link; -+ u8 depth; -+ const uuid_t *uuid; -+ u64 route; -+}; -+ -+enum tb_switch_cap { -+ TB_SWITCH_CAP_TMU = 3, -+ TB_SWITCH_CAP_VSE = 5, -+}; -+ -+struct tb_cap_extended_short { -+ u8 next; -+ u8 cap; -+ u8 vsec_id; -+ u8 length; -+}; -+ -+struct tb_cap_extended_long { -+ u8 zero1; -+ u8 cap; -+ u8 vsec_id; -+ u8 zero2; -+ u16 next; -+ u16 length; -+}; -+ -+struct tb_cap_any { -+ union { -+ struct tb_cap_basic basic; -+ struct tb_cap_extended_short extended_short; -+ struct tb_cap_extended_long extended_long; -+ }; -+}; -+ -+struct tb_eeprom_ctl { -+ bool clock: 1; -+ bool access_low: 1; -+ bool data_out: 1; -+ bool data_in: 1; -+ bool access_high: 1; -+ bool not_present: 1; -+ bool unknown1: 1; -+ bool present: 1; -+ u32 unknown2: 24; -+}; -+ -+struct tb_cap_plug_events { -+ struct tb_cap_extended_short cap_header; -+ u32 __unknown1: 2; -+ u32 plug_events: 5; -+ u32 __unknown2: 25; -+ u32 __unknown3; -+ u32 __unknown4; -+ struct tb_eeprom_ctl eeprom_ctl; -+ u32 __unknown5[7]; -+ u32 drom_offset; -+}; -+ -+enum tb_eeprom_transfer { -+ TB_EEPROM_IN = 0, -+ TB_EEPROM_OUT = 1, -+}; -+ -+struct tb_drom_header { -+ u8 uid_crc8; -+ u64 uid; -+ u32 data_crc32; -+ u8 device_rom_revision; -+ u16 data_len: 12; -+ u8 reserved: 4; -+ u16 vendor_id; -+ u16 model_id; -+ u8 model_rev; -+ u8 eeprom_rev; -+} __attribute__((packed)); -+ -+enum tb_drom_entry_type { -+ TB_DROM_ENTRY_GENERIC = 0, -+ TB_DROM_ENTRY_PORT = 1, -+}; -+ -+struct tb_drom_entry_header { -+ u8 len; -+ u8 index: 6; -+ bool port_disabled: 1; -+ enum tb_drom_entry_type type: 1; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_generic { -+ struct tb_drom_entry_header header; -+ u8 data[0]; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_port { -+ struct tb_drom_entry_header header; -+ u8 dual_link_port_rid: 4; -+ u8 link_nr: 1; -+ u8 unknown1: 2; -+ bool has_dual_link_port: 1; -+ u8 dual_link_port_nr: 6; -+ u8 unknown2: 2; -+ u8 micro2: 4; -+ u8 micro1: 4; -+ u8 micro3; -+ u8 peer_port_rid: 4; -+ u8 unknown3: 3; -+ bool has_peer_port: 1; -+ u8 peer_port_nr: 6; -+ u8 unknown4: 2; -+}; -+ -+struct tb_drom_entry_desc { -+ struct tb_drom_entry_header header; -+ u16 bcdUSBSpec; -+ u16 idVendor; -+ u16 idProduct; -+ u16 bcdProductFWRevision; -+ u32 TID; -+ u8 productHWRevision; -+}; -+ -+struct tb_service_id { -+ __u32 match_flags; -+ char protocol_key[9]; -+ __u32 protocol_id; -+ __u32 protocol_version; -+ __u32 protocol_revision; -+ kernel_ulong_t driver_data; -+}; -+ -+struct tb_service { -+ struct device dev; -+ int id; -+ const char *key; -+ u32 prtcid; -+ u32 prtcvers; -+ u32 prtcrevs; -+ u32 prtcstns; -+ struct dentry *debugfs_dir; -+}; -+ -+struct tb_service_driver { -+ struct device_driver driver; -+ int (*probe)(struct tb_service *, const struct tb_service_id *); -+ void (*remove)(struct tb_service *); -+ void (*shutdown)(struct tb_service *); -+ const struct tb_service_id *id_table; -+}; -+ -+struct tb_dma_port { -+ struct tb_switch *sw; -+ u8 port; -+ u32 base; -+ u8 *buf; -+}; -+ -+typedef int (*read_block_fn)(void *, unsigned int, void *, size_t); -+ -+typedef int (*write_block_fn)(void *, unsigned int, const void *, size_t); -+ -+enum icm_pkg_code { -+ ICM_GET_TOPOLOGY = 1, -+ ICM_DRIVER_READY = 3, -+ ICM_APPROVE_DEVICE = 4, -+ ICM_CHALLENGE_DEVICE = 5, -+ ICM_ADD_DEVICE_KEY = 6, -+ ICM_GET_ROUTE = 10, -+ ICM_APPROVE_XDOMAIN = 16, -+ ICM_DISCONNECT_XDOMAIN = 17, -+ ICM_PREBOOT_ACL = 24, -+ ICM_USB4_SWITCH_OP = 32, -+}; -+ -+enum icm_event_code { -+ ICM_EVENT_DEVICE_CONNECTED = 3, -+ ICM_EVENT_DEVICE_DISCONNECTED = 4, -+ ICM_EVENT_XDOMAIN_CONNECTED = 6, -+ ICM_EVENT_XDOMAIN_DISCONNECTED = 7, -+ ICM_EVENT_RTD3_VETO = 10, -+}; -+ -+struct icm_pkg_header { -+ u8 code; -+ u8 flags; -+ u8 packet_id; -+ u8 total_packets; -+}; -+ -+struct icm_pkg_driver_ready { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 security_level; -+}; -+ -+struct icm_fr_pkg_get_topology { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_get_topology_response { -+ struct icm_pkg_header hdr; -+ u32 route_lo; -+ u32 route_hi; -+ u8 first_data; -+ u8 second_data; -+ u8 drom_i2c_address_index; -+ u8 switch_index; -+ u32 reserved[2]; -+ u32 ports[16]; -+ u32 port_hop_info[16]; -+}; -+ -+struct icm_fr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_fr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_fr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_fr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_fr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 key[8]; -+}; -+ -+struct icm_fr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+}; -+ -+struct icm_fr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_fr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_fr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_ar_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 info; -+}; -+ -+struct icm_ar_pkg_get_route { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_ar_pkg_get_route_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_ar_boot_acl_entry { -+ u32 uuid_lo; -+ u32 uuid_hi; -+}; -+ -+struct icm_ar_pkg_preboot_acl { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_ar_pkg_preboot_acl_response { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_tr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u16 reserved1; -+ u16 info; -+ u32 nvm_version; -+ u16 device_id; -+ u16 reserved2; -+}; -+ -+struct icm_tr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_tr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_tr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_tr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved1[3]; -+}; -+ -+struct icm_tr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 key[8]; -+}; -+ -+struct icm_tr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_tr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain_response { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_icl_event_rtd3_veto { -+ struct icm_pkg_header hdr; -+ u32 veto_reason; -+}; -+ -+struct icm_usb4_switch_op { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 data_len_valid; -+ u32 data[16]; -+}; -+ -+struct icm_usb4_switch_op_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 status; -+ u32 data[16]; -+}; -+ -+enum usb4_switch_op { -+ USB4_SWITCH_OP_QUERY_DP_RESOURCE = 16, -+ USB4_SWITCH_OP_ALLOC_DP_RESOURCE = 17, -+ USB4_SWITCH_OP_DEALLOC_DP_RESOURCE = 18, -+ USB4_SWITCH_OP_NVM_WRITE = 32, -+ USB4_SWITCH_OP_NVM_AUTH = 33, -+ USB4_SWITCH_OP_NVM_READ = 34, -+ USB4_SWITCH_OP_NVM_SET_OFFSET = 35, -+ USB4_SWITCH_OP_DROM_READ = 36, -+ USB4_SWITCH_OP_NVM_SECTOR_SIZE = 37, -+ USB4_SWITCH_OP_BUFFER_ALLOC = 51, -+}; -+ -+struct icm; -+ -+struct usb4_switch_nvm_auth { -+ struct icm_usb4_switch_op_response reply; -+ struct icm_usb4_switch_op request; -+ struct icm *icm; -+}; -+ -+struct icm { -+ struct mutex request_lock; -+ struct delayed_work rescan_work; -+ struct pci_dev *upstream_port; -+ int vnd_cap; -+ bool safe_mode; -+ size_t max_boot_acl; -+ bool rpm; -+ bool can_upgrade_nvm; -+ u8 proto_version; -+ struct usb4_switch_nvm_auth *last_nvm_auth; -+ bool veto; -+ bool (*is_supported)(struct tb *); -+ int (*cio_reset)(struct tb *); -+ int (*get_mode)(struct tb *); -+ int (*get_route)(struct tb *, u8, u8, u64 *); -+ void (*save_devices)(struct tb *); -+ int (*driver_ready)(struct tb *, enum tb_security_level *, u8 *, size_t *, bool *); -+ void (*set_uuid)(struct tb *); -+ void (*device_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*device_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*rtd3_veto)(struct tb *, const struct icm_pkg_header *); -+}; -+ -+struct icm_notification { -+ struct work_struct work; -+ struct icm_pkg_header *pkg; -+ struct tb *tb; -+}; -+ -+struct ep_name_entry { -+ u8 len; -+ u8 type; -+ u8 data[0]; -+}; -+ -+struct intel_vss { -+ u16 vendor; -+ u16 model; -+ u8 mc; -+ u8 flags; -+ u16 pci_devid; -+ u32 nvm_version; -+}; -+ -+enum tb_property_type { -+ TB_PROPERTY_TYPE_UNKNOWN = 0, -+ TB_PROPERTY_TYPE_DIRECTORY = 68, -+ TB_PROPERTY_TYPE_DATA = 100, -+ TB_PROPERTY_TYPE_TEXT = 116, -+ TB_PROPERTY_TYPE_VALUE = 118, -+}; -+ -+struct tb_property { -+ struct list_head list; -+ char key[9]; -+ enum tb_property_type type; -+ size_t length; -+ union { -+ struct tb_property_dir *dir; -+ u8 *data; -+ char *text; -+ u32 immediate; -+ } value; -+}; -+ -+struct tb_property_entry { -+ u32 key_hi; -+ u32 key_lo; -+ u16 length; -+ u8 reserved; -+ u8 type; -+ u32 value; -+}; -+ -+struct tb_property_rootdir_entry { -+ u32 magic; -+ u32 length; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_property_dir_entry { -+ u32 uuid[4]; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_protocol_handler { -+ const uuid_t *uuid; -+ int (*callback)(const void *, size_t, void *); -+ void *data; -+ struct list_head list; -+}; -+ -+struct tb_xdomain_header { -+ u32 route_hi; -+ u32 route_lo; -+ u32 length_sn; -+}; -+ -+enum tb_xdp_type { -+ UUID_REQUEST_OLD = 1, -+ UUID_RESPONSE = 2, -+ PROPERTIES_REQUEST = 3, -+ PROPERTIES_RESPONSE = 4, -+ PROPERTIES_CHANGED_REQUEST = 5, -+ PROPERTIES_CHANGED_RESPONSE = 6, -+ ERROR_RESPONSE = 7, -+ UUID_REQUEST = 12, -+}; -+ -+struct tb_xdp_header { -+ struct tb_xdomain_header xd_hdr; -+ uuid_t uuid; -+ u32 type; -+}; -+ -+struct tb_xdp_uuid { -+ struct tb_xdp_header hdr; -+}; -+ -+struct tb_xdp_uuid_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ u32 src_route_hi; -+ u32 src_route_lo; -+}; -+ -+struct tb_xdp_properties { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 reserved; -+}; -+ -+struct tb_xdp_properties_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 data_length; -+ u32 generation; -+ u32 data[0]; -+}; -+ -+struct tb_xdp_properties_changed { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+}; -+ -+struct tb_xdp_properties_changed_response { -+ struct tb_xdp_header hdr; -+}; -+ -+enum tb_xdp_error { -+ ERROR_SUCCESS = 0, -+ ERROR_UNKNOWN_PACKET = 1, -+ ERROR_UNKNOWN_DOMAIN = 2, -+ ERROR_NOT_SUPPORTED = 3, -+ ERROR_NOT_READY = 4, -+}; -+ -+struct tb_xdp_error_response { -+ struct tb_xdp_header hdr; -+ u32 error; -+}; -+ -+struct xdomain_request_work { -+ struct work_struct work; -+ struct tb_xdp_header *pkg; -+ struct tb *tb; -+}; -+ -+struct tb_xdomain_lookup { -+ const uuid_t *uuid; -+ u8 link; -+ u8 depth; -+ u64 route; -+}; -+ -+enum usb4_sb_opcode { -+ USB4_SB_OPCODE_ERR = 542265925, -+ USB4_SB_OPCODE_ONS = 1145914145, -+ USB4_SB_OPCODE_ROUTER_OFFLINE = 1313166156, -+ USB4_SB_OPCODE_ENUMERATE_RETIMERS = 1297436229, -+ USB4_SB_OPCODE_SET_INBOUND_SBTX = 1347769164, -+ USB4_SB_OPCODE_QUERY_LAST_RETIMER = 1414742348, -+ USB4_SB_OPCODE_GET_NVM_SECTOR_SIZE = 1397968455, -+ USB4_SB_OPCODE_NVM_SET_OFFSET = 1397772098, -+ USB4_SB_OPCODE_NVM_BLOCK_WRITE = 1464552514, -+ USB4_SB_OPCODE_NVM_AUTH_WRITE = 1213486401, -+ USB4_SB_OPCODE_NVM_READ = 1381123649, -+}; -+ -+enum usb4_sb_target { -+ USB4_SB_TARGET_ROUTER = 0, -+ USB4_SB_TARGET_PARTNER = 1, -+ USB4_SB_TARGET_RETIMER = 2, -+}; -+ -+enum usb4_ba_index { -+ USB4_BA_MAX_USB3 = 1, -+ USB4_BA_MIN_DP_AUX = 2, -+ USB4_BA_MIN_DP_MAIN = 3, -+ USB4_BA_MAX_PCIE = 4, -+ USB4_BA_MAX_HI = 5, -+}; -+ -+struct retimer_info { -+ struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_retimer { -+ struct device dev; -+ struct tb *tb; -+ u8 index; -+ u32 vendor; -+ u32 device; -+ struct tb_port *port; -+ struct tb_nvm *nvm; -+ u32 auth_status; -+}; -+ -+struct tb_retimer_lookup { -+ const struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_quirk { -+ u16 hw_vendor_id; -+ u16 hw_device_id; -+ u16 vendor; -+ u16 device; -+ void (*hook)(struct tb_switch *); -+}; -+ -+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, -+}; -+ -+struct nvmem_cell_table { -+ const char *nvmem_name; -+ const struct nvmem_cell_info *cells; -+ size_t ncells; -+ struct list_head node; -+}; -+ -+struct nvmem_device___2 { -+ struct module *owner; -+ struct device dev; -+ 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; -+ 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; -+ void *priv; -+}; -+ -+struct nvmem_cell___2 { -+ const char *name; -+ int offset; -+ int bytes; -+ int bit_offset; -+ int nbits; -+ struct device_node *np; -+ struct nvmem_device___2 *nvmem; -+ struct list_head node; -+}; -+ -+struct net_device_devres { -+ struct net_device *ndev; -+}; -+ -+struct __kernel_old_timespec { -+ __kernel_old_time_t tv_sec; -+ long int tv_nsec; -+}; -+ -+struct __kernel_sock_timeval { -+ __s64 tv_sec; -+ __s64 tv_usec; -+}; -+ -+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 scm_timestamping_internal { -+ struct timespec64 ts[3]; -+}; -+ -+struct ifconf { -+ int ifc_len; -+ union { -+ char *ifcu_buf; -+ struct ifreq *ifcu_req; -+ } ifc_ifcu; -+}; -+ -+typedef s32 compat_int_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; -+}; -+ -+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_LAST = 32768, -+ SOF_TIMESTAMPING_MASK = 65535, -+}; -+ -+struct scm_ts_pktinfo { -+ __u32 if_index; -+ __u32 pkt_length; -+ __u32 reserved[2]; -+}; -+ -+struct sock_skb_cb { -+ u32 dropcount; -+}; -+ -+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 net_bridge; -+ -+struct used_address { -+ struct __kernel_sockaddr_storage name; -+ unsigned int name_len; -+}; -+ -+struct linger { -+ int l_onoff; -+ int l_linger; -+}; -+ -+struct ucred { -+ __u32 pid; -+ __u32 uid; -+ __u32 gid; -+}; -+ -+struct mmpin { -+ struct user_struct *user; -+ unsigned int num_pg; -+}; -+ -+struct ubuf_info { -+ void (*callback)(struct sk_buff *, struct ubuf_info *, bool); -+ union { -+ struct { -+ long unsigned int desc; -+ void *ctx; -+ }; -+ struct { -+ u32 id; -+ u16 len; -+ u16 zerocopy: 1; -+ u32 bytelen; -+ }; -+ }; -+ refcount_t refcnt; -+ u8 flags; -+ struct mmpin mmp; -+}; -+ -+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 prot_inuse { -+ int val[64]; -+}; -+ -+struct gro_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct napi_struct { -+ struct list_head poll_list; -+ long unsigned int state; -+ int weight; -+ int defer_hard_irqs_count; -+ long unsigned int gro_bitmask; -+ int (*poll)(struct napi_struct *, int); -+ int poll_owner; -+ struct net_device *dev; -+ struct gro_list gro_hash[8]; -+ struct sk_buff *skb; -+ struct list_head rx_list; -+ int rx_count; -+ struct hrtimer timer; -+ struct list_head dev_list; -+ struct hlist_node napi_hash_node; -+ unsigned int napi_id; -+ struct task_struct *thread; -+}; -+ -+struct sd_flow_limit { -+ u64 count; -+ unsigned int num_buckets; -+ unsigned int history_head; -+ u16 history[128]; -+ u8 buckets[0]; -+}; -+ -+struct softnet_data { -+ struct list_head poll_list; -+ struct sk_buff_head process_queue; -+ unsigned int processed; -+ unsigned int time_squeeze; -+ unsigned int received_rps; -+ struct softnet_data *rps_ipi_list; -+ 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 { -+ u16 recursion; -+ u8 more; -+ } xmit; -+ int: 32; -+ unsigned int input_queue_head; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ unsigned int dropped; -+ struct sk_buff_head input_pkt_queue; -+ struct napi_struct backlog; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 sockcm_cookie { -+ u64 transmit_time; -+ u32 mark; -+ u16 tsflags; -+}; -+ -+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 net_frag_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 inet_bind_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; -+ 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); -+ struct hlist_node icsk_listen_portaddr_node; -+ 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; -+ 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 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 owners; -+}; -+ -+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)(const 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_sock_af_ops; -+ -+struct tcp_md5sig_info; -+ -+struct tcp_fastopen_request; -+ -+struct tcp_sock { -+ struct inet_connection_sock inet_conn; -+ u16 tcp_header_len; -+ u16 gso_segs; -+ __be32 pred_flags; -+ u64 bytes_received; -+ u32 segs_in; -+ u32 data_segs_in; -+ u32 rcv_nxt; -+ u32 copied_seq; -+ u32 rcv_wup; -+ u32 snd_nxt; -+ u32 segs_out; -+ u32 data_segs_out; -+ u64 bytes_sent; -+ u64 bytes_acked; -+ u32 dsack_dups; -+ u32 snd_una; -+ u32 snd_sml; -+ u32 rcv_tstamp; -+ u32 lsndtime; -+ u32 last_oow_ack_time; -+ u32 compressed_ack_rcv_nxt; -+ u32 tsoffset; -+ struct list_head tsq_node; -+ struct list_head tsorted_sent_queue; -+ u32 snd_wl1; -+ u32 snd_wnd; -+ u32 max_window; -+ u32 mss_cache; -+ u32 window_clamp; -+ u32 rcv_ssthresh; -+ struct tcp_rack rack; -+ u16 advmss; -+ u8 compressed_ack; -+ u8 dup_ack_counter: 2; -+ u8 tlp_retrans: 1; -+ u8 unused: 5; -+ u32 chrono_start; -+ u32 chrono_stat[3]; -+ u8 chrono_type: 2; -+ u8 rate_app_limited: 1; -+ u8 fastopen_connect: 1; -+ u8 fastopen_no_cookie: 1; -+ u8 is_sack_reneg: 1; -+ u8 fastopen_client_fail: 2; -+ u8 nonagle: 4; -+ u8 thin_lto: 1; -+ u8 recvmsg_inq: 1; -+ u8 repair: 1; -+ 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 is_cwnd_limited: 1; -+ u32 tlp_high_seq; -+ u32 tcp_tx_delay; -+ u64 tcp_wstamp_ns; -+ u64 tcp_clock_cache; -+ u64 tcp_mstamp; -+ u32 srtt_us; -+ u32 mdev_us; -+ u32 mdev_max_us; -+ u32 rttvar_us; -+ u32 rtt_seq; -+ struct minmax rtt_min; -+ u32 packets_out; -+ u32 retrans_out; -+ u32 max_packets_out; -+ u32 max_packets_seq; -+ u16 urg_data; -+ u8 ecn_flags; -+ u8 keepalive_probes; -+ u32 reordering; -+ u32 reord_seen; -+ u32 snd_up; -+ struct tcp_options_received rx_opt; -+ u32 snd_ssthresh; -+ u32 snd_cwnd; -+ u32 snd_cwnd_cnt; -+ u32 snd_cwnd_clamp; -+ u32 snd_cwnd_used; -+ u32 snd_cwnd_stamp; -+ u32 prior_cwnd; -+ u32 prr_delivered; -+ u32 prr_out; -+ u32 delivered; -+ u32 delivered_ce; -+ u32 lost; -+ u32 app_limited; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ u32 rate_delivered; -+ u32 rate_interval_us; -+ u32 rcv_wnd; -+ u32 write_seq; -+ u32 notsent_lowat; -+ u32 pushed_seq; -+ u32 lost_out; -+ u32 sacked_out; -+ struct hrtimer pacing_timer; -+ struct hrtimer compressed_ack_timer; -+ struct sk_buff *lost_skb_hint; -+ struct sk_buff *retransmit_skb_hint; -+ struct rb_root out_of_order_queue; -+ 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]; -+ struct sk_buff *highest_sack; -+ 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 urg_seq; -+ unsigned int keepalive_time; -+ unsigned int keepalive_intvl; -+ int linger2; -+ u8 bpf_sock_ops_cb_flags; -+ u16 timeout_rehash; -+ u32 rcv_ooopack; -+ u32 rcv_rtt_last_tsecr; -+ struct { -+ u32 rtt_us; -+ u32 seq; -+ u64 time; -+ } rcv_rtt_est; -+ struct { -+ u32 space; -+ u32 seq; -+ u64 time; -+ } rcvq_space; -+ struct { -+ u32 probe_seq_start; -+ u32 probe_seq_end; -+ } mtu_probe; -+ u32 mtu_info; -+ bool is_mptcp; -+ const struct tcp_sock_af_ops *af_specific; -+ struct tcp_md5sig_info *md5sig_info; -+ struct tcp_fastopen_request *fastopen_req; -+ struct request_sock *fastopen_rsk; -+ struct saved_syn *saved_syn; -+}; -+ -+struct tcp_md5sig_key; -+ -+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); -+}; -+ -+struct tcp_md5sig_info { -+ struct hlist_head head; -+ 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_md5_addr { -+ struct in_addr a4; -+ struct in6_addr a6; -+}; -+ -+struct tcp_md5sig_key { -+ struct hlist_node node; -+ u8 keylen; -+ u8 family; -+ u8 prefixlen; -+ union tcp_md5_addr addr; -+ int l3index; -+ u8 key[80]; -+ struct callback_head rcu; -+}; -+ -+struct net_protocol { -+ int (*early_demux)(struct sk_buff *); -+ int (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, u32); -+ unsigned int no_policy: 1; -+ unsigned int icmp_strict_tag_validation: 1; -+}; -+ -+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 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 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 drop_req; -+ 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; -+ 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 *); -+ __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 (*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 nf_conntrack { -+ atomic_t use; -+}; -+ -+enum { -+ SKBFL_ZEROCOPY_ENABLE = 1, -+ SKBFL_SHARED_FRAG = 2, -+}; -+ -+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 skb_checksum_ops { -+ __wsum (*update)(const void *, int, __wsum); -+ __wsum (*combine)(__wsum, __wsum, int, int); -+}; -+ -+struct skb_gso_cb { -+ union { -+ int mac_offset; -+ int data_offset; -+ }; -+ int encap_level; -+ __wsum csum; -+ __u16 csum_start; -+}; -+ -+struct napi_gro_cb { -+ void *frag0; -+ unsigned int frag0_len; -+ int data_offset; -+ u16 flush; -+ u16 flush_id; -+ u16 count; -+ u16 gro_remcsum_start; -+ long unsigned int age; -+ u16 proto; -+ 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 is_atomic: 1; -+ u8 recursion_counter: 4; -+ u8 is_flist: 1; -+ __wsum csum; -+ struct sk_buff *last; -+}; -+ -+enum skb_free_reason { -+ SKB_REASON_CONSUMED = 0, -+ SKB_REASON_DROPPED = 1, -+}; -+ -+struct vlan_hdr { -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct vlan_ethhdr { -+ unsigned char h_dest[6]; -+ unsigned char h_source[6]; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct qdisc_walker { -+ int stop; -+ int skip; -+ int count; -+ int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); -+}; -+ -+struct ip_auth_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __be16 reserved; -+ __be32 spi; -+ __be32 seq_no; -+ __u8 auth_data[0]; -+}; -+ -+struct frag_hdr { -+ __u8 nexthdr; -+ __u8 reserved; -+ __be16 frag_off; -+ __be32 identification; -+}; -+ -+enum { -+ SCM_TSTAMP_SND = 0, -+ SCM_TSTAMP_SCHED = 1, -+ SCM_TSTAMP_ACK = 2, -+}; -+ -+struct mpls_shim_hdr { -+ __be32 label_stack_entry; -+}; -+ -+struct napi_alloc_cache { -+ struct page_frag_cache page; -+ unsigned int skb_count; -+ void *skb_cache[64]; -+}; -+ -+typedef int (*sendmsg_func)(struct sock *, struct msghdr *, struct kvec *, size_t, size_t); -+ -+typedef int (*sendpage_func)(struct sock *, struct page *, int, size_t, int); -+ -+struct ahash_request___2; -+ -+struct scm_fp_list { -+ short int count; -+ short int max; -+ 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 { -+ 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 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_packed *bstats; -+ spinlock_t *stats_lock; -+ seqcount_t *running; -+ struct gnet_stats_basic_cpu *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 rtgenmsg { -+ unsigned char rtgen_family; -+}; -+ -+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_MAX = 34, -+}; -+ -+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; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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, -+}; -+ -+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 u64 u_int64_t; -+ -+struct flow_dissector_key_control { -+ u16 thoff; -+ u16 addr_type; -+ u32 flags; -+}; -+ -+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_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; -+}; -+ -+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; -+ __be16 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_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_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_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; -+}; -+ -+struct flow_dissector_key_ct { -+ u16 ct_state; -+ u16 ct_zone; -+ u32 ct_mark; -+ u32 ct_labels[4]; -+}; -+ -+struct flow_dissector_key_hash { -+ u32 hash; -+}; -+ -+struct flow_dissector_key { -+ enum flow_dissector_key_id key_id; -+ size_t offset; -+}; -+ -+struct flow_dissector { -+ unsigned int used_keys; -+ short unsigned int offset[28]; -+}; -+ -+struct flow_keys_basic { -+ struct flow_dissector_key_control control; -+ struct flow_dissector_key_basic basic; -+}; -+ -+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; -+ int: 32; -+}; -+ -+struct flow_keys_digest { -+ u8 data[16]; -+}; -+ -+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, -+}; -+ -+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 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; -+}; -+ -+struct ip_ct_sctp { -+ enum sctp_conntrack state; -+ __be32 vtag[2]; -+ u8 last_dir; -+ u8 flags; -+}; -+ -+struct nf_ct_event; -+ -+struct nf_ct_event_notifier { -+ int (*fcn)(unsigned int, struct nf_ct_event *); -+}; -+ -+struct nf_exp_event; -+ -+struct nf_exp_event_notifier { -+ int (*fcn)(unsigned int, struct nf_exp_event *); -+}; -+ -+enum bpf_ret_code { -+ BPF_OK = 0, -+ BPF_DROP = 2, -+ BPF_REDIRECT = 7, -+ BPF_LWT_REROUTE = 128, -+}; -+ -+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, -+}; -+ -+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 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; -+ 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; -+ -+struct devlink_rate; -+ -+struct devlink_port { -+ struct list_head list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct devlink *devlink; -+ unsigned int index; -+ bool registered; -+ spinlock_t type_lock; -+ enum devlink_port_type type; -+ enum devlink_port_type desired_type; -+ void *type_dev; -+ struct devlink_port_attrs attrs; -+ u8 attrs_set: 1; -+ u8 switch_port: 1; -+ struct delayed_work type_warn_dw; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_rate *devlink_rate; -+}; -+ -+struct ip_tunnel_parm { -+ char name[16]; -+ int link; -+ __be16 i_flags; -+ __be16 o_flags; -+ __be32 i_key; -+ __be32 o_key; -+ struct iphdr iph; -+}; -+ -+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; -+ __be16 tun_flags; -+ u8 tos; -+ u8 ttl; -+ __be32 label; -+ __be16 tp_src; -+ __be16 tp_dst; -+}; -+ -+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 dst_cache dst_cache; -+ u8 options_len; -+ u8 mode; -+}; -+ -+union tcp_word_hdr { -+ struct tcphdr hdr; -+ __be32 words[5]; -+}; -+ -+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_eswitch_encap_mode { -+ DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, -+ DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, -+}; -+ -+enum devlink_rate_type { -+ DEVLINK_RATE_TYPE_LEAF = 0, -+ DEVLINK_RATE_TYPE_NODE = 1, -+}; -+ -+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, -+}; -+ -+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_dev_stats { -+ u32 reload_stats[6]; -+ u32 remote_reload_stats[6]; -+}; -+ -+struct devlink_dpipe_headers; -+ -+struct devlink_ops; -+ -+struct devlink { -+ struct list_head list; -+ struct list_head port_list; -+ struct list_head rate_list; -+ struct list_head sb_list; -+ struct list_head dpipe_table_list; -+ struct list_head resource_list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_dpipe_headers *dpipe_headers; -+ struct list_head trap_list; -+ struct list_head trap_group_list; -+ struct list_head trap_policer_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; -+ u8 reload_failed: 1; -+ u8 reload_enabled: 1; -+ u8 registered: 1; -+ long: 61; -+ long: 64; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct devlink_dpipe_header; -+ -+struct devlink_dpipe_headers { -+ struct devlink_dpipe_header **headers; -+ unsigned int headers_count; -+}; -+ -+struct devlink_sb_pool_info; -+ -+struct devlink_info_req; -+ -+struct devlink_flash_update_params; -+ -+struct devlink_trap; -+ -+struct devlink_trap_group; -+ -+struct devlink_trap_policer; -+ -+struct devlink_port_new_attrs; -+ -+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 (*port_type_set)(struct devlink_port *, enum devlink_port_type); -+ int (*port_split)(struct devlink *, unsigned int, unsigned int, struct netlink_ext_ack *); -+ int (*port_unsplit)(struct devlink *, unsigned int, 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_function_hw_addr_get)(struct devlink *, struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); -+ int (*port_function_hw_addr_set)(struct devlink *, struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); -+ int (*port_new)(struct devlink *, const struct devlink_port_new_attrs *, struct netlink_ext_ack *, unsigned int *); -+ int (*port_del)(struct devlink *, unsigned int, struct netlink_ext_ack *); -+ int (*port_fn_state_get)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); -+ int (*port_fn_state_set)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); -+ 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_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_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 *); -+}; -+ -+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; -+ }; -+ }; -+}; -+ -+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_sb_pool_info { -+ enum devlink_sb_pool_type pool_type; -+ u32 size; -+ enum devlink_sb_threshold_type threshold_type; -+ u32 cell_size; -+}; -+ -+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_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 arphdr { -+ __be16 ar_hrd; -+ __be16 ar_pro; -+ unsigned char ar_hln; -+ unsigned char ar_pln; -+ __be16 ar_op; -+}; -+ -+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; -+ int 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; -+ 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; -+ }; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 { -+ struct nexthop *nh; -+ u8 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; -+}; -+ -+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_group { -+ struct nh_group *spare; -+ u16 num_nh; -+ bool is_multipath; -+ bool hash_threshold; -+ bool resilient; -+ bool fdb_nh; -+ bool has_v4; -+ struct nh_res_table *res_table; -+ struct nh_grp_entry nh_entries[0]; -+}; -+ -+enum metadata_type { -+ METADATA_IP_TUNNEL = 0, -+ METADATA_HW_PORT_MUX = 1, -+}; -+ -+struct hw_port_info { -+ struct net_device *lower_dev; -+ u32 port_id; -+}; -+ -+struct metadata_dst { -+ struct dst_entry dst; -+ enum metadata_type type; -+ union { -+ struct ip_tunnel_info tun_info; -+ struct hw_port_info port_info; -+ } u; -+}; -+ -+struct gre_base_hdr { -+ __be16 flags; -+ __be16 protocol; -+}; -+ -+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 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 l2tp_debug_flags { -+ L2TP_MSG_DEBUG = 1, -+ L2TP_MSG_CONTROL = 2, -+ L2TP_MSG_SEQ = 4, -+ L2TP_MSG_DATA = 8, -+}; -+ -+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 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_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_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; -+ 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; -+ u16 cpu; -+ 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_conntrack_tuple_mask { -+ struct { -+ union nf_inet_addr u3; -+ union nf_conntrack_man_proto u; -+ } src; -+}; -+ -+struct nf_ct_ext { -+ u8 offset[9]; -+ u8 len; -+ 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; -+ void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); -+ struct nf_conntrack_helper *helper; -+ struct nf_conn *master; -+ struct timer_list timeout; -+ refcount_t use; -+ unsigned int flags; -+ unsigned int class; -+ 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_NUM = 9, -+}; -+ -+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 rps_sock_flow_table { -+ u32 mask; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 ents[0]; -+}; -+ -+struct tc_skb_ext { -+ __u32 chain; -+ __u16 mru; -+ bool post_ct; -+}; -+ -+struct ipv4_devconf { -+ void *sysctl; -+ int data[32]; -+ long unsigned int state[1]; -+}; -+ -+enum nf_dev_hooks { -+ NF_NETDEV_INGRESS = 0, -+ NF_NETDEV_NUMHOOKS = 1, -+}; -+ -+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 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 netdev_boot_setup { -+ char name[16]; -+ struct ifmap map; -+}; -+ -+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; -+ -+enum netdev_queue_state_t { -+ __QUEUE_STATE_DRV_XOFF = 0, -+ __QUEUE_STATE_STACK_XOFF = 1, -+ __QUEUE_STATE_FROZEN = 2, -+}; -+ -+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 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; -+}; -+ -+struct in_ifaddr; -+ -+struct ip_mc_list; -+ -+struct in_device { -+ struct net_device *dev; -+ 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 packet_type { -+ __be16 type; -+ bool ignore_outgoing; -+ struct net_device *dev; -+ 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 *); -+ void *af_packet_priv; -+ struct list_head list; -+}; -+ -+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 netdev_notifier_info_ext { -+ struct netdev_notifier_info info; -+ union { -+ u32 mtu; -+ } ext; -+}; -+ -+struct netdev_notifier_change_info { -+ struct netdev_notifier_info info; -+ unsigned int flags_changed; -+}; -+ -+struct netdev_notifier_changeupper_info { -+ struct netdev_notifier_info info; -+ struct net_device *upper_dev; -+ bool master; -+ bool linking; -+ void *upper_info; -+}; -+ -+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; -+}; -+ -+typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); -+ -+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; -+}; -+ -+union inet_addr { -+ __u32 all[4]; -+ __be32 ip; -+ __be32 ip6[4]; -+ struct in_addr in; -+ struct in6_addr in6; -+}; -+ -+struct netpoll { -+ struct net_device *dev; -+ char dev_name[16]; -+ 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]; -+}; -+ -+enum qdisc_state_t { -+ __QDISC_STATE_SCHED = 0, -+ __QDISC_STATE_DEACTIVATED = 1, -+ __QDISC_STATE_MISSED = 2, -+ __QDISC_STATE_DRAINING = 3, -+}; -+ -+struct tcf_walker { -+ int stop; -+ int skip; -+ int count; -+ bool nonempty; -+ long unsigned int cookie; -+ int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); -+}; -+ -+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_MAX = 33, -+}; -+ -+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; -+ __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 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 dev_kfree_skb_cb { -+ enum skb_free_reason reason; -+}; -+ -+struct netdev_adjacent { -+ struct net_device *dev; -+ bool master; -+ bool ignore; -+ u16 ref_nr; -+ void *private; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netdev_hw_addr { -+ struct list_head list; -+ unsigned char addr[32]; -+ unsigned char type; -+ bool global_use; -+ int sync_cnt; -+ int refcount; -+ int synced; -+ struct callback_head callback_head; -+}; -+ -+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_MAX = 15, -+}; -+ -+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_MAX = 19, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ NEIGH_ARP_TABLE = 0, -+ NEIGH_ND_TABLE = 1, -+ NEIGH_DN_TABLE = 2, -+ NEIGH_NR_TABLES = 3, -+ NEIGH_LINK_TABLE = 3, -+}; -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+struct netlink_dump_control { -+ int (*start)(struct netlink_callback *); -+ int (*dump)(struct sk_buff *, struct netlink_callback *); -+ int (*done)(struct netlink_callback *); -+ void *data; -+ struct module *module; -+ u32 min_dump_alloc; -+}; -+ -+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_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_MAX = 39, -+}; -+ -+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_OFFLOAD_XSTATS_UNSPEC = 0, -+ IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, -+ __IFLA_OFFLOAD_XSTATS_MAX = 2, -+}; -+ -+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, -+}; -+ -+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_MAX = 6, -+}; -+ -+enum { -+ BR_MCAST_DIR_RX = 0, -+ BR_MCAST_DIR_TX = 1, -+ BR_MCAST_DIR_SIZE = 2, -+}; -+ -+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 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 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 *); -+ 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 rtnl_link { -+ rtnl_doit_func doit; -+ rtnl_dumpit_func dumpit; -+ struct module *owner; -+ unsigned int flags; -+ struct callback_head rcu; -+}; -+ -+enum { -+ IF_LINK_MODE_DEFAULT = 0, -+ IF_LINK_MODE_DORMANT = 1, -+ IF_LINK_MODE_TESTING = 2, -+}; -+ -+enum lw_bits { -+ LW_URGENT = 0, -+}; -+ -+struct seg6_pernet_data { -+ struct mutex lock; -+ struct in6_addr *tun_src; -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_F_INGRESS = 1, -+}; -+ -+enum { -+ BPF_F_TUNINFO_IPV6 = 1, -+}; -+ -+enum { -+ BPF_F_ZERO_CSUM_TX = 2, -+ BPF_F_DONT_FRAGMENT = 4, -+ BPF_F_SEQ_NUMBER = 8, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct bpf_tunnel_key { -+ __u32 tunnel_id; -+ union { -+ __u32 remote_ipv4; -+ __u32 remote_ipv6[4]; -+ }; -+ __u8 tunnel_tos; -+ __u8 tunnel_ttl; -+ __u16 tunnel_ext; -+ __u32 tunnel_label; -+}; -+ -+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 { -+ 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, -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_LOAD_HDR_OPT_TCP_SYN = 1, -+}; -+ -+enum { -+ BPF_FIB_LOOKUP_DIRECT = 1, -+ BPF_FIB_LOOKUP_OUTPUT = 2, -+}; -+ -+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, -+}; -+ -+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]; -+ }; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __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, -+}; -+ -+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 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 nl_info { -+ struct nlmsghdr *nlh; -+ struct net *nl_net; -+ u32 portid; -+ u8 skip_notify: 1; -+ u8 skip_notify_kernel: 1; -+}; -+ -+struct compat_sock_fprog { -+ u16 len; -+ compat_uptr_t filter; -+}; -+ -+struct inet_timewait_sock { -+ struct sock_common __tw_common; -+ __u32 tw_mark; -+ volatile unsigned char tw_substate; -+ unsigned char tw_rcv_wscale; -+ __be16 tw_sport; -+ unsigned int tw_kill: 1; -+ unsigned int tw_transparent: 1; -+ unsigned int tw_flowlabel: 20; -+ 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 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 udp_sock { -+ struct inet_sock inet; -+ int pending; -+ unsigned int corkflag; -+ __u8 encap_type; -+ unsigned char no_check6_tx: 1; -+ unsigned char no_check6_rx: 1; -+ unsigned char encap_enabled: 1; -+ unsigned char gro_enabled: 1; -+ unsigned char accept_udp_l4: 1; -+ unsigned char accept_udp_fraglist: 1; -+ __u16 len; -+ __u16 gso_size; -+ __u16 pcslen; -+ __u16 pcrlen; -+ __u8 pcflag; -+ __u8 unused[3]; -+ int (*encap_rcv)(struct sock *, struct sk_buff *); -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sk_buff_head reader_queue; -+ int forward_deficit; -+ long: 32; -+ 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 udp6_sock { -+ struct udp_sock udp; -+ struct ipv6_pinfo inet6; -+ long: 64; -+ 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 tcp6_sock { -+ struct tcp_sock tcp; -+ struct ipv6_pinfo inet6; -+}; -+ -+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_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 (*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 *); -+ 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 *); -+}; -+ -+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 ipv6_bpf_stub { -+ int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); -+ struct sock * (*udp6_lib_lookup)(struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); -+}; -+ -+struct fib_result { -+ __be32 prefix; -+ unsigned char prefixlen; -+ unsigned char nh_sel; -+ unsigned char type; -+ unsigned char scope; -+ u32 tclassid; -+ struct fib_nh_common *nhc; -+ struct fib_info *fi; -+ struct fib_table *table; -+ struct hlist_head *fa_head; -+}; -+ -+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 tcp_skb_cb { -+ __u32 seq; -+ __u32 end_seq; -+ union { -+ __u32 tcp_tw_isn; -+ 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 in_flight: 30; -+ __u32 is_app_limited: 1; -+ __u32 unused: 1; -+ __u32 delivered; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ } tx; -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ } header; -+ }; -+}; -+ -+struct strp_msg { -+ int full_len; -+ int offset; -+}; -+ -+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; -+ bool zc; -+ struct page **pgs; -+ int id; -+ struct list_head xsk_dma_list; -+ struct work_struct work; -+}; -+ -+struct xsk_queue; -+ -+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; -+ enum { -+ XSK_READY = 0, -+ XSK_BOUND = 1, -+ XSK_UNBOUND = 2, -+ } state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xsk_queue *tx; -+ struct list_head tx_list; -+ spinlock_t rx_lock; -+ u64 rx_dropped; -+ u64 rx_queue_full; -+ struct list_head map_list; -+ spinlock_t map_list_lock; -+ struct mutex mutex; -+ struct xsk_queue *fq_tmp; -+ struct xsk_queue *cq_tmp; -+ long: 64; -+}; -+ -+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 tls_sw_context_rx { -+ struct crypto_aead *aead_recv; -+ struct crypto_wait async_wait; -+ struct strparser strp; -+ struct sk_buff_head rx_list; -+ void (*saved_data_ready)(struct sock *); -+ struct sk_buff *recv_pkt; -+ u8 control; -+ u8 async_capable: 1; -+ u8 decrypted: 1; -+ atomic_t decrypt_pending; -+ spinlock_t decrypt_compl_lock; -+ bool async_notify; -+}; -+ -+struct cipher_context { -+ char *iv; -+ char *rec_seq; -+}; -+ -+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 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 tls_context { -+ struct tls_prot_info prot_info; -+ u8 tx_conf: 3; -+ u8 rx_conf: 3; -+ 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 in_tcp_sendpages; -+ 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]; -+ }; -+}; -+ -+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 = 2, -+ BPF_F_PEER = 4, -+ BPF_F_NEXTHOP = 8, -+}; -+ -+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)(); -+ -+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_adjust_head)(struct xdp_buff *, int); -+ -+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 *, u32, 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_socket_uid)(struct sk_buff *); -+ -+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_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_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_sock_from_file)(struct file *); -+ -+struct bpf_dtab_netdev___2; -+ -+struct bpf_cpu_map_entry___2; -+ -+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; -+}; -+ -+struct sock_diag_handler { -+ __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 broadcast_sk { -+ struct sock *sk; -+ struct work_struct work; -+}; -+ -+struct hwtstamp_config { -+ int flags; -+ int tx_type; -+ int rx_filter; -+}; -+ -+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 compat_ifconf { -+ compat_int_t ifc_len; -+ compat_caddr_t ifcbuf; -+}; -+ -+struct tso_t { -+ int next_frag_idx; -+ int size; -+ void *data; -+ u16 ip_id; -+ u8 tlen; -+ bool ipv6; -+ u32 tcp_seq; -+}; -+ -+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 xdp_frame_bulk { -+ int count; -+ void *xa; -+ void *q[16]; -+}; -+ -+struct xdp_attachment_info { -+ struct bpf_prog *prog; -+ u32 flags; -+}; -+ -+struct xdp_buff_xsk; -+ -+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; -+ struct list_head free_list; -+ u32 heads_cnt; -+ u16 queue_id; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xsk_queue *fq; -+ struct xsk_queue *cq; -+ dma_addr_t *dma_pages; -+ struct xdp_buff_xsk *heads; -+ u64 chunk_mask; -+ u64 addrs_cnt; -+ u32 free_list_cnt; -+ u32 dma_pages_cnt; -+ u32 free_heads_cnt; -+ u32 headroom; -+ u32 chunk_size; -+ u32 frame_len; -+ u8 cached_need_wakeup; -+ bool uses_need_wakeup; -+ bool dma_need_sync; -+ bool unaligned; -+ void *addrs; -+ spinlock_t cq_lock; -+ struct xdp_buff_xsk *free_heads[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_buff_xsk { -+ struct xdp_buff xdp; -+ dma_addr_t dma; -+ dma_addr_t frame_dma; -+ struct xsk_buff_pool *pool; -+ bool unaligned; -+ u64 orig_addr; -+ struct list_head free_list_node; -+}; -+ -+struct flow_match { -+ struct flow_dissector *dissector; -+ void *mask; -+ void *key; -+}; -+ -+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_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_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_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; -+}; -+ -+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_WAKE = 19, -+ FLOW_ACTION_QUEUE = 20, -+ FLOW_ACTION_SAMPLE = 21, -+ FLOW_ACTION_POLICE = 22, -+ FLOW_ACTION_CT = 23, -+ FLOW_ACTION_CT_METADATA = 24, -+ FLOW_ACTION_MPLS_PUSH = 25, -+ FLOW_ACTION_MPLS_POP = 26, -+ FLOW_ACTION_MPLS_MANGLE = 27, -+ FLOW_ACTION_GATE = 28, -+ FLOW_ACTION_PPPOE_PUSH = 29, -+ NUM_FLOW_ACTIONS = 30, -+}; -+ -+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 nf_flowtable; -+ -+struct psample_group; -+ -+struct action_gate_entry; -+ -+struct flow_action_entry { -+ enum flow_action_id id; -+ 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 { -+ 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; -+ 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 index; -+ u32 burst; -+ u64 rate_bytes_ps; -+ u64 burst_pkt; -+ u64 rate_pkt_ps; -+ u32 mtu; -+ } 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 { -+ u32 index; -+ 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 *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; -+}; -+ -+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 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 flow_indr_dev { -+ struct list_head list; -+ flow_indr_block_bind_cb_t *cb; -+ void *cb_priv; -+ refcount_t refcnt; -+ struct callback_head rcu; -+}; -+ -+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_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct netdev_queue *, char *); -+ ssize_t (*store)(struct netdev_queue *, const char *, size_t); -+}; -+ -+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 tmp_list; -+ struct inet6_ifaddr *ifpub; -+ int regen_count; -+ bool tokenized; -+ struct callback_head rcu; -+ struct in6_addr peer_addr; -+}; -+ -+struct fib_rule_uid_range { -+ __u32 start; -+ __u32 end; -+}; -+ -+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_MAX = 25, -+}; -+ -+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 fib_rule_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_rule *rule; -+}; -+ -+struct trace_event_raw_kfree_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ void *location; -+ short unsigned int protocol; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_consume_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ 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 *); -+ -+typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *); -+ -+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; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit_timeout { -+ u32 name; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_net_dev_template { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_rx_verbose_template { -+ u32 name; -+}; -+ -+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_netif_rx_ni_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_rx_ni_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_data_offsets_napi_poll { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); -+ -+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 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; -+ 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_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 {}; -+ -+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 *); -+ -+struct trace_event_raw_udp_fail_queue_rcv_skb { -+ struct trace_entry ent; -+ int rc; -+ __u16 lport; -+ 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 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_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; -+ 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_data_offsets_tcp_event_sk_skb {}; -+ -+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 {}; -+ -+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 *); -+ -+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 *); -+ -+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; -+ u32 __data_loc_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib_table_lookup { -+ u32 name; -+}; -+ -+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; -+ 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; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_destroy { -+ u32 dev; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_create { -+ u32 dev; -+ u32 kind; -+}; -+ -+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; -+ long unsigned int delay_time; -+}; -+ -+struct net_bridge_port; -+ -+struct bridge_mcast_querier { -+ struct br_ip addr; -+ struct net_bridge_port *port; -+}; -+ -+struct net_bridge___2; -+ -+struct net_bridge_vlan_group; -+ -+struct bridge_mcast_stats; -+ -+struct net_bridge_port { -+ struct net_bridge___2 *br; -+ struct net_device *dev; -+ struct list_head list; -+ long unsigned int flags; -+ struct net_bridge_vlan_group *vlgrp; -+ struct net_bridge_port *backup_port; -+ 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 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; -+ u32 multicast_eht_hosts_limit; -+ u32 multicast_eht_hosts_cnt; -+ unsigned char multicast_router; -+ struct bridge_mcast_stats *mcast_stats; -+ struct hlist_head mglist; -+ char sysfs_name[16]; -+ struct netpoll *np; -+ int offload_fwd_mark; -+ u16 group_fwd_mask; -+ u16 backup_redirected_cnt; -+ struct bridge_stp_xstats stp_xstats; -+}; -+ -+struct bridge_mcast_stats { -+ struct br_mcast_stats mstats; -+ struct u64_stats_sync syncp; -+}; -+ -+struct net_bridge___2 { -+ 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; -+ }; -+ 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; -+ u32 hash_max; -+ u32 multicast_last_member_count; -+ u32 multicast_startup_query_count; -+ u8 multicast_igmp_version; -+ u8 multicast_router; -+ u8 multicast_mld_version; -+ spinlock_t multicast_lock; -+ 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 rhashtable mdb_hash_tbl; -+ struct rhashtable sg_port_tbl; -+ struct hlist_head mcast_gc_list; -+ struct hlist_head mdb_list; -+ 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 bridge_mcast_stats *mcast_stats; -+ 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 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; -+ int offload_fwd_mark; -+ struct hlist_head fdb_list; -+}; -+ -+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: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int updated; -+ long unsigned int used; -+ 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; -+}; -+ -+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_data_offsets_br_fdb_add { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_external_learn_add { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_fdb_delete { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_update { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+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___2 *, struct net_bridge_port *, const unsigned char *, u16); -+ -+typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge___2 *, struct net_bridge_fdb_entry *); -+ -+typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge___2 *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); -+ -+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; -+ const struct page *page; -+ 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; -+ const struct page *page; -+ 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 *, const struct page *, u32); -+ -+typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, const struct page *, 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; -+}; -+ -+struct trace_event_data_offsets_neigh_update { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_neigh__update { -+ u32 dev; -+}; -+ -+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 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_MAX = 23, -+ NET_DM_ATTR_MAX = 22, -+}; -+ -+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, -+}; -+ -+struct devlink_trap_metadata { -+ const char *trap_name; -+ const char *trap_group_name; -+ struct net_device *input_dev; -+ const struct flow_action_cookie *fa_cookie; -+ enum devlink_trap_type trap_type; -+}; -+ -+struct net_dm_stats { -+ u64 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 { -+ 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 dm_hw_stat_delta { -+ struct net_device *dev; -+ long unsigned int last_rx; -+ struct list_head list; -+ struct callback_head rcu; -+ long unsigned int last_drop_val; -+}; -+ -+struct net_dm_alert_ops { -+ void (*kfree_skb_probe)(void *, struct sk_buff *, void *); -+ 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 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 { -+ unsigned char *src; -+ 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 update_classid_context { -+ u32 classid; -+ unsigned int batch; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum { -+ LWTUNNEL_XMIT_DONE = 0, -+ LWTUNNEL_XMIT_CONTINUE = 1, -+}; -+ -+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 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 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_MAX = 78, -+ DEVLINK_CMD_MAX = 77, -+}; -+ -+enum devlink_eswitch_mode { -+ DEVLINK_ESWITCH_MODE_LEGACY = 0, -+ DEVLINK_ESWITCH_MODE_SWITCHDEV = 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, -+}; -+ -+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_FLASH_OVERWRITE_SETTINGS_BIT = 0, -+ DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT = 1, -+ __DEVLINK_FLASH_OVERWRITE_MAX_BIT = 2, -+ DEVLINK_FLASH_OVERWRITE_MAX_BIT = 1, -+}; -+ -+enum { -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, -+}; -+ -+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_MAX = 170, -+ DEVLINK_ATTR_MAX = 169, -+}; -+ -+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, -+}; -+ -+enum devlink_resource_unit { -+ DEVLINK_RESOURCE_UNIT_ENTRY = 0, -+}; -+ -+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_FUNCTION_ATTR_MAX = 4, -+ DEVLINK_PORT_FUNCTION_ATTR_MAX = 3, -+}; -+ -+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; -+ 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_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_param_type { -+ DEVLINK_PARAM_TYPE_U8 = 0, -+ DEVLINK_PARAM_TYPE_U16 = 1, -+ DEVLINK_PARAM_TYPE_U32 = 2, -+ DEVLINK_PARAM_TYPE_STRING = 3, -+ DEVLINK_PARAM_TYPE_BOOL = 4, -+}; -+ -+union devlink_param_value { -+ u8 vu8; -+ u16 vu16; -+ u32 vu32; -+ char vstr[32]; -+ bool vbool; -+}; -+ -+struct devlink_param_gset_ctx { -+ union devlink_param_value val; -+ enum devlink_param_cmode cmode; -+}; -+ -+struct devlink_flash_notify { -+ const char *status_msg; -+ const char *component; -+ long unsigned int done; -+ long unsigned int total; -+ long unsigned int timeout; -+}; -+ -+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 *); -+ 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; -+ bool published; -+}; -+ -+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_MAX = 11, -+ DEVLINK_PARAM_GENERIC_ID_MAX = 10, -+}; -+ -+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 **); -+ 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 **); -+ void *priv; -+}; -+ -+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; -+ struct mutex dump_lock; -+ 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; -+ refcount_t refcount; -+}; -+ -+struct devlink_fmsg { -+ struct list_head item_list; -+ bool putting_binary; -+}; -+ -+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_MAX = 92, -+ DEVLINK_TRAP_GENERIC_ID_MAX = 91, -+}; -+ -+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_MAX = 26, -+ DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 25, -+}; -+ -+struct devlink_info_req { -+ struct sk_buff *msg; -+}; -+ -+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; -+ u32 __data_loc_input_dev_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devlink_hwmsg { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_devlink_hwerr { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_recover_aborted { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_health_reporter_state_update { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_trap_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 trap_name; -+ u32 trap_group_name; -+ u32 input_dev_name; -+}; -+ -+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 *); -+ -+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; -+}; -+ -+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 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; -+}; -+ -+enum devlink_multicast_groups { -+ DEVLINK_MCGRP_CONFIG = 0, -+}; -+ -+struct devlink_reload_combination { -+ enum devlink_reload_action action; -+ enum devlink_reload_limit limit; -+}; -+ -+struct devlink_fmsg_item { -+ struct list_head list; -+ int attrtype; -+ u8 nla_type; -+ u16 len; -+ int value[0]; -+}; -+ -+struct devlink_stats { -+ u64 rx_bytes; -+ u64 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; -+}; -+ -+struct gro_cell; -+ -+struct gro_cells { -+ struct gro_cell *cells; -+}; -+ -+struct gro_cell { -+ struct sk_buff_head napi_skbs; -+ struct napi_struct napi; -+}; -+ -+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, -+}; -+ -+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; -+ raw_spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+ raw_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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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); -+ -+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); -+ -+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; -+ }; -+}; -+ -+struct fch_hdr { -+ __u8 daddr[6]; -+ __u8 saddr[6]; -+}; -+ -+struct fcllc { -+ __u8 dsap; -+ __u8 ssap; -+ __u8 llc; -+ __u8 protid[3]; -+ __be16 ethertype; -+}; -+ -+enum macvlan_mode { -+ MACVLAN_MODE_PRIVATE = 1, -+ MACVLAN_MODE_VEPA = 2, -+ MACVLAN_MODE_BRIDGE = 4, -+ MACVLAN_MODE_PASSTHRU = 8, -+ MACVLAN_MODE_SOURCE = 16, -+}; -+ -+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]; -+}; -+ -+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_MAX = 16, -+}; -+ -+struct vlan_pcpu_stats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 rx_multicast; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+ u32 rx_errors; -+ u32 tx_dropped; -+}; -+ -+struct netpoll___2; -+ -+struct skb_array { -+ struct ptr_ring ring; -+}; -+ -+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; -+ 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 netpoll___2 *netpoll; -+}; -+ -+struct psched_ratecfg { -+ u64 rate_bytes_ps; -+ u32 mult; -+ u16 overhead; -+ u8 linklayer; -+ u8 shift; -+}; -+ -+struct psched_pktrate { -+ u64 rate_pkts_ps; -+ u32 mult; -+ u8 shift; -+}; -+ -+struct mini_Qdisc_pair { -+ struct mini_Qdisc miniq1; -+ struct mini_Qdisc miniq2; -+ struct mini_Qdisc **p_miniq; -+}; -+ -+struct pfifo_fast_priv { -+ struct skb_array q[3]; -+}; -+ -+struct tc_qopt_offload_stats { -+ struct gnet_stats_basic_packed *bstats; -+ struct gnet_stats_queue *qstats; -+}; -+ -+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 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 *); -+}; -+ -+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; -+ struct hlist_node hnode; -+}; -+ -+struct Qdisc_class_hash { -+ struct hlist_head *hash; -+ unsigned int hashsize; -+ unsigned int hashmask; -+ unsigned int hashelems; -+}; -+ -+struct qdisc_watchdog { -+ u64 last_expires; -+ struct hrtimer timer; -+ struct Qdisc *qdisc; -+}; -+ -+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 net_xmit_qdisc_t { -+ __NET_XMIT_STOLEN = 65536, -+ __NET_XMIT_BYPASS = 131072, -+}; -+ -+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_MAX = 10, -+}; -+ -+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 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_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; -+ struct gnet_stats_basic_packed tcfa_bstats; -+ struct gnet_stats_basic_packed tcfa_bstats_hw; -+ struct gnet_stats_queue tcfa_qstats; -+ struct net_rate_estimator *tcfa_rate_est; -+ spinlock_t tcfa_lock; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_basic_cpu *cpu_bstats_hw; -+ struct gnet_stats_queue *cpu_qstats; -+ struct tc_cookie *act_cookie; -+ struct tcf_chain *goto_chain; -+ u32 tcfa_flags; -+ u8 hw_stats; -+ u8 used_hw_stats; -+ bool used_hw_stats_valid; -+}; -+ -+typedef void (*tc_action_priv_destructor)(void *); -+ -+struct tc_action_ops { -+ struct list_head head; -+ char kind[16]; -+ enum tca_id 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 **, int, int, bool, 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 *); -+}; -+ -+struct tc_cookie { -+ u8 *data; -+ u32 len; -+ struct callback_head rcu; -+}; -+ -+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 { -+ __u32 type; -+ int nr_actions; -+ struct tc_action **actions; -+ struct net *net; -+ int action; -+ int police; -+}; -+ -+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 { -+ struct tc_action common; -+ unsigned char tcfp_nkeys; -+ unsigned char tcfp_flags; -+ struct tc_pedit_key *tcfp_keys; -+ struct tcf_pedit_key_ex *tcfp_keys_ex; -+}; -+ -+struct tcf_mirred { -+ struct tc_action common; -+ int tcfm_eaction; -+ bool tcfm_mac_header_xmit; -+ struct net_device *tcfm_dev; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_vlan_params { -+ int tcfv_action; -+ unsigned char tcfv_push_dst[6]; -+ unsigned char tcfv_push_src[6]; -+ u16 tcfv_push_vid; -+ __be16 tcfv_push_proto; -+ u8 tcfv_push_prio; -+ bool tcfv_push_prio_exists; -+ struct callback_head rcu; -+}; -+ -+struct tcf_vlan { -+ struct tc_action common; -+ struct tcf_vlan_params *vlan_p; -+}; -+ -+struct tcf_tunnel_key_params { -+ struct callback_head rcu; -+ int tcft_action; -+ struct metadata_dst *tcft_enc_metadata; -+}; -+ -+struct tcf_tunnel_key { -+ struct tc_action common; -+ struct tcf_tunnel_key_params *params; -+}; -+ -+struct tcf_csum_params { -+ u32 update_flags; -+ struct callback_head rcu; -+}; -+ -+struct tcf_csum { -+ struct tc_action common; -+ struct tcf_csum_params *params; -+}; -+ -+struct tcf_gact { -+ struct tc_action common; -+ u16 tcfg_ptype; -+ u16 tcfg_pval; -+ int tcfg_paction; -+ atomic_t packets; -+}; -+ -+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; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct tcf_sample { -+ struct tc_action common; -+ u32 rate; -+ bool truncate; -+ u32 trunc_size; -+ struct psample_group *psample_group; -+ u32 psample_group_num; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_skbedit_params { -+ u32 flags; -+ u32 priority; -+ u32 mark; -+ u32 mask; -+ u16 queue_mapping; -+ u16 ptype; -+ struct callback_head rcu; -+}; -+ -+struct tcf_skbedit { -+ struct tc_action common; -+ struct tcf_skbedit_params *params; -+}; -+ -+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; -+}; -+ -+struct tcf_ct_flow_table; -+ -+struct tcf_ct_params { -+ struct nf_conn *tmpl; -+ u16 zone; -+ u32 mark; -+ u32 mark_mask; -+ u32 labels[4]; -+ u32 labels_mask[4]; -+ struct nf_nat_range2 range; -+ bool ipv4_range; -+ u16 ct_action; -+ struct callback_head rcu; -+ struct tcf_ct_flow_table *ct_ft; -+ struct nf_flowtable *nf_ft; -+}; -+ -+struct tcf_ct { -+ struct tc_action common; -+ struct tcf_ct_params *params; -+}; -+ -+struct tcf_mpls_params { -+ int tcfm_action; -+ u32 tcfm_label; -+ u8 tcfm_tc; -+ u8 tcfm_ttl; -+ u8 tcfm_bos; -+ __be16 tcfm_proto; -+ struct callback_head rcu; -+}; -+ -+struct tcf_mpls { -+ struct tc_action common; -+ struct tcf_mpls_params *mpls_p; -+}; -+ -+struct tcfg_gate_entry { -+ int index; -+ u8 gate_state; -+ u32 interval; -+ s32 ipv; -+ s32 maxoctets; -+ struct list_head list; -+}; -+ -+struct tcf_gate_params { -+ s32 tcfg_priority; -+ u64 tcfg_basetime; -+ u64 tcfg_cycletime; -+ u64 tcfg_cycletime_ext; -+ u32 tcfg_flags; -+ s32 tcfg_clockid; -+ size_t num_entries; -+ struct list_head entries; -+}; -+ -+struct tcf_gate { -+ struct tc_action common; -+ struct tcf_gate_params param; -+ u8 current_gate_status; -+ ktime_t current_close_time; -+ u32 current_entry_octets; -+ s32 current_max_octets; -+ struct tcfg_gate_entry *next_entry; -+ struct hrtimer hitimer; -+ enum tk_offsets tk_offset; -+}; -+ -+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 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_MAX = 5, -+}; -+ -+struct tc_action_net { -+ struct tcf_idrinfo *idrinfo; -+ const struct tc_action_ops *ops; -+}; -+ -+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_FQ_CODEL_UNSPEC = 0, -+ TCA_FQ_CODEL_TARGET = 1, -+ TCA_FQ_CODEL_LIMIT = 2, -+ TCA_FQ_CODEL_INTERVAL = 3, -+ TCA_FQ_CODEL_ECN = 4, -+ TCA_FQ_CODEL_FLOWS = 5, -+ TCA_FQ_CODEL_QUANTUM = 6, -+ TCA_FQ_CODEL_CE_THRESHOLD = 7, -+ TCA_FQ_CODEL_DROP_BATCH_SIZE = 8, -+ TCA_FQ_CODEL_MEMORY_LIMIT = 9, -+ __TCA_FQ_CODEL_MAX = 10, -+}; -+ -+enum { -+ TCA_FQ_CODEL_XSTATS_QDISC = 0, -+ TCA_FQ_CODEL_XSTATS_CLASS = 1, -+}; -+ -+struct tc_fq_codel_qd_stats { -+ __u32 maxpacket; -+ __u32 drop_overlimit; -+ __u32 ecn_mark; -+ __u32 new_flow_count; -+ __u32 new_flows_len; -+ __u32 old_flows_len; -+ __u32 ce_mark; -+ __u32 memory_usage; -+ __u32 drop_overmemory; -+}; -+ -+struct tc_fq_codel_cl_stats { -+ __s32 deficit; -+ __u32 ldelay; -+ __u32 count; -+ __u32 lastcount; -+ __u32 dropping; -+ __s32 drop_next; -+}; -+ -+struct tc_fq_codel_xstats { -+ __u32 type; -+ union { -+ struct tc_fq_codel_qd_stats qdisc_stats; -+ struct tc_fq_codel_cl_stats class_stats; -+ }; -+}; -+ -+typedef u32 codel_time_t; -+ -+typedef s32 codel_tdiff_t; -+ -+struct codel_params { -+ codel_time_t target; -+ codel_time_t ce_threshold; -+ codel_time_t interval; -+ u32 mtu; -+ bool ecn; -+}; -+ -+struct codel_vars { -+ u32 count; -+ u32 lastcount; -+ bool dropping; -+ u16 rec_inv_sqrt; -+ codel_time_t first_above_time; -+ codel_time_t drop_next; -+ codel_time_t ldelay; -+}; -+ -+struct codel_stats { -+ u32 maxpacket; -+ u32 drop_count; -+ u32 drop_len; -+ u32 ecn_mark; -+ u32 ce_mark; -+}; -+ -+typedef u32 (*codel_skb_len_t)(const struct sk_buff *); -+ -+typedef codel_time_t (*codel_skb_time_t)(const struct sk_buff *); -+ -+typedef void (*codel_skb_drop_t)(struct sk_buff *, void *); -+ -+typedef struct sk_buff * (*codel_skb_dequeue_t)(struct codel_vars *, void *); -+ -+struct codel_skb_cb { -+ codel_time_t enqueue_time; -+ unsigned int mem_usage; -+}; -+ -+struct fq_codel_flow { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ struct list_head flowchain; -+ int deficit; -+ struct codel_vars cvars; -+}; -+ -+struct fq_codel_sched_data { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct fq_codel_flow *flows; -+ u32 *backlogs; -+ u32 flows_cnt; -+ u32 quantum; -+ u32 drop_batch_size; -+ u32 memory_limit; -+ struct codel_params cparams; -+ struct codel_stats cstats; -+ u32 memory_usage; -+ u32 drop_overmemory; -+ u32 drop_overlimit; -+ u32 new_flow_count; -+ struct list_head new_flows; -+ struct list_head old_flows; -+}; -+ -+enum { -+ TCA_CGROUP_UNSPEC = 0, -+ TCA_CGROUP_ACT = 1, -+ TCA_CGROUP_POLICE = 2, -+ TCA_CGROUP_EMATCHES = 3, -+ __TCA_CGROUP_MAX = 4, -+}; -+ -+struct tcf_ematch_tree {}; -+ -+struct cls_cgroup_head { -+ u32 handle; -+ struct tcf_exts exts; -+ struct tcf_ematch_tree ematches; -+ struct tcf_proto *tp; -+ struct rcu_work rwork; -+}; -+ -+struct sockaddr_nl { -+ __kernel_sa_family_t nl_family; -+ short unsigned int nl_pad; -+ __u32 nl_pid; -+ __u32 nl_groups; -+}; -+ -+struct nlmsgerr { -+ int error; -+ struct nlmsghdr msg; -+}; -+ -+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_MAX = 5, -+ NLMSGERR_ATTR_MAX = 4, -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_netlink_extack)(void *, const char *); -+ -+struct netlink_sock { -+ struct sock sk; -+ u32 portid; -+ u32 dst_portid; -+ u32 dst_group; -+ u32 flags; -+ 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 *cb_mutex; -+ struct mutex cb_def_mutex; -+ void (*netlink_rcv)(struct sk_buff *); -+ int (*netlink_bind)(struct net *, int); -+ void (*netlink_unbind)(struct net *, int); -+ struct module *module; -+ struct rhash_head node; -+ struct callback_head rcu; -+ struct work_struct work; -+}; -+ -+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); -+ bool (*compare)(struct net *, struct sock *); -+ 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 { -+ 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_start_context { -+ const struct genl_family *family; -+ struct nlmsghdr *nlh; -+ struct netlink_ext_ack *extack; -+ const struct genl_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; -+ unsigned int opidx; -+ u32 op; -+ u16 fam_id; -+ u8 policies: 1; -+ u8 single_op: 1; -+}; -+ -+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, -+}; -+ -+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___2 { -+ unsigned int policy_idx; -+ unsigned int attr_idx; -+ unsigned int n_alloc; -+ struct { -+ const struct nla_policy *policy; -+ unsigned int maxtype; -+ } policies[0]; -+}; -+ -+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, -+}; -+ -+struct trace_event_raw_bpf_test_finish { -+ struct trace_entry ent; -+ int err; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_bpf_test_finish {}; -+ -+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 bpf_fentry_test_t { -+ struct bpf_fentry_test_t *a; -+}; -+ -+struct bpf_raw_tp_test_run_info { -+ struct bpf_prog *prog; -+ void *ctx; -+ u32 retval; -+}; -+ -+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_id { -+ ETHTOOL_ID_UNSPEC = 0, -+ ETHTOOL_RX_COPYBREAK = 1, -+ ETHTOOL_TX_COPYBREAK = 2, -+ ETHTOOL_PFC_PREVENTION_TOUT = 3, -+ __ETHTOOL_TUNABLE_COUNT = 4, -+}; -+ -+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, -+}; -+ -+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 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 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 rsvd8[3]; -+ __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]; -+}; -+ -+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]; -+}; -+ -+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 { -+ ETH_RSS_HASH_TOP_BIT = 0, -+ ETH_RSS_HASH_XOR_BIT = 1, -+ ETH_RSS_HASH_CRC32_BIT = 2, -+ ETH_RSS_HASH_FUNCS_COUNT = 3, -+}; -+ -+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_link_usettings { -+ struct ethtool_link_settings base; -+ struct { -+ __u32 supported[3]; -+ __u32 advertising[3]; -+ __u32 lp_advertising[3]; -+ } 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; -+ long: 48; -+}; -+ -+struct ethtool_rx_flow_match { -+ struct flow_dissector dissector; -+ int: 32; -+ struct ethtool_rx_flow_key key; -+ struct ethtool_rx_flow_key mask; -+}; -+ -+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 link_mode_info { -+ int speed; -+ u8 lanes; -+ u8 duplex; -+}; -+ -+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_USER_CNT = 34, -+ ETHTOOL_MSG_USER_MAX = 33, -+}; -+ -+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_CNT = 4, -+ ETHTOOL_A_HEADER_MAX = 3, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_LINKMODES_MAX = 9, -+}; -+ -+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_CNT = 7, -+ ETHTOOL_A_LINKSTATE_MAX = 6, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_RINGS_MAX = 9, -+}; -+ -+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_CNT = 24, -+ ETHTOOL_A_COALESCE_MAX = 23, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_PAUSE_MAX = 5, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_TSINFO_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_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_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_multicast_groups { -+ ETHNL_MCGRP_MONITOR = 0, -+}; -+ -+struct ethnl_req_info { -+ struct net_device *dev; -+ u32 flags; -+}; -+ -+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; -+ 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 *, 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 *); -+}; -+ -+struct ethnl_dump_ctx { -+ const struct ethnl_request_ops *ops; -+ struct ethnl_req_info *req_info; -+ struct ethnl_reply_data *reply_data; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); -+ -+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, -+}; -+ -+typedef const char (* const ethnl_string_array_t)[32]; -+ -+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[21]; -+}; -+ -+struct linkinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+}; -+ -+struct linkmodes_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+ bool peer_empty; -+}; -+ -+struct linkstate_reply_data { -+ struct ethnl_reply_data base; -+ int link; -+ int sqi; -+ int sqi_max; -+ bool link_ext_state_provided; -+ struct ethtool_link_ext_state_info ethtool_link_ext_state_info; -+}; -+ -+struct debug_reply_data { -+ struct ethnl_reply_data base; -+ u32 msg_mask; -+}; -+ -+struct wol_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_wolinfo wol; -+ bool show_sopass; -+}; -+ -+struct features_reply_data { -+ struct ethnl_reply_data base; -+ u32 hw[2]; -+ u32 wanted[2]; -+ u32 active[2]; -+ u32 nochange[2]; -+ u32 all[2]; -+}; -+ -+struct privflags_reply_data { -+ struct ethnl_reply_data base; -+ const char (*priv_flag_names)[32]; -+ unsigned int n_priv_flags; -+ u32 priv_flags; -+}; -+ -+struct rings_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ringparam ringparam; -+}; -+ -+struct channels_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_channels channels; -+}; -+ -+struct coalesce_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_coalesce coalesce; -+ u32 supported_params; -+}; -+ -+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_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_pauseparam pauseparam; -+ struct ethtool_pause_stats pausestat; -+}; -+ -+struct eee_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_eee eee; -+}; -+ -+struct tsinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ts_info ts_info; -+}; -+ -+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_RESULT_UNSPEC = 0, -+ ETHTOOL_A_CABLE_RESULT_PAIR = 1, -+ ETHTOOL_A_CABLE_RESULT_CODE = 2, -+ __ETHTOOL_A_CABLE_RESULT_CNT = 3, -+ ETHTOOL_A_CABLE_RESULT_MAX = 2, -+}; -+ -+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_CNT = 3, -+ ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 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_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 { -+ 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, -+}; -+ -+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, -+}; -+ -+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_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 *); -+}; -+ -+struct ethnl_tunnel_info_dump_ctx { -+ struct ethnl_req_info req_info; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+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; -+}; -+ -+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_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 = 4, -+}; -+ -+struct stats_req_info { -+ struct ethnl_req_info base; -+ long unsigned int stat_mask[1]; -+}; -+ -+struct stats_reply_data { -+ struct ethnl_reply_data base; -+ 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; -+ const struct ethtool_rmon_hist_range *rmon_ranges; -+}; -+ -+struct phc_vclocks_reply_data { -+ struct ethnl_reply_data base; -+ int num; -+ int *index; -+}; -+ -+struct nf_hook_entries_rcu_head { -+ struct callback_head head; -+ void *allocation; -+}; -+ -+struct nf_conn___2; -+ -+enum nf_nat_manip_type; -+ -+struct nf_nat_hook { -+ int (*parse_nat_setup)(struct nf_conn___2 *, enum nf_nat_manip_type, const struct nlattr *); -+ void (*decode_session)(struct sk_buff *, struct flowi *); -+ unsigned int (*manip_pkt)(struct sk_buff *, struct nf_conn___2 *, enum nf_nat_manip_type, enum ip_conntrack_dir); -+}; -+ -+struct nf_conntrack_tuple___2; -+ -+struct nf_ct_hook { -+ int (*update)(struct net *, struct sk_buff *); -+ void (*destroy)(struct nf_conntrack *); -+ bool (*get_tuple_skb)(struct nf_conntrack_tuple___2 *, const struct sk_buff *); -+}; -+ -+struct nfnl_ct_hook { -+ size_t (*build_size)(const struct nf_conn___2 *); -+ int (*build)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, u_int16_t, u_int16_t); -+ int (*parse)(const struct nlattr *, struct nf_conn___2 *); -+ int (*attach_expect)(const struct nlattr *, struct nf_conn___2 *, u32, u32); -+ void (*seq_adjust)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, s32); -+}; -+ -+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_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; -+}; -+ -+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 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; -+ __u16 frag_max_size; -+ struct net_device *physindev; -+ 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; -+}; -+ -+struct ip6_rt_info { -+ struct in6_addr daddr; -+ struct in6_addr saddr; -+ u_int32_t mark; -+}; -+ -+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 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_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_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_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 xt_error_target { -+ struct xt_entry_target target; -+ char errorname[30]; -+}; -+ -+struct xt_counters { -+ __u64 pcnt; -+ __u64 bcnt; -+}; -+ -+struct xt_counters_info { -+ char name[32]; -+ unsigned int num_counters; -+ struct xt_counters counters[0]; -+}; -+ -+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 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; -+ int (*table_init)(struct net *); -+ 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 xt_percpu_counter_alloc_state { -+ unsigned int off; -+ const char *mem; -+}; -+ -+struct xt_pernet { -+ struct list_head tables[13]; -+}; -+ -+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, -+}; -+ -+struct xt_tcp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 option; -+ __u8 flg_mask; -+ __u8 flg_cmp; -+ __u8 invflags; -+}; -+ -+struct xt_udp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 invflags; -+}; -+ -+struct ip_mreqn { -+ struct in_addr imr_multiaddr; -+ struct in_addr imr_address; -+ int imr_ifindex; -+}; -+ -+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 rtvia { -+ __kernel_sa_family_t rtvia_family; -+ __u8 rtvia_addr[0]; -+}; -+ -+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; -+}; -+ -+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 fib_rt_info { -+ struct fib_info *fi; -+ u32 tb_id; -+ __be32 dst; -+ int dst_len; -+ u8 tos; -+ u8 type; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+}; -+ -+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 fib_alias { -+ struct hlist_node fa_list; -+ struct fib_info *fa_info; -+ u8 fa_tos; -+ u8 fa_type; -+ u8 fa_state; -+ u8 fa_slen; -+ u32 tb_id; -+ s16 fa_default; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+ struct callback_head rcu; -+}; -+ -+struct fib_prop { -+ int error; -+ u8 scope; -+}; -+ -+struct net_offload { -+ struct offload_callbacks callbacks; -+ unsigned int flags; -+}; -+ -+struct raw_hashinfo { -+ rwlock_t lock; -+ struct hlist_head ht[256]; -+}; -+ -+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_FRAG_FIRST_IN = 1, -+ INET_FRAG_LAST_IN = 2, -+ INET_FRAG_COMPLETE = 4, -+ INET_FRAG_HASH_DEAD = 8, -+}; -+ -+struct ipq { -+ struct inet_frag_queue q; -+ u8 ecn; -+ u16 max_df_size; -+ int iif; -+ unsigned int rid; -+ struct inet_peer *peer; -+}; -+ -+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 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; -+}; -+ -+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; -+ __be32 imsf_slist[1]; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+}; -+ -+struct in_pktinfo { -+ int ipi_ifindex; -+ struct in_addr ipi_spec_dst; -+ struct in_addr ipi_addr; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+} __attribute__((packed)); -+ -+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 { -+ 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_MAX_STATES = 13, -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+struct tcp_md5sig_pool { -+ struct ahash_request *md5_req; -+ void *scratch; -+}; -+ -+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 { -+ TCP_CMSG_INQ = 1, -+ TCP_CMSG_TS = 2, -+}; -+ -+struct tcp_splice_state { -+ struct pipe_inode_info *pipe; -+ size_t len; -+ unsigned int flags; -+}; -+ -+enum tcp_fastopen_client_fail { -+ TFO_STATUS_UNSPEC = 0, -+ TFO_COOKIE_UNAVAILABLE = 1, -+ TFO_DATA_NOT_ACKED = 2, -+ TFO_SYN_RETRANSMITTED = 3, -+}; -+ -+struct tcp_sack_block_wire { -+ __be32 start_seq; -+ __be32 end_seq; -+}; -+ -+struct static_key_false_deferred { -+ struct static_key_false key; -+ long unsigned int timeout; -+ struct delayed_work work; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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 pkt_hash_types { -+ PKT_HASH_TYPE_NONE = 0, -+ PKT_HASH_TYPE_L2 = 1, -+ PKT_HASH_TYPE_L3 = 2, -+ PKT_HASH_TYPE_L4 = 3, -+}; -+ -+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, -+}; -+ -+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_out_options { -+ u16 suboptions; -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 ahmac; -+ struct mptcp_addr_info addr; -+ 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; -+ u32 nonce; -+ u64 thmac; -+ u32 token; -+ u8 hmac[20]; -+ struct mptcp_ext ext_copy; -+}; -+ -+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 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 icmp_err { -+ int errno; -+ unsigned int fatal: 1; -+}; -+ -+enum tcp_tw_status { -+ TCP_TW_SUCCESS = 0, -+ TCP_TW_RST = 1, -+ TCP_TW_ACK = 2, -+ TCP_TW_SYN = 3, -+}; -+ -+struct tcp4_pseudohdr { -+ __be32 saddr; -+ __be32 daddr; -+ __u8 pad; -+ __u8 protocol; -+ __be16 len; -+}; -+ -+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; -+ struct tcp_seq_afinfo *bpf_seq_afinfo; -+ int bucket; -+ int offset; -+ int sbucket; -+ int num; -+ loff_t last_pos; -+}; -+ -+struct bpf_iter__tcp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct sock_common *sk_common; -+ }; -+ uid_t uid; -+}; -+ -+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; -+ possible_net_t 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 icmp_filter { -+ __u32 data; -+}; -+ -+struct raw_iter_state { -+ struct seq_net_private p; -+ int bucket; -+}; -+ -+struct raw_sock { -+ struct inet_sock inet; -+ struct icmp_filter filter; -+ u32 ipmr_table; -+}; -+ -+struct raw_frag_vec { -+ struct msghdr *msg; -+ union { -+ struct icmphdr icmph; -+ char c[1]; -+ } hdr; -+ int hlen; -+}; -+ -+struct ip_tunnel_encap { -+ u16 type; -+ u16 flags; -+ __be16 sport; -+ __be16 dport; -+}; -+ -+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 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; -+ struct udp_seq_afinfo *bpf_seq_afinfo; -+}; -+ -+struct bpf_iter__udp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct udp_sock *udp_sk; -+ }; -+ uid_t uid; -+ int: 32; -+ int bucket; -+}; -+ -+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; -+}; -+ -+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 *); -+ -+typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); -+ -+struct arpreq { -+ struct sockaddr arp_pa; -+ struct sockaddr arp_ha; -+ int arp_flags; -+ struct sockaddr arp_netmask; -+ char arp_dev[16]; -+}; -+ -+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, -+}; -+ -+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 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 { -+ bool (*handler)(struct sk_buff *); -+ short int error; -+}; -+ -+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_MAX = 11, -+}; -+ -+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 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 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 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 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; -+}; -+ -+struct fib_config { -+ u8 fc_dst_len; -+ u8 fc_tos; -+ 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_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 fib_dump_filter { -+ u32 table_id; -+ bool filter_set; -+ bool dump_routes; -+ bool dump_exceptions; -+ unsigned char protocol; -+ unsigned char rt_type; -+ unsigned int flags; -+ struct net_device *dev; -+}; -+ -+struct fib_nh_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_nh *fib_nh; -+}; -+ -+struct fib_entry_notifier_info { -+ struct fib_notifier_info info; -+ u32 dst; -+ int dst_len; -+ struct fib_info *fi; -+ u8 tos; -+ 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 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 ipfrag_skb_cb { -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ }; -+ struct sk_buff *next_frag; -+ int frag_run_len; -+}; -+ -+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 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_nulls_head hash[64]; -+ rwlock_t lock; -+}; -+ -+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 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 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 resvd1; -+ __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_MAX = 14, -+}; -+ -+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, -+}; -+ -+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; -+ 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, -+}; -+ -+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, -+}; -+ -+struct nh_notifier_single_info { -+ struct net_device *dev; -+ u8 gw_family; -+ union { -+ __be32 ipv4; -+ struct in6_addr ipv6; -+ }; -+ u8 is_reject: 1; -+ u8 is_fdb: 1; -+ u8 has_encap: 1; -+}; -+ -+struct nh_notifier_grp_entry_info { -+ u8 weight; -+ u32 id; -+ struct nh_notifier_single_info nh; -+}; -+ -+struct nh_notifier_grp_info { -+ u16 num_nh; -+ bool is_fdb; -+ 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; -+ struct nh_notifier_single_info nhs[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_dump_filter { -+ u32 nh_id; -+ int dev_idx; -+ int master_idx; -+ bool group_filter; -+ bool fdb_filter; -+ u32 res_bucket_nh_id; -+}; -+ -+struct rtm_dump_nh_ctx { -+ u32 idx; -+}; -+ -+struct rtm_dump_res_bucket_ctx { -+ struct rtm_dump_nh_ctx nh; -+ u16 bucket_index; -+ u32 done_nh_idx; -+}; -+ -+struct rtm_dump_nexthop_bucket_data { -+ struct rtm_dump_res_bucket_ctx *ctx; -+ struct nh_dump_filter filter; -+}; -+ -+struct inet6_protocol { -+ void (*early_demux)(struct sk_buff *); -+ void (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -+ unsigned int flags; -+}; -+ -+struct snmp_mib { -+ const char *name; -+ int entry; -+}; -+ -+struct fib4_rule { -+ struct fib_rule common; -+ u8 dst_len; -+ u8 src_len; -+ u8 tos; -+ __be32 src; -+ __be32 srcmask; -+ __be32 dst; -+ __be32 dstmask; -+ u32 tclassid; -+}; -+ -+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_device { -+ struct net_device *dev; -+ 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; -+ long unsigned int bytes; -+ long unsigned int pkt; -+ long unsigned int 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 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 ipmr_result { -+ struct mr_table *mrt; -+}; -+ -+struct rta_mfc_stats { -+ __u64 mfcs_packets; -+ __u64 mfcs_bytes; -+ __u64 mfcs_wrong_if; -+}; -+ -+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 { -+ __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_req_v2 { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 pad; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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_handler { -+ 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 bpf_sk_storage_diag___2; -+ -+struct inet_diag_dump_data { -+ struct nlattr *req_nlas[4]; -+ struct bpf_sk_storage_diag___2 *bpf_stg_diag; -+}; -+ -+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; -+}; -+ -+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 tcp_diag_md5sig { -+ __u8 tcpm_family; -+ __u8 tcpm_prefixlen; -+ __u16 tcpm_keylen; -+ __be32 tcpm_addr[4]; -+ __u8 tcpm_key[80]; -+}; -+ -+struct inet_diag_req_raw { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 sdiag_raw_protocol; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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 tls_rec { -+ struct list_head list; -+ int tx_ready; -+ int tx_flags; -+ struct sk_msg msg_plaintext; -+ struct sk_msg msg_encrypted; -+ struct scatterlist sg_aead_in[2]; -+ struct scatterlist sg_aead_out[2]; -+ char content_type; -+ struct scatterlist sg_content_type; -+ char aad_space[13]; -+ u8 iv_data[16]; -+ struct aead_request aead_req; -+ u8 aead_req_ctx[0]; -+}; -+ -+struct tx_work { -+ struct delayed_work work; -+ struct sock *sk; -+}; -+ -+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; -+ spinlock_t encrypt_compl_lock; -+ int async_notify; -+ 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_NUM_CFGS = 2, -+}; -+ -+enum { -+ UDP_BPF_IPV4 = 0, -+ UDP_BPF_IPV6 = 1, -+ UDP_BPF_NUM_PROTS = 2, -+}; -+ -+struct netlbl_audit { -+ u32 secid; -+ kuid_t loginuid; -+ unsigned int sessionid; -+}; -+ -+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 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; -+}; -+ -+struct xfrm_policy_afinfo { -+ struct dst_ops *dst_ops; -+ struct dst_entry * (*dst_lookup)(struct net *, int, int, const xfrm_address_t *, const xfrm_address_t *, u32); -+ int (*get_saddr)(struct net *, int, xfrm_address_t *, xfrm_address_t *, u32); -+ int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); -+ struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); -+}; -+ -+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 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_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 xfrm_input_afinfo { -+ u8 family; -+ bool is_ipip; -+ int (*callback)(struct sk_buff *, u8, int); -+}; -+ -+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; -+}; -+ -+typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); -+ -+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 xfrm_if; -+ -+struct xfrm_if_cb { -+ struct xfrm_if * (*decode_session)(struct sk_buff *, short unsigned int); -+}; -+ -+struct xfrm_if_parms { -+ int link; -+ u32 if_id; -+}; -+ -+struct xfrm_if { -+ struct xfrm_if *next; -+ struct net_device *dev; -+ struct net *net; -+ struct xfrm_if_parms p; -+ struct gro_cells gro_cells; -+}; -+ -+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 xfrmk_spdinfo { -+ u32 incnt; -+ u32 outcnt; -+ u32 fwdcnt; -+ u32 inscnt; -+ u32 outscnt; -+ u32 fwdscnt; -+ u32 spdhcnt; -+ u32 spdhmcnt; -+}; -+ -+struct ip6_mh { -+ __u8 ip6mh_proto; -+ __u8 ip6mh_hdrlen; -+ __u8 ip6mh_type; -+ __u8 ip6mh_reserved; -+ __u16 ip6mh_cksum; -+ __u8 data[0]; -+}; -+ -+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]; -+}; -+ -+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_MODE_FLAG_TUNNEL = 1, -+}; -+ -+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_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 ip_beet_phdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __u8 padlen; -+ __u8 reserved; -+}; -+ -+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 { -+ struct ip_tunnel *next; -+ struct hlist_node hash_node; -+ struct net_device *dev; -+ struct net *net; -+ long unsigned int err_time; -+ int err_count; -+ u32 i_seqno; -+ u32 o_seqno; -+ int tun_hlen; -+ u32 index; -+ u8 erspan_ver; -+ u8 dir; -+ u16 hwid; -+ struct dst_cache dst_cache; -+ struct ip_tunnel_parm 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 __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; -+ __be16 i_flags; -+ __be16 o_flags; -+ __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; -+ 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; -+ __u32 o_seqno; -+ int hlen; -+ int tun_hlen; -+ int encap_hlen; -+ struct ip_tunnel_encap encap; -+ int mlink; -+}; -+ -+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 ip_tunnel_prl_entry { -+ struct ip_tunnel_prl_entry *next; -+ __be32 addr; -+ u16 flags; -+ struct callback_head callback_head; -+}; -+ -+struct xfrm_trans_tasklet { -+ struct tasklet_struct tasklet; -+ 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 xfrm_user_offload { -+ int ifindex; -+ __u8 flags; -+}; -+ -+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_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 xfrm_algo_list { -+ struct xfrm_algo_desc *algs; -+ int entries; -+ u32 type; -+ u32 mask; -+}; -+ -+struct xfrm_aead_name { -+ const char *name; -+ int icvbits; -+}; -+ -+enum { -+ XFRM_SHARE_ANY = 0, -+ XFRM_SHARE_SESSION = 1, -+ XFRM_SHARE_USER = 2, -+ XFRM_SHARE_UNIQUE = 3, -+}; -+ -+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; -+}; -+ -+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_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 **); -+ 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; -+}; -+ -+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 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 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 ipv6_params { -+ __s32 disable_ipv6; -+ __s32 autoconf; -+}; -+ -+enum flowlabel_reflect { -+ FLOWLABEL_REFLECT_ESTABLISHED = 1, -+ FLOWLABEL_REFLECT_TCP_RESET = 2, -+ FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, -+}; -+ -+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 ac6_iter_state { -+ struct seq_net_private p; -+ struct net_device *dev; -+ struct inet6_dev *idev; -+}; -+ -+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; -+ __s8 dontfrag; -+ struct ipv6_txoptions *opt; -+ __u16 gso_size; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 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 promiscuous_mode; -+ bool ackreq; -+}; -+ -+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_MAX = 53, -+}; -+ -+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, -+}; -+ -+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; -+ u32 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; -+ u8 symbol_duration; -+ u16 lifs_period; -+ u16 sifs_period; -+ struct device dev; -+ possible_net_t _net; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct ieee802154_addr { -+ u8 mode; -+ __le16 pan_id; -+ union { -+ __le16 short_addr; -+ __le64 extended_addr; -+ }; -+}; -+ -+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; -+ __be16 fifo_hi; -+ __be32 fifo_lo; -+ } uc; -+}; -+ -+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; -+ const struct in6_addr *peer_pfx; -+ u32 rt_priority; -+ u32 ifa_flags; -+ u32 preferred_lft; -+ u32 valid_lft; -+ u16 scope; -+}; -+ -+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 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 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 rd_msg { -+ struct icmp6hdr icmph; -+ struct in6_addr target; -+ struct in6_addr dest; -+ __u8 opt[0]; -+}; -+ -+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 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; -+}; -+ -+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; -+ u32 __data_loc_name; -+ __u8 gw[16]; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib6_table_lookup { -+ u32 name; -+}; -+ -+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 = 4294967293, -+ RT6_NUD_FAIL_PROBE = 4294967294, -+ RT6_NUD_FAIL_DO_RR = 4294967295, -+ 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; -+}; -+ -+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_device *dev; -+ 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; -+}; -+ -+enum fib6_walk_state { -+ FWS_L = 0, -+ FWS_R = 1, -+ FWS_C = 2, -+ FWS_U = 3, -+}; -+ -+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 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 ip6_mtuinfo { -+ struct sockaddr_in6 ip6m_addr; -+ __u32 ip6m_mtu; -+}; -+ -+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 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 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 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; -+}; -+ -+typedef int mh_filter_t(struct sock *, struct sk_buff *); -+ -+struct raw6_frag_vec { -+ struct msghdr *msg; -+ int hlen; -+ char c[4]; -+}; -+ -+struct ipv6_destopt_hao { -+ __u8 type; -+ __u8 length; -+ struct in6_addr addr; -+} __attribute__((packed)); -+ -+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 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 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 tcp6_pseudohdr { -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+ __be32 len; -+ __be32 protocol; -+}; -+ -+struct rt0_hdr { -+ struct ipv6_rt_hdr rt_hdr; -+ __u32 reserved; -+ struct in6_addr addr[0]; -+}; -+ -+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 in6_addr addr[0]; -+ __u8 data[0]; -+ } segments; -+}; -+ -+struct tlvtype_proc { -+ int type; -+ bool (*func)(struct sk_buff *, int); -+}; -+ -+struct ip6fl_iter_state { -+ struct seq_net_private p; -+ struct pid_namespace *pid_ns; -+ int bucket; -+}; -+ -+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, -+}; -+ -+typedef short unsigned int mifi_t; -+ -+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 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 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 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 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; -+ int offload_fwd_mark; -+}; -+ -+struct nf_bridge_frag_data; -+ -+struct fib6_rule { -+ struct fib_rule common; -+ struct rt6key src; -+ struct rt6key dst; -+ u8 tclass; -+}; -+ -+struct calipso_doi; -+ -+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)(); -+ int (*cache_add)(const unsigned char *, const struct netlbl_lsm_secattr *); -+}; -+ -+struct calipso_doi { -+ u32 doi; -+ u32 type; -+ refcount_t refcount; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+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 { -+ IP6_FH_F_FRAG = 1, -+ IP6_FH_F_AUTH = 2, -+ IP6_FH_F_SKIP_RH = 4, -+}; -+ -+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 virtio_net_hdr { -+ __u8 flags; -+ __u8 gso_type; -+ __virtio16 hdr_len; -+ __virtio16 gso_size; -+ __virtio16 csum_start; -+ __virtio16 csum_offset; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 history[32]; -+}; -+ -+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; -+ unsigned int running; -+ unsigned int auxdata: 1; -+ unsigned int origdev: 1; -+ unsigned int has_vnet_hdr: 1; -+ unsigned int tp_loss: 1; -+ unsigned int tp_tx_has_off: 1; -+ int pressure; -+ int ifindex; -+ __be16 num; -+ struct packet_rollover *rollover; -+ struct packet_mclist *mclist; -+ atomic_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; -+ int (*xmit)(struct sk_buff *); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct packet_type prot_hook; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_t tp_drops; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 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 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 _strp_msg { -+ struct strp_msg strp; -+ int accum_len; -+}; -+ -+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; -+ 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_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; -+ 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; -+}; -+ -+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; -+ u16 family; -+ struct netlbl_dommap_def def; -+ u32 valid; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netlbl_domhsh_tbl { -+ struct list_head *tbl; -+ u32 size; -+}; -+ -+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 { -+ struct netlink_callback *nl_cb; -+ struct sk_buff *skb; -+ u32 seq; -+}; -+ -+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 { -+ 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; -+}; -+ -+struct netlbl_domhsh_walk_arg___2 { -+ struct netlbl_audit *audit_info; -+ u32 doi; -+}; -+ -+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 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_IEEE_MAX = 11, -+}; -+ -+enum ieee_attrs_app { -+ DCB_ATTR_IEEE_APP_UNSPEC = 0, -+ DCB_ATTR_IEEE_APP = 1, -+ __DCB_ATTR_IEEE_APP_MAX = 2, -+}; -+ -+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_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 *); -+}; -+ -+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 switchdev_attr_id { -+ SWITCHDEV_ATTR_ID_UNDEFINED = 0, -+ SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, -+ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 2, -+ SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 3, -+ SWITCHDEV_ATTR_ID_PORT_MROUTER = 4, -+ SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 5, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 6, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 7, -+ SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 8, -+ SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 9, -+ SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 10, -+}; -+ -+struct switchdev_brport_flags { -+ long unsigned int val; -+ long unsigned int mask; -+}; -+ -+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_brport_flags brport_flags; -+ bool mrouter; -+ clock_t ageing_time; -+ bool vlan_filtering; -+ u16 vlan_protocol; -+ bool mc_disabled; -+ u8 mrp_port_role; -+ } u; -+}; -+ -+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 *); -+}; -+ -+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, -+}; -+ -+struct switchdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+ const void *ctx; -+}; -+ -+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; -+}; -+ -+typedef void switchdev_deferred_func_t(struct net_device *, const void *); -+ -+struct switchdev_deferred_item { -+ struct list_head list; -+ struct net_device *dev; -+ switchdev_deferred_func_t *func; -+ long unsigned int data[0]; -+}; -+ -+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 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; -+}; -+ -+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_desc { -+ __u64 addr; -+ __u32 len; -+ __u32 options; -+}; -+ -+struct xsk_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct xdp_sock *xsk_map[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; -+}; -+ -+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; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 pad1; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 consumer; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 pad3; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 xdp_rxtx_ring { -+ struct xdp_ring ptrs; -+ struct xdp_desc desc[0]; -+}; -+ -+struct xdp_umem_ring { -+ struct xdp_ring ptrs; -+ u64 desc[0]; -+}; -+ -+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; -+ bool dma_need_sync; -+}; -+ -+struct mptcp_mib { -+ long unsigned int mibs[37]; -+}; -+ -+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, -+}; -+ -+struct mptcp_options_received { -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 data_ack; -+ u64 data_seq; -+ u32 subflow_seq; -+ u16 data_len; -+ __sum16 csum; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 fastclose: 1; -+ u16 reset: 1; -+ u16 dss: 1; -+ u16 add_addr: 1; -+ u16 rm_addr: 1; -+ u16 mp_prio: 1; -+ u16 echo: 1; -+ u16 csum_reqd: 1; -+ u16 backup: 1; -+ u16 deny_join_id0: 1; -+ u32 token; -+ u32 nonce; -+ u64 thmac; -+ u8 hmac[20]; -+ u8 join_id; -+ u8 use_map: 1; -+ u8 dsn64: 1; -+ u8 data_fin: 1; -+ u8 use_ack: 1; -+ u8 ack64: 1; -+ u8 mpc_map: 1; -+ u8 __unused: 2; -+ struct mptcp_addr_info addr; -+ struct mptcp_rm_list rm_list; -+ u64 ahmac; -+ u8 reset_reason: 4; -+ u8 reset_transient: 1; -+}; -+ -+struct mptcp_pm_data { -+ struct mptcp_addr_info local; -+ struct mptcp_addr_info remote; -+ struct list_head anno_list; -+ spinlock_t lock; -+ 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 subflows; -+ u8 status; -+ struct mptcp_rm_list rm_list_tx; -+ struct mptcp_rm_list rm_list_rx; -+}; -+ -+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_sock { -+ struct inet_connection_sock sk; -+ u64 local_key; -+ u64 remote_key; -+ u64 write_seq; -+ u64 snd_nxt; -+ u64 ack_seq; -+ u64 rcv_wnd_sent; -+ u64 rcv_data_fin_seq; -+ int wmem_reserved; -+ struct sock *last_snd; -+ int snd_burst; -+ int old_wspace; -+ u64 snd_una; -+ u64 wnd_end; -+ long unsigned int timer_ival; -+ u32 token; -+ int rmem_released; -+ long unsigned int flags; -+ 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; -+ spinlock_t join_list_lock; -+ struct work_struct work; -+ struct sk_buff *ooo_last_skb; -+ struct rb_root out_of_order_queue; -+ struct sk_buff_head receive_queue; -+ int tx_pending_data; -+ struct list_head conn_list; -+ struct list_head rtx_queue; -+ struct mptcp_data_frag *first_pending; -+ struct list_head join_list; -+ struct socket *subflow; -+ struct sock *first; -+ struct mptcp_pm_data pm; -+ struct { -+ u32 space; -+ u32 copied; -+ u64 time; -+ u64 rtt_us; -+ } rcvq_space; -+ u32 setsockopt_seq; -+ char ca_name[16]; -+}; -+ -+struct mptcp_subflow_request_sock { -+ struct tcp_request_sock sk; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 backup: 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; -+}; -+ -+enum mptcp_data_avail { -+ MPTCP_SUBFLOW_NODATA = 0, -+ MPTCP_SUBFLOW_DATA_AVAIL = 1, -+}; -+ -+struct mptcp_delegated_action { -+ struct napi_struct napi; -+ struct list_head head; -+}; -+ -+struct mptcp_subflow_context { -+ struct list_head node; -+ u64 local_key; -+ u64 remote_key; -+ u64 idsn; -+ u64 map_seq; -+ 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 fully_established: 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 rx_eof: 1; -+ u32 can_ack: 1; -+ u32 disposable: 1; -+ enum mptcp_data_avail data_avail; -+ u32 remote_nonce; -+ u64 thmac; -+ u32 local_nonce; -+ u32 remote_token; -+ u8 hmac[20]; -+ u8 local_id; -+ u8 remote_id; -+ u8 reset_seen: 1; -+ u8 reset_transient: 1; -+ u8 reset_reason: 4; -+ long int delegated_status; -+ struct list_head delegated_node; -+ u32 setsockopt_seq; -+ struct sock *tcp_sock; -+ struct sock *conn; -+ const struct inet_connection_sock_af_ops *icsk_af_ops; -+ void (*tcp_data_ready)(struct sock *); -+ void (*tcp_state_change)(struct sock *); -+ void (*tcp_write_space)(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_TOKENFALLBACKINIT = 7, -+ MPTCP_MIB_RETRANSSEGS = 8, -+ MPTCP_MIB_JOINNOTOKEN = 9, -+ MPTCP_MIB_JOINSYNRX = 10, -+ MPTCP_MIB_JOINSYNACKRX = 11, -+ MPTCP_MIB_JOINSYNACKMAC = 12, -+ MPTCP_MIB_JOINACKRX = 13, -+ MPTCP_MIB_JOINACKMAC = 14, -+ MPTCP_MIB_DSSNOMATCH = 15, -+ MPTCP_MIB_INFINITEMAPRX = 16, -+ MPTCP_MIB_DSSTCPMISMATCH = 17, -+ MPTCP_MIB_DATACSUMERR = 18, -+ MPTCP_MIB_OFOQUEUETAIL = 19, -+ MPTCP_MIB_OFOQUEUE = 20, -+ MPTCP_MIB_OFOMERGE = 21, -+ MPTCP_MIB_NODSSWINDOW = 22, -+ MPTCP_MIB_DUPDATA = 23, -+ MPTCP_MIB_ADDADDR = 24, -+ MPTCP_MIB_ECHOADD = 25, -+ MPTCP_MIB_PORTADD = 26, -+ MPTCP_MIB_JOINPORTSYNRX = 27, -+ MPTCP_MIB_JOINPORTSYNACKRX = 28, -+ MPTCP_MIB_JOINPORTACKRX = 29, -+ MPTCP_MIB_MISMATCHPORTSYNRX = 30, -+ MPTCP_MIB_MISMATCHPORTACKRX = 31, -+ MPTCP_MIB_RMADDR = 32, -+ MPTCP_MIB_RMSUBFLOW = 33, -+ MPTCP_MIB_MPPRIOTX = 34, -+ MPTCP_MIB_MPPRIORX = 35, -+ MPTCP_MIB_RCVPRUNED = 36, -+ __MPTCP_MIB_MAX = 37, -+}; -+ -+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; -+ 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_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 mptcp_skb_cb { -+ u64 map_seq; -+ u64 end_seq; -+ u32 offset; -+ u8 has_rxtstamp: 1; -+}; -+ -+enum { -+ MPTCP_CMSG_TS = 1, -+}; -+ -+struct mptcp_sendmsg_info { -+ int mss_now; -+ int size_goal; -+ u16 limit; -+ u16 sent; -+ unsigned int flags; -+}; -+ -+struct subflow_send_info { -+ struct sock *ssk; -+ u64 ratio; -+}; -+ -+struct csum_pseudo_header { -+ __be64 data_seq; -+ __be32 subflow_seq; -+ __be16 data_len; -+ __sum16 csum; -+}; -+ -+enum mapping_status { -+ MAPPING_OK = 0, -+ MAPPING_INVALID = 1, -+ MAPPING_EMPTY = 2, -+ MAPPING_DATA_FIN = 3, -+ MAPPING_DUMMY = 4, -+}; -+ -+enum mptcp_addr_signal_status { -+ MPTCP_ADD_ADDR_SIGNAL = 0, -+ MPTCP_ADD_ADDR_ECHO = 1, -+ MPTCP_ADD_ADDR_IPV6 = 2, -+ MPTCP_ADD_ADDR_PORT = 3, -+ MPTCP_RM_ADDR_SIGNAL = 4, -+}; -+ -+struct mptcp_pm_add_entry; -+ -+struct token_bucket { -+ spinlock_t lock; -+ int chain_len; -+ struct hlist_nulls_head req_chain; -+ struct hlist_nulls_head msk_chain; -+}; -+ -+struct mptcp_pernet { -+ struct ctl_table_header *ctl_table_hdr; -+ u8 mptcp_enabled; -+ unsigned int add_addr_timeout; -+ u8 checksum_enabled; -+ u8 allow_join_initial_addr_port; -+}; -+ -+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_ALREADY_ESTABLISHED = 4, -+ MPTCP_PM_SUBFLOW_ESTABLISHED = 5, -+}; -+ -+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, -+}; -+ -+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_MAX = 4, -+}; -+ -+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_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_AFTER_LAST = 8, -+}; -+ -+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_AFTER_LAST = 18, -+}; -+ -+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___2 { -+ struct list_head list; -+ struct mptcp_addr_info addr; -+ struct timer_list add_timer; -+ struct mptcp_sock *sock; -+ u8 retrans_times; -+}; -+ -+struct pm_nl_pernet { -+ spinlock_t lock; -+ struct list_head local_addr_list; -+ unsigned int addrs; -+ 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]; -+}; -+ -+struct join_entry { -+ u32 token; -+ u32 remote_nonce; -+ u32 local_nonce; -+ u8 join_id; -+ u8 local_id; -+ u8 backup; -+ u8 valid; -+}; -+ -+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; -+}; -+ -+#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -+#pragma clang attribute pop -+#endif -+ -+#endif /* __VMLINUX_H__ */ -diff --git a/src/pmdas/bpf/vendor/vmlinux/x86/vmlinux.h b/src/pmdas/bpf/vendor/vmlinux/x86/vmlinux.h -new file mode 100644 -index 000000000..ed385a5ee ---- /dev/null -+++ b/src/pmdas/bpf/vendor/vmlinux/x86/vmlinux.h -@@ -0,0 +1,109875 @@ -+#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 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; -+ -+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 unsigned int __kernel_gid32_t; -+ -+typedef __kernel_ulong_t __kernel_size_t; -+ -+typedef __kernel_long_t __kernel_ssize_t; -+ -+typedef long long int __kernel_loff_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 unsigned int __poll_t; -+ -+typedef u32 __kernel_dev_t; -+ -+typedef __kernel_dev_t dev_t; -+ -+typedef short unsigned int umode_t; -+ -+typedef __kernel_pid_t pid_t; -+ -+typedef __kernel_clockid_t clockid_t; -+ -+typedef _Bool bool; -+ -+typedef __kernel_uid32_t uid_t; -+ -+typedef __kernel_gid32_t gid_t; -+ -+typedef __kernel_loff_t loff_t; -+ -+typedef __kernel_size_t size_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; -+ -+typedef u64 phys_addr_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 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 i_mutex_dir_key; -+}; -+ -+struct qspinlock { -+ union { -+ atomic_t val; -+ struct { -+ u8 locked; -+ u8 pending; -+ }; -+ struct { -+ u16 locked_pending; -+ u16 tail; -+ }; -+ }; -+}; -+ -+typedef struct qspinlock arch_spinlock_t; -+ -+struct qrwlock { -+ union { -+ atomic_t cnts; -+ struct { -+ u8 wlocked; -+ u8 __lstate[3]; -+ }; -+ }; -+ arch_spinlock_t wait_lock; -+}; -+ -+typedef struct qrwlock arch_rwlock_t; -+ -+struct raw_spinlock { -+ arch_spinlock_t raw_lock; -+}; -+ -+typedef struct raw_spinlock raw_spinlock_t; -+ -+struct spinlock { -+ union { -+ struct raw_spinlock rlock; -+ }; -+}; -+ -+typedef struct spinlock spinlock_t; -+ -+typedef struct { -+ arch_rwlock_t raw_lock; -+} rwlock_t; -+ -+struct ratelimit_state { -+ raw_spinlock_t lock; -+ int interval; -+ int burst; -+ int printed; -+ int missed; -+ long unsigned int begin; -+ long unsigned int flags; -+}; -+ -+typedef void *fl_owner_t; -+ -+struct file; -+ -+struct kiocb; -+ -+struct iov_iter; -+ -+struct dir_context; -+ -+struct poll_table_struct; -+ -+struct vm_area_struct; -+ -+struct inode; -+ -+struct file_lock; -+ -+struct page; -+ -+struct pipe_inode_info; -+ -+struct seq_file; -+ -+struct file_operations { -+ struct module *owner; -+ 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 *, bool); -+ int (*iterate)(struct file *, struct dir_context *); -+ 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 *); -+ long unsigned int mmap_supported_flags; -+ 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 *); -+ ssize_t (*sendpage)(struct file *, struct page *, int, size_t, loff_t *, int); -+ 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); -+ int (*setlease)(struct file *, long int, struct file_lock **, 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); -+}; -+ -+typedef __s64 time64_t; -+ -+struct __kernel_timespec { -+ __kernel_time64_t tv_sec; -+ long long int tv_nsec; -+}; -+ -+struct timespec64 { -+ time64_t tv_sec; -+ long int tv_nsec; -+}; -+ -+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; -+ long unsigned int syscall_work; -+ u32 status; -+}; -+ -+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_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; -+ u64 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; -+}; -+ -+struct util_est { -+ unsigned int enqueued; -+ unsigned int ewma; -+}; -+ -+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; -+ struct util_est util_est; -+}; -+ -+struct cfs_rq; -+ -+struct sched_entity { -+ struct load_weight load; -+ struct rb_node run_node; -+ struct list_head group_node; -+ unsigned int on_rq; -+ u64 exec_start; -+ u64 sum_exec_runtime; -+ u64 vruntime; -+ u64 prev_sum_exec_runtime; -+ u64 nr_migrations; -+ struct sched_statistics statistics; -+ int depth; -+ struct sched_entity *parent; -+ struct cfs_rq *cfs_rq; -+ struct cfs_rq *my_q; -+ long unsigned int runnable_weight; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+typedef s64 ktime_t; -+ -+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 { -+ 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; -+ struct hrtimer dl_timer; -+ struct hrtimer inactive_timer; -+ struct sched_dl_entity *pi_se; -+}; -+ -+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 last_arrival; -+ long long unsigned int last_queued; -+}; -+ -+struct plist_node { -+ int prio; -+ struct list_head prio_list; -+ struct list_head node_list; -+}; -+ -+struct vmacache { -+ u64 seqnum; -+ struct vm_area_struct *vmas[4]; -+}; -+ -+struct task_rss_stat { -+ int events; -+ int count[4]; -+}; -+ -+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 posix_cputimers_work { -+ struct callback_head work; -+ 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 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; -+ -+typedef atomic64_t atomic_long_t; -+ -+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 arch_tlbflush_unmap_batch { -+ struct cpumask cpumask; -+}; -+ -+struct tlbflush_unmap_batch { -+ struct arch_tlbflush_unmap_batch arch; -+ bool flush_required; -+ bool writable; -+}; -+ -+struct page_frag { -+ struct page *page; -+ __u32 offset; -+ __u32 size; -+}; -+ -+struct kmap_ctrl {}; -+ -+struct llist_head { -+ struct llist_node *first; -+}; -+ -+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 fregs_state { -+ u32 cwd; -+ u32 swd; -+ u32 twd; -+ u32 fip; -+ u32 fcs; -+ u32 foo; -+ u32 fos; -+ u32 st_space[20]; -+ u32 status; -+}; -+ -+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]; -+ }; -+}; -+ -+struct math_emu_info; -+ -+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; -+}; -+ -+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]; -+}; -+ -+union fpregs_state { -+ struct fregs_state fsave; -+ struct fxregs_state fxsave; -+ struct swregs_state soft; -+ struct xregs_state xsave; -+ u8 __padding[4096]; -+}; -+ -+struct fpu { -+ unsigned int last_cpu; -+ long unsigned int avx512_timestamp; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ union fpregs_state state; -+}; -+ -+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 sig_on_uaccess_err: 1; -+ u32 pkru; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct fpu fpu; -+}; -+ -+struct sched_class; -+ -+struct task_group; -+ -+struct mm_struct; -+ -+struct pid; -+ -+struct completion; -+ -+struct cred; -+ -+struct key; -+ -+struct nameidata; -+ -+struct fs_struct; -+ -+struct files_struct; -+ -+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 backing_dev_info; -+ -+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 mempolicy; -+ -+struct numa_group; -+ -+struct rseq; -+ -+struct task_delay_info; -+ -+struct ftrace_ret_stack; -+ -+struct mem_cgroup; -+ -+struct request_queue; -+ -+struct uprobe_task; -+ -+struct vm_struct; -+ -+struct bpf_local_storage; -+ -+struct task_struct { -+ struct thread_info thread_info; -+ unsigned int __state; -+ void *stack; -+ refcount_t usage; -+ unsigned int flags; -+ unsigned int ptrace; -+ int on_cpu; -+ struct __call_single_node wake_entry; -+ unsigned int cpu; -+ 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; -+ const struct sched_class *sched_class; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct sched_entity se; -+ struct sched_rt_entity rt; -+ struct sched_dl_entity dl; -+ struct rb_node core_node; -+ long unsigned int core_cookie; -+ unsigned int core_occupation; -+ struct task_group *sched_task_group; -+ struct hlist_head preempt_notifiers; -+ unsigned int btrace_seq; -+ unsigned int policy; -+ 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; -+ long unsigned int rcu_tasks_nvcsw; -+ u8 rcu_tasks_holdout; -+ u8 rcu_tasks_idx; -+ int rcu_tasks_idle_cpu; -+ struct list_head rcu_tasks_holdout_list; -+ int trc_reader_nesting; -+ int trc_ipi_to_cpu; -+ union rcu_special trc_reader_special; -+ bool trc_reader_checked; -+ struct list_head trc_holdout_list; -+ 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 vmacache vmacache; -+ struct task_rss_stat rss_stat; -+ 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_psi_wake_requeue: 1; -+ int: 28; -+ unsigned int sched_remote_wakeup: 1; -+ unsigned int in_execve: 1; -+ unsigned int in_iowait: 1; -+ unsigned int restore_sigmask: 1; -+ unsigned int in_user_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_page_owner: 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_group; -+ struct list_head thread_node; -+ struct completion *vfork_done; -+ int *set_child_tid; -+ int *clear_child_tid; -+ void *pf_io_worker; -+ 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 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 backing_dev_info *backing_dev_info; -+ 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; -+ int cpuset_slab_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; -+ struct perf_event_context *perf_event_ctxp[2]; -+ struct mutex perf_event_mutex; -+ struct list_head perf_event_list; -+ struct mempolicy *mempolicy; -+ short int il_prev; -+ 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_sig; -+ long unsigned int rseq_event_mask; -+ struct tlbflush_unmap_batch tlb_ubc; -+ union { -+ refcount_t rcu_users; -+ struct callback_head rcu; -+ }; -+ 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; -+ int curr_ret_stack; -+ int curr_ret_depth; -+ struct ftrace_ret_stack *ret_stack; -+ long long unsigned int ftrace_timestamp; -+ atomic_t trace_overrun; -+ atomic_t tracing_graph_pause; -+ long unsigned int trace; -+ long unsigned int trace_recursion; -+ struct mem_cgroup *memcg_in_oom; -+ gfp_t memcg_oom_gfp_mask; -+ int memcg_oom_order; -+ unsigned int memcg_nr_pages_over_high; -+ struct mem_cgroup *active_memcg; -+ struct request_queue *throttle_queue; -+ struct uprobe_task *utask; -+ struct kmap_ctrl kmap_ctrl; -+ int pagefault_disabled; -+ struct task_struct *oom_reaper_list; -+ struct vm_struct *stack_vm_area; -+ refcount_t stack_refcount; -+ int patch_state; -+ void *security; -+ struct bpf_local_storage *bpf_storage; -+ 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; -+ struct llist_head kretprobe_instances; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct thread_struct thread; -+}; -+ -+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; -+} __attribute__((packed)); -+ -+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_e820_entry { -+ __u64 addr; -+ __u64 size; -+ __u32 type; -+} __attribute__((packed)); -+ -+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[116]; -+ 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]; -+} __attribute__((packed)); -+ -+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 range { -+ u64 start; -+ u64 end; -+}; -+ -+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; -+ long unsigned int cs; -+ long unsigned int flags; -+ long unsigned int sp; -+ long unsigned int ss; -+}; -+ -+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 desc_ptr { -+ short unsigned int size; -+ long unsigned int address; -+} __attribute__((packed)); -+ -+typedef long unsigned int pteval_t; -+ -+typedef long unsigned int pmdval_t; -+ -+typedef long unsigned int pudval_t; -+ -+typedef long unsigned int p4dval_t; -+ -+typedef long unsigned int pgdval_t; -+ -+typedef long unsigned int pgprotval_t; -+ -+typedef struct { -+ pteval_t pte; -+} pte_t; -+ -+struct pgprot { -+ pgprotval_t pgprot; -+}; -+ -+typedef struct pgprot pgprot_t; -+ -+typedef struct { -+ pgdval_t pgd; -+} pgd_t; -+ -+typedef struct { -+ p4dval_t p4d; -+} p4d_t; -+ -+typedef struct { -+ pudval_t pud; -+} pud_t; -+ -+typedef struct { -+ pmdval_t pmd; -+} pmd_t; -+ -+typedef struct page *pgtable_t; -+ -+struct address_space; -+ -+struct page_pool; -+ -+struct kmem_cache; -+ -+struct dev_pagemap; -+ -+struct page { -+ long unsigned int flags; -+ union { -+ struct { -+ struct list_head lru; -+ struct address_space *mapping; -+ long unsigned int index; -+ 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[2]; -+ }; -+ struct { -+ union { -+ struct list_head slab_list; -+ struct { -+ struct page *next; -+ int pages; -+ int pobjects; -+ }; -+ }; -+ struct kmem_cache *slab_cache; -+ void *freelist; -+ union { -+ void *s_mem; -+ long unsigned int counters; -+ struct { -+ unsigned int inuse: 16; -+ unsigned int objects: 15; -+ unsigned int frozen: 1; -+ }; -+ }; -+ }; -+ struct { -+ long unsigned int compound_head; -+ unsigned char compound_dtor; -+ unsigned char compound_order; -+ atomic_t compound_mapcount; -+ unsigned int compound_nr; -+ }; -+ struct { -+ long unsigned int _compound_pad_1; -+ atomic_t hpage_pinned_refcount; -+ struct list_head deferred_list; -+ }; -+ struct { -+ long unsigned int _pt_pad_1; -+ pgtable_t pmd_huge_pte; -+ long unsigned int _pt_pad_2; -+ union { -+ struct mm_struct *pt_mm; -+ atomic_t pt_frag_refcount; -+ }; -+ spinlock_t ptl; -+ }; -+ struct { -+ struct dev_pagemap *pgmap; -+ void *zone_device_data; -+ }; -+ struct callback_head callback_head; -+ }; -+ union { -+ atomic_t _mapcount; -+ unsigned int page_type; -+ unsigned int active; -+ int units; -+ }; -+ atomic_t _refcount; -+ long unsigned int memcg_data; -+}; -+ -+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 mm_rss_stat { -+ atomic_long_t count[4]; -+}; -+ -+struct ldt_struct; -+ -+struct vdso_image; -+ -+typedef struct { -+ u64 ctx_id; -+ atomic64_t tlb_gen; -+ struct rw_semaphore ldt_usr_sem; -+ struct ldt_struct *ldt; -+ short 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; -+} mm_context_t; -+ -+struct xol_area; -+ -+struct uprobes_state { -+ struct xol_area *xol_area; -+}; -+ -+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 linux_binfmt; -+ -+struct core_state; -+ -+struct kioctx_table; -+ -+struct user_namespace; -+ -+struct mmu_notifier_subscriptions; -+ -+struct mm_struct { -+ struct { -+ struct vm_area_struct *mmap; -+ struct rb_root mm_rb; -+ u64 vmacache_seqnum; -+ long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -+ 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; -+ long unsigned int highest_vm_end; -+ pgd_t *pgd; -+ atomic_t membarrier_state; -+ atomic_t mm_users; -+ atomic_t mm_count; -+ atomic_long_t pgtables_bytes; -+ int map_count; -+ spinlock_t page_table_lock; -+ struct rw_semaphore mmap_lock; -+ struct list_head mmlist; -+ 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[48]; -+ struct mm_rss_stat rss_stat; -+ struct linux_binfmt *binfmt; -+ mm_context_t context; -+ long unsigned int flags; -+ struct core_state *core_state; -+ 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; -+ bool tlb_flush_batched; -+ struct uprobes_state uprobes_state; -+ atomic_long_t hugetlb_usage; -+ struct work_struct async_put_work; -+ u32 pasid; -+ }; -+ long unsigned int cpu_bitmap[0]; -+}; -+ -+struct math_emu_info { -+ long int ___orig_eip; -+ struct pt_regs *regs; -+}; -+ -+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 tlb_infos { -+ ENTRIES = 0, -+ NR_INFO = 1, -+}; -+ -+enum pcpu_fc { -+ PCPU_FC_AUTO = 0, -+ PCPU_FC_EMBED = 1, -+ PCPU_FC_PAGE = 2, -+ PCPU_FC_NR = 3, -+}; -+ -+struct vm_struct { -+ struct vm_struct *next; -+ void *addr; -+ long unsigned int size; -+ long unsigned int flags; -+ struct page **pages; -+ unsigned int nr_pages; -+ phys_addr_t phys_addr; -+ const void *caller; -+}; -+ -+struct wait_queue_head { -+ spinlock_t lock; -+ struct list_head head; -+}; -+ -+typedef struct wait_queue_head wait_queue_head_t; -+ -+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; -+ -+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 userfaultfd_ctx; -+ -+struct vm_userfaultfd_ctx { -+ struct userfaultfd_ctx *ctx; -+}; -+ -+struct anon_vma; -+ -+struct vm_operations_struct; -+ -+struct vm_area_struct { -+ long unsigned int vm_start; -+ long unsigned int vm_end; -+ struct vm_area_struct *vm_next; -+ struct vm_area_struct *vm_prev; -+ struct rb_node vm_rb; -+ long unsigned int rb_subtree_gap; -+ struct mm_struct *vm_mm; -+ pgprot_t vm_page_prot; -+ long unsigned int vm_flags; -+ 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 mempolicy *vm_policy; -+ struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -+}; -+ -+enum { -+ MM_FILEPAGES = 0, -+ MM_ANONPAGES = 1, -+ MM_SWAPENTS = 2, -+ MM_SHMEMPAGES = 3, -+ NR_MM_COUNTERS = 4, -+}; -+ -+struct swait_queue_head { -+ raw_spinlock_t lock; -+ struct list_head task_list; -+}; -+ -+struct completion { -+ unsigned int done; -+ struct swait_queue_head wait; -+}; -+ -+struct arch_uprobe_task { -+ long unsigned int saved_scratch_register; -+ unsigned int saved_trap_nr; -+ unsigned int saved_tf; -+}; -+ -+enum uprobe_task_state { -+ UTASK_RUNNING = 0, -+ UTASK_SSTEP = 1, -+ UTASK_SSTEP_ACK = 2, -+ UTASK_SSTEP_TRAPPED = 3, -+}; -+ -+struct 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 return_instance *return_instances; -+ unsigned int depth; -+}; -+ -+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 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_vvar_start; -+ long int sym_vvar_page; -+ long int sym_pvclock_page; -+ long int sym_hvclock_page; -+ long int sym_timens_page; -+ 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; -+}; -+ -+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; -+ gfp_t gfp_mask; -+ atomic_t i_mmap_writable; -+ struct rb_root_cached i_mmap; -+ struct rw_semaphore i_mmap_rwsem; -+ 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 private_lock; -+ struct list_head private_list; -+ void *private_data; -+}; -+ -+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; -+}; -+ -+struct percpu_ref_data; -+ -+struct percpu_ref { -+ long unsigned int percpu_count_ptr; -+ struct percpu_ref_data *data; -+}; -+ -+enum memory_type { -+ MEMORY_DEVICE_PRIVATE = 1, -+ MEMORY_DEVICE_FS_DAX = 2, -+ MEMORY_DEVICE_GENERIC = 3, -+ MEMORY_DEVICE_PCI_P2PDMA = 4, -+}; -+ -+struct dev_pagemap_ops; -+ -+struct dev_pagemap { -+ struct vmem_altmap altmap; -+ struct percpu_ref *ref; -+ struct percpu_ref internal_ref; -+ struct completion done; -+ enum memory_type type; -+ unsigned int flags; -+ const struct dev_pagemap_ops *ops; -+ void *owner; -+ int nr_range; -+ union { -+ struct range range; -+ struct range ranges[0]; -+ }; -+}; -+ -+struct vfsmount; -+ -+struct path { -+ struct vfsmount *mnt; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+enum pid_type { -+ PIDTYPE_PID = 0, -+ PIDTYPE_TGID = 1, -+ PIDTYPE_PGID = 2, -+ PIDTYPE_SID = 3, -+ PIDTYPE_MAX = 4, -+}; -+ -+struct fown_struct { -+ rwlock_t lock; -+ struct pid *pid; -+ enum pid_type pid_type; -+ kuid_t uid; -+ kuid_t euid; -+ int signum; -+}; -+ -+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; -+}; -+ -+struct file { -+ union { -+ struct llist_node fu_llist; -+ struct callback_head fu_rcuhead; -+ } f_u; -+ struct path f_path; -+ struct inode *f_inode; -+ const struct file_operations *f_op; -+ spinlock_t f_lock; -+ enum rw_hint f_write_hint; -+ atomic_long_t f_count; -+ unsigned int f_flags; -+ fmode_t f_mode; -+ struct mutex f_pos_lock; -+ loff_t f_pos; -+ struct fown_struct f_owner; -+ const struct cred *f_cred; -+ struct file_ra_state f_ra; -+ u64 f_version; -+ void *f_security; -+ void *private_data; -+ struct hlist_head *f_ep; -+ struct address_space *f_mapping; -+ errseq_t f_wb_err; -+ errseq_t f_sb_err; -+}; -+ -+typedef unsigned int vm_fault_t; -+ -+enum page_entry_size { -+ PE_SIZE_PTE = 0, -+ PE_SIZE_PMD = 1, -+ PE_SIZE_PUD = 2, -+}; -+ -+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 *, enum page_entry_size); -+ 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); -+ struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct vm_fault { -+ const struct { -+ struct vm_area_struct *vma; -+ gfp_t gfp_mask; -+ long unsigned int pgoff; -+ long unsigned int 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; -+}; -+ -+enum migratetype { -+ MIGRATE_UNMOVABLE = 0, -+ MIGRATE_MOVABLE = 1, -+ MIGRATE_RECLAIMABLE = 2, -+ MIGRATE_PCPTYPES = 3, -+ MIGRATE_HIGHATOMIC = 3, -+ MIGRATE_CMA = 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_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_KERNEL_MISC_RECLAIMABLE = 33, -+ NR_FOLL_PIN_ACQUIRED = 34, -+ NR_FOLL_PIN_RELEASED = 35, -+ NR_KERNEL_STACK_KB = 36, -+ NR_PAGETABLE = 37, -+ NR_SWAPCACHE = 38, -+ NR_VM_NODE_STAT_ITEMS = 39, -+}; -+ -+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, -+}; -+ -+typedef unsigned int isolate_mode_t; -+ -+enum zone_watermarks { -+ WMARK_MIN = 0, -+ WMARK_LOW = 1, -+ WMARK_HIGH = 2, -+ NR_WMARK = 3, -+}; -+ -+enum { -+ ZONELIST_FALLBACK = 0, -+ ZONELIST_NOFALLBACK = 1, -+ MAX_ZONELISTS = 2, -+}; -+ -+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 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; -+ struct list_head list; -+ int id; -+ atomic_long_t *nr_deferred; -+}; -+ -+struct rlimit { -+ __kernel_ulong_t rlim_cur; -+ __kernel_ulong_t rlim_max; -+}; -+ -+struct dev_pagemap_ops { -+ void (*page_free)(struct page *); -+ void (*kill)(struct dev_pagemap *); -+ void (*cleanup)(struct dev_pagemap *); -+ vm_fault_t (*migrate_to_ram)(struct vm_fault *); -+}; -+ -+struct pid_namespace; -+ -+struct upid { -+ int nr; -+ struct pid_namespace *ns; -+}; -+ -+struct pid { -+ refcount_t count; -+ unsigned int level; -+ spinlock_t lock; -+ struct hlist_head tasks[4]; -+ struct hlist_head inodes; -+ wait_queue_head_t wait_pidfd; -+ struct callback_head rcu; -+ struct upid numbers[1]; -+}; -+ -+typedef struct { -+ gid_t val; -+} kgid_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)(); -+ ktime_t offset; -+}; -+ -+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 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]; -+}; -+ -+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 void __signalfn_t(int); -+ -+typedef __signalfn_t *__sighandler_t; -+ -+typedef void __restorefn_t(); -+ -+typedef __restorefn_t *__sigrestore_t; -+ -+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; -+ } _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 sigaction { -+ __sighandler_t sa_handler; -+ long unsigned int sa_flags; -+ __sigrestore_t sa_restorer; -+ sigset_t sa_mask; -+}; -+ -+struct k_sigaction { -+ struct sigaction sa; -+}; -+ -+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 tty_struct; -+ -+struct autogroup; -+ -+struct taskstats; -+ -+struct tty_audit_buf; -+ -+struct signal_struct { -+ refcount_t sigcnt; -+ atomic_t live; -+ int nr_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_exit_task; -+ int group_stop_count; -+ unsigned int flags; -+ unsigned int is_child_subreaper: 1; -+ unsigned int has_child_subreaper: 1; -+ int posix_timer_id; -+ struct list_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]; -+ 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; -+}; -+ -+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 rseq { -+ __u32 cpu_id_start; -+ __u32 cpu_id; -+ union { -+ __u64 ptr64; -+ __u64 ptr; -+ } rseq_cs; -+ __u32 flags; -+ long: 32; -+ long: 64; -+}; -+ -+enum perf_event_task_context { -+ perf_invalid_context = 4294967295, -+ perf_hw_context = 0, -+ perf_sw_context = 1, -+ perf_nr_task_contexts = 2, -+}; -+ -+struct rq; -+ -+struct rq_flags; -+ -+struct sched_class { -+ void (*enqueue_task)(struct rq *, struct task_struct *, int); -+ void (*dequeue_task)(struct rq *, struct task_struct *, int); -+ void (*yield_task)(struct rq *); -+ bool (*yield_to_task)(struct rq *, struct task_struct *); -+ void (*check_preempt_curr)(struct rq *, struct task_struct *, int); -+ struct task_struct * (*pick_next_task)(struct rq *); -+ void (*put_prev_task)(struct rq *, struct task_struct *); -+ void (*set_next_task)(struct rq *, struct task_struct *, bool); -+ int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); -+ int (*select_task_rq)(struct task_struct *, int, int); -+ struct task_struct * (*pick_task)(struct rq *); -+ void (*migrate_task_rq)(struct task_struct *, int); -+ void (*task_woken)(struct rq *, struct task_struct *); -+ void (*set_cpus_allowed)(struct task_struct *, const struct cpumask *, u32); -+ 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 (*switched_from)(struct rq *, struct task_struct *); -+ void (*switched_to)(struct rq *, struct task_struct *); -+ 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); -+}; -+ -+struct kernel_cap_struct { -+ __u32 cap[2]; -+}; -+ -+typedef struct kernel_cap_struct kernel_cap_t; -+ -+struct user_struct; -+ -+struct ucounts; -+ -+struct group_info; -+ -+struct cred { -+ atomic_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; -+ }; -+}; -+ -+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 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 sighand_struct { -+ spinlock_t siglock; -+ refcount_t count; -+ wait_queue_head_t signalfd_wqh; -+ struct k_sigaction action[64]; -+}; -+ -+struct io_cq; -+ -+struct io_context { -+ atomic_long_t refcount; -+ atomic_t active_ref; -+ atomic_t nr_tasks; -+ spinlock_t lock; -+ short unsigned int ioprio; -+ struct xarray icq_tree; -+ struct io_cq *icq_hint; -+ struct hlist_head icq_list; -+ struct work_struct release_work; -+}; -+ -+enum rseq_event_mask_bits { -+ RSEQ_EVENT_PREEMPT_BIT = 0, -+ RSEQ_EVENT_SIGNAL_BIT = 1, -+ RSEQ_EVENT_MIGRATE_BIT = 2, -+}; -+ -+enum fixed_addresses { -+ VSYSCALL_PAGE = 511, -+ FIX_DBGP_BASE = 512, -+ FIX_EARLYCON_MEM_BASE = 513, -+ FIX_OHCI1394_BASE = 514, -+ FIX_APIC_BASE = 515, -+ FIX_IO_APIC_BASE_0 = 516, -+ FIX_IO_APIC_BASE_END = 643, -+ FIX_APEI_GHES_IRQ = 644, -+ FIX_APEI_GHES_NMI = 645, -+ __end_of_permanent_fixed_addresses = 646, -+ FIX_BTMAP_END = 1024, -+ FIX_BTMAP_BEGIN = 1535, -+ FIX_TBOOT_BASE = 1536, -+ __end_of_fixed_addresses = 1537, -+}; -+ -+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 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[32]; -+ struct lockref d_lockref; -+ const struct dentry_operations *d_op; -+ struct super_block *d_sb; -+ long unsigned int d_time; -+ void *d_fsdata; -+ union { -+ struct list_head d_lru; -+ wait_queue_head_t *d_wait; -+ }; -+ struct list_head d_child; -+ struct list_head d_subdirs; -+ union { -+ struct hlist_node d_alias; -+ struct hlist_bl_node d_in_lookup_hash; -+ struct callback_head d_rcu; -+ } d_u; -+}; -+ -+struct posix_acl; -+ -+struct inode_operations; -+ -+struct bdi_writeback; -+ -+struct file_lock_context; -+ -+struct cdev; -+ -+struct fsnotify_mark_connector; -+ -+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; -+ struct timespec64 i_atime; -+ struct timespec64 i_mtime; -+ struct timespec64 i_ctime; -+ spinlock_t i_lock; -+ short unsigned int i_bytes; -+ u8 i_blkbits; -+ u8 i_write_hint; -+ blkcnt_t i_blocks; -+ long unsigned int 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_generation; -+ __u32 i_fsnotify_mask; -+ struct fsnotify_mark_connector *i_fsnotify_marks; -+ void *i_private; -+}; -+ -+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 *, const struct inode *); -+ 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 rcuwait { -+ struct task_struct *task; -+}; -+ -+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 { -+ int frozen; -+ wait_queue_head_t wait_unfrozen; -+ 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 super_operations; -+ -+struct dquot_operations; -+ -+struct quotactl_ops; -+ -+struct export_operations; -+ -+struct xattr_handler; -+ -+struct block_device; -+ -+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 **s_xattr; -+ struct hlist_bl_head s_roots; -+ struct list_head s_mounts; -+ struct block_device *s_bdev; -+ 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_mark_connector *s_fsnotify_marks; -+ char s_id[32]; -+ uuid_t s_uuid; -+ unsigned int s_max_links; -+ fmode_t s_mode; -+ struct mutex s_vfs_rename_mutex; -+ const char *s_subtype; -+ const struct dentry_operations *s_d_op; -+ int cleancache_poolid; -+ struct shrinker s_shrink; -+ atomic_long_t s_remove_count; -+ atomic_long_t s_fsnotify_inode_refs; -+ 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: 32; -+ long: 64; -+ 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 vfsmount { -+ struct dentry *mnt_root; -+ struct super_block *mnt_sb; -+ int mnt_flags; -+ struct user_namespace *mnt_userns; -+}; -+ -+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; -+}; -+ -+struct list_lru_one { -+ struct list_head list; -+ long int nr_items; -+}; -+ -+struct list_lru_memcg { -+ struct callback_head rcu; -+ struct list_lru_one *lru[0]; -+}; -+ -+struct list_lru_node { -+ spinlock_t lock; -+ struct list_lru_one lru; -+ struct list_lru_memcg *memcg_lrus; -+ long int nr_items; -+ long: 64; -+ long: 64; -+}; -+ -+enum migrate_mode { -+ MIGRATE_ASYNC = 0, -+ MIGRATE_SYNC_LIGHT = 1, -+ MIGRATE_SYNC = 2, -+ MIGRATE_SYNC_NO_COPY = 3, -+}; -+ -+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; -+ atomic_long_t 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 { -+ atomic_t usage; -+ int ngroups; -+ kgid_t gid[0]; -+}; -+ -+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; -+}; -+ -+struct wait_page_queue; -+ -+struct kiocb { -+ struct file *ki_filp; -+ loff_t ki_pos; -+ void (*ki_complete)(struct kiocb *, long int, long int); -+ void *private; -+ int ki_flags; -+ u16 ki_hint; -+ u16 ki_ioprio; -+ union { -+ unsigned int ki_cookie; -+ struct wait_page_queue *ki_waitq; -+ }; -+}; -+ -+struct iattr { -+ unsigned int ia_valid; -+ umode_t ia_mode; -+ kuid_t ia_uid; -+ kgid_t ia_gid; -+ 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; -+}; -+ -+enum { -+ DQF_ROOT_SQUASH_B = 0, -+ DQF_SYS_FILE_B = 16, -+ DQF_PRIVATE = 17, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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 (*writepage)(struct page *, struct writeback_control *); -+ int (*readpage)(struct file *, struct page *); -+ int (*writepages)(struct address_space *, struct writeback_control *); -+ int (*set_page_dirty)(struct page *); -+ int (*readpages)(struct file *, struct address_space *, struct list_head *, unsigned int); -+ void (*readahead)(struct readahead_control *); -+ int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page **, void **); -+ int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct page *, void *); -+ sector_t (*bmap)(struct address_space *, sector_t); -+ void (*invalidatepage)(struct page *, unsigned int, unsigned int); -+ int (*releasepage)(struct page *, gfp_t); -+ void (*freepage)(struct page *); -+ ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); -+ int (*migratepage)(struct address_space *, struct page *, struct page *, enum migrate_mode); -+ bool (*isolate_page)(struct page *, isolate_mode_t); -+ void (*putback_page)(struct page *); -+ int (*launder_page)(struct page *); -+ int (*is_partially_uptodate)(struct page *, long unsigned int, long unsigned int); -+ void (*is_dirty_writeback)(struct page *, bool *, bool *); -+ int (*error_remove_page)(struct address_space *, struct page *); -+ int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); -+ void (*swap_deactivate)(struct file *); -+}; -+ -+struct fiemap_extent_info; -+ -+struct fileattr; -+ -+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 user_namespace *, struct inode *, int); -+ struct posix_acl * (*get_acl)(struct inode *, int); -+ int (*readlink)(struct dentry *, char *, int); -+ int (*create)(struct user_namespace *, struct inode *, struct dentry *, umode_t, bool); -+ int (*link)(struct dentry *, struct inode *, struct dentry *); -+ int (*unlink)(struct inode *, struct dentry *); -+ int (*symlink)(struct user_namespace *, struct inode *, struct dentry *, const char *); -+ int (*mkdir)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*rmdir)(struct inode *, struct dentry *); -+ int (*mknod)(struct user_namespace *, struct inode *, struct dentry *, umode_t, dev_t); -+ int (*rename)(struct user_namespace *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); -+ int (*setattr)(struct user_namespace *, struct dentry *, struct iattr *); -+ int (*getattr)(struct user_namespace *, 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 *, struct timespec64 *, int); -+ int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); -+ int (*tmpfile)(struct user_namespace *, struct inode *, struct dentry *, umode_t); -+ int (*set_acl)(struct user_namespace *, struct inode *, struct posix_acl *, int); -+ int (*fileattr_set)(struct user_namespace *, struct dentry *, struct fileattr *); -+ int (*fileattr_get)(struct dentry *, struct fileattr *); -+ long: 64; -+}; -+ -+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_operations { -+ void (*fl_copy_lock)(struct file_lock *, struct file_lock *); -+ void (*fl_release_private)(struct file_lock *); -+}; -+ -+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 fasync_struct; -+ -+struct lock_manager_operations; -+ -+struct file_lock { -+ struct file_lock *fl_blocker; -+ struct list_head fl_list; -+ struct hlist_node fl_link; -+ struct list_head fl_blocked_requests; -+ struct list_head fl_blocked_member; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ unsigned int fl_pid; -+ int fl_link_cpu; -+ wait_queue_head_t fl_wait; -+ struct file *fl_file; -+ loff_t fl_start; -+ loff_t fl_end; -+ struct fasync_struct *fl_fasync; -+ long unsigned int fl_break_time; -+ long unsigned int fl_downgrade_time; -+ 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; -+ } fl_u; -+}; -+ -+struct lock_manager_operations { -+ 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_break)(struct file_lock *); -+ int (*lm_change)(struct file_lock *, int, struct list_head *); -+ void (*lm_setup)(struct file_lock *, void **); -+ bool (*lm_breaker_owns_lease)(struct file_lock *); -+}; -+ -+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 { -+ SB_UNFROZEN = 0, -+ SB_FREEZE_WRITE = 1, -+ SB_FREEZE_PAGEFAULT = 2, -+ SB_FREEZE_FS = 3, -+ SB_FREEZE_COMPLETE = 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 *); -+ int (*freeze_fs)(struct super_block *); -+ int (*thaw_super)(struct super_block *); -+ 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 *); -+}; -+ -+struct iomap; -+ -+struct fid; -+ -+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 *); -+ u64 (*fetch_iversion)(struct inode *); -+ 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 user_namespace *, struct dentry *, struct inode *, const char *, const void *, size_t, int); -+}; -+ -+typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); -+ -+struct dir_context { -+ filldir_t actor; -+ loff_t pos; -+}; -+ -+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; -+}; -+ -+enum compound_dtor_id { -+ NULL_COMPOUND_DTOR = 0, -+ COMPOUND_PAGE_DTOR = 1, -+ HUGETLB_PAGE_DTOR = 2, -+ TRANSHUGE_PAGE_DTOR = 3, -+ NR_COMPOUND_DTORS = 4, -+}; -+ -+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, -+ PGSCAN_KSWAPD = 27, -+ PGSCAN_DIRECT = 28, -+ PGSCAN_DIRECT_THROTTLE = 29, -+ PGSCAN_ANON = 30, -+ PGSCAN_FILE = 31, -+ PGSTEAL_ANON = 32, -+ PGSTEAL_FILE = 33, -+ PGSCAN_ZONE_RECLAIM_FAILED = 34, -+ PGINODESTEAL = 35, -+ SLABS_SCANNED = 36, -+ KSWAPD_INODESTEAL = 37, -+ KSWAPD_LOW_WMARK_HIT_QUICKLY = 38, -+ KSWAPD_HIGH_WMARK_HIT_QUICKLY = 39, -+ PAGEOUTRUN = 40, -+ PGROTATED = 41, -+ DROP_PAGECACHE = 42, -+ DROP_SLAB = 43, -+ OOM_KILL = 44, -+ NUMA_PTE_UPDATES = 45, -+ NUMA_HUGE_PTE_UPDATES = 46, -+ NUMA_HINT_FAULTS = 47, -+ NUMA_HINT_FAULTS_LOCAL = 48, -+ NUMA_PAGE_MIGRATE = 49, -+ PGMIGRATE_SUCCESS = 50, -+ PGMIGRATE_FAIL = 51, -+ THP_MIGRATION_SUCCESS = 52, -+ THP_MIGRATION_FAIL = 53, -+ THP_MIGRATION_SPLIT = 54, -+ COMPACTMIGRATE_SCANNED = 55, -+ COMPACTFREE_SCANNED = 56, -+ COMPACTISOLATED = 57, -+ COMPACTSTALL = 58, -+ COMPACTFAIL = 59, -+ COMPACTSUCCESS = 60, -+ KCOMPACTD_WAKE = 61, -+ KCOMPACTD_MIGRATE_SCANNED = 62, -+ KCOMPACTD_FREE_SCANNED = 63, -+ HTLB_BUDDY_PGALLOC = 64, -+ HTLB_BUDDY_PGALLOC_FAIL = 65, -+ CMA_ALLOC_SUCCESS = 66, -+ CMA_ALLOC_FAIL = 67, -+ UNEVICTABLE_PGCULLED = 68, -+ UNEVICTABLE_PGSCANNED = 69, -+ UNEVICTABLE_PGRESCUED = 70, -+ UNEVICTABLE_PGMLOCKED = 71, -+ UNEVICTABLE_PGMUNLOCKED = 72, -+ UNEVICTABLE_PGCLEARED = 73, -+ UNEVICTABLE_PGSTRANDED = 74, -+ THP_FAULT_ALLOC = 75, -+ THP_FAULT_FALLBACK = 76, -+ THP_FAULT_FALLBACK_CHARGE = 77, -+ THP_COLLAPSE_ALLOC = 78, -+ THP_COLLAPSE_ALLOC_FAILED = 79, -+ THP_FILE_ALLOC = 80, -+ THP_FILE_FALLBACK = 81, -+ THP_FILE_FALLBACK_CHARGE = 82, -+ THP_FILE_MAPPED = 83, -+ THP_SPLIT_PAGE = 84, -+ THP_SPLIT_PAGE_FAILED = 85, -+ THP_DEFERRED_SPLIT_PAGE = 86, -+ THP_SPLIT_PMD = 87, -+ THP_SPLIT_PUD = 88, -+ THP_ZERO_PAGE_ALLOC = 89, -+ THP_ZERO_PAGE_ALLOC_FAILED = 90, -+ THP_SWPOUT = 91, -+ THP_SWPOUT_FALLBACK = 92, -+ BALLOON_INFLATE = 93, -+ BALLOON_DEFLATE = 94, -+ BALLOON_MIGRATE = 95, -+ SWAP_RA = 96, -+ SWAP_RA_HIT = 97, -+ DIRECT_MAP_LEVEL2_SPLIT = 98, -+ DIRECT_MAP_LEVEL3_SPLIT = 99, -+ NR_VM_EVENT_ITEMS = 100, -+}; -+ -+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_ibpb; -+ }; -+ 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]; -+}; -+ -+struct boot_params_to_save { -+ unsigned int start; -+ unsigned int len; -+}; -+ -+enum cpu_idle_type { -+ CPU_IDLE = 0, -+ CPU_NOT_IDLE = 1, -+ CPU_NEWLY_IDLE = 2, -+ CPU_MAX_IDLE_TYPES = 3, -+}; -+ -+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_SHARE_PKG_RESOURCES = 8, -+ __SD_SERIALIZE = 9, -+ __SD_ASYM_PACKING = 10, -+ __SD_PREFER_SIBLING = 11, -+ __SD_OVERLAP = 12, -+ __SD_NUMA = 13, -+ __SD_FLAG_CNT = 14, -+}; -+ -+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 *); -+}; -+ -+struct x86_platform_ops { -+ long unsigned int (*calibrate_cpu)(); -+ long unsigned int (*calibrate_tsc)(); -+ void (*get_wallclock)(struct timespec64 *); -+ int (*set_wallclock)(const struct timespec64 *); -+ void (*iommu_shutdown)(); -+ bool (*is_untracked_pat_range)(u64, u64); -+ void (*nmi_init)(); -+ unsigned char (*get_nmi_reason)(); -+ void (*save_sched_clock_state)(); -+ void (*restore_sched_clock_state)(); -+ void (*apic_post_init)(); -+ struct x86_legacy_features legacy; -+ void (*set_legacy_features)(); -+ struct x86_hyper_runtime hyper; -+}; -+ -+typedef signed char __s8; -+ -+typedef __s8 s8; -+ -+typedef __u32 __le32; -+ -+typedef long unsigned int irq_hw_number_t; -+ -+struct kernel_symbol { -+ int value_offset; -+ int name_offset; -+ int namespace_offset; -+}; -+ -+typedef int (*initcall_t)(); -+ -+typedef int initcall_entry_t; -+ -+struct obs_kernel_param { -+ const char *str; -+ int (*setup_func)(char *); -+ int early; -+}; -+ -+struct lockdep_map {}; -+ -+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 flags: 8; -+ union { -+ struct static_key_true dd_key_true; -+ struct static_key_false dd_key_false; -+ } key; -+}; -+ -+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; -+ }; -+}; -+ -+enum system_states { -+ SYSTEM_BOOTING = 0, -+ SYSTEM_SCHEDULING = 1, -+ SYSTEM_RUNNING = 2, -+ SYSTEM_HALT = 3, -+ SYSTEM_POWER_OFF = 4, -+ SYSTEM_RESTART = 5, -+ SYSTEM_SUSPEND = 6, -+}; -+ -+struct orc_entry { -+ s16 sp_offset; -+ s16 bp_offset; -+ unsigned int sp_reg: 4; -+ unsigned int bp_reg: 4; -+ unsigned int type: 2; -+ unsigned int end: 1; -+} __attribute__((packed)); -+ -+struct paravirt_callee_save { -+ void *func; -+}; -+ -+struct pv_cpu_ops { -+ void (*io_delay)(); -+}; -+ -+struct pv_irq_ops {}; -+ -+struct flush_tlb_info; -+ -+struct mmu_gather; -+ -+struct pv_mmu_ops { -+ void (*flush_tlb_user)(); -+ void (*flush_tlb_kernel)(); -+ void (*flush_tlb_one_user)(long unsigned int); -+ void (*flush_tlb_multi)(const struct cpumask *, const struct flush_tlb_info *); -+ void (*tlb_remove_table)(struct mmu_gather *, void *); -+ void (*exit_mmap)(struct mm_struct *); -+}; -+ -+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; -+}; -+ -+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 bug_entry { -+ int bug_addr_disp; -+ int file_disp; -+ short unsigned int line; -+ short unsigned int flags; -+}; -+ -+typedef struct cpumask *cpumask_var_t; -+ -+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; -+ int (*regfunc)(); -+ void (*unregfunc)(); -+ struct tracepoint_func *funcs; -+}; -+ -+typedef const int tracepoint_ptr_t; -+ -+struct bpf_raw_event_map { -+ struct tracepoint *tp; -+ void *bpf_func; -+ u32 num_args; -+ u32 writable_size; -+ long: 64; -+}; -+ -+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 fixed_percpu_data { -+ char gs_base[40]; -+ long unsigned int stack_canary; -+}; -+ -+enum perf_event_state { -+ PERF_EVENT_STATE_DEAD = 4294967292, -+ PERF_EVENT_STATE_EXIT = 4294967293, -+ PERF_EVENT_STATE_ERROR = 4294967294, -+ PERF_EVENT_STATE_OFF = 4294967295, -+ 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; -+ __u32 __reserved_3; -+ __u64 sig_data; -+}; -+ -+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 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 { -+ struct hrtimer hrtimer; -+ }; -+ struct { -+ struct list_head tp_list; -+ }; -+ struct { -+ u64 pwr_acc; -+ u64 ptsc; -+ }; -+ struct { -+ struct arch_hw_breakpoint info; -+ struct list_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 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; -+}; -+ -+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 pmu; -+ -+struct perf_buffer; -+ -+struct perf_addr_filter_range; -+ -+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; -+ 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; -+ u64 shadow_ctx_time; -+ 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; -+ 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; -+ int pending_wakeup; -+ int pending_kill; -+ int pending_disable; -+ long unsigned int pending_addr; -+ struct irq_work pending; -+ 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; -+ u64 (*clock)(); -+ perf_overflow_handler_t overflow_handler; -+ void *overflow_handler_context; -+ perf_overflow_handler_t orig_overflow_handler; -+ struct bpf_prog *prog; -+ 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 uid_gid_extent { -+ u32 first; -+ u32 lower_first; -+ u32 count; -+}; -+ -+struct uid_gid_map { -+ u32 nr_extents; -+ union { -+ struct uid_gid_extent extent[5]; -+ struct { -+ struct uid_gid_extent *forward; -+ struct uid_gid_extent *reverse; -+ }; -+ }; -+}; -+ -+struct proc_ns_operations; -+ -+struct ns_common { -+ atomic_long_t stashed; -+ const struct proc_ns_operations *ops; -+ unsigned int inum; -+ refcount_t count; -+}; -+ -+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 used; -+ int count; -+ int nreg; -+ }; -+ struct callback_head rcu; -+ }; -+ struct completion *unregistering; -+ 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; -+}; -+ -+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 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[16]; -+}; -+ -+struct pollfd { -+ int fd; -+ short int events; -+ short int revents; -+}; -+ -+typedef void (*smp_call_func_t)(void *); -+ -+struct __call_single_data { -+ struct __call_single_node node; -+ smp_call_func_t func; -+ void *info; -+}; -+ -+struct smp_ops { -+ void (*smp_prepare_boot_cpu)(); -+ void (*smp_prepare_cpus)(unsigned int); -+ void (*smp_cpus_done)(unsigned int); -+ void (*stop_other_cpus)(int); -+ void (*crash_stop_other_cpus)(); -+ void (*smp_send_reschedule)(int); -+ int (*cpu_up)(unsigned int, struct task_struct *); -+ int (*cpu_disable)(); -+ void (*cpu_die)(unsigned int); -+ void (*play_dead)(); -+ void (*send_call_func_ipi)(const struct cpumask *); -+ void (*send_call_func_single_ipi)(int); -+}; -+ -+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 timer_list { -+ struct hlist_node entry; -+ long unsigned int expires; -+ void (*function)(struct timer_list *); -+ u32 flags; -+}; -+ -+struct delayed_work { -+ struct work_struct work; -+ struct timer_list timer; -+ struct workqueue_struct *wq; -+ int cpu; -+}; -+ -+struct rcu_work { -+ struct work_struct work; -+ struct callback_head rcu; -+ struct workqueue_struct *wq; -+}; -+ -+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 { -+ long unsigned int srcu_lock_count[2]; -+ long unsigned int srcu_unlock_count[2]; -+ long: 64; -+ 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_struct { -+ struct srcu_node node[521]; -+ struct srcu_node *level[4]; -+ struct mutex srcu_cb_mutex; -+ spinlock_t lock; -+ struct mutex srcu_gp_mutex; -+ unsigned int srcu_idx; -+ 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_last_gp_end; -+ struct srcu_data *sda; -+ long unsigned int srcu_barrier_seq; -+ struct mutex srcu_barrier_mutex; -+ struct completion srcu_barrier_completion; -+ atomic_t srcu_barrier_cpu_cnt; -+ struct delayed_work work; -+ struct lockdep_map dep_map; -+}; -+ -+struct ldt_struct { -+ struct desc_struct *entries; -+ unsigned int nr_entries; -+ int slot; -+}; -+ -+struct anon_vma { -+ struct anon_vma *root; -+ struct rw_semaphore rwsem; -+ atomic_t refcount; -+ unsigned int degree; -+ struct anon_vma *parent; -+ struct rb_root_cached rb_root; -+}; -+ -+struct mempolicy { -+ atomic_t refcnt; -+ short unsigned int mode; -+ short unsigned int flags; -+ nodemask_t nodes; -+ union { -+ nodemask_t cpuset_mems_allowed; -+ nodemask_t user_nodemask; -+ } w; -+}; -+ -+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 free_area { -+ struct list_head free_list[6]; -+ long unsigned int nr_free; -+}; -+ -+struct zone_padding { -+ char x[0]; -+}; -+ -+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 pglist_data *pgdat; -+}; -+ -+struct per_cpu_pages; -+ -+struct per_cpu_zonestat; -+ -+struct zone { -+ long unsigned int _watermark[3]; -+ long unsigned int watermark_boost; -+ long unsigned int nr_reserved_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; -+ 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 cma_pages; -+ const char *name; -+ long unsigned int nr_isolate_pageblock; -+ seqlock_t span_seqlock; -+ int initialized; -+ int: 32; -+ struct zone_padding _pad1_; -+ struct free_area free_area[11]; -+ long unsigned int flags; -+ spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_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; -+ short: 16; -+ struct zone_padding _pad3_; -+ atomic_long_t vm_stat[11]; -+ atomic_long_t vm_numa_event[6]; -+ long: 64; -+ 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]; -+}; -+ -+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 per_cpu_nodestat; -+ -+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; -+ 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; -+ long unsigned int totalreserve_pages; -+ long unsigned int min_unmapped_pages; -+ long unsigned int min_slab_pages; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct zone_padding _pad1_; -+ long unsigned int first_deferred_pfn; -+ struct deferred_split deferred_split_queue; -+ struct lruvec __lruvec; -+ long unsigned int flags; -+ struct zone_padding _pad2_; -+ struct per_cpu_nodestat *per_cpu_nodestats; -+ atomic_long_t vm_stat[39]; -+}; -+ -+struct per_cpu_pages { -+ int count; -+ int high; -+ int batch; -+ short int free_factor; -+ short int expire; -+ struct list_head lists[15]; -+}; -+ -+struct per_cpu_zonestat { -+ s8 vm_stat_diff[11]; -+ s8 stat_threshold; -+ long unsigned int vm_numa_event[6]; -+}; -+ -+struct per_cpu_nodestat { -+ s8 stat_threshold; -+ s8 vm_node_stat_diff[39]; -+}; -+ -+typedef struct pglist_data pg_data_t; -+ -+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, -+}; -+ -+struct irq_domain_ops; -+ -+struct fwnode_handle; -+ -+struct irq_domain_chip_generic; -+ -+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 fwnode_handle *fwnode; -+ enum irq_domain_bus_token bus_token; -+ struct irq_domain_chip_generic *gc; -+ struct irq_domain *parent; -+ irq_hw_number_t hwirq_max; -+ unsigned int revmap_size; -+ struct xarray revmap_tree; -+ struct mutex revmap_mutex; -+ struct irq_data *revmap[0]; -+}; -+ -+typedef int proc_handler(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; -+ struct ctl_table *child; -+ 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 *, struct ctl_table *, kuid_t *, kgid_t *); -+ int (*permissions)(struct ctl_table_header *, struct ctl_table *); -+}; -+ -+enum umh_disable_depth { -+ UMH_ENABLED = 0, -+ UMH_FREEZING = 1, -+ UMH_DISABLED = 2, -+}; -+ -+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; -+}; -+ -+typedef struct elf64_sym Elf64_Sym; -+ -+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 idr { -+ struct xarray idr_rt; -+ unsigned int idr_base; -+ unsigned int idr_next; -+}; -+ -+struct kernfs_root; -+ -+struct kernfs_elem_dir { -+ long unsigned int subdirs; -+ struct rb_root children; -+ struct kernfs_root *root; -+}; -+ -+struct kernfs_node; -+ -+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 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; -+ union { -+ struct kernfs_elem_dir dir; -+ struct kernfs_elem_symlink symlink; -+ struct kernfs_elem_attr attr; -+ }; -+ void *priv; -+ u64 id; -+ short unsigned int flags; -+ umode_t mode; -+ struct kernfs_iattrs *iattr; -+}; -+ -+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 *); -+}; -+ -+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 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 * (*grab_current_ns)(); -+ const void * (*netlink_ns)(struct sock *); -+ const void * (*initial_ns)(); -+ void (*drop_ns)(void *); -+}; -+ -+struct attribute { -+ const char *name; -+ umode_t mode; -+}; -+ -+struct kobject; -+ -+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 kref { -+ refcount_t refcount; -+}; -+ -+struct kset; -+ -+struct kobj_type; -+ -+struct kobject { -+ const char *name; -+ struct list_head entry; -+ struct kobject *parent; -+ struct kset *kset; -+ 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 bin_attribute { -+ struct attribute attr; -+ size_t size; -+ void *private; -+ struct address_space *mapping; -+ 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); -+ 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); -+}; -+ -+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 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; -+ struct attribute **default_attrs; -+ const struct attribute_group **default_groups; -+ const struct kobj_ns_type_operations * (*child_ns_type)(struct kobject *); -+ const void * (*namespace)(struct kobject *); -+ void (*get_ownership)(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)(struct kset *, struct kobject *); -+ const char * (* const name)(struct kset *, struct kobject *); -+ int (* const uevent)(struct kset *, struct kobject *, struct kobj_uevent_env *); -+}; -+ -+struct kernel_param; -+ -+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 module_state { -+ MODULE_STATE_LIVE = 0, -+ MODULE_STATE_COMING = 1, -+ MODULE_STATE_GOING = 2, -+ MODULE_STATE_UNFORMED = 3, -+}; -+ -+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_layout { -+ void *base; -+ unsigned int size; -+ unsigned int text_size; -+ unsigned int ro_size; -+ unsigned int ro_after_init_size; -+ struct mod_tree_node mtn; -+}; -+ -+struct mod_arch_specific { -+ unsigned int num_orcs; -+ int *orc_unwind_ip; -+ struct orc_entry *orc_unwind; -+}; -+ -+struct mod_kallsyms { -+ Elf64_Sym *symtab; -+ unsigned int num_symtab; -+ char *strtab; -+ char *typetab; -+}; -+ -+struct module_attribute; -+ -+struct exception_table_entry; -+ -+struct module_sect_attrs; -+ -+struct module_notes_attrs; -+ -+struct trace_eval_map; -+ -+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; -+ const char *rhelversion; -+ 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 sig_ok; -+ bool async_probe_requested; -+ unsigned int num_exentries; -+ struct exception_table_entry *extable; -+ int (*init)(); -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct module_layout core_layout; -+ struct module_layout init_layout; -+ 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; -+ void *btf_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)(); -+ atomic_t refcnt; -+ struct error_injection_entry *ei_funcs; -+ unsigned int num_ei_funcs; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+struct error_injection_entry { -+ long unsigned int addr; -+ int etype; -+}; -+ -+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 klp_modinfo { -+ Elf64_Ehdr hdr; -+ Elf64_Shdr *sechdrs; -+ char *secstrings; -+ unsigned int symndx; -+}; -+ -+struct exception_table_entry { -+ int insn; -+ int fixup; -+ int handler; -+}; -+ -+struct trace_event_functions; -+ -+struct trace_event { -+ struct hlist_node node; -+ struct list_head list; -+ int type; -+ struct trace_event_functions *funcs; -+}; -+ -+struct trace_event_class; -+ -+struct bpf_prog_array; -+ -+struct trace_event_call { -+ struct list_head list; -+ struct trace_event_class *class; -+ union { -+ char *name; -+ struct tracepoint *tp; -+ }; -+ struct trace_event event; -+ char *print_fmt; -+ struct event_filter *filter; -+ void *mod; -+ 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 cgroup; -+ -+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; -+}; -+ -+struct mem_cgroup_id { -+ int id; -+ refcount_t ref; -+}; -+ -+struct page_counter { -+ atomic_long_t usage; -+ long unsigned int min; -+ long unsigned int low; -+ long unsigned int high; -+ long unsigned int max; -+ 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 failcnt; -+ struct page_counter *parent; -+}; -+ -+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 cgroup_file { -+ struct kernfs_node *kn; -+ long unsigned int notified_at; -+ struct timer_list notify_timer; -+}; -+ -+struct mem_cgroup_threshold_ary; -+ -+struct mem_cgroup_thresholds { -+ struct mem_cgroup_threshold_ary *primary; -+ struct mem_cgroup_threshold_ary *spare; -+}; -+ -+struct memcg_padding { -+ char x[0]; -+}; -+ -+struct memcg_vmstats { -+ long int state[42]; -+ long unsigned int events[100]; -+ long int state_pending[42]; -+ long unsigned int events_pending[100]; -+}; -+ -+enum memcg_kmem_state { -+ KMEM_NONE = 0, -+ KMEM_ALLOCATED = 1, -+ KMEM_ONLINE = 2, -+}; -+ -+struct percpu_counter { -+ raw_spinlock_t lock; -+ s64 count; -+ struct list_head list; -+ s32 *counters; -+}; -+ -+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 obj_cgroup; -+ -+struct memcg_vmstats_percpu; -+ -+struct mem_cgroup_per_node; -+ -+struct mem_cgroup { -+ struct cgroup_subsys_state css; -+ struct mem_cgroup_id id; -+ struct page_counter memory; -+ union { -+ struct page_counter swap; -+ struct page_counter memsw; -+ }; -+ struct page_counter kmem; -+ struct page_counter tcpmem; -+ struct work_struct high_work; -+ long unsigned int soft_limit; -+ struct vmpressure vmpressure; -+ bool oom_group; -+ bool oom_lock; -+ int under_oom; -+ int swappiness; -+ int oom_kill_disable; -+ struct cgroup_file events_file; -+ struct cgroup_file events_local_file; -+ struct cgroup_file swap_events_file; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad1_; -+ struct memcg_vmstats vmstats; -+ atomic_long_t memory_events[8]; -+ atomic_long_t memory_events_local[8]; -+ long unsigned int socket_pressure; -+ bool tcpmem_active; -+ int tcpmem_pressure; -+ int kmemcg_id; -+ enum memcg_kmem_state kmem_state; -+ struct obj_cgroup *objcg; -+ struct list_head objcg_list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct memcg_padding _pad2_; -+ atomic_t moving_account; -+ struct task_struct *move_lock_task; -+ struct memcg_vmstats_percpu *vmstats_percpu; -+ struct list_head cgwb_list; -+ struct wb_domain cgwb_domain; -+ struct memcg_cgwb_frn cgwb_frn[4]; -+ struct list_head event_list; -+ spinlock_t event_list_lock; -+ struct deferred_split deferred_split_queue; -+ struct mem_cgroup_per_node *nodeinfo[0]; -+ long: 64; -+}; -+ -+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; -+}; -+ -+struct ucounts { -+ struct hlist_node node; -+ struct user_namespace *ns; -+ kuid_t uid; -+ atomic_t count; -+ atomic_long_t ucount[16]; -+}; -+ -+struct task_cputime { -+ u64 stime; -+ u64 utime; -+ long long unsigned int sum_exec_runtime; -+}; -+ -+struct uts_namespace; -+ -+struct ipc_namespace; -+ -+struct mnt_namespace; -+ -+struct net; -+ -+struct time_namespace; -+ -+struct cgroup_namespace; -+ -+struct nsproxy { -+ atomic_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 bio; -+ -+struct bio_list { -+ struct bio *head; -+ struct bio *tail; -+}; -+ -+struct blk_plug { -+ struct list_head mq_list; -+ struct list_head cb_list; -+ short unsigned int rq_count; -+ bool multiple_queues; -+ bool nowait; -+}; -+ -+struct reclaim_state { -+ long unsigned int reclaimed_slab; -+}; -+ -+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; -+ struct percpu_counter stat[4]; -+ long unsigned int congested; -+ 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; -+ long unsigned int dirty_sleep; -+ 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 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; -+ 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; -+}; -+ -+struct css_set { -+ struct cgroup_subsys_state *subsys[14]; -+ 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[14]; -+ struct list_head threaded_csets; -+ struct list_head threaded_csets_node; -+ struct hlist_node hlist; -+ struct list_head cgrp_links; -+ struct list_head mg_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 { -+ struct pmu *pmu; -+ raw_spinlock_t lock; -+ struct mutex mutex; -+ struct list_head active_ctx_list; -+ struct perf_event_groups pinned_groups; -+ struct perf_event_groups flexible_groups; -+ struct list_head event_list; -+ struct list_head pinned_active; -+ struct list_head flexible_active; -+ int nr_events; -+ int nr_active; -+ int is_active; -+ int nr_stat; -+ int nr_freq; -+ int rotate_disable; -+ int rotate_necessary; -+ refcount_t refcount; -+ struct task_struct *task; -+ u64 time; -+ u64 timestamp; -+ struct perf_event_context *parent_ctx; -+ u64 parent_gen; -+ u64 generation; -+ int pin_count; -+ int nr_cgroups; -+ void *task_ctx_data; -+ struct callback_head callback_head; -+}; -+ -+struct task_delay_info { -+ raw_spinlock_t lock; -+ unsigned int flags; -+ u64 blkio_start; -+ u64 blkio_delay; -+ u64 swapin_delay; -+ u32 blkio_count; -+ u32 swapin_count; -+ u64 freepages_start; -+ u64 freepages_delay; -+ u64 thrashing_start; -+ u64 thrashing_delay; -+ u32 freepages_count; -+ u32 thrashing_count; -+}; -+ -+struct ftrace_ret_stack { -+ long unsigned int ret; -+ long unsigned int func; -+ long long unsigned int calltime; -+ long long unsigned int subtime; -+ long unsigned int *retp; -+}; -+ -+struct blk_integrity_profile; -+ -+struct blk_integrity { -+ const struct blk_integrity_profile *profile; -+ unsigned char flags; -+ unsigned char tuple_size; -+ unsigned char interval_exp; -+ unsigned char tag_size; -+}; -+ -+enum rpm_status { -+ RPM_ACTIVE = 0, -+ RPM_RESUMING = 1, -+ RPM_SUSPENDED = 2, -+ RPM_SUSPENDING = 3, -+}; -+ -+struct blk_rq_stat { -+ u64 mean; -+ u64 min; -+ u64 max; -+ u32 nr_samples; -+ u64 batch; -+}; -+ -+struct sbitmap_word; -+ -+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; -+ -+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; -+}; -+ -+enum blk_bounce { -+ BLK_BOUNCE_NONE = 0, -+ BLK_BOUNCE_HIGH = 1, -+}; -+ -+enum blk_zoned_model { -+ BLK_ZONED_NONE = 0, -+ BLK_ZONED_HA = 1, -+ BLK_ZONED_HM = 2, -+}; -+ -+struct queue_limits { -+ enum blk_bounce bounce; -+ 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_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_write_same_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; -+ short unsigned int max_segments; -+ short unsigned int max_integrity_segments; -+ short unsigned int max_discard_segments; -+ unsigned char misaligned; -+ unsigned char discard_misaligned; -+ unsigned char raid_partial_stripes_expensive; -+ enum blk_zoned_model zoned; -+}; -+ -+struct bsg_ops; -+ -+struct bsg_class_device { -+ struct device *class_dev; -+ int minor; -+ struct request_queue *queue; -+ const struct bsg_ops *ops; -+}; -+ -+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_set { -+ struct kmem_cache *bio_slab; -+ unsigned int front_pad; -+ mempool_t bio_pool; -+ mempool_t bvec_pool; -+ mempool_t bio_integrity_pool; -+ mempool_t bvec_integrity_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 request; -+ -+struct elevator_queue; -+ -+struct blk_queue_stats; -+ -+struct rq_qos; -+ -+struct blk_mq_ops; -+ -+struct blk_mq_ctx; -+ -+struct blk_mq_hw_ctx; -+ -+struct blk_stat_callback; -+ -+struct blkcg_gq; -+ -+struct blk_trace; -+ -+struct blk_flush_queue; -+ -+struct throtl_data; -+ -+struct blk_mq_tag_set; -+ -+struct request_queue { -+ struct request *last_merge; -+ struct elevator_queue *elevator; -+ struct percpu_ref q_usage_counter; -+ struct blk_queue_stats *stats; -+ struct rq_qos *rq_qos; -+ const struct blk_mq_ops *mq_ops; -+ struct blk_mq_ctx *queue_ctx; -+ unsigned int queue_depth; -+ struct blk_mq_hw_ctx **queue_hw_ctx; -+ unsigned int nr_hw_queues; -+ struct backing_dev_info *backing_dev_info; -+ void *queuedata; -+ long unsigned int queue_flags; -+ atomic_t pm_only; -+ int id; -+ spinlock_t queue_lock; -+ struct kobject kobj; -+ struct kobject *mq_kobj; -+ struct blk_integrity integrity; -+ struct device *dev; -+ enum rpm_status rpm_status; -+ long unsigned int nr_requests; -+ unsigned int dma_pad_mask; -+ unsigned int dma_alignment; -+ unsigned int rq_timeout; -+ int poll_nsec; -+ struct blk_stat_callback *poll_cb; -+ struct blk_rq_stat poll_stat[16]; -+ struct timer_list timeout; -+ struct work_struct timeout_work; -+ atomic_t nr_active_requests_shared_sbitmap; -+ struct sbitmap_queue sched_bitmap_tags; -+ struct sbitmap_queue sched_breserved_tags; -+ struct list_head icq_list; -+ long unsigned int blkcg_pols[1]; -+ struct blkcg_gq *root_blkg; -+ struct list_head blkg_list; -+ struct queue_limits limits; -+ unsigned int required_elevator_features; -+ unsigned int nr_zones; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int max_open_zones; -+ unsigned int max_active_zones; -+ unsigned int sg_timeout; -+ unsigned int sg_reserved_size; -+ int node; -+ struct mutex debugfs_mutex; -+ struct blk_trace *blk_trace; -+ struct blk_flush_queue *fq; -+ struct list_head requeue_list; -+ spinlock_t requeue_lock; -+ struct delayed_work requeue_work; -+ struct mutex sysfs_lock; -+ struct mutex sysfs_dir_lock; -+ struct list_head unused_hctx_list; -+ spinlock_t unused_hctx_lock; -+ int mq_freeze_depth; -+ struct bsg_class_device bsg_dev; -+ 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 bio_set bio_split; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct dentry *rqos_debugfs_dir; -+ bool mq_sysfs_init_done; -+ size_t cmd_size; -+ u64 write_hints[5]; -+}; -+ -+struct cgroup_base_stat { -+ struct task_cputime cputime; -+}; -+ -+struct psi_group_cpu; -+ -+struct psi_group { -+ 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; -+ u64 total[12]; -+ long unsigned int avg[18]; -+ struct task_struct *poll_task; -+ struct timer_list poll_timer; -+ wait_queue_head_t poll_wait; -+ atomic_t poll_wakeup; -+ struct mutex trigger_lock; -+ struct list_head triggers; -+ u32 nr_triggers[6]; -+ u32 poll_states; -+ u64 poll_min_period; -+ u64 polling_total[6]; -+ u64 polling_next_update; -+ u64 polling_until; -+}; -+ -+struct cgroup_bpf { -+ struct bpf_prog_array *effective[41]; -+ struct list_head progs[41]; -+ u32 flags[41]; -+ 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 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; -+ struct kernfs_node *kn; -+ struct cgroup_file procs_file; -+ struct cgroup_file events_file; -+ u16 subtree_control; -+ u16 subtree_ss_mask; -+ u16 old_subtree_control; -+ u16 old_subtree_ss_mask; -+ struct cgroup_subsys_state *subsys[14]; -+ struct cgroup_root *root; -+ struct list_head cset_links; -+ struct list_head e_csets[14]; -+ struct cgroup *dom_cgrp; -+ struct cgroup *old_dom_cgrp; -+ struct cgroup_rstat_cpu *rstat_cpu; -+ struct list_head rstat_css_list; -+ 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; -+ atomic_t congestion_count; -+ struct cgroup_freezer_state freezer; -+ u64 ancestor_ids[0]; -+}; -+ -+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]; -+ int: 32; -+ __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; -+}; -+ -+typedef struct { -+ __u8 b[16]; -+} guid_t; -+ -+struct wait_page_queue { -+ struct page *page; -+ int bit_nr; -+ wait_queue_entry_t wait; -+}; -+ -+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 for_reclaim: 1; -+ unsigned int range_cyclic: 1; -+ unsigned int for_sync: 1; -+ unsigned int no_cgroup_owner: 1; -+ unsigned int punt_to_cgroup: 1; -+ 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 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; -+}; -+ -+struct iovec; -+ -+struct kvec; -+ -+struct bio_vec; -+ -+struct iov_iter { -+ u8 iter_type; -+ bool data_source; -+ size_t iov_offset; -+ size_t count; -+ union { -+ const struct iovec *iov; -+ const struct kvec *kvec; -+ const struct bio_vec *bvec; -+ struct xarray *xarray; -+ struct pipe_inode_info *pipe; -+ }; -+ union { -+ long unsigned int nr_segs; -+ struct { -+ unsigned int head; -+ unsigned int start_head; -+ }; -+ loff_t xarray_start; -+ }; -+}; -+ -+struct swap_cluster_info { -+ spinlock_t lock; -+ unsigned int data: 24; -+ unsigned int flags: 8; -+}; -+ -+struct swap_cluster_list { -+ struct swap_cluster_info head; -+ struct swap_cluster_info tail; -+}; -+ -+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; -+ struct swap_cluster_info *cluster_info; -+ struct swap_cluster_list free_clusters; -+ 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; -+ unsigned int old_block_size; -+ struct completion comp; -+ long unsigned int *frontswap_map; -+ atomic_t frontswap_pages; -+ spinlock_t lock; -+ spinlock_t cont_lock; -+ struct work_struct discard_work; -+ struct swap_cluster_list discard_clusters; -+ struct plist_node avail_lists[0]; -+}; -+ -+struct cdev { -+ struct kobject kobj; -+ struct module *owner; -+ const struct file_operations *ops; -+ struct list_head list; -+ dev_t dev; -+ unsigned int count; -+}; -+ -+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, -+}; -+ -+struct wakeup_source; -+ -+struct wake_irq; -+ -+struct pm_subsys_data; -+ -+struct dev_pm_qos; -+ -+struct dev_pm_info { -+ pm_message_t power_state; -+ unsigned int can_wakeup: 1; -+ unsigned int 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; -+ unsigned int must_resume: 1; -+ unsigned int may_skip_resume: 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; -+ unsigned int idle_notification: 1; -+ unsigned int request_pending: 1; -+ unsigned int deferred_resume: 1; -+ unsigned int needs_force_resume: 1; -+ unsigned int runtime_auto: 1; -+ bool ignore_children: 1; -+ unsigned int no_callbacks: 1; -+ unsigned int irq_safe: 1; -+ unsigned int use_autosuspend: 1; -+ unsigned int timer_autosuspends: 1; -+ unsigned int memalloc_noio: 1; -+ unsigned int links_count; -+ enum rpm_request request; -+ enum rpm_status runtime_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; -+}; -+ -+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 em_perf_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 class; -+ -+struct iommu_group; -+ -+struct dev_iommu; -+ -+struct device { -+ struct kobject kobj; -+ struct device *parent; -+ struct device_private *p; -+ const char *init_name; -+ const struct device_type *type; -+ 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 irq_domain *msi_domain; -+ struct dev_pin_info *pins; -+ raw_spinlock_t msi_lock; -+ struct list_head msi_list; -+ 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 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; -+ struct class *class; -+ const struct attribute_group **groups; -+ void (*release)(struct device *); -+ struct iommu_group *iommu_group; -+ struct dev_iommu *iommu; -+ enum device_removable removable; -+ bool offline_disabled: 1; -+ bool offline: 1; -+ bool of_node_reused: 1; -+ bool state_synced: 1; -+ bool can_match: 1; -+}; -+ -+struct disk_stats; -+ -+struct gendisk; -+ -+struct partition_meta_info; -+ -+struct block_device { -+ sector_t bd_start_sect; -+ struct disk_stats *bd_stats; -+ long unsigned int bd_stamp; -+ bool bd_read_only; -+ dev_t bd_dev; -+ int bd_openers; -+ struct inode *bd_inode; -+ struct super_block *bd_super; -+ void *bd_claiming; -+ struct device bd_device; -+ void *bd_holder; -+ int bd_holders; -+ bool bd_write_holder; -+ struct list_head bd_holder_disks; -+ struct kobject *bd_holder_dir; -+ u8 bd_partno; -+ spinlock_t bd_size_lock; -+ struct gendisk *bd_disk; -+ struct backing_dev_info *bd_bdi; -+ int bd_fsfreeze_count; -+ struct mutex bd_fsfreeze_mutex; -+ struct super_block *bd_fsfreeze_sb; -+ struct partition_meta_info *bd_meta_info; -+}; -+ -+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; -+ unsigned int lsm_flags; -+ enum fs_context_purpose purpose: 8; -+ enum fs_context_phase phase: 8; -+ bool need_free: 1; -+ bool global: 1; -+ bool oldapi: 1; -+}; -+ -+struct audit_names; -+ -+struct filename { -+ const char *name; -+ const char *uptr; -+ int refcnt; -+ struct audit_names *aname; -+ const char iname[0]; -+}; -+ -+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; -+}; -+ -+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 bio_integrity_payload; -+ -+struct bio { -+ struct bio *bi_next; -+ struct block_device *bi_bdev; -+ unsigned int bi_opf; -+ short unsigned int bi_flags; -+ short unsigned int bi_ioprio; -+ short unsigned int bi_write_hint; -+ blk_status_t bi_status; -+ atomic_t __bi_remaining; -+ struct bvec_iter bi_iter; -+ bio_end_io_t *bi_end_io; -+ void *bi_private; -+ struct blkcg_gq *bi_blkg; -+ struct bio_issue bi_issue; -+ union { -+ 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]; -+}; -+ -+struct linux_binprm { -+ struct vm_area_struct *vma; -+ long unsigned int vma_pages; -+ struct mm_struct *mm; -+ long unsigned int p; -+ long unsigned int argmin; -+ unsigned int have_execfd: 1; -+ unsigned int execfd_creds: 1; -+ unsigned int secureexec: 1; -+ unsigned int point_of_no_return: 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]; -+}; -+ -+struct coredump_params { -+ const kernel_siginfo_t *siginfo; -+ struct pt_regs *regs; -+ struct file *file; -+ long unsigned int limit; -+ long unsigned int mm_flags; -+ loff_t written; -+ loff_t pos; -+ loff_t to_skip; -+}; -+ -+struct em_perf_state { -+ long unsigned int frequency; -+ long unsigned int power; -+ long unsigned int cost; -+}; -+ -+struct em_perf_domain { -+ struct em_perf_state *table; -+ int nr_perf_states; -+ int milliwatts; -+ long unsigned int cpus[0]; -+}; -+ -+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 *); -+}; -+ -+struct iommu_ops; -+ -+struct subsys_private; -+ -+struct bus_type { -+ const char *name; -+ const char *dev_name; -+ struct device *dev_root; -+ const struct attribute_group **bus_groups; -+ const struct attribute_group **dev_groups; -+ const struct attribute_group **drv_groups; -+ int (*match)(struct device *, struct device_driver *); -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ int (*probe)(struct device *); -+ void (*sync_state)(struct device *); -+ int (*remove)(struct device *); -+ void (*shutdown)(struct device *); -+ 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 *); -+ const struct dev_pm_ops *pm; -+ const struct iommu_ops *iommu_ops; -+ struct subsys_private *p; -+ struct lock_class_key lock_key; -+ 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; -+ 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; -+}; -+ -+enum iommu_cap { -+ IOMMU_CAP_CACHE_COHERENCY = 0, -+ IOMMU_CAP_INTR_REMAP = 1, -+ IOMMU_CAP_NOEXEC = 2, -+}; -+ -+typedef u64 dma_addr_t; -+ -+enum iommu_dev_features { -+ IOMMU_DEV_FEAT_AUX = 0, -+ IOMMU_DEV_FEAT_SVA = 1, -+ IOMMU_DEV_FEAT_IOPF = 2, -+}; -+ -+struct iommu_domain; -+ -+struct iommu_iotlb_gather; -+ -+struct iommu_device; -+ -+struct iommu_resv_region; -+ -+struct of_phandle_args; -+ -+struct iommu_sva; -+ -+struct iommu_fault_event; -+ -+struct iommu_page_response; -+ -+struct iommu_cache_invalidate_info; -+ -+struct iommu_gpasid_bind_data; -+ -+struct iommu_ops { -+ bool (*capable)(enum iommu_cap); -+ struct iommu_domain * (*domain_alloc)(unsigned int); -+ void (*domain_free)(struct iommu_domain *); -+ int (*attach_dev)(struct iommu_domain *, struct device *); -+ void (*detach_dev)(struct iommu_domain *, struct device *); -+ int (*map)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, int, gfp_t); -+ int (*map_pages)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); -+ size_t (*unmap)(struct iommu_domain *, long unsigned int, size_t, struct iommu_iotlb_gather *); -+ 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 *); -+ void (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); -+ void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); -+ phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); -+ struct iommu_device * (*probe_device)(struct device *); -+ void (*release_device)(struct device *); -+ void (*probe_finalize)(struct device *); -+ struct iommu_group * (*device_group)(struct device *); -+ int (*enable_nesting)(struct iommu_domain *); -+ int (*set_pgtable_quirks)(struct iommu_domain *, long unsigned int); -+ void (*get_resv_regions)(struct device *, struct list_head *); -+ void (*put_resv_regions)(struct device *, struct list_head *); -+ void (*apply_resv_region)(struct device *, struct iommu_domain *, struct iommu_resv_region *); -+ int (*of_xlate)(struct device *, struct of_phandle_args *); -+ bool (*is_attach_deferred)(struct iommu_domain *, struct device *); -+ bool (*dev_has_feat)(struct device *, enum iommu_dev_features); -+ bool (*dev_feat_enabled)(struct device *, enum iommu_dev_features); -+ int (*dev_enable_feat)(struct device *, enum iommu_dev_features); -+ int (*dev_disable_feat)(struct device *, enum iommu_dev_features); -+ int (*aux_attach_dev)(struct iommu_domain *, struct device *); -+ void (*aux_detach_dev)(struct iommu_domain *, struct device *); -+ int (*aux_get_pasid)(struct iommu_domain *, struct device *); -+ struct iommu_sva * (*sva_bind)(struct device *, struct mm_struct *, void *); -+ void (*sva_unbind)(struct iommu_sva *); -+ u32 (*sva_get_pasid)(struct iommu_sva *); -+ int (*page_response)(struct device *, struct iommu_fault_event *, struct iommu_page_response *); -+ int (*cache_invalidate)(struct iommu_domain *, struct device *, struct iommu_cache_invalidate_info *); -+ int (*sva_bind_gpasid)(struct iommu_domain *, struct device *, struct iommu_gpasid_bind_data *); -+ int (*sva_unbind_gpasid)(struct device *, u32); -+ int (*def_domain_type)(struct device *); -+ long unsigned int pgsize_bitmap; -+ struct module *owner; -+}; -+ -+struct device_type { -+ const char *name; -+ const struct attribute_group **groups; -+ int (*uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *, kuid_t *, kgid_t *); -+ void (*release)(struct device *); -+ const struct dev_pm_ops *pm; -+}; -+ -+struct class { -+ const char *name; -+ struct module *owner; -+ const struct attribute_group **class_groups; -+ const struct attribute_group **dev_groups; -+ struct kobject *dev_kobj; -+ int (*dev_uevent)(struct device *, struct kobj_uevent_env *); -+ char * (*devnode)(struct device *, umode_t *); -+ void (*class_release)(struct class *); -+ void (*dev_release)(struct device *); -+ int (*shutdown_pre)(struct device *); -+ const struct kobj_ns_type_operations *ns_type; -+ const void * (*namespace)(struct device *); -+ void (*get_ownership)(struct device *, kuid_t *, kgid_t *); -+ const struct dev_pm_ops *pm; -+ struct subsys_private *p; -+}; -+ -+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[9]; -+ 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 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)(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); -+ struct sg_table * (*alloc_noncontiguous)(struct device *, size_t, enum dma_data_direction, gfp_t, long unsigned int); -+ void (*free_noncontiguous)(struct device *, size_t, struct sg_table *, 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 *); -+ long unsigned int (*get_merge_boundary)(struct device *); -+}; -+ -+struct bus_dma_region { -+ phys_addr_t cpu_start; -+ dma_addr_t dma_start; -+ u64 size; -+ u64 offset; -+}; -+ -+typedef u32 phandle; -+ -+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 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; -+}; -+ -+enum cpuhp_state { -+ CPUHP_INVALID = 4294967295, -+ 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_APB_DEAD = 8, -+ CPUHP_X86_MCE_DEAD = 9, -+ CPUHP_VIRT_NET_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_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_PCI_XGENE_DEAD = 32, -+ CPUHP_IOMMU_IOVA_DEAD = 33, -+ CPUHP_LUSTRE_CFS_DEAD = 34, -+ CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 35, -+ CPUHP_PADATA_DEAD = 36, -+ CPUHP_WORKQUEUE_PREP = 37, -+ CPUHP_POWER_NUMA_PREPARE = 38, -+ CPUHP_HRTIMERS_PREPARE = 39, -+ CPUHP_PROFILE_PREPARE = 40, -+ CPUHP_X2APIC_PREPARE = 41, -+ CPUHP_SMPCFD_PREPARE = 42, -+ CPUHP_RELAY_PREPARE = 43, -+ CPUHP_SLAB_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_NET_FLOW_PREPARE = 54, -+ CPUHP_TOPOLOGY_PREPARE = 55, -+ CPUHP_NET_IUCV_PREPARE = 56, -+ CPUHP_ARM_BL_PREPARE = 57, -+ CPUHP_TRACE_RB_PREPARE = 58, -+ CPUHP_MM_ZS_PREPARE = 59, -+ CPUHP_MM_ZSWP_MEM_PREPARE = 60, -+ CPUHP_MM_ZSWP_POOL_PREPARE = 61, -+ CPUHP_KVM_PPC_BOOK3S_PREPARE = 62, -+ CPUHP_ZCOMP_PREPARE = 63, -+ CPUHP_TIMERS_PREPARE = 64, -+ CPUHP_MIPS_SOC_PREPARE = 65, -+ CPUHP_BP_PREPARE_DYN = 66, -+ CPUHP_BP_PREPARE_DYN_END = 86, -+ CPUHP_BRINGUP_CPU = 87, -+ CPUHP_AP_IDLE_DEAD = 88, -+ CPUHP_AP_OFFLINE = 89, -+ CPUHP_AP_SCHED_STARTING = 90, -+ CPUHP_AP_RCUTREE_DYING = 91, -+ CPUHP_AP_CPU_PM_STARTING = 92, -+ CPUHP_AP_IRQ_GIC_STARTING = 93, -+ CPUHP_AP_IRQ_HIP04_STARTING = 94, -+ CPUHP_AP_IRQ_APPLE_AIC_STARTING = 95, -+ CPUHP_AP_IRQ_ARMADA_XP_STARTING = 96, -+ CPUHP_AP_IRQ_BCM2836_STARTING = 97, -+ CPUHP_AP_IRQ_MIPS_GIC_STARTING = 98, -+ CPUHP_AP_IRQ_RISCV_STARTING = 99, -+ CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 100, -+ CPUHP_AP_ARM_MVEBU_COHERENCY = 101, -+ CPUHP_AP_MICROCODE_LOADER = 102, -+ CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 103, -+ CPUHP_AP_PERF_X86_STARTING = 104, -+ CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 105, -+ CPUHP_AP_PERF_X86_CQM_STARTING = 106, -+ CPUHP_AP_PERF_X86_CSTATE_STARTING = 107, -+ CPUHP_AP_PERF_XTENSA_STARTING = 108, -+ CPUHP_AP_MIPS_OP_LOONGSON3_STARTING = 109, -+ CPUHP_AP_ARM_SDEI_STARTING = 110, -+ CPUHP_AP_ARM_VFP_STARTING = 111, -+ CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 112, -+ CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 113, -+ CPUHP_AP_PERF_ARM_ACPI_STARTING = 114, -+ CPUHP_AP_PERF_ARM_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_GLOBAL_TIMER_STARTING = 119, -+ CPUHP_AP_JCORE_TIMER_STARTING = 120, -+ CPUHP_AP_ARM_TWD_STARTING = 121, -+ CPUHP_AP_QCOM_TIMER_STARTING = 122, -+ CPUHP_AP_TEGRA_TIMER_STARTING = 123, -+ CPUHP_AP_ARMADA_TIMER_STARTING = 124, -+ CPUHP_AP_MARCO_TIMER_STARTING = 125, -+ CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, -+ CPUHP_AP_ARC_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_KVM_STARTING = 133, -+ CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING = 134, -+ CPUHP_AP_KVM_ARM_VGIC_STARTING = 135, -+ CPUHP_AP_KVM_ARM_TIMER_STARTING = 136, -+ CPUHP_AP_DUMMY_TIMER_STARTING = 137, -+ CPUHP_AP_ARM_XEN_STARTING = 138, -+ CPUHP_AP_ARM_CORESIGHT_STARTING = 139, -+ CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 140, -+ CPUHP_AP_ARM64_ISNDEP_STARTING = 141, -+ CPUHP_AP_SMPCFD_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_SCHED_WAIT_EMPTY = 148, -+ CPUHP_AP_SMPBOOT_THREADS = 149, -+ CPUHP_AP_X86_VDSO_VMA_ONLINE = 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_X86_RAPL_ONLINE = 160, -+ CPUHP_AP_PERF_X86_CQM_ONLINE = 161, -+ CPUHP_AP_PERF_X86_CSTATE_ONLINE = 162, -+ CPUHP_AP_PERF_X86_IDXD_ONLINE = 163, -+ CPUHP_AP_PERF_S390_CF_ONLINE = 164, -+ CPUHP_AP_PERF_S390_SF_ONLINE = 165, -+ CPUHP_AP_PERF_ARM_CCI_ONLINE = 166, -+ CPUHP_AP_PERF_ARM_CCN_ONLINE = 167, -+ CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 168, -+ CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 169, -+ CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 170, -+ CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 171, -+ CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 172, -+ CPUHP_AP_PERF_ARM_L2X0_ONLINE = 173, -+ CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 174, -+ CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 175, -+ CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 176, -+ CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 177, -+ CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 178, -+ CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 179, -+ CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 180, -+ CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 181, -+ CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 182, -+ CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 183, -+ CPUHP_AP_PERF_CSKY_ONLINE = 184, -+ CPUHP_AP_WATCHDOG_ONLINE = 185, -+ CPUHP_AP_WORKQUEUE_ONLINE = 186, -+ CPUHP_AP_RCUTREE_ONLINE = 187, -+ CPUHP_AP_BASE_CACHEINFO_ONLINE = 188, -+ CPUHP_AP_ONLINE_DYN = 189, -+ CPUHP_AP_ONLINE_DYN_END = 219, -+ CPUHP_AP_X86_HPET_ONLINE = 220, -+ CPUHP_AP_X86_KVM_CLK_ONLINE = 221, -+ CPUHP_AP_DTPM_CPU_ONLINE = 222, -+ CPUHP_AP_ACTIVE = 223, -+ CPUHP_ONLINE = 224, -+}; -+ -+struct ring_buffer_event { -+ u32 type_len: 5; -+ u32 time_delta: 27; -+ u32 array[0]; -+}; -+ -+struct seq_buf { -+ char *buffer; -+ size_t size; -+ size_t len; -+ loff_t readpos; -+}; -+ -+struct trace_seq { -+ char buffer[4096]; -+ struct seq_buf seq; -+ 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_rsvd: 21; -+ }; -+}; -+ -+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 reserved: 40; -+}; -+ -+union perf_sample_weight { -+ __u64 full; -+ struct { -+ __u32 var1_dw; -+ __u16 var2_w; -+ __u16 var3_w; -+ }; -+}; -+ -+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 cgroup_namespace { -+ struct ns_common ns; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct css_set *root_cset; -+}; -+ -+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 *); -+}; -+ -+struct perf_cpu_context; -+ -+struct perf_output_handle; -+ -+struct pmu { -+ struct list_head entry; -+ struct module *module; -+ struct device *dev; -+ const struct attribute_group **attr_groups; -+ const struct attribute_group **attr_update; -+ const char *name; -+ int type; -+ int capabilities; -+ int *pmu_disable_count; -+ struct perf_cpu_context *pmu_cpu_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_context *, bool); -+ struct kmem_cache *task_ctx_cache; -+ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_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 *); -+ int (*filter_match)(struct perf_event *); -+ int (*check_period)(struct perf_event *, u64); -+}; -+ -+struct ftrace_regs { -+ struct pt_regs regs; -+}; -+ -+struct iovec { -+ void *iov_base; -+ __kernel_size_t iov_len; -+}; -+ -+struct kvec { -+ void *iov_base; -+ size_t iov_len; -+}; -+ -+struct perf_regs { -+ __u64 abi; -+ struct pt_regs *regs; -+}; -+ -+struct u64_stats_sync {}; -+ -+struct bpf_cgroup_storage_key { -+ __u64 cgroup_inode_id; -+ __u32 attach_type; -+}; -+ -+enum kmalloc_cache_type { -+ KMALLOC_NORMAL = 0, -+ KMALLOC_CGROUP = 1, -+ KMALLOC_RECLAIM = 2, -+ KMALLOC_DMA = 3, -+ NR_KMALLOC_TYPES = 4, -+}; -+ -+struct bpf_cgroup_storage; -+ -+struct bpf_prog_array_item { -+ struct bpf_prog *prog; -+ struct bpf_cgroup_storage *cgroup_storage[2]; -+}; -+ -+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_prog_array { -+ struct callback_head rcu; -+ struct bpf_prog_array_item items[0]; -+}; -+ -+struct bpf_storage_buffer { -+ struct callback_head rcu; -+ char data[0]; -+}; -+ -+struct psi_group_cpu { -+ seqcount_t seq; -+ unsigned int tasks[4]; -+ u32 state_mask; -+ u32 times[7]; -+ u64 state_start; -+ u32 times_prev[14]; -+ long: 64; -+}; -+ -+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_rstat_flush)(struct cgroup_subsys_state *, int); -+ int (*css_extra_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)(); -+ 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 *updated_children; -+ struct cgroup *updated_next; -+}; -+ -+struct cgroup_root { -+ struct kernfs_root *kf_root; -+ unsigned int subsys_mask; -+ int hierarchy_id; -+ struct cgroup cgrp; -+ u64 cgrp_ancestor_id_storage; -+ atomic_t nr_cgrps; -+ struct list_head root_list; -+ unsigned int flags; -+ char release_agent_path[4096]; -+ char name[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 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_context { -+ struct perf_event_context ctx; -+ struct perf_event_context *task_ctx; -+ int active_oncpu; -+ int exclusive; -+ raw_spinlock_t hrtimer_lock; -+ struct hrtimer hrtimer; -+ ktime_t hrtimer_interval; -+ unsigned int hrtimer_active; -+ struct perf_cgroup *cgrp; -+ struct list_head cgrp_cpuctx_entry; -+ struct list_head sched_cb_entry; -+ int sched_cb_usage; -+ int online; -+ int heap_size; -+ struct perf_event **heap; -+ struct perf_event *heap_default[2]; -+}; -+ -+struct perf_output_handle { -+ struct perf_event *event; -+ struct perf_buffer *rb; -+ long unsigned int wakeup; -+ long unsigned int size; -+ u64 aux_flags; -+ 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 addr; -+ struct perf_raw_record *raw; -+ struct perf_branch_stack *br_stack; -+ u64 period; -+ union perf_sample_weight weight; -+ u64 txn; -+ union perf_mem_data_src data_src; -+ u64 type; -+ u64 ip; -+ struct { -+ u32 pid; -+ u32 tid; -+ } tid_entry; -+ u64 time; -+ u64 id; -+ u64 stream_id; -+ struct { -+ u32 cpu; -+ u32 reserved; -+ } cpu_entry; -+ struct perf_callchain_entry *callchain; -+ u64 aux_size; -+ struct perf_regs regs_user; -+ struct perf_regs regs_intr; -+ u64 stack_user_size; -+ u64 phys_addr; -+ u64 cgroup; -+ u64 data_page_size; -+ u64 code_page_size; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+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; -+ struct trace_seq tmp_seq; -+ cpumask_var_t started; -+ 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 int is_signed; -+ const int filter_type; -+ }; -+ 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 *); -+}; -+ -+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 trace_subsystem_dir; -+ -+struct trace_event_file { -+ struct list_head list; -+ struct trace_event_call *event_call; -+ struct event_filter *filter; -+ struct dentry *dir; -+ struct trace_array *tr; -+ struct trace_subsystem_dir *system; -+ struct list_head triggers; -+ long unsigned int flags; -+ atomic_t sm_ref; -+ atomic_t tm_ref; -+}; -+ -+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_KPROBE_BIT = 5, -+ TRACE_EVENT_FL_UPROBE_BIT = 6, -+}; -+ -+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_KPROBE = 32, -+ TRACE_EVENT_FL_UPROBE = 64, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ FILTER_OTHER = 0, -+ FILTER_STATIC_STRING = 1, -+ FILTER_DYN_STRING = 2, -+ FILTER_PTR_STRING = 3, -+ FILTER_TRACE_FN = 4, -+ FILTER_COMM = 5, -+ FILTER_CPU = 6, -+}; -+ -+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 (*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 *); -+ 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[8]; -+}; -+ -+struct property { -+ char *name; -+ int length; -+ void *value; -+ struct property *next; -+}; -+ -+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 xbc_node { -+ u16 next; -+ u16 child; -+ u16 parent; -+ u16 data; -+}; -+ -+enum wb_stat_item { -+ WB_RECLAIMABLE = 0, -+ WB_WRITEBACK = 1, -+ WB_DIRTIED = 2, -+ WB_WRITTEN = 3, -+ NR_WB_STAT_ITEMS = 4, -+}; -+ -+struct block_device_operations; -+ -+struct timer_rand_state; -+ -+struct disk_events; -+ -+struct cdrom_device_info; -+ -+struct badblocks; -+ -+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; -+ int flags; -+ long unsigned int state; -+ struct mutex open_mutex; -+ unsigned int open_partitions; -+ struct kobject *slave_dir; -+ struct timer_rand_state *random; -+ atomic_t sync_io; -+ struct disk_events *ev; -+ struct kobject integrity_kobj; -+ struct cdrom_device_info *cdi; -+ int node_id; -+ struct badblocks *bb; -+ struct lockdep_map lockdep_map; -+}; -+ -+struct partition_meta_info { -+ char uuid[37]; -+ u8 volname[64]; -+}; -+ -+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; -+ struct bvec_iter bio_iter; -+ struct work_struct bip_work; -+ struct bio_vec *bip_vec; -+ struct bio_vec bip_inline_vecs[0]; -+}; -+ -+struct blkg_iostat { -+ u64 bytes[3]; -+ u64 ios[3]; -+}; -+ -+struct blkg_iostat_set { -+ struct u64_stats_sync sync; -+ 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; -+ struct work_struct async_bio_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 unsigned int blk_qc_t; -+ -+struct blk_integrity_iter; -+ -+typedef blk_status_t integrity_processing_fn(struct blk_integrity_iter *); -+ -+typedef void integrity_prepare_fn(struct request *); -+ -+typedef void integrity_complete_fn(struct request *, unsigned int); -+ -+struct blk_integrity_profile { -+ integrity_processing_fn *generate_fn; -+ integrity_processing_fn *verify_fn; -+ integrity_prepare_fn *prepare_fn; -+ integrity_complete_fn *complete_fn; -+ const char *name; -+}; -+ -+struct blk_zone; -+ -+typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); -+ -+struct hd_geometry; -+ -+struct pr_ops; -+ -+struct block_device_operations { -+ blk_qc_t (*submit_bio)(struct bio *); -+ int (*open)(struct block_device *, fmode_t); -+ void (*release)(struct gendisk *, fmode_t); -+ int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); -+ int (*ioctl)(struct block_device *, fmode_t, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct block_device *, fmode_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 (*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 *); -+ struct module *owner; -+ const struct pr_ops *pr_ops; -+}; -+ -+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; -+}; -+ -+struct bsg_ops { -+ int (*check_proto)(struct sg_io_v4 *); -+ int (*fill_hdr)(struct request *, struct sg_io_v4 *, fmode_t); -+ int (*complete_rq)(struct request *, struct sg_io_v4 *); -+ void (*free_rq)(struct request *); -+}; -+ -+typedef __u32 req_flags_t; -+ -+typedef void rq_end_io_fn(struct request *, blk_status_t); -+ -+enum mq_rq_state { -+ MQ_RQ_IDLE = 0, -+ MQ_RQ_IN_FLIGHT = 1, -+ MQ_RQ_COMPLETE = 2, -+}; -+ -+struct request { -+ struct request_queue *q; -+ struct blk_mq_ctx *mq_ctx; -+ struct blk_mq_hw_ctx *mq_hctx; -+ unsigned int cmd_flags; -+ req_flags_t rq_flags; -+ int tag; -+ int internal_tag; -+ unsigned int __data_len; -+ sector_t __sector; -+ struct bio *bio; -+ struct bio *biotail; -+ struct list_head queuelist; -+ union { -+ struct hlist_node hash; -+ struct llist_node ipi_list; -+ }; -+ union { -+ struct rb_node rb_node; -+ struct bio_vec special_vec; -+ void *completion_data; -+ int error_count; -+ }; -+ union { -+ struct { -+ struct io_cq *icq; -+ void *priv[2]; -+ } elv; -+ struct { -+ unsigned int seq; -+ struct list_head list; -+ rq_end_io_fn *saved_end_io; -+ } flush; -+ }; -+ struct gendisk *rq_disk; -+ struct block_device *part; -+ 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; -+ short unsigned int write_hint; -+ short unsigned int ioprio; -+ enum mq_rq_state state; -+ refcount_t ref; -+ unsigned int timeout; -+ long unsigned int deadline; -+ union { -+ struct __call_single_data csd; -+ u64 fifo_time; -+ }; -+ rq_end_io_fn *end_io; -+ void *end_io_data; -+}; -+ -+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]; -+}; -+ -+struct sbitmap_word { -+ long unsigned int depth; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int word; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long unsigned int cleared; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct sbq_wait_state { -+ atomic_t wait_cnt; -+ wait_queue_head_t wait; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum elv_merge { -+ ELEVATOR_NO_MERGE = 0, -+ ELEVATOR_FRONT_MERGE = 1, -+ ELEVATOR_BACK_MERGE = 2, -+ ELEVATOR_DISCARD_MERGE = 3, -+}; -+ -+struct elevator_type; -+ -+struct blk_mq_alloc_data; -+ -+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)(unsigned int, 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 *, bool); -+ 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 blk_mq_debugfs_attr; -+ -+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; -+ const unsigned int elevator_features; -+ 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 elevator_queue { -+ struct elevator_type *type; -+ void *elevator_data; -+ struct kobject kobj; -+ struct mutex sysfs_lock; -+ unsigned int registered: 1; -+ struct hlist_head hash[64]; -+}; -+ -+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 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 blk_eh_timer_return { -+ BLK_EH_DONE = 0, -+ BLK_EH_RESET_TIMER = 1, -+}; -+ -+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 *); -+ 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 *, bool); -+ int (*poll)(struct blk_mq_hw_ctx *); -+ 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 (*initialize_rq_fn)(struct request *); -+ void (*cleanup_rq)(struct request *); -+ bool (*busy)(struct request_queue *); -+ int (*map_queues)(struct blk_mq_tag_set *); -+ void (*show_rq)(struct seq_file *, struct request *); -+}; -+ -+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; -+}; -+ -+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_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); -+}; -+ -+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; -+ 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; -+ char fc_app_id[129]; -+ struct list_head cgwb_list; -+}; -+ -+struct blkcg_policy_data { -+ struct blkcg *blkcg; -+ int plid; -+}; -+ -+struct blkg_policy_data { -+ struct blkcg_gq *blkg; -+ int plid; -+}; -+ -+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 mokvar_table; -+ 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; -+}; -+ -+enum memcg_stat_item { -+ MEMCG_SWAP = 39, -+ MEMCG_SOCK = 40, -+ MEMCG_PERCPU_B = 41, -+ MEMCG_NR_STAT = 42, -+}; -+ -+enum memcg_memory_event { -+ MEMCG_LOW = 0, -+ MEMCG_HIGH = 1, -+ MEMCG_MAX = 2, -+ MEMCG_OOM = 3, -+ MEMCG_OOM_KILL = 4, -+ MEMCG_SWAP_HIGH = 5, -+ MEMCG_SWAP_MAX = 6, -+ MEMCG_SWAP_FAIL = 7, -+ MEMCG_NR_MEMORY_EVENTS = 8, -+}; -+ -+enum mem_cgroup_events_target { -+ MEM_CGROUP_TARGET_THRESH = 0, -+ MEM_CGROUP_TARGET_SOFTLIMIT = 1, -+ MEM_CGROUP_NTARGETS = 2, -+}; -+ -+struct memcg_vmstats_percpu { -+ long int state[42]; -+ long unsigned int events[100]; -+ long int state_prev[42]; -+ long unsigned int events_prev[100]; -+ long unsigned int nr_page_events; -+ long unsigned int targets[2]; -+}; -+ -+struct mem_cgroup_reclaim_iter { -+ struct mem_cgroup *position; -+ unsigned int generation; -+}; -+ -+struct lruvec_stat { -+ long int count[39]; -+}; -+ -+struct batched_lruvec_stat { -+ s32 count[39]; -+}; -+ -+struct shrinker_info { -+ struct callback_head rcu; -+ atomic_long_t *nr_deferred; -+ long unsigned int *map; -+}; -+ -+struct mem_cgroup_per_node { -+ struct lruvec lruvec; -+ struct lruvec_stat *lruvec_stat_local; -+ struct batched_lruvec_stat *lruvec_stat_cpu; -+ atomic_long_t lruvec_stat[39]; -+ long unsigned int lru_zone_size[25]; -+ struct mem_cgroup_reclaim_iter iter; -+ struct shrinker_info *shrinker_info; -+ struct rb_node tree_node; -+ long unsigned int usage_in_excess; -+ bool on_tree; -+ struct mem_cgroup *memcg; -+}; -+ -+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]; -+}; -+ -+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; -+ }; -+}; -+ -+struct percpu_cluster { -+ struct swap_cluster_info index; -+ unsigned int next; -+}; -+ -+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; -+ }; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+typedef __u16 __le16; -+ -+typedef __u16 __be16; -+ -+typedef __u32 __be32; -+ -+typedef __u64 __be64; -+ -+typedef __u32 __wsum; -+ -+typedef unsigned int slab_flags_t; -+ -+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; -+}; -+ -+struct raw_notifier_head { -+ struct notifier_block *head; -+}; -+ -+struct page_pool_params { -+ unsigned int flags; -+ unsigned int order; -+ unsigned int pool_size; -+ int nid; -+ struct device *dev; -+ enum dma_data_direction dma_dir; -+ unsigned int max_len; -+ unsigned int offset; -+}; -+ -+struct pp_alloc_cache { -+ u32 count; -+ struct page *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: 32; -+ 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 { -+ struct page_pool_params p; -+ struct delayed_work release_dw; -+ void (*disconnect)(void *); -+ long unsigned int defer_start; -+ long unsigned int defer_warn; -+ u32 pages_state_hold_cnt; -+ long: 32; -+ 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; -+ atomic_t pages_state_release_cnt; -+ refcount_t user_cnt; -+ u64 destroy_cnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef __u64 __addrpair; -+ -+typedef __u32 __portpair; -+ -+typedef struct { -+ struct net *net; -+} possible_net_t; -+ -+struct in6_addr { -+ union { -+ __u8 u6_addr8[16]; -+ __be16 u6_addr16[8]; -+ __be32 u6_addr32[4]; -+ } in6_u; -+}; -+ -+struct hlist_nulls_node { -+ struct hlist_nulls_node *next; -+ struct hlist_nulls_node **pprev; -+}; -+ -+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; -+ }; -+}; -+ -+typedef struct { -+ spinlock_t slock; -+ int owned; -+ wait_queue_head_t wq; -+} socket_lock_t; -+ -+struct sk_buff; -+ -+struct sk_buff_head { -+ struct sk_buff *next; -+ struct sk_buff *prev; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+typedef u64 netdev_features_t; -+ -+struct sock_cgroup_data { -+ union { -+ struct { -+ u8 is_data: 1; -+ u8 no_refcnt: 1; -+ u8 unused: 6; -+ u8 padding; -+ u16 prioidx; -+ u32 classid; -+ }; -+ u64 val; -+ }; -+}; -+ -+struct sk_filter; -+ -+struct socket_wq; -+ -+struct xfrm_policy; -+ -+struct dst_entry; -+ -+struct socket; -+ -+struct net_device; -+ -+struct sock_reuseport; -+ -+struct sock { -+ struct sock_common __sk_common; -+ socket_lock_t sk_lock; -+ atomic_t sk_drops; -+ int sk_rcvlowat; -+ struct sk_buff_head sk_error_queue; -+ struct sk_buff *sk_rx_skb_cache; -+ struct sk_buff_head sk_receive_queue; -+ struct { -+ atomic_t rmem_alloc; -+ int len; -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ } sk_backlog; -+ int sk_forward_alloc; -+ unsigned int sk_ll_usec; -+ unsigned int sk_napi_id; -+ int sk_rcvbuf; -+ struct sk_filter *sk_filter; -+ union { -+ struct socket_wq *sk_wq; -+ struct socket_wq *sk_wq_raw; -+ }; -+ struct xfrm_policy *sk_policy[2]; -+ struct dst_entry *sk_rx_dst; -+ struct dst_entry *sk_dst_cache; -+ 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 *sk_tx_skb_cache; -+ struct sk_buff_head sk_write_queue; -+ __s32 sk_peek_off; -+ int sk_write_pending; -+ __u32 sk_dst_pending_confirm; -+ u32 sk_pacing_status; -+ long int sk_sndtimeo; -+ struct timer_list sk_timer; -+ __u32 sk_priority; -+ __u32 sk_mark; -+ long unsigned int sk_pacing_rate; -+ long unsigned int sk_max_pacing_rate; -+ struct page_frag sk_frag; -+ netdev_features_t sk_route_caps; -+ netdev_features_t sk_route_nocaps; -+ netdev_features_t sk_route_forced_caps; -+ int sk_gso_type; -+ unsigned int sk_gso_max_size; -+ gfp_t sk_allocation; -+ __u32 sk_txhash; -+ u8 sk_padding: 1; -+ u8 sk_kern_sock: 1; -+ u8 sk_no_check_tx: 1; -+ u8 sk_no_check_rx: 1; -+ u8 sk_userlocks: 4; -+ u8 sk_pacing_shift; -+ u16 sk_type; -+ u16 sk_protocol; -+ u16 sk_gso_max_segs; -+ long unsigned int sk_lingertime; -+ struct proto *sk_prot_creator; -+ rwlock_t sk_callback_lock; -+ int sk_err; -+ int sk_err_soft; -+ u32 sk_ack_backlog; -+ u32 sk_max_ack_backlog; -+ kuid_t sk_uid; -+ u8 sk_prefer_busy_poll; -+ u16 sk_busy_poll_budget; -+ struct pid *sk_peer_pid; -+ const struct cred *sk_peer_cred; -+ long int sk_rcvtimeo; -+ ktime_t sk_stamp; -+ u16 sk_tsflags; -+ int sk_bind_phc; -+ u8 sk_shutdown; -+ u32 sk_tskey; -+ atomic_t sk_zckey; -+ u8 sk_clockid; -+ u8 sk_txtime_deadline_mode: 1; -+ u8 sk_txtime_report_errors: 1; -+ u8 sk_txtime_unused: 6; -+ struct socket *sk_socket; -+ void *sk_user_data; -+ void *sk_security; -+ struct sock_cgroup_data sk_cgrp_data; -+ struct mem_cgroup *sk_memcg; -+ void (*sk_state_change)(struct sock *); -+ void (*sk_data_ready)(struct sock *); -+ void (*sk_write_space)(struct sock *); -+ void (*sk_error_report)(struct sock *); -+ int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); -+ struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, 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; -+}; -+ -+struct rhash_head { -+ struct rhash_head *next; -+}; -+ -+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; -+}; -+ -+struct fs_struct { -+ int users; -+ spinlock_t lock; -+ seqcount_spinlock_t seq; -+ int umask; -+ int in_exec; -+ struct path root; -+ struct path pwd; -+}; -+ -+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; -+ unsigned int head; -+ unsigned int tail; -+ unsigned int max_usage; -+ unsigned int ring_size; -+ bool note_loss; -+ unsigned int nr_accounted; -+ unsigned int readers; -+ unsigned int writers; -+ unsigned int files; -+ unsigned int r_counter; -+ unsigned int w_counter; -+ unsigned int 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 watch_queue *watch_queue; -+}; -+ -+typedef short unsigned int __kernel_sa_family_t; -+ -+typedef __kernel_sa_family_t sa_family_t; -+ -+struct sockaddr { -+ sa_family_t sa_family; -+ char sa_data[14]; -+}; -+ -+struct msghdr { -+ void *msg_name; -+ int msg_namelen; -+ struct iov_iter msg_iter; -+ union { -+ void *msg_control; -+ void *msg_control_user; -+ }; -+ bool msg_control_is_user: 1; -+ __kernel_size_t msg_controllen; -+ unsigned int msg_flags; -+ struct kiocb *msg_iocb; -+}; -+ -+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 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_operations; -+ -+struct tty_ldisc; -+ -+struct tty_port; -+ -+struct tty_struct { -+ int magic; -+ struct kref kref; -+ struct device *dev; -+ struct tty_driver *driver; -+ const struct tty_operations *ops; -+ int index; -+ struct ld_semaphore ldisc_sem; -+ struct tty_ldisc *ldisc; -+ 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; -+ struct winsize winsize; -+ struct { -+ spinlock_t lock; -+ bool stopped; -+ bool tco_stopped; -+ long unsigned int unused[0]; -+ } flow; -+ struct { -+ spinlock_t lock; -+ struct pid *pgrp; -+ struct pid *session; -+ unsigned char pktstatus; -+ bool packet; -+ long unsigned int unused[0]; -+ } ctrl; -+ int hw_stopped; -+ unsigned int receive_room; -+ 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; -+ struct list_head tty_files; -+ int closing; -+ unsigned char *write_buf; -+ int write_cnt; -+ struct work_struct SAK_work; -+ struct tty_port *port; -+}; -+ -+typedef struct { -+ size_t written; -+ size_t count; -+ union { -+ char *buf; -+ void *data; -+ } arg; -+ int error; -+} read_descriptor_t; -+ -+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]; -+}; -+ -+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 *); -+ int (*write)(struct tty_struct *, const unsigned char *, int); -+ int (*put_char)(struct tty_struct *, unsigned char); -+ 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 *, 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 *); -+ void (*set_ldisc)(struct tty_struct *); -+ void (*wait_until_sent)(struct tty_struct *, int); -+ void (*send_xchar)(struct tty_struct *, char); -+ 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 proc_dir_entry; -+ -+struct tty_driver { -+ int magic; -+ 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; -+ }; -+ int used; -+ int size; -+ int commit; -+ int read; -+ int flags; -+ long unsigned int 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 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; -+ unsigned char *xmit_buf; -+ 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 flags; -+ int (*open)(struct tty_struct *); -+ void (*close)(struct tty_struct *); -+ void (*flush_buffer)(struct tty_struct *); -+ ssize_t (*read)(struct tty_struct *, struct file *, unsigned char *, size_t, void **, long unsigned int); -+ ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t); -+ int (*ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ int (*compat_ioctl)(struct tty_struct *, struct file *, unsigned int, long unsigned int); -+ void (*set_termios)(struct tty_struct *, struct ktermios *); -+ __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); -+ int (*hangup)(struct tty_struct *); -+ void (*receive_buf)(struct tty_struct *, const unsigned char *, const char *, int); -+ void (*write_wakeup)(struct tty_struct *); -+ void (*dcd_change)(struct tty_struct *, unsigned int); -+ int (*receive_buf2)(struct tty_struct *, const unsigned char *, const char *, int); -+ struct module *owner; -+}; -+ -+struct tty_ldisc { -+ struct tty_ldisc_ops *ops; -+ struct tty_struct *tty; -+}; -+ -+struct tty_port_operations { -+ int (*carrier_raised)(struct tty_port *); -+ void (*dtr_rts)(struct tty_port *, int); -+ void (*shutdown)(struct tty_port *); -+ int (*activate)(struct tty_port *, struct tty_struct *); -+ void (*destruct)(struct tty_port *); -+}; -+ -+struct tty_port_client_operations { -+ int (*receive_buf)(struct tty_port *, const unsigned char *, const unsigned char *, size_t); -+ void (*write_wakeup)(struct tty_port *); -+}; -+ -+struct prot_inuse; -+ -+struct netns_core { -+ struct ctl_table_header *sysctl_hdr; -+ int sysctl_somaxconn; -+ int *sock_inuse; -+ struct prot_inuse *prot_inuse; -+}; -+ -+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 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 netns_unix { -+ 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 { -+ atomic_t tw_count; -+ char tw_pad[60]; -+ struct inet_hashinfo *hashinfo; -+ int sysctl_max_tw_buckets; -+}; -+ -+struct local_ports { -+ seqlock_t lock; -+ int range[2]; -+ bool warned; -+}; -+ -+struct ping_group_range { -+ seqlock_t lock; -+ kgid_t range[2]; -+}; -+ -+typedef struct { -+ u64 key[2]; -+} siphash_key_t; -+ -+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 { -+ struct inet_timewait_death_row tcp_death_row; -+ 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; -+ int fib_num_tclassid_users; -+ struct hlist_head *fib_table_hash; -+ struct sock *fibnl; -+ struct sock **icmp_sk; -+ struct sock *mc_autojoin_sk; -+ struct inet_peer_base *peers; -+ struct sock **tcp_sk; -+ 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; -+ 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_use_pmtu; -+ u8 sysctl_ip_fwd_update_priority; -+ u8 sysctl_ip_nonlocal_bind; -+ u8 sysctl_ip_autobind_reuse; -+ u8 sysctl_ip_dynaddr; -+ u8 sysctl_ip_early_demux; -+ u8 sysctl_raw_l3mdev_accept; -+ u8 sysctl_tcp_early_demux; -+ 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_min_snd_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; -+ int sysctl_tcp_reordering; -+ u8 sysctl_tcp_retries1; -+ u8 sysctl_tcp_retries2; -+ u8 sysctl_tcp_orphan_retries; -+ u8 sysctl_tcp_tw_reuse; -+ int sysctl_tcp_fin_timeout; -+ unsigned int sysctl_tcp_notsent_lowat; -+ u8 sysctl_tcp_sack; -+ u8 sysctl_tcp_window_scaling; -+ u8 sysctl_tcp_timestamps; -+ u8 sysctl_tcp_early_retrans; -+ 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_moderate_rcvbuf; -+ u8 sysctl_tcp_tso_win_divisor; -+ u8 sysctl_tcp_workaround_signed_windows; -+ int sysctl_tcp_limit_output_bytes; -+ int sysctl_tcp_challenge_ack_limit; -+ int sysctl_tcp_min_rtt_wlen; -+ u8 sysctl_tcp_min_tso_segs; -+ u8 sysctl_tcp_autocorking; -+ u8 sysctl_tcp_reflect_tos; -+ u8 sysctl_tcp_comp_sack_nr; -+ int sysctl_tcp_invalid_ratelimit; -+ int sysctl_tcp_pacing_ss_ratio; -+ int sysctl_tcp_pacing_ca_ratio; -+ int sysctl_tcp_wmem[3]; -+ int sysctl_tcp_rmem[3]; -+ 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; -+ spinlock_t tcp_fastopen_ctx_lock; -+ unsigned int sysctl_tcp_fastopen_blackhole_timeout; -+ atomic_t tfo_active_disable_times; -+ long unsigned int tfo_active_disable_stamp; -+ int sysctl_udp_wmem_min; -+ int sysctl_udp_rmem_min; -+ u8 sysctl_fib_notify_on_flag_change; -+ 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; -+ long unsigned int *sysctl_local_reserved_ports; -+ int sysctl_ip_prot_sock; -+ struct list_head mr_tables; -+ struct fib_rules_ops *mr_rules_ops; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct neighbour; -+ -+struct dst_ops { -+ short unsigned int family; -+ unsigned int gc_thresh; -+ int (*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 *, int); -+ struct dst_entry * (*negative_advice)(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; -+ bool skip_notify_on_dev_down; -+ u8 fib_notify_on_flag_change; -+}; -+ -+struct ipv6_devconf; -+ -+struct fib6_info; -+ -+struct rt6_info; -+ -+struct rt6_statistics; -+ -+struct fib6_table; -+ -+struct seg6_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; -+ unsigned int ip6_rt_gc_expire; -+ long unsigned int ip6_rt_last_gc; -+ unsigned int fib6_rules_require_fldissect; -+ bool fib6_has_custom_rules; -+ 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 **icmp_sk; -+ struct sock *ndisc_sk; -+ struct sock *tcp_sk; -+ struct sock *igmp_sk; -+ struct sock *mc_autojoin_sk; -+ 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; -+ long: 64; -+ 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; -+}; -+ -+struct nf_queue_handler; -+ -+struct nf_logger; -+ -+struct nf_hook_entries; -+ -+struct netns_nf { -+ struct proc_dir_entry *proc_netfilter; -+ const struct nf_queue_handler *queue_handler; -+ const struct nf_logger *nf_loggers[13]; -+ struct ctl_table_header *nf_log_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]; -+}; -+ -+struct netns_xt { -+ bool notrack_deprecated_warning; -+ bool clusterip_deprecated_warning; -+}; -+ -+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_dccp_net { -+ u8 dccp_loose; -+ unsigned int dccp_timeout[10]; -+}; -+ -+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_dccp_net dccp; -+ struct nf_sctp_net sctp; -+ struct nf_gre_net gre; -+}; -+ -+struct ct_pcpu; -+ -+struct ip_conntrack_stat; -+ -+struct nf_ct_event_notifier; -+ -+struct nf_exp_event_notifier; -+ -+struct netns_ct { -+ bool ecache_dwork_pending; -+ u8 sysctl_log_invalid; -+ u8 sysctl_events; -+ u8 sysctl_acct; -+ u8 sysctl_auto_assign_helper; -+ u8 sysctl_tstamp; -+ u8 sysctl_checksum; -+ struct ct_pcpu *pcpu_lists; -+ struct ip_conntrack_stat *stat; -+ struct nf_ct_event_notifier *nf_conntrack_event_cb; -+ struct nf_exp_event_notifier *nf_expect_event_cb; -+ struct nf_ip_net nf_ct_proto; -+ unsigned int labels_used; -+}; -+ -+struct netns_nftables { -+ 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; -+ 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; -+ struct hlist_head policy_inexact[3]; -+ 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; -+ struct ctl_table_header *sysctl_hdr; -+ 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; -+ 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 uevent_sock; -+ -+struct net_generic; -+ -+struct net { -+ refcount_t passive; -+ spinlock_t rules_mod_lock; -+ unsigned int dev_unreg_count; -+ unsigned int dev_base_seq; -+ int ifindex; -+ spinlock_t nsid_lock; -+ atomic_t fnhe_genid; -+ struct list_head list; -+ struct list_head exit_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 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 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; -+ struct netns_ipv4 ipv4; -+ struct netns_ipv6 ipv6; -+ struct netns_ieee802154_lowpan ieee802154_lowpan; -+ struct netns_sctp sctp; -+ struct netns_nf nf; -+ struct netns_xt xt; -+ 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; -+ struct netns_xfrm xfrm; -+ u64 net_cookie; -+ struct netns_ipvs *ipvs; -+ struct netns_mpls mpls; -+ struct netns_can can; -+ struct netns_xdp xdp; -+ struct sock *crypto_nlsk; -+ struct sock *diag_nlsk; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct { -+ local64_t v; -+} u64_stats_t; -+ -+struct bpf_insn { -+ __u8 code; -+ __u8 dst_reg: 4; -+ __u8 src_reg: 4; -+ __s16 off; -+ __s32 imm; -+}; -+ -+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, -+ BPF_MAP_TYPE_TASK_STORAGE = 29, -+}; -+ -+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, -+}; -+ -+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, -+ __MAX_BPF_ATTACH_TYPE = 41, -+}; -+ -+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; -+ }; -+ 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; -+ }; -+ __u64 fd_array; -+ }; -+ struct { -+ __u64 pathname; -+ __u32 bpf_fd; -+ __u32 file_flags; -+ }; -+ struct { -+ __u32 target_fd; -+ __u32 attach_bpf_fd; -+ __u32 attach_type; -+ __u32 attach_flags; -+ __u32 replace_bpf_fd; -+ }; -+ 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; -+ } 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 { -+ __u32 target_fd; -+ __u32 attach_type; -+ __u32 query_flags; -+ __u32 attach_flags; -+ __u64 prog_ids; -+ __u32 prog_cnt; -+ } query; -+ struct { -+ __u64 name; -+ __u32 prog_fd; -+ } raw_tracepoint; -+ struct { -+ __u64 btf; -+ __u64 btf_log_buf; -+ __u32 btf_size; -+ __u32 btf_log_size; -+ __u32 btf_log_level; -+ }; -+ 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 { -+ __u32 prog_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; -+ }; -+ }; -+ } link_create; -+ struct { -+ __u32 link_fd; -+ __u32 new_prog_fd; -+ __u32 flags; -+ __u32 old_prog_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 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; -+}; -+ -+typedef struct { -+ union { -+ void *kernel; -+ void *user; -+ }; -+ bool is_kernel: 1; -+} sockptr_t; -+ -+struct bpf_iter_aux_info; -+ -+typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); -+ -+struct bpf_map; -+ -+struct bpf_iter_aux_info { -+ struct bpf_map *map; -+}; -+ -+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 btf; -+ -+struct btf_type; -+ -+struct bpf_prog_aux; -+ -+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 *, 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 *); -+ int (*map_update_elem)(struct bpf_map *, void *, void *, u64); -+ int (*map_delete_elem)(struct bpf_map *, void *); -+ int (*map_push_elem)(struct bpf_map *, void *, u64); -+ int (*map_pop_elem)(struct bpf_map *, void *); -+ int (*map_peek_elem)(struct bpf_map *, void *); -+ void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); -+ void (*map_fd_put_ptr)(void *); -+ 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 *); -+ 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 *); -+ int (*map_redirect)(struct bpf_map *, u32, 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 *); -+ int (*map_for_each_callback)(struct bpf_map *, void *, void *, u64); -+ const char * const map_btf_name; -+ int *map_btf_id; -+ const struct bpf_iter_seq_info *iter_seq_info; -+}; -+ -+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; -+ u32 map_flags; -+ int spin_lock_off; -+ u32 id; -+ int numa_node; -+ u32 btf_key_type_id; -+ u32 btf_value_type_id; -+ struct btf *btf; -+ struct mem_cgroup *memcg; -+ char name[16]; -+ u32 btf_vmlinux_value_type_id; -+ bool bypass_spec_v1; -+ bool frozen; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic64_t refcnt; -+ atomic64_t usercnt; -+ struct work_struct work; -+ struct mutex freeze_mutex; -+ u64 writecnt; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 { -+ 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 *base_btf; -+ u32 start_id; -+ u32 start_str_off; -+ char name[56]; -+ bool kernel_btf; -+}; -+ -+struct btf_type { -+ __u32 name_off; -+ __u32 info; -+ union { -+ __u32 size; -+ __u32 type; -+ }; -+}; -+ -+struct bpf_ksym { -+ long unsigned int start; -+ long unsigned int end; -+ char name[128]; -+ struct list_head lnode; -+ struct latch_tree_node tnode; -+ bool prog; -+}; -+ -+struct bpf_ctx_arg_aux; -+ -+struct bpf_trampoline; -+ -+struct bpf_jit_poke_descriptor; -+ -+struct bpf_kfunc_desc_tab; -+ -+struct bpf_prog_ops; -+ -+struct btf_mod_pair; -+ -+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 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 offload_requested; -+ bool attach_btf_trace; -+ bool func_proto_unreliable; -+ bool sleepable; -+ bool tail_call_reachable; -+ struct hlist_node tramp_hlist; -+ 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; -+ 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; -+ struct bpf_map *cgroup_storage[2]; -+ char name[16]; -+ void *security; -+ 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; -+ u32 num_exentries; -+ struct exception_table_entry *extable; -+ union { -+ struct work_struct work; -+ struct callback_head rcu; -+ }; -+}; -+ -+struct sock_filter { -+ __u16 code; -+ __u8 jt; -+ __u8 jf; -+ __u32 k; -+}; -+ -+struct bpf_prog_stats; -+ -+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 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; -+ 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; -+ struct sock_filter insns[0]; -+ struct bpf_insn insnsi[0]; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct net_device_stats { -+ long unsigned int rx_packets; -+ long unsigned int tx_packets; -+ long unsigned int rx_bytes; -+ long unsigned int tx_bytes; -+ long unsigned int rx_errors; -+ long unsigned int tx_errors; -+ long unsigned int rx_dropped; -+ long unsigned int tx_dropped; -+ long unsigned int multicast; -+ long unsigned int collisions; -+ long unsigned int rx_length_errors; -+ long unsigned int rx_over_errors; -+ long unsigned int rx_crc_errors; -+ long unsigned int rx_frame_errors; -+ long unsigned int rx_fifo_errors; -+ long unsigned int rx_missed_errors; -+ long unsigned int tx_aborted_errors; -+ long unsigned int tx_carrier_errors; -+ long unsigned int tx_fifo_errors; -+ long unsigned int tx_heartbeat_errors; -+ long unsigned int tx_window_errors; -+ long unsigned int rx_compressed; -+ long unsigned int tx_compressed; -+}; -+ -+struct netdev_hw_addr_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct tipc_bearer; -+ -+struct wireless_dev; -+ -+struct mpls_dev; -+ -+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 **); -+ -+enum netdev_ml_priv_type { -+ ML_PRIV_NONE = 0, -+ ML_PRIV_CAN = 1, -+}; -+ -+struct pcpu_dstats; -+ -+struct garp_port; -+ -+struct mrp_port; -+ -+struct netdev_tc_txq { -+ u16 count; -+ u16 offset; -+}; -+ -+struct sfp_bus; -+ -+struct macsec_ops; -+ -+struct udp_tunnel_nic; -+ -+struct bpf_xdp_link; -+ -+struct bpf_xdp_entity { -+ struct bpf_prog *prog; -+ struct bpf_xdp_link *link; -+}; -+ -+struct netdev_name_node; -+ -+struct dev_ifalias; -+ -+struct net_device_ops; -+ -+struct ethtool_ops; -+ -+struct l3mdev_ops; -+ -+struct ndisc_ops; -+ -+struct xfrmdev_ops; -+ -+struct tlsdev_ops; -+ -+struct header_ops; -+ -+struct vlan_info; -+ -+struct in_device; -+ -+struct inet6_dev; -+ -+struct wpan_dev; -+ -+struct netdev_rx_queue; -+ -+struct mini_Qdisc; -+ -+struct netdev_queue; -+ -+struct cpu_rmap; -+ -+struct Qdisc; -+ -+struct xdp_dev_bulk_queue; -+ -+struct xps_dev_maps; -+ -+struct netpoll_info; -+ -+struct pcpu_lstats; -+ -+struct pcpu_sw_netstats; -+ -+struct rtnl_link_ops; -+ -+struct dcbnl_rtnl_ops; -+ -+struct netprio_map; -+ -+struct phy_device; -+ -+struct udp_tunnel_nic_info; -+ -+struct net_device { -+ 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; -+ long unsigned int state; -+ 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 list_head ptype_specific; -+ struct { -+ struct list_head upper; -+ struct list_head lower; -+ } adj_list; -+ unsigned int flags; -+ unsigned int priv_flags; -+ const struct net_device_ops *netdev_ops; -+ int ifindex; -+ short unsigned int gflags; -+ short unsigned int hard_header_len; -+ unsigned int mtu; -+ short unsigned int needed_headroom; -+ short unsigned int needed_tailroom; -+ netdev_features_t features; -+ 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; -+ netdev_features_t gso_partial_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; -+ atomic_long_t rx_dropped; -+ atomic_long_t tx_dropped; -+ atomic_long_t rx_nohandler; -+ 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; -+ const struct header_ops *header_ops; -+ unsigned char 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; -+ short unsigned int padded; -+ spinlock_t addr_list_lock; -+ int irq; -+ 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 vlan_info *vlan_info; -+ struct tipc_bearer *tipc_ptr; -+ struct in_device *ip_ptr; -+ struct inet6_dev *ip6_ptr; -+ struct wireless_dev *ieee80211_ptr; -+ struct wpan_dev *ieee802154_ptr; -+ struct mpls_dev *mpls_ptr; -+ unsigned char *dev_addr; -+ struct netdev_rx_queue *_rx; -+ unsigned int num_rx_queues; -+ unsigned int real_num_rx_queues; -+ struct bpf_prog *xdp_prog; -+ long unsigned int gro_flush_timeout; -+ int napi_defer_hard_irqs; -+ rx_handler_func_t *rx_handler; -+ void *rx_handler_data; -+ struct mini_Qdisc *miniq_ingress; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct netdev_queue *_tx; -+ unsigned int num_tx_queues; -+ unsigned int real_num_tx_queues; -+ struct Qdisc *qdisc; -+ unsigned int tx_queue_len; -+ spinlock_t tx_global_lock; -+ struct xdp_dev_bulk_queue *xdp_bulkq; -+ struct xps_dev_maps *xps_maps[2]; -+ struct mini_Qdisc *miniq_egress; -+ 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 list_head link_watch_list; -+ enum { -+ NETREG_UNINITIALIZED = 0, -+ NETREG_REGISTERED = 1, -+ NETREG_UNREGISTERING = 2, -+ NETREG_UNREGISTERED = 3, -+ NETREG_RELEASED = 4, -+ NETREG_DUMMY = 5, -+ } reg_state: 8; -+ 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 *); -+ struct netpoll_info *npinfo; -+ possible_net_t nd_net; -+ void *ml_priv; -+ enum netdev_ml_priv_type ml_priv_type; -+ union { -+ struct pcpu_lstats *lstats; -+ struct pcpu_sw_netstats *tstats; -+ struct pcpu_dstats *dstats; -+ }; -+ struct garp_port *garp_port; -+ struct mrp_port *mrp_port; -+ 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; -+ unsigned int gso_max_size; -+ u16 gso_max_segs; -+ const struct dcbnl_rtnl_ops *dcbnl_ops; -+ s16 num_tc; -+ struct netdev_tc_txq tc_to_txq[16]; -+ u8 prio_tc_map[16]; -+ struct netprio_map *priomap; -+ struct phy_device *phydev; -+ struct sfp_bus *sfp_bus; -+ struct lock_class_key *qdisc_tx_busylock; -+ struct lock_class_key *qdisc_running_key; -+ bool proto_down; -+ unsigned int wol_enabled: 1; -+ unsigned int threaded: 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 bpf_xdp_entity xdp_state[3]; -+ long: 64; -+ long: 64; -+}; -+ -+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_VALUE_OR_NULL = 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_SOCKET_OR_NULL = 12, -+ PTR_TO_SOCK_COMMON = 13, -+ PTR_TO_SOCK_COMMON_OR_NULL = 14, -+ PTR_TO_TCP_SOCK = 15, -+ PTR_TO_TCP_SOCK_OR_NULL = 16, -+ PTR_TO_TP_BUFFER = 17, -+ PTR_TO_XDP_SOCK = 18, -+ PTR_TO_BTF_ID = 19, -+ PTR_TO_BTF_ID_OR_NULL = 20, -+ PTR_TO_MEM = 21, -+ PTR_TO_MEM_OR_NULL = 22, -+ PTR_TO_RDONLY_BUF = 23, -+ PTR_TO_RDONLY_BUF_OR_NULL = 24, -+ PTR_TO_RDWR_BUF = 25, -+ PTR_TO_RDWR_BUF_OR_NULL = 26, -+ PTR_TO_PERCPU_BTF_ID = 27, -+ PTR_TO_FUNC = 28, -+ PTR_TO_MAP_KEY = 29, -+ __BPF_REG_TYPE_MAX = 30, -+}; -+ -+struct bpf_prog_ops { -+ int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -+}; -+ -+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 nr_args; -+ u8 arg_size[12]; -+}; -+ -+struct bpf_tramp_image { -+ void *image; -+ 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 mutex mutex; -+ refcount_t refcnt; -+ 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; -+ u64 selector; -+ struct module *mod; -+}; -+ -+struct bpf_func_info_aux { -+ u16 linkage; -+ bool unreliable; -+}; -+ -+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; -+ u32 btf_id; -+}; -+ -+struct btf_mod_pair { -+ struct btf *btf; -+ struct module *module; -+}; -+ -+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; -+ }; -+ union { -+ struct sock *sk; -+ int ip_defrag_offset; -+ }; -+ 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; -+ __u32 headers_start[0]; -+ __u8 __pkt_type_offset[0]; -+ __u8 pkt_type: 3; -+ __u8 ignore_df: 1; -+ __u8 nf_trace: 1; -+ __u8 ip_summed: 2; -+ __u8 ooo_okay: 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 __pkt_vlan_present_offset[0]; -+ __u8 vlan_present: 1; -+ __u8 csum_complete_sw: 1; -+ __u8 csum_level: 2; -+ __u8 csum_not_inet: 1; -+ __u8 dst_pending_confirm: 1; -+ __u8 ndisc_nodetype: 2; -+ __u8 ipvs_property: 1; -+ __u8 inner_protocol_type: 1; -+ __u8 remcsum_offload: 1; -+ __u8 offload_fwd_mark: 1; -+ __u8 offload_l3_fwd_mark: 1; -+ __u8 tc_skip_classify: 1; -+ __u8 tc_at_ingress: 1; -+ __u8 redirected: 1; -+ __u8 from_ingress: 1; -+ __u8 decrypted: 1; -+ __u16 tc_index; -+ union { -+ __wsum csum; -+ struct { -+ __u16 csum_start; -+ __u16 csum_offset; -+ }; -+ }; -+ __u32 priority; -+ int skb_iif; -+ __u32 hash; -+ __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; -+ __u32 headers_end[0]; -+ 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; -+}; -+ -+enum { -+ Root_NFS = 255, -+ Root_CIFS = 254, -+ Root_RAM0 = 1048576, -+ Root_RAM1 = 1048577, -+ Root_FD0 = 2097152, -+ Root_HDA1 = 3145729, -+ Root_HDA2 = 3145730, -+ Root_SDA1 = 8388609, -+ Root_SDA2 = 8388610, -+ Root_HDC1 = 23068673, -+ Root_SR0 = 11534336, -+}; -+ -+struct flowi_tunnel { -+ __be64 tun_id; -+}; -+ -+struct flowi_common { -+ int flowic_oif; -+ int flowic_iif; -+ __u32 flowic_mark; -+ __u8 flowic_tos; -+ __u8 flowic_scope; -+ __u8 flowic_proto; -+ __u8 flowic_flags; -+ __u32 flowic_secid; -+ kuid_t flowic_uid; -+ struct flowi_tunnel flowic_tun_key; -+ __u32 flowic_multipath_hash; -+}; -+ -+union flowi_uli { -+ struct { -+ __be16 dport; -+ __be16 sport; -+ } ports; -+ struct { -+ __u8 type; -+ __u8 code; -+ } icmpt; -+ struct { -+ __le16 dport; -+ __le16 sport; -+ } dnports; -+ __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 flowidn { -+ struct flowi_common __fl_common; -+ __le16 daddr; -+ __le16 saddr; -+ union flowi_uli uli; -+}; -+ -+struct flowi { -+ union { -+ struct flowi_common __fl_common; -+ struct flowi4 ip4; -+ struct flowi6 ip6; -+ struct flowidn dn; -+ } u; -+}; -+ -+struct ipstats_mib { -+ u64 mibs[37]; -+ struct u64_stats_sync syncp; -+}; -+ -+struct icmp_mib { -+ long unsigned int mibs[28]; -+}; -+ -+struct icmpmsg_mib { -+ atomic_long_t mibs[512]; -+}; -+ -+struct icmpv6_mib { -+ long unsigned int mibs[6]; -+}; -+ -+struct icmpv6_mib_device { -+ atomic_long_t mibs[6]; -+}; -+ -+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[126]; -+}; -+ -+struct linux_xfrm_mib { -+ long unsigned int mibs[29]; -+}; -+ -+struct linux_tls_mib { -+ long unsigned int mibs[11]; -+}; -+ -+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: 56; -+ 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 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 nla_policy; -+ -+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 *, 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; -+ const struct nla_policy *policy; -+ 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 *, 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 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; -+ atomic_t __refcnt; -+ int __use; -+ long unsigned int lastuse; -+ struct lwtunnel_state *lwtstate; -+ struct callback_head callback_head; -+ short int error; -+ short int __pad; -+ __u32 tclassid; -+}; -+ -+struct hh_cache { -+ unsigned int hh_len; -+ seqlock_t hh_lock; -+ long unsigned int hh_data[12]; -+}; -+ -+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 flags; -+ __u8 nud_state; -+ __u8 type; -+ __u8 dead; -+ u8 protocol; -+ seqlock_t ha_lock; -+ int: 32; -+ 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 callback_head rcu; -+ struct net_device *dev; -+ u8 primary_key[0]; -+}; -+ -+struct ipv6_stable_secret { -+ bool initialized; -+ struct in6_addr secret; -+}; -+ -+struct ipv6_devconf { -+ __s32 forwarding; -+ __s32 hop_limit; -+ __s32 mtu6; -+ __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_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_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 proxy_ndp; -+ __s32 accept_source_route; -+ __s32 accept_ra_from_local; -+ __s32 optimistic_dad; -+ __s32 use_optimistic; -+ __s32 mc_forwarding; -+ __s32 disable_ipv6; -+ __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; -+ 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 disable_policy; -+ __s32 ndisc_tclass; -+ __s32 rpl_seg_enabled; -+ struct ctl_table_header *sysctl_header; -+}; -+ -+struct nf_queue_entry; -+ -+struct nf_queue_handler { -+ int (*outfn)(struct nf_queue_entry *, unsigned int); -+ void (*nf_hook_drop)(struct net *); -+}; -+ -+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 hlist_nulls_head { -+ struct hlist_nulls_node *first; -+}; -+ -+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; -+}; -+ -+struct ct_pcpu { -+ spinlock_t lock; -+ struct hlist_nulls_head unconfirmed; -+ struct hlist_nulls_head dying; -+}; -+ -+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 int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); -+ -+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 *, int, bool); -+ 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 (*sendpage)(struct socket *, struct page *, int, size_t, int); -+ ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); -+ 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 (*sendpage_locked)(struct sock *, struct page *, int, size_t, int); -+ int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); -+ int (*set_rcvlowat)(struct sock *, int); -+}; -+ -+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 skb_ext { -+ refcount_t refcnt; -+ u8 offset[4]; -+ u8 chunks; -+ long: 56; -+ char data[0]; -+}; -+ -+struct dql { -+ unsigned int num_queued; -+ unsigned int adj_limit; -+ unsigned int last_obj_cnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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 *); -+}; -+ -+struct netprio_map { -+ struct callback_head rcu; -+ u32 priomap_len; -+ u32 priomap[0]; -+}; -+ -+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; -+ unsigned int napi_id; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_frame { -+ void *data; -+ u16 len; -+ u16 headroom; -+ u32 metasize: 8; -+ u32 frame_sz: 24; -+ struct xdp_mem_info mem; -+ struct net_device *dev_rx; -+}; -+ -+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 netlink_ext_ack { -+ const char *_msg; -+ const struct nlattr *bad_attr; -+ const struct nla_policy *policy; -+ u8 cookie[20]; -+ u8 cookie_len; -+}; -+ -+struct netlink_range_validation; -+ -+struct netlink_range_validation_signed; -+ -+struct nla_policy { -+ u8 type; -+ u8 validation_type; -+ u16 len; -+ union { -+ const u32 bitfield32_valid; -+ const u32 mask; -+ const char *reject_message; -+ const struct nla_policy *nested_policy; -+ struct netlink_range_validation *range; -+ struct netlink_range_validation_signed *range_signed; -+ struct { -+ s16 min; -+ s16 max; -+ }; -+ int (*validate)(const struct nlattr *, struct netlink_ext_ack *); -+ u16 strict_start_type; -+ }; -+}; -+ -+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; -+ 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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum netdev_tx { -+ __NETDEV_TX_MIN = 2147483648, -+ NETDEV_TX_OK = 0, -+ NETDEV_TX_BUSY = 16, -+}; -+ -+typedef enum netdev_tx netdev_tx_t; -+ -+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 xsk_buff_pool; -+ -+struct netdev_queue { -+ struct net_device *dev; -+ struct Qdisc *qdisc; -+ struct Qdisc *qdisc_sleeping; -+ struct kobject kobj; -+ int numa_node; -+ long unsigned int tx_maxrate; -+ long unsigned int trans_timeout; -+ struct net_device *sb_dev; -+ struct xsk_buff_pool *pool; -+ spinlock_t _xmit_lock; -+ int xmit_lock_owner; -+ long unsigned int trans_start; -+ long unsigned int state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct dql dql; -+}; -+ -+struct qdisc_skb_head { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ __u32 qlen; -+ spinlock_t lock; -+}; -+ -+struct gnet_stats_basic_packed { -+ __u64 bytes; -+ __u64 packets; -+}; -+ -+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 gnet_stats_basic_cpu; -+ -+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_cpu *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_packed bstats; -+ seqcount_t running; -+ struct gnet_stats_queue qstats; -+ long unsigned int state; -+ struct Qdisc *next_sched; -+ struct sk_buff_head skb_bad_txq; -+ spinlock_t busylock; -+ spinlock_t seqlock; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long int privdata[0]; -+}; -+ -+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]; -+}; -+ -+struct netdev_rx_queue { -+ struct rps_map *rps_map; -+ struct rps_dev_flow_table *rps_flow_table; -+ struct kobject kobj; -+ struct net_device *dev; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xdp_rxq_info xdp_rxq; -+ struct xsk_buff_pool *pool; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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, -+}; -+ -+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 net_device_path_ctx { -+ const struct net_device *dev; -+ const u8 *daddr; -+ int num_vlans; -+ struct { -+ u16 id; -+ __be16 proto; -+ } vlan[2]; -+}; -+ -+enum tc_setup_type { -+ TC_SETUP_QDISC_MQPRIO = 0, -+ TC_SETUP_CLSU32 = 1, -+ TC_SETUP_CLSFLOWER = 2, -+ TC_SETUP_CLSMATCHALL = 3, -+ TC_SETUP_CLSBPF = 4, -+ TC_SETUP_BLOCK = 5, -+ TC_SETUP_QDISC_CBS = 6, -+ TC_SETUP_QDISC_RED = 7, -+ TC_SETUP_QDISC_PRIO = 8, -+ TC_SETUP_QDISC_MQ = 9, -+ TC_SETUP_QDISC_ETF = 10, -+ TC_SETUP_ROOT_QDISC = 11, -+ TC_SETUP_QDISC_GRED = 12, -+ TC_SETUP_QDISC_TAPRIO = 13, -+ TC_SETUP_FT = 14, -+ TC_SETUP_QDISC_ETS = 15, -+ TC_SETUP_QDISC_TBF = 16, -+ TC_SETUP_QDISC_FIFO = 17, -+ TC_SETUP_QDISC_HTB = 18, -+}; -+ -+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 xfrmdev_ops { -+ int (*xdo_dev_state_add)(struct xfrm_state *); -+ void (*xdo_dev_state_delete)(struct xfrm_state *); -+ void (*xdo_dev_state_free)(struct xfrm_state *); -+ bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); -+ void (*xdo_dev_state_advance_esn)(struct xfrm_state *); -+}; -+ -+struct dev_ifalias { -+ struct callback_head rcuhead; -+ char ifalias[0]; -+}; -+ -+struct netdev_name_node { -+ struct hlist_node hlist; -+ struct list_head list; -+ struct net_device *dev; -+ const char *name; -+}; -+ -+struct devlink_port; -+ -+struct ip_tunnel_parm; -+ -+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 *, struct netpoll_info *); -+ 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_fcoe_get_wwn)(struct net_device *, u64 *, int); -+ 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); -+ 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_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_change_proto_down)(struct net_device *, bool); -+ 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); -+ int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); -+ struct devlink_port * (*ndo_get_devlink_port)(struct net_device *); -+ int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm *, 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 *); -+}; -+ -+struct neigh_parms { -+ possible_net_t net; -+ struct net_device *dev; -+ 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; -+ int data[13]; -+ long unsigned int data_state[1]; -+}; -+ -+struct pcpu_lstats { -+ u64_stats_t packets; -+ u64_stats_t bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+struct pcpu_sw_netstats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+}; -+ -+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_eeprom; -+ -+struct ethtool_coalesce; -+ -+struct ethtool_ringparam; -+ -+struct ethtool_pause_stats; -+ -+struct ethtool_pauseparam; -+ -+struct ethtool_test; -+ -+struct ethtool_stats; -+ -+struct ethtool_rxnfc; -+ -+struct ethtool_flash; -+ -+struct ethtool_channels; -+ -+struct ethtool_dump; -+ -+struct ethtool_ts_info; -+ -+struct ethtool_modinfo; -+ -+struct ethtool_eee; -+ -+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_ops { -+ u32 cap_link_lanes_supported: 1; -+ u32 supported_coalesce_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 *); -+ 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 *); -+ int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *); -+ void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *); -+ 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 *, u32 *, u8 *, u8 *); -+ int (*set_rxfh)(struct net_device *, const u32 *, const u8 *, const u8); -+ int (*get_rxfh_context)(struct net_device *, u32 *, u8 *, u8 *, u32); -+ int (*set_rxfh_context)(struct net_device *, const u32 *, const u8 *, const u8, u32 *, bool); -+ 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 ethtool_ts_info *); -+ 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_eee *); -+ int (*set_eee)(struct net_device *, struct ethtool_eee *); -+ 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 *); -+ 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 **); -+}; -+ -+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 (*is_useropt)(u8); -+ 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 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; -+ 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; -+}; -+ -+struct tcf_proto; -+ -+struct tcf_block; -+ -+struct mini_Qdisc { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_queue *cpu_qstats; -+ struct callback_head rcu; -+}; -+ -+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)(); -+ unsigned int (*get_num_rx_queues)(); -+ 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 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_stats_basic_cpu { -+ struct gnet_stats_basic_packed bstats; -+ struct u64_stats_sync syncp; -+}; -+ -+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); -+ 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 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 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 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; -+ 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 { -+ bool ingress; -+ struct gnet_stats_queue *qstats; -+ }; -+ }; -+}; -+ -+struct tcf_walker; -+ -+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 **, bool, bool, 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 *); -+ 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 sock_fprog_kern { -+ u16 len; -+ struct sock_filter *filter; -+}; -+ -+struct bpf_prog_stats { -+ u64 cnt; -+ u64 nsecs; -+ u64 misses; -+ struct u64_stats_sync syncp; -+ long: 64; -+}; -+ -+struct sk_filter { -+ refcount_t refcnt; -+ struct callback_head rcu; -+ struct bpf_prog *prog; -+}; -+ -+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_GC_STALETIME = 7, -+ NEIGH_VAR_QUEUE_LEN_BYTES = 8, -+ NEIGH_VAR_PROXY_QLEN = 9, -+ NEIGH_VAR_ANYCAST_DELAY = 10, -+ NEIGH_VAR_PROXY_DELAY = 11, -+ NEIGH_VAR_LOCKTIME = 12, -+ NEIGH_VAR_QUEUE_LEN = 13, -+ NEIGH_VAR_RETRANS_TIME_MS = 14, -+ NEIGH_VAR_BASE_REACHABLE_TIME_MS = 15, -+ NEIGH_VAR_GC_INTERVAL = 16, -+ NEIGH_VAR_GC_THRESH1 = 17, -+ NEIGH_VAR_GC_THRESH2 = 18, -+ NEIGH_VAR_GC_THRESH3 = 19, -+ NEIGH_VAR_MAX = 20, -+}; -+ -+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 timer_list proxy_timer; -+ struct sk_buff_head proxy_queue; -+ atomic_t entries; -+ atomic_t gc_entries; -+ struct list_head gc_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; -+ u8 flags; -+ u8 protocol; -+ u8 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_MAX_STATES = 13, -+}; -+ -+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 udp_table; -+ -+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 *, int, int *, bool); -+ int (*ioctl)(struct sock *, int, long unsigned 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, int *); -+ int (*sendpage)(struct sock *, struct page *, int, size_t, int); -+ 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); -+ int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); -+ unsigned int inuse_idx; -+ bool (*stream_memory_free)(const struct sock *, int); -+ bool (*stream_memory_read)(const struct sock *); -+ void (*enter_memory_pressure)(struct sock *); -+ void (*leave_memory_pressure)(struct sock *); -+ atomic_long_t *memory_allocated; -+ 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; -+ slab_flags_t slab_flags; -+ unsigned int useroffset; -+ unsigned int usersize; -+ struct percpu_counter *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 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 *); -+ 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; -+ int (*twsk_unique)(struct sock *, struct sock *, void *); -+ 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; -+}; -+ -+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, -+}; -+ -+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; -+ __u8 reserved: 6; -+ __u8 autoconf: 1; -+ __u8 onlink: 1; -+ __be32 valid; -+ __be32 prefered; -+ __be32 reserved2; -+ struct in6_addr prefix; -+}; -+ -+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 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_MAX_SHIFT = 18, -+}; -+ -+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, -+}; -+ -+enum { -+ TSK_TRACE_FL_TRACE_BIT = 0, -+ TSK_TRACE_FL_GRAPH_BIT = 1, -+}; -+ -+struct uuidcmp { -+ const char *uuid; -+ 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 phys_addr_t resource_size_t; -+ -+struct __va_list_tag { -+ unsigned int gp_offset; -+ unsigned int fp_offset; -+ void *overflow_arg_area; -+ void *reg_save_area; -+}; -+ -+typedef __builtin_va_list __gnuc_va_list; -+ -+typedef __gnuc_va_list va_list; -+ -+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; -+}; -+ -+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 hash { -+ int ino; -+ int minor; -+ int major; -+ umode_t mode; -+ struct hash *next; -+ char name[4098]; -+}; -+ -+struct dir_entry { -+ struct list_head list; -+ char *name; -+ time64_t mtime; -+}; -+ -+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 *)); -+ -+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 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_RLIMIT_NPROC = 12, -+ UCOUNT_RLIMIT_MSGQUEUE = 13, -+ UCOUNT_RLIMIT_SIGPENDING = 14, -+ UCOUNT_RLIMIT_MEMLOCK = 15, -+ UCOUNT_COUNTS = 16, -+}; -+ -+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_MAX = 28, -+}; -+ -+enum { -+ IPSTATS_MIB_NUM = 0, -+ IPSTATS_MIB_INPKTS = 1, -+ IPSTATS_MIB_INOCTETS = 2, -+ IPSTATS_MIB_INDELIVERS = 3, -+ IPSTATS_MIB_OUTFORWDATAGRAMS = 4, -+ IPSTATS_MIB_OUTPKTS = 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_MAX = 37, -+}; -+ -+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_MAX = 28, -+}; -+ -+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_MAX = 6, -+}; -+ -+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_MAX = 126, -+}; -+ -+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_XFRMMAX = 29, -+}; -+ -+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_TLSMAX = 11, -+}; -+ -+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_DECNET = 12, -+ NFPROTO_NUMPROTO = 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 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 = 4294967295, -+ NETNS_BPF_FLOW_DISSECTOR = 0, -+ NETNS_BPF_SK_LOOKUP = 1, -+ MAX_NETNS_BPF_ATTACH_TYPE = 2, -+}; -+ -+enum skb_ext_id { -+ SKB_EXT_BRIDGE_NF = 0, -+ SKB_EXT_SEC_PATH = 1, -+ TC_SKB_EXT = 2, -+ SKB_EXT_MPTCP = 3, -+ SKB_EXT_NUM = 4, -+}; -+ -+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, -+}; -+ -+typedef long int (*sys_call_ptr_t)(const struct pt_regs *); -+ -+struct io_bitmap { -+ u64 sequence; -+ refcount_t refcnt; -+ unsigned int max; -+ long unsigned int bitmap[1024]; -+}; -+ -+enum { -+ EI_ETYPE_NONE = 0, -+ EI_ETYPE_NULL = 1, -+ EI_ETYPE_ERRNO = 2, -+ EI_ETYPE_ERRNO_NULL = 3, -+ EI_ETYPE_TRUE = 4, -+}; -+ -+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 alt_instr { -+ s32 instr_offset; -+ s32 repl_offset; -+ u16 cpuid; -+ u8 instrlen; -+ u8 replacementlen; -+}; -+ -+struct timens_offset { -+ s64 sec; -+ u64 nsec; -+}; -+ -+enum vm_fault_reason { -+ VM_FAULT_OOM = 1, -+ VM_FAULT_SIGBUS = 2, -+ VM_FAULT_MAJOR = 4, -+ VM_FAULT_WRITE = 8, -+ 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_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 *); -+}; -+ -+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 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, -+}; -+ -+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; -+}; -+ -+struct ms_hyperv_tsc_page { -+ volatile u32 tsc_sequence; -+ u32 reserved1; -+ volatile u64 tsc_scale; -+ volatile s64 tsc_offset; -+}; -+ -+enum { -+ TASKSTATS_CMD_UNSPEC = 0, -+ TASKSTATS_CMD_GET = 1, -+ TASKSTATS_CMD_NEW = 2, -+ __TASKSTATS_CMD_MAX = 3, -+}; -+ -+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, -+}; -+ -+enum bpf_cgroup_storage_type { -+ BPF_CGROUP_STORAGE_SHARED = 0, -+ BPF_CGROUP_STORAGE_PERCPU = 1, -+ __BPF_CGROUP_STORAGE_MAX = 2, -+}; -+ -+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 psi_task_count { -+ NR_IOWAIT = 0, -+ NR_MEMSTALL = 1, -+ NR_RUNNING = 2, -+ NR_ONCPU = 3, -+ NR_PSI_TASK_COUNTS = 4, -+}; -+ -+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, -+ CGROUP_SUBSYS_COUNT = 14, -+}; -+ -+struct vdso_exception_table_entry { -+ int insn; -+ int fixup; -+}; -+ -+struct cpuinfo_x86 { -+ __u8 x86; -+ __u8 x86_vendor; -+ __u8 x86_model; -+ __u8 x86_stepping; -+ int x86_tlbsize; -+ __u32 vmx_capability[3]; -+ __u8 x86_virt_bits; -+ __u8 x86_phys_bits; -+ __u8 x86_coreid_bits; -+ __u8 cu_id; -+ __u32 extended_cpuid_level; -+ int cpuid_level; -+ union { -+ __u32 x86_capability[21]; -+ long unsigned int x86_capability_alignment; -+ }; -+ char x86_vendor_id[16]; -+ char x86_model_id[64]; -+ 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; -+ u16 x86_max_cores; -+ u16 apicid; -+ u16 initial_apicid; -+ u16 x86_clflush_size; -+ u16 booted_cores; -+ u16 phys_proc_id; -+ u16 logical_proc_id; -+ u16 cpu_core_id; -+ u16 cpu_die_id; -+ u16 logical_die_id; -+ u16 cpu_index; -+ u32 microcode; -+ u8 x86_cache_bits; -+ unsigned int initialized: 1; -+}; -+ -+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, -+}; -+ -+struct seccomp_data { -+ int nr; -+ __u32 arch; -+ __u64 instruction_pointer; -+ __u64 args[6]; -+}; -+ -+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_SGX = 32768, -+}; -+ -+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, -+}; -+ -+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, -+ __PERF_SAMPLE_CALLCHAIN_EARLY = 0, -+}; -+ -+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_MAX = 262144, -+}; -+ -+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 bool (*smp_cond_func_t)(int, void *); -+ -+enum apic_delivery_modes { -+ APIC_DELIVERY_MODE_FIXED = 0, -+ APIC_DELIVERY_MODE_LOWESTPRIO = 1, -+ APIC_DELIVERY_MODE_SMI = 2, -+ APIC_DELIVERY_MODE_NMI = 4, -+ APIC_DELIVERY_MODE_INIT = 5, -+ APIC_DELIVERY_MODE_EXTINT = 7, -+}; -+ -+struct physid_mask { -+ long unsigned int mask[512]; -+}; -+ -+typedef struct physid_mask physid_mask_t; -+ -+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; -+}; -+ -+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[12]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+}; -+ -+struct perf_guest_info_callbacks { -+ int (*is_in_guest)(); -+ int (*is_user_mode)(); -+ long unsigned int (*get_guest_ip)(); -+ void (*handle_intel_pt_intr)(); -+}; -+ -+typedef struct { -+ u16 __softirq_pending; -+ 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; -+ -+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 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; -+}; -+ -+struct apic { -+ void (*eoi_write)(u32, u32); -+ void (*native_eoi_write)(u32, u32); -+ void (*write)(u32, u32); -+ u32 (*read)(u32); -+ void (*wait_icr_idle)(); -+ u32 (*safe_wait_icr_idle)(); -+ 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; -+ enum apic_delivery_modes delivery_mode; -+ bool dest_mode_logical; -+ u32 (*calc_dest_apicid)(unsigned int); -+ u64 (*icr_read)(); -+ void (*icr_write)(u32, u32); -+ int (*probe)(); -+ int (*acpi_madt_oem_check)(char *, char *); -+ int (*apic_id_valid)(u32); -+ int (*apic_id_registered)(); -+ bool (*check_apicid_used)(physid_mask_t *, int); -+ void (*init_apic_ldr)(); -+ void (*ioapic_phys_id_map)(physid_mask_t *, physid_mask_t *); -+ void (*setup_apic_routing)(); -+ int (*cpu_present_to_apicid)(int); -+ void (*apicid_to_cpu_present)(int, physid_mask_t *); -+ int (*check_phys_apicid_present)(int); -+ int (*phys_pkg_id)(int, int); -+ u32 (*get_apic_id)(long unsigned int); -+ u32 (*set_apic_id)(unsigned int); -+ int (*wakeup_secondary_cpu)(int, long unsigned int); -+ void (*inquire_remote_apic)(int); -+ char *name; -+}; -+ -+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; -+ bool error; -+ bool signal; -+ bool full_regs; -+ long unsigned int sp; -+ long unsigned int bp; -+ long unsigned int ip; -+ struct pt_regs *regs; -+ struct pt_regs *prev_regs; -+}; -+ -+enum extra_reg_type { -+ EXTRA_REG_NONE = 4294967295, -+ EXTRA_REG_RSP_0 = 0, -+ EXTRA_REG_RSP_1 = 1, -+ EXTRA_REG_LBR = 2, -+ EXTRA_REG_LDLAT = 3, -+ EXTRA_REG_FE = 4, -+ EXTRA_REG_MAX = 5, -+}; -+ -+struct event_constraint { -+ union { -+ long unsigned int idxmsk[1]; -+ u64 idxmsk64; -+ }; -+ u64 code; -+ u64 cmask; -+ int weight; -+ int overlap; -+ int flags; -+ unsigned int size; -+}; -+ -+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[5]; -+ 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; -+ 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; -+ int lbr_users; -+ int lbr_pebs_users; -+ struct perf_branch_stack lbr_stack; -+ struct perf_branch_entry lbr_entries[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; -+ 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 anythread_deprecated: 1; -+ }; -+ u64 capabilities; -+}; -+ -+struct x86_pmu_quirk { -+ struct x86_pmu_quirk *next; -+ void (*func)(); -+}; -+ -+enum { -+ x86_lbr_exclusive_lbr = 0, -+ x86_lbr_exclusive_bts = 1, -+ x86_lbr_exclusive_pt = 2, -+ x86_lbr_exclusive_max = 3, -+}; -+ -+struct x86_hybrid_pmu { -+ struct pmu pmu; -+ const char *name; -+ u8 cpu_type; -+ cpumask_t supported_cpus; -+ union perf_capabilities intel_cap; -+ u64 intel_ctrl; -+ int max_pebs_events; -+ int num_counters; -+ int num_counters_fixed; -+ 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; -+}; -+ -+enum hybrid_pmu_type { -+ hybrid_big = 64, -+ hybrid_small = 32, -+ hybrid_big_small = 96, -+}; -+ -+struct x86_pmu { -+ const char *name; -+ int version; -+ int (*handle_irq)(struct pt_regs *); -+ void (*disable_all)(); -+ void (*enable_all)(int); -+ void (*enable)(struct perf_event *); -+ void (*disable)(struct perf_event *); -+ void (*add)(struct perf_event *); -+ void (*del)(struct perf_event *); -+ void (*read)(struct perf_event *); -+ int (*hw_config)(struct perf_event *); -+ int (*schedule_events)(struct cpu_hw_events *, int, int *); -+ unsigned int eventsel; -+ unsigned int perfctr; -+ int (*addr_offset)(int, bool); -+ int (*rdpmc_index)(int); -+ u64 (*event_map)(int); -+ int max_events; -+ int num_counters; -+ int num_counters_fixed; -+ 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; -+ int perfctr_second_write; -+ u64 (*limit_period)(struct perf_event *, u64); -+ 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 (*sched_task)(struct perf_event_context *, bool); -+ u64 intel_ctrl; -+ union perf_capabilities intel_cap; -+ unsigned int bts: 1; -+ unsigned int bts_active: 1; -+ unsigned int 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; -+ int pebs_record_size; -+ int pebs_buffer_size; -+ int max_pebs_events; -+ void (*drain_pebs)(struct pt_regs *, struct perf_sample_data *); -+ struct event_constraint *pebs_constraints; -+ void (*pebs_aliases)(struct perf_event *); -+ long unsigned int large_pebs_flags; -+ u64 rtm_abort_event; -+ 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; -+ }; -+ bool lbr_double_abort; -+ bool lbr_pt_coexist; -+ 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; -+ void (*lbr_reset)(); -+ void (*lbr_read)(struct cpu_hw_events *); -+ void (*lbr_save)(void *); -+ void (*lbr_restore)(void *); -+ atomic_t lbr_exclusive[3]; -+ int num_topdown_events; -+ u64 (*update_topdown_event)(struct perf_event *); -+ int (*set_topdown_event_period)(struct perf_event *); -+ void (*swap_task_ctx)(struct perf_event_context *, struct perf_event_context *); -+ 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 *); -+ int (*check_period)(struct perf_event *, u64); -+ int (*aux_output_match)(struct perf_event *); -+ int (*filter_match)(struct perf_event *); -+ int num_hybrid_pmus; -+ struct x86_hybrid_pmu *hybrid_pmu; -+ u8 (*get_hybrid_cpu_type)(); -+}; -+ -+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]; -+}; -+ -+struct perf_msr { -+ u64 msr; -+ struct attribute_group *grp; -+ bool (*test)(int, void *); -+ bool no_check; -+ u64 mask; -+}; -+ -+struct amd_uncore { -+ int id; -+ int refcnt; -+ int cpu; -+ int num_counters; -+ int rdpmc_base; -+ u32 msr_base; -+ cpumask_t *active_mask; -+ struct pmu *pmu; -+ struct perf_event *events[6]; -+ struct hlist_node node; -+}; -+ -+typedef int pci_power_t; -+ -+typedef unsigned int pci_channel_state_t; -+ -+typedef short unsigned int pci_dev_flags_t; -+ -+struct pci_bus; -+ -+struct pci_slot; -+ -+struct aer_stats; -+ -+struct rcec_ea; -+ -+struct pci_driver; -+ -+struct pcie_link_state; -+ -+struct pci_vpd; -+ -+struct pci_sriov; -+ -+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_stats *aer_stats; -+ struct rcec_ea *rcec_ea; -+ struct pci_dev *rcec; -+ 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; -+ unsigned int imm_ready: 1; -+ u8 pm_cap; -+ unsigned int pme_support: 5; -+ unsigned int pme_poll: 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 runtime_d3cold: 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; -+ struct pcie_link_state *link_state; -+ unsigned int ltr_path: 1; -+ u16 l1ss; -+ unsigned int eetlp_prefix_path: 1; -+ pci_channel_state_t error_state; -+ struct device dev; -+ int cfg_size; -+ unsigned int irq; -+ struct resource resource[17]; -+ 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 needs_freset: 1; -+ unsigned int state_saved: 1; -+ unsigned int is_physfn: 1; -+ unsigned int is_virtfn: 1; -+ unsigned int reset_fn: 1; -+ unsigned int is_hotplug_bridge: 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; -+ pci_dev_flags_t dev_flags; -+ atomic_t enable_cnt; -+ u32 saved_config_space[16]; -+ struct hlist_head saved_cap_space; -+ int rom_attr_enabled; -+ struct bin_attribute *res_attr[17]; -+ struct bin_attribute *res_attr_wc[17]; -+ unsigned int broken_cmd_compl: 1; -+ const struct attribute_group **msi_irq_groups; -+ struct pci_vpd *vpd; -+ u16 dpc_cap; -+ unsigned int dpc_rp_extensions: 1; -+ u8 dpc_rp_log_size; -+ 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; -+ u16 acs_cap; -+ phys_addr_t rom; -+ size_t romlen; -+ char *driver_override; -+ long unsigned int priv_flags; -+}; -+ -+struct pci_device_id { -+ __u32 vendor; -+ __u32 device; -+ __u32 subvendor; -+ __u32 subdevice; -+ __u32 class; -+ __u32 class_mask; -+ kernel_ulong_t driver_data; -+}; -+ -+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_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; -+}; -+ -+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, -+}; -+ -+typedef unsigned int pcie_reset_state_t; -+ -+struct pci_dynids { -+ spinlock_t lock; -+ struct list_head list; -+}; -+ -+struct pci_error_handlers; -+ -+struct pci_driver { -+ struct list_head node; -+ 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; -+}; -+ -+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 *); -+}; -+ -+struct syscore_ops { -+ struct list_head node; -+ int (*suspend)(); -+ void (*resume)(); -+ void (*shutdown)(); -+}; -+ -+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; -+ 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; -+ struct attribute **format_attrs; -+ struct attribute_group format_group; -+ const struct attribute_group *attr_groups[2]; -+ u64 (*get_count)(u64); -+}; -+ -+struct perf_ibs_data { -+ u32 size; -+ union { -+ u32 data[0]; -+ u32 caps; -+ }; -+ u64 regs[8]; -+}; -+ -+struct amd_iommu; -+ -+struct perf_amd_iommu { -+ struct list_head list; -+ struct pmu pmu; -+ struct amd_iommu *iommu; -+ char name[16]; -+ 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 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 x86_cpu_desc { -+ u8 x86_family; -+ u8 x86_vendor; -+ u8 x86_model; -+ u8 x86_stepping; -+ u32 x86_microcode_rev; -+}; -+ -+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; -+}; -+ -+struct perf_pmu_format_hybrid_attr { -+ struct device_attribute attr; -+ u64 pmu_type; -+}; -+ -+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_MAX_KNOWN = 6, -+}; -+ -+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 pageflags { -+ PG_locked = 0, -+ PG_referenced = 1, -+ PG_uptodate = 2, -+ PG_dirty = 3, -+ PG_lru = 4, -+ PG_active = 5, -+ PG_workingset = 6, -+ PG_waiters = 7, -+ PG_error = 8, -+ PG_slab = 9, -+ PG_owner_priv_1 = 10, -+ PG_arch_1 = 11, -+ PG_reserved = 12, -+ PG_private = 13, -+ PG_private_2 = 14, -+ PG_writeback = 15, -+ PG_head = 16, -+ PG_mappedtodisk = 17, -+ PG_reclaim = 18, -+ PG_swapbacked = 19, -+ PG_unevictable = 20, -+ PG_mlocked = 21, -+ PG_uncached = 22, -+ PG_hwpoison = 23, -+ PG_young = 24, -+ PG_idle = 25, -+ PG_arch_2 = 26, -+ __NR_PAGEFLAGS = 27, -+ PG_checked = 10, -+ PG_swapcache = 10, -+ PG_fscache = 14, -+ PG_pinned = 10, -+ PG_savepinned = 3, -+ PG_foreign = 10, -+ PG_xen_remapped = 10, -+ PG_slob_free = 13, -+ PG_double_map = 6, -+ PG_isolated = 18, -+ PG_reported = 2, -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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]; -+}; -+ -+struct lbr_entry { -+ u64 from; -+ u64 to; -+ u64 info; -+}; -+ -+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 entry_stack { -+ char stack[4096]; -+}; -+ -+struct entry_stack_page { -+ struct entry_stack stack; -+}; -+ -+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 debug_store_buffers { -+ char bts_buffer[65536]; -+ char pebs_buffer[65536]; -+}; -+ -+struct cea_exception_stacks { -+ char DF_stack_guard[4096]; -+ char DF_stack[4096]; -+ char NMI_stack_guard[4096]; -+ char NMI_stack[4096]; -+ char DB_stack_guard[4096]; -+ char DB_stack[4096]; -+ char MCE_stack_guard[4096]; -+ char MCE_stack[4096]; -+ char VC_stack_guard[4096]; -+ char VC_stack[4096]; -+ char VC2_stack_guard[4096]; -+ char VC2_stack[4096]; -+ char IST_top_guard[4096]; -+}; -+ -+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; -+}; -+ -+struct pebs_basic { -+ u64 format_size; -+ u64 ip; -+ u64 applicable_counters; -+ u64 tsc; -+}; -+ -+struct pebs_meminfo { -+ u64 address; -+ u64 aux; -+ u64 latency; -+ 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 x86_perf_regs { -+ struct pt_regs regs; -+ u64 *xmm_regs; -+}; -+ -+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 { -+ PERF_TXN_ELISION = 1, -+ PERF_TXN_TRANSACTION = 2, -+ PERF_TXN_SYNC = 4, -+ PERF_TXN_ASYNC = 8, -+ PERF_TXN_RETRY = 16, -+ PERF_TXN_CONFLICT = 32, -+ PERF_TXN_CAPACITY_WRITE = 64, -+ PERF_TXN_CAPACITY_READ = 128, -+ PERF_TXN_MAX = 256, -+ PERF_TXN_ABORT_MASK = 0, -+ PERF_TXN_ABORT_SHIFT = 32, -+}; -+ -+struct perf_event_header { -+ __u32 type; -+ __u16 misc; -+ __u16 size; -+}; -+ -+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 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; -+}; -+ -+struct bts_record { -+ u64 from; -+ u64 to; -+ u64 flags; -+}; -+ -+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_MAX = 11, -+}; -+ -+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_RSRVD_COMP_11 = 11, -+ XFEATURE_RSRVD_COMP_12 = 12, -+ XFEATURE_RSRVD_COMP_13 = 13, -+ XFEATURE_RSRVD_COMP_14 = 14, -+ XFEATURE_LBR = 15, -+ XFEATURE_MAX = 16, -+}; -+ -+struct arch_lbr_state { -+ u64 lbr_ctl; -+ u64 lbr_depth; -+ u64 ler_from; -+ u64 ler_to; -+ u64 ler_info; -+ struct lbr_entry entries[0]; -+}; -+ -+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; -+ } split; -+ unsigned int full; -+}; -+ -+struct x86_pmu_lbr { -+ unsigned int nr; -+ unsigned int from; -+ unsigned int to; -+ unsigned int info; -+}; -+ -+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: 32; -+ 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 { -+ 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, -+}; -+ -+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, -+}; -+ -+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; -+ char cntr[6]; -+}; -+ -+struct p4_pebs_bind { -+ unsigned int metric_pebs; -+ unsigned int metric_vert; -+}; -+ -+struct p4_event_alias { -+ u64 original; -+ u64 alternative; -+}; -+ -+enum cpuid_regs_idx { -+ CPUID_EAX = 0, -+ CPUID_EBX = 1, -+ CPUID_ECX = 2, -+ CPUID_EDX = 3, -+}; -+ -+struct dev_ext_attribute { -+ struct device_attribute attr; -+ void *var; -+}; -+ -+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_topa_output = 7, -+ PT_CAP_topa_multiple_entries = 8, -+ PT_CAP_single_range_output = 9, -+ PT_CAP_output_subsys = 10, -+ PT_CAP_payloads_lip = 11, -+ PT_CAP_num_address_ranges = 12, -+ PT_CAP_mtc_periods = 13, -+ PT_CAP_cycle_thresholds = 14, -+ PT_CAP_psb_periods = 15, -+}; -+ -+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 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: 36; -+ u64 rsvd4: 16; -+}; -+ -+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; -+ 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; -+ 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; -+}; -+ -+typedef s8 int8_t; -+ -+typedef u8 uint8_t; -+ -+typedef u64 uint64_t; -+ -+struct atomic_notifier_head { -+ spinlock_t lock; -+ struct notifier_block *head; -+}; -+ -+enum xen_domain_type { -+ XEN_NATIVE = 0, -+ XEN_PV_DOMAIN = 1, -+ XEN_HVM_DOMAIN = 2, -+}; -+ -+typedef long unsigned int xen_pfn_t; -+ -+typedef long unsigned int xen_ulong_t; -+ -+struct arch_shared_info { -+ long unsigned int max_pfn; -+ xen_pfn_t pfn_to_mfn_frame_list_list; -+ long unsigned int nmi_reason; -+ long unsigned int p2m_cr3; -+ long unsigned int p2m_vaddr; -+ long unsigned int p2m_generation; -+}; -+ -+struct arch_vcpu_info { -+ long unsigned int cr2; -+ long unsigned int pad; -+}; -+ -+struct pvclock_wall_clock { -+ u32 version; -+ u32 sec; -+ u32 nsec; -+}; -+ -+struct vcpu_info { -+ uint8_t evtchn_upcall_pending; -+ uint8_t evtchn_upcall_mask; -+ xen_ulong_t evtchn_pending_sel; -+ struct arch_vcpu_info arch; -+ struct pvclock_vcpu_time_info time; -+}; -+ -+struct shared_info { -+ struct vcpu_info vcpu_info[32]; -+ xen_ulong_t evtchn_pending[64]; -+ xen_ulong_t evtchn_mask[64]; -+ struct pvclock_wall_clock wc; -+ uint32_t wc_sec_hi; -+ struct arch_shared_info arch; -+}; -+ -+struct start_info { -+ char magic[32]; -+ long unsigned int nr_pages; -+ long unsigned int shared_info; -+ uint32_t flags; -+ xen_pfn_t store_mfn; -+ uint32_t store_evtchn; -+ union { -+ struct { -+ xen_pfn_t mfn; -+ uint32_t evtchn; -+ } domU; -+ struct { -+ uint32_t info_off; -+ uint32_t info_size; -+ } dom0; -+ } console; -+ long unsigned int pt_base; -+ long unsigned int nr_pt_frames; -+ long unsigned int mfn_list; -+ long unsigned int mod_start; -+ long unsigned int mod_len; -+ int8_t cmd_line[1024]; -+ long unsigned int first_p2m_pfn; -+ long unsigned int nr_p2m_frames; -+}; -+ -+struct sched_shutdown { -+ unsigned int reason; -+}; -+ -+struct sched_pin_override { -+ int32_t pcpu; -+}; -+ -+struct vcpu_register_vcpu_info { -+ uint64_t mfn; -+ uint32_t offset; -+ uint32_t rsvd; -+}; -+ -+struct xmaddr { -+ phys_addr_t maddr; -+}; -+ -+typedef struct xmaddr xmaddr_t; -+ -+struct xpaddr { -+ phys_addr_t paddr; -+}; -+ -+typedef struct xpaddr xpaddr_t; -+ -+enum irqreturn { -+ IRQ_NONE = 0, -+ IRQ_HANDLED = 1, -+ IRQ_WAKE_THREAD = 2, -+}; -+ -+typedef enum irqreturn irqreturn_t; -+ -+enum clocksource_ids { -+ CSID_GENERIC = 0, -+ CSID_ARM_ARCH_COUNTER = 1, -+ CSID_MAX = 2, -+}; -+ -+struct clocksource { -+ u64 (*read)(struct clocksource *); -+ u64 mask; -+ u32 mult; -+ u32 shift; -+ u64 max_idle_ns; -+ u32 maxadj; -+ u32 uncertainty_margin; -+ u64 max_cycles; -+ const char *name; -+ struct list_head list; -+ int rating; -+ enum clocksource_ids id; -+ enum vdso_clock_mode vdso_clock_mode; -+ long unsigned int flags; -+ 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; -+}; -+ -+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, -+}; -+ -+struct x86_init_mpparse { -+ void (*setup_ioapic_ids)(); -+ void (*find_smp_config)(); -+ void (*get_smp_config)(unsigned int); -+}; -+ -+struct x86_init_resources { -+ void (*probe_roms)(); -+ void (*reserve_resources)(); -+ char * (*memory_setup)(); -+}; -+ -+struct x86_init_irqs { -+ void (*pre_vector_init)(); -+ void (*intr_init)(); -+ void (*intr_mode_select)(); -+ void (*intr_mode_init)(); -+ struct irq_domain * (*create_pci_msi_domain)(); -+}; -+ -+struct x86_init_oem { -+ void (*arch_setup)(); -+ void (*banner)(); -+}; -+ -+struct x86_init_paging { -+ void (*pagetable_init)(); -+}; -+ -+struct x86_init_timers { -+ void (*setup_percpu_clockev)(); -+ void (*timer_init)(); -+ void (*wallclock_init)(); -+}; -+ -+struct x86_init_iommu { -+ int (*iommu_init)(); -+}; -+ -+struct x86_init_pci { -+ int (*arch_init)(); -+ int (*init)(); -+ void (*init_irq)(); -+ void (*fixup_irqs)(); -+}; -+ -+struct x86_hyper_init { -+ void (*init_platform)(); -+ void (*guest_late_init)(); -+ bool (*x2apic_available)(); -+ bool (*msi_ext_dest_id)(); -+ void (*init_mem_mapping)(); -+ void (*init_after_bootmem)(); -+}; -+ -+struct x86_init_acpi { -+ void (*set_root_pointer)(u64); -+ u64 (*get_root_pointer)(); -+ void (*reduced_hw_early_init)(); -+}; -+ -+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 x86_cpuinit_ops { -+ void (*setup_percpu_clockev)(); -+ void (*early_percpu_clock_init)(); -+ void (*fixup_cpu_id)(struct cpuinfo_x86 *, int); -+}; -+ -+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 vcpu_time_info { -+ uint32_t version; -+ uint32_t pad0; -+ uint64_t tsc_timestamp; -+ uint64_t system_time; -+ uint32_t tsc_to_system_mul; -+ int8_t tsc_shift; -+ int8_t pad1[3]; -+}; -+ -+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; -+ long unsigned int hwirq; -+ struct irq_common_data *common; -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ struct irq_data *parent_data; -+ void *chip_data; -+}; -+ -+struct irq_desc { -+ struct irq_common_data irq_common_data; -+ struct irq_data irq_data; -+ unsigned int *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; -+ long: 64; -+ long: 64; -+ 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 { -+ 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; -+} __attribute__((packed)); -+ -+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 platform_msi_priv_data; -+ -+struct platform_msi_desc { -+ struct platform_msi_priv_data *msi_priv_data; -+ u16 msi_index; -+}; -+ -+struct fsl_mc_msi_desc { -+ u16 msi_index; -+}; -+ -+struct ti_sci_inta_msi_desc { -+ u16 dev_index; -+}; -+ -+struct msi_desc { -+ struct list_head list; -+ unsigned int irq; -+ unsigned int nvec_used; -+ struct device *dev; -+ struct msi_msg msg; -+ struct irq_affinity_desc *affinity; -+ const void *iommu_cookie; -+ void (*write_msi_msg)(struct msi_desc *, void *); -+ void *write_msi_msg_data; -+ union { -+ struct { -+ u32 masked; -+ struct { -+ u8 is_msix: 1; -+ u8 multiple: 3; -+ u8 multi_cap: 3; -+ u8 maskbit: 1; -+ u8 is_64: 1; -+ u8 is_virtual: 1; -+ u16 entry_nr; -+ unsigned int default_irq; -+ } msi_attrib; -+ union { -+ u8 mask_pos; -+ void *mask_base; -+ }; -+ }; -+ struct platform_msi_desc platform; -+ struct fsl_mc_msi_desc fsl_mc; -+ struct ti_sci_inta_msi_desc inta; -+ }; -+}; -+ -+struct irq_chip { -+ struct device *parent_device; -+ 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_cpu_online)(struct irq_data *); -+ void (*irq_cpu_offline)(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 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; -+ long unsigned int polarity; -+}; -+ -+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 type_cache; -+ u32 polarity_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; -+ struct irq_chip_generic *gc[0]; -+}; -+ -+struct vcpu_set_singleshot_timer { -+ uint64_t timeout_abs_ns; -+ uint32_t flags; -+}; -+ -+typedef struct vcpu_time_info *__guest_handle_vcpu_time_info; -+ -+struct vcpu_register_time_memory_area { -+ union { -+ __guest_handle_vcpu_time_info h; -+ struct pvclock_vcpu_time_info *v; -+ uint64_t p; -+ } addr; -+}; -+ -+struct xen_clock_event_device { -+ struct clock_event_device evt; -+ char name[16]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef u16 uint16_t; -+ -+typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); -+ -+typedef uint16_t grant_status_t; -+ -+struct gnttab_vm_area { -+ struct vm_struct *area; -+ pte_t **ptes; -+ int idx; -+}; -+ -+struct pv_info { -+ const char *name; -+}; -+ -+typedef uint16_t domid_t; -+ -+struct xen_add_to_physmap { -+ domid_t domid; -+ uint16_t size; -+ unsigned int space; -+ xen_ulong_t idx; -+ xen_pfn_t gpfn; -+}; -+ -+struct machine_ops { -+ void (*restart)(char *); -+ void (*halt)(); -+ void (*power_off)(); -+ void (*shutdown)(); -+ void (*crash_shutdown)(struct pt_regs *); -+ void (*emergency_restart)(); -+}; -+ -+struct irqentry_state { -+ union { -+ bool exit_rcu; -+ bool lockdep; -+ }; -+}; -+ -+typedef struct irqentry_state irqentry_state_t; -+ -+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, -+}; -+ -+struct hypervisor_x86 { -+ const char *name; -+ uint32_t (*detect)(); -+ enum x86_hypervisor_type type; -+ struct x86_hyper_init init; -+ struct x86_hyper_runtime runtime; -+ bool ignore_nopv; -+}; -+ -+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, -+ E820_TYPE_RESERVED_KERN = 128, -+}; -+ -+struct xen_hvm_pagetable_dying { -+ domid_t domid; -+ __u64 gpa; -+}; -+ -+enum hvmmem_type_t { -+ HVMMEM_ram_rw = 0, -+ HVMMEM_ram_ro = 1, -+ HVMMEM_mmio_dm = 2, -+}; -+ -+struct xen_hvm_get_mem_type { -+ domid_t domid; -+ uint16_t mem_type; -+ uint16_t pad[2]; -+ uint64_t pfn; -+}; -+ -+enum paravirt_lazy_mode { -+ PARAVIRT_LAZY_NONE = 0, -+ PARAVIRT_LAZY_MMU = 1, -+ PARAVIRT_LAZY_CPU = 2, -+}; -+ -+typedef long int xen_long_t; -+ -+struct multicall_entry { -+ xen_ulong_t op; -+ xen_long_t result; -+ xen_ulong_t args[6]; -+}; -+ -+enum xen_mc_flush_reason { -+ XEN_MC_FL_NONE = 0, -+ XEN_MC_FL_BATCH = 1, -+ XEN_MC_FL_ARGS = 2, -+ XEN_MC_FL_CALLBACK = 3, -+}; -+ -+enum xen_mc_extend_args { -+ XEN_MC_XE_OK = 0, -+ XEN_MC_XE_BAD_OP = 1, -+ XEN_MC_XE_NO_SPACE = 2, -+}; -+ -+typedef void (*xen_mc_callback_fn_t)(void *); -+ -+struct trace_event_raw_xen_mc__batch { -+ struct trace_entry ent; -+ enum paravirt_lazy_mode mode; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_entry { -+ struct trace_entry ent; -+ unsigned int op; -+ unsigned int nargs; -+ long unsigned int args[6]; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_entry_alloc { -+ struct trace_entry ent; -+ size_t args; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_callback { -+ struct trace_entry ent; -+ xen_mc_callback_fn_t fn; -+ void *data; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_flush_reason { -+ struct trace_entry ent; -+ enum xen_mc_flush_reason reason; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_flush { -+ struct trace_entry ent; -+ unsigned int mcidx; -+ unsigned int argidx; -+ unsigned int cbidx; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mc_extend_args { -+ struct trace_entry ent; -+ unsigned int op; -+ size_t args; -+ enum xen_mc_extend_args res; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu__set_pte { -+ struct trace_entry ent; -+ pte_t *ptep; -+ pteval_t pteval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_set_pmd { -+ struct trace_entry ent; -+ pmd_t *pmdp; -+ pmdval_t pmdval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_set_pud { -+ struct trace_entry ent; -+ pud_t *pudp; -+ pudval_t pudval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_set_p4d { -+ struct trace_entry ent; -+ p4d_t *p4dp; -+ p4d_t *user_p4dp; -+ p4dval_t p4dval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_ptep_modify_prot { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ long unsigned int addr; -+ pte_t *ptep; -+ pteval_t pteval; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_alloc_ptpage { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ long unsigned int pfn; -+ unsigned int level; -+ bool pinned; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_release_ptpage { -+ struct trace_entry ent; -+ long unsigned int pfn; -+ unsigned int level; -+ bool pinned; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_pgd { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ pgd_t *pgd; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_mmu_flush_tlb_one_user { -+ struct trace_entry ent; -+ long unsigned int addr; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_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_xen_mmu_write_cr3 { -+ struct trace_entry ent; -+ bool kernel; -+ long unsigned int cr3; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_cpu_write_ldt_entry { -+ struct trace_entry ent; -+ struct desc_struct *dt; -+ int entrynum; -+ u64 desc; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_cpu_write_idt_entry { -+ struct trace_entry ent; -+ gate_desc *dt; -+ int entrynum; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_cpu_load_idt { -+ struct trace_entry ent; -+ long unsigned int addr; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_cpu_write_gdt_entry { -+ struct trace_entry ent; -+ u64 desc; -+ struct desc_struct *dt; -+ int entrynum; -+ int type; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xen_cpu_set_ldt { -+ struct trace_entry ent; -+ const void *addr; -+ unsigned int entries; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_xen_mc__batch {}; -+ -+struct trace_event_data_offsets_xen_mc_entry {}; -+ -+struct trace_event_data_offsets_xen_mc_entry_alloc {}; -+ -+struct trace_event_data_offsets_xen_mc_callback {}; -+ -+struct trace_event_data_offsets_xen_mc_flush_reason {}; -+ -+struct trace_event_data_offsets_xen_mc_flush {}; -+ -+struct trace_event_data_offsets_xen_mc_extend_args {}; -+ -+struct trace_event_data_offsets_xen_mmu__set_pte {}; -+ -+struct trace_event_data_offsets_xen_mmu_set_pmd {}; -+ -+struct trace_event_data_offsets_xen_mmu_set_pud {}; -+ -+struct trace_event_data_offsets_xen_mmu_set_p4d {}; -+ -+struct trace_event_data_offsets_xen_mmu_ptep_modify_prot {}; -+ -+struct trace_event_data_offsets_xen_mmu_alloc_ptpage {}; -+ -+struct trace_event_data_offsets_xen_mmu_release_ptpage {}; -+ -+struct trace_event_data_offsets_xen_mmu_pgd {}; -+ -+struct trace_event_data_offsets_xen_mmu_flush_tlb_one_user {}; -+ -+struct trace_event_data_offsets_xen_mmu_flush_tlb_multi {}; -+ -+struct trace_event_data_offsets_xen_mmu_write_cr3 {}; -+ -+struct trace_event_data_offsets_xen_cpu_write_ldt_entry {}; -+ -+struct trace_event_data_offsets_xen_cpu_write_idt_entry {}; -+ -+struct trace_event_data_offsets_xen_cpu_load_idt {}; -+ -+struct trace_event_data_offsets_xen_cpu_write_gdt_entry {}; -+ -+struct trace_event_data_offsets_xen_cpu_set_ldt {}; -+ -+typedef void (*btf_trace_xen_mc_batch)(void *, enum paravirt_lazy_mode); -+ -+typedef void (*btf_trace_xen_mc_issue)(void *, enum paravirt_lazy_mode); -+ -+typedef void (*btf_trace_xen_mc_entry)(void *, struct multicall_entry *, unsigned int); -+ -+typedef void (*btf_trace_xen_mc_entry_alloc)(void *, size_t); -+ -+typedef void (*btf_trace_xen_mc_callback)(void *, xen_mc_callback_fn_t, void *); -+ -+typedef void (*btf_trace_xen_mc_flush_reason)(void *, enum xen_mc_flush_reason); -+ -+typedef void (*btf_trace_xen_mc_flush)(void *, unsigned int, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_xen_mc_extend_args)(void *, long unsigned int, size_t, enum xen_mc_extend_args); -+ -+typedef void (*btf_trace_xen_mmu_set_pte)(void *, pte_t *, pte_t); -+ -+typedef void (*btf_trace_xen_mmu_set_pmd)(void *, pmd_t *, pmd_t); -+ -+typedef void (*btf_trace_xen_mmu_set_pud)(void *, pud_t *, pud_t); -+ -+typedef void (*btf_trace_xen_mmu_set_p4d)(void *, p4d_t *, p4d_t *, p4d_t); -+ -+typedef void (*btf_trace_xen_mmu_ptep_modify_prot_start)(void *, struct mm_struct *, long unsigned int, pte_t *, pte_t); -+ -+typedef void (*btf_trace_xen_mmu_ptep_modify_prot_commit)(void *, struct mm_struct *, long unsigned int, pte_t *, pte_t); -+ -+typedef void (*btf_trace_xen_mmu_alloc_ptpage)(void *, struct mm_struct *, long unsigned int, unsigned int, bool); -+ -+typedef void (*btf_trace_xen_mmu_release_ptpage)(void *, long unsigned int, unsigned int, bool); -+ -+typedef void (*btf_trace_xen_mmu_pgd_pin)(void *, struct mm_struct *, pgd_t *); -+ -+typedef void (*btf_trace_xen_mmu_pgd_unpin)(void *, struct mm_struct *, pgd_t *); -+ -+typedef void (*btf_trace_xen_mmu_flush_tlb_one_user)(void *, long unsigned int); -+ -+typedef void (*btf_trace_xen_mmu_flush_tlb_multi)(void *, const struct cpumask *, struct mm_struct *, long unsigned int, long unsigned int); -+ -+typedef void (*btf_trace_xen_mmu_write_cr3)(void *, bool, long unsigned int); -+ -+typedef void (*btf_trace_xen_cpu_write_ldt_entry)(void *, struct desc_struct *, int, u64); -+ -+typedef void (*btf_trace_xen_cpu_write_idt_entry)(void *, gate_desc *, int, const gate_desc *); -+ -+typedef void (*btf_trace_xen_cpu_load_idt)(void *, const struct desc_ptr *); -+ -+typedef void (*btf_trace_xen_cpu_write_gdt_entry)(void *, struct desc_struct *, int, const void *, int); -+ -+typedef void (*btf_trace_xen_cpu_set_ldt)(void *, const void *, unsigned int); -+ -+enum ipi_vector { -+ XEN_RESCHEDULE_VECTOR = 0, -+ XEN_CALL_FUNCTION_VECTOR = 1, -+ XEN_CALL_FUNCTION_SINGLE_VECTOR = 2, -+ XEN_SPIN_UNLOCK_VECTOR = 3, -+ XEN_IRQ_WORK_VECTOR = 4, -+ XEN_NMI_VECTOR = 5, -+ XEN_NR_IPIS = 6, -+}; -+ -+struct xen_common_irq { -+ int irq; -+ char *name; -+}; -+ -+struct io_tlb_slot; -+ -+struct io_tlb_mem { -+ phys_addr_t start; -+ phys_addr_t end; -+ long unsigned int nslabs; -+ long unsigned int used; -+ unsigned int index; -+ spinlock_t lock; -+ struct dentry *debugfs; -+ bool late_alloc; -+ bool force_bounce; -+ bool for_alloc; -+ struct io_tlb_slot *slots; -+}; -+ -+struct scatterlist { -+ long unsigned int page_link; -+ unsigned int offset; -+ unsigned int length; -+ dma_addr_t dma_address; -+ unsigned int dma_length; -+}; -+ -+struct sg_table { -+ struct scatterlist *sgl; -+ unsigned int nents; -+ unsigned int orig_nents; -+}; -+ -+enum swiotlb_force { -+ SWIOTLB_NORMAL = 0, -+ SWIOTLB_FORCE = 1, -+ SWIOTLB_NO_FORCE = 2, -+}; -+ -+struct io_tlb_slot { -+ phys_addr_t orig_addr; -+ size_t alloc_size; -+ unsigned int list; -+}; -+ -+struct iommu_table_entry { -+ initcall_t detect; -+ initcall_t depend; -+ void (*early_init)(); -+ void (*late_init)(); -+ int flags; -+}; -+ -+typedef s16 int16_t; -+ -+union efi_boot_services; -+ -+typedef union efi_boot_services efi_boot_services_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; -+ -+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; -+ -+enum efi_secureboot_mode { -+ efi_secureboot_mode_unset = 0, -+ efi_secureboot_mode_unknown = 1, -+ efi_secureboot_mode_disabled = 2, -+ efi_secureboot_mode_enabled = 3, -+}; -+ -+typedef unsigned char *__guest_handle_uchar; -+ -+typedef char *__guest_handle_char; -+ -+typedef void *__guest_handle_void; -+ -+typedef uint64_t *__guest_handle_uint64_t; -+ -+typedef uint32_t *__guest_handle_uint32_t; -+ -+struct xenpf_settime32 { -+ uint32_t secs; -+ uint32_t nsecs; -+ uint64_t system_time; -+}; -+ -+struct xenpf_settime64 { -+ uint64_t secs; -+ uint32_t nsecs; -+ uint32_t mbz; -+ uint64_t system_time; -+}; -+ -+struct xenpf_add_memtype { -+ xen_pfn_t mfn; -+ uint64_t nr_mfns; -+ uint32_t type; -+ uint32_t handle; -+ uint32_t reg; -+}; -+ -+struct xenpf_del_memtype { -+ uint32_t handle; -+ uint32_t reg; -+}; -+ -+struct xenpf_read_memtype { -+ uint32_t reg; -+ xen_pfn_t mfn; -+ uint64_t nr_mfns; -+ uint32_t type; -+}; -+ -+struct xenpf_microcode_update { -+ __guest_handle_void data; -+ uint32_t length; -+}; -+ -+struct xenpf_platform_quirk { -+ uint32_t quirk_id; -+}; -+ -+struct xenpf_efi_time { -+ uint16_t year; -+ uint8_t month; -+ uint8_t day; -+ uint8_t hour; -+ uint8_t min; -+ uint8_t sec; -+ uint32_t ns; -+ int16_t tz; -+ uint8_t daylight; -+}; -+ -+struct xenpf_efi_guid { -+ uint32_t data1; -+ uint16_t data2; -+ uint16_t data3; -+ uint8_t data4[8]; -+}; -+ -+struct xenpf_efi_runtime_call { -+ uint32_t function; -+ uint32_t misc; -+ xen_ulong_t status; -+ union { -+ struct { -+ struct xenpf_efi_time time; -+ uint32_t resolution; -+ uint32_t accuracy; -+ } get_time; -+ struct xenpf_efi_time set_time; -+ struct xenpf_efi_time get_wakeup_time; -+ struct xenpf_efi_time set_wakeup_time; -+ struct { -+ __guest_handle_void name; -+ xen_ulong_t size; -+ __guest_handle_void data; -+ struct xenpf_efi_guid vendor_guid; -+ } get_variable; -+ struct { -+ __guest_handle_void name; -+ xen_ulong_t size; -+ __guest_handle_void data; -+ struct xenpf_efi_guid vendor_guid; -+ } set_variable; -+ struct { -+ xen_ulong_t size; -+ __guest_handle_void name; -+ struct xenpf_efi_guid vendor_guid; -+ } get_next_variable_name; -+ struct { -+ uint32_t attr; -+ uint64_t max_store_size; -+ uint64_t remain_store_size; -+ uint64_t max_size; -+ } query_variable_info; -+ struct { -+ __guest_handle_void capsule_header_array; -+ xen_ulong_t capsule_count; -+ uint64_t max_capsule_size; -+ uint32_t reset_type; -+ } query_capsule_capabilities; -+ struct { -+ __guest_handle_void capsule_header_array; -+ xen_ulong_t capsule_count; -+ uint64_t sg_list; -+ } update_capsule; -+ } u; -+}; -+ -+union xenpf_efi_info { -+ uint32_t version; -+ struct { -+ uint64_t addr; -+ uint32_t nent; -+ } cfg; -+ struct { -+ uint32_t revision; -+ uint32_t bufsz; -+ __guest_handle_void name; -+ } vendor; -+ struct { -+ uint64_t addr; -+ uint64_t size; -+ uint64_t attr; -+ uint32_t type; -+ } mem; -+}; -+ -+struct xenpf_firmware_info { -+ uint32_t type; -+ uint32_t index; -+ union { -+ struct { -+ uint8_t device; -+ uint8_t version; -+ uint16_t interface_support; -+ uint16_t legacy_max_cylinder; -+ uint8_t legacy_max_head; -+ uint8_t legacy_sectors_per_track; -+ __guest_handle_void edd_params; -+ } disk_info; -+ struct { -+ uint8_t device; -+ uint32_t mbr_signature; -+ } disk_mbr_signature; -+ struct { -+ uint8_t capabilities; -+ uint8_t edid_transfer_time; -+ __guest_handle_uchar edid; -+ } vbeddc_info; -+ union xenpf_efi_info efi_info; -+ uint8_t kbd_shift_flags; -+ } u; -+}; -+ -+struct xenpf_enter_acpi_sleep { -+ uint16_t val_a; -+ uint16_t val_b; -+ uint32_t sleep_state; -+ uint32_t flags; -+}; -+ -+struct xenpf_change_freq { -+ uint32_t flags; -+ uint32_t cpu; -+ uint64_t freq; -+}; -+ -+struct xenpf_getidletime { -+ __guest_handle_uchar cpumap_bitmap; -+ uint32_t cpumap_nr_cpus; -+ __guest_handle_uint64_t idletime; -+ uint64_t now; -+}; -+ -+struct xen_power_register { -+ uint32_t space_id; -+ uint32_t bit_width; -+ uint32_t bit_offset; -+ uint32_t access_size; -+ uint64_t address; -+}; -+ -+struct xen_processor_csd { -+ uint32_t domain; -+ uint32_t coord_type; -+ uint32_t num; -+}; -+ -+typedef struct xen_processor_csd *__guest_handle_xen_processor_csd; -+ -+struct xen_processor_cx { -+ struct xen_power_register reg; -+ uint8_t type; -+ uint32_t latency; -+ uint32_t power; -+ uint32_t dpcnt; -+ __guest_handle_xen_processor_csd dp; -+}; -+ -+typedef struct xen_processor_cx *__guest_handle_xen_processor_cx; -+ -+struct xen_processor_flags { -+ uint32_t bm_control: 1; -+ uint32_t bm_check: 1; -+ uint32_t has_cst: 1; -+ uint32_t power_setup_done: 1; -+ uint32_t bm_rld_set: 1; -+}; -+ -+struct xen_processor_power { -+ uint32_t count; -+ struct xen_processor_flags flags; -+ __guest_handle_xen_processor_cx states; -+}; -+ -+struct xen_pct_register { -+ uint8_t descriptor; -+ uint16_t length; -+ uint8_t space_id; -+ uint8_t bit_width; -+ uint8_t bit_offset; -+ uint8_t reserved; -+ uint64_t address; -+}; -+ -+struct xen_processor_px { -+ uint64_t core_frequency; -+ uint64_t power; -+ uint64_t transition_latency; -+ uint64_t bus_master_latency; -+ uint64_t control; -+ uint64_t status; -+}; -+ -+typedef struct xen_processor_px *__guest_handle_xen_processor_px; -+ -+struct xen_psd_package { -+ uint64_t num_entries; -+ uint64_t revision; -+ uint64_t domain; -+ uint64_t coord_type; -+ uint64_t num_processors; -+}; -+ -+struct xen_processor_performance { -+ uint32_t flags; -+ uint32_t platform_limit; -+ struct xen_pct_register control_register; -+ struct xen_pct_register status_register; -+ uint32_t state_count; -+ __guest_handle_xen_processor_px states; -+ struct xen_psd_package domain_info; -+ uint32_t shared_type; -+}; -+ -+struct xenpf_set_processor_pminfo { -+ uint32_t id; -+ uint32_t type; -+ union { -+ struct xen_processor_power power; -+ struct xen_processor_performance perf; -+ __guest_handle_uint32_t pdc; -+ }; -+}; -+ -+struct xenpf_pcpuinfo { -+ uint32_t xen_cpuid; -+ uint32_t max_present; -+ uint32_t flags; -+ uint32_t apic_id; -+ uint32_t acpi_id; -+}; -+ -+struct xenpf_cpu_ol { -+ uint32_t cpuid; -+}; -+ -+struct xenpf_cpu_hotadd { -+ uint32_t apic_id; -+ uint32_t acpi_id; -+ uint32_t pxm; -+}; -+ -+struct xenpf_mem_hotadd { -+ uint64_t spfn; -+ uint64_t epfn; -+ uint32_t pxm; -+ uint32_t flags; -+}; -+ -+struct xenpf_core_parking { -+ uint32_t type; -+ uint32_t idle_nums; -+}; -+ -+struct xenpf_symdata { -+ uint32_t namelen; -+ uint32_t symnum; -+ __guest_handle_char name; -+ uint64_t address; -+ char type; -+}; -+ -+struct xen_platform_op { -+ uint32_t cmd; -+ uint32_t interface_version; -+ union { -+ struct xenpf_settime32 settime32; -+ struct xenpf_settime64 settime64; -+ struct xenpf_add_memtype add_memtype; -+ struct xenpf_del_memtype del_memtype; -+ struct xenpf_read_memtype read_memtype; -+ struct xenpf_microcode_update microcode; -+ struct xenpf_platform_quirk platform_quirk; -+ struct xenpf_efi_runtime_call efi_runtime_call; -+ struct xenpf_firmware_info firmware_info; -+ struct xenpf_enter_acpi_sleep enter_acpi_sleep; -+ struct xenpf_change_freq change_freq; -+ struct xenpf_getidletime getidletime; -+ struct xenpf_set_processor_pminfo set_pminfo; -+ struct xenpf_pcpuinfo pcpu_info; -+ struct xenpf_cpu_ol cpu_ol; -+ struct xenpf_cpu_hotadd cpu_add; -+ struct xenpf_mem_hotadd mem_add; -+ struct xenpf_core_parking core_parking; -+ struct xenpf_symdata symdata; -+ uint8_t pad[128]; -+ } u; -+}; -+ -+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; -+}; -+ -+enum { -+ WORK_STRUCT_PENDING_BIT = 0, -+ WORK_STRUCT_DELAYED_BIT = 1, -+ WORK_STRUCT_PWQ_BIT = 2, -+ WORK_STRUCT_LINKED_BIT = 3, -+ WORK_STRUCT_COLOR_SHIFT = 4, -+ WORK_STRUCT_COLOR_BITS = 4, -+ WORK_STRUCT_PENDING = 1, -+ WORK_STRUCT_DELAYED = 2, -+ WORK_STRUCT_PWQ = 4, -+ WORK_STRUCT_LINKED = 8, -+ WORK_STRUCT_STATIC = 0, -+ WORK_NR_COLORS = 15, -+ WORK_NO_COLOR = 15, -+ WORK_CPU_UNBOUND = 8192, -+ WORK_STRUCT_FLAG_BITS = 8, -+ WORK_OFFQ_FLAG_BASE = 4, -+ __WORK_OFFQ_CANCELING = 4, -+ WORK_OFFQ_CANCELING = 16, -+ WORK_OFFQ_FLAG_BITS = 1, -+ WORK_OFFQ_POOL_SHIFT = 5, -+ WORK_OFFQ_LEFT = 59, -+ WORK_OFFQ_POOL_BITS = 31, -+ WORK_OFFQ_POOL_NONE = 2147483647, -+ WORK_STRUCT_FLAG_MASK = 255, -+ WORK_STRUCT_WQ_DATA_MASK = 4294967040, -+ WORK_STRUCT_NO_POOL = 4294967264, -+ WORK_BUSY_PENDING = 1, -+ WORK_BUSY_RUNNING = 2, -+ WORKER_DESC_LEN = 24, -+}; -+ -+enum { -+ MEMREMAP_WB = 1, -+ MEMREMAP_WT = 2, -+ MEMREMAP_WC = 4, -+ MEMREMAP_ENC = 8, -+ MEMREMAP_DEC = 16, -+}; -+ -+enum hv_isolation_type { -+ HV_ISOLATION_TYPE_NONE = 0, -+ HV_ISOLATION_TYPE_VBS = 1, -+ HV_ISOLATION_TYPE_SNP = 2, -+}; -+ -+union hv_x64_msr_hypercall_contents { -+ u64 as_uint64; -+ struct { -+ u64 enable: 1; -+ u64 reserved: 11; -+ u64 guest_physical_address: 52; -+ }; -+}; -+ -+struct hv_reenlightenment_control { -+ __u64 vector: 8; -+ __u64 reserved1: 8; -+ __u64 enabled: 1; -+ __u64 reserved2: 15; -+ __u64 target_vp: 32; -+}; -+ -+struct hv_tsc_emulation_control { -+ __u64 enabled: 1; -+ __u64 reserved: 63; -+}; -+ -+struct hv_tsc_emulation_status { -+ __u64 inprogress: 1; -+ __u64 reserved: 63; -+}; -+ -+struct hv_nested_enlightenments_control { -+ struct { -+ __u32 directhypercall: 1; -+ __u32 reserved: 31; -+ } features; -+ struct { -+ __u32 reserved; -+ } hypercallControls; -+}; -+ -+struct hv_vp_assist_page { -+ __u32 apic_assist; -+ __u32 reserved1; -+ __u64 vtl_control[3]; -+ struct hv_nested_enlightenments_control nested_control; -+ __u8 enlighten_vmentry; -+ __u8 reserved2[7]; -+ __u64 current_nested_vmcs; -+}; -+ -+struct hv_get_partition_id { -+ u64 partition_id; -+}; -+ -+struct ms_hyperv_info { -+ u32 features; -+ u32 priv_high; -+ u32 misc_features; -+ u32 hints; -+ u32 nested_features; -+ u32 max_vp_index; -+ u32 max_lp_index; -+ u32 isolation_config_a; -+ u32 isolation_config_b; -+}; -+ -+struct mmu_gather_batch { -+ struct mmu_gather_batch *next; -+ unsigned int nr; -+ unsigned int max; -+ struct page *pages[0]; -+}; -+ -+struct mmu_table_batch; -+ -+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 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 batch_count; -+ struct mmu_gather_batch *active; -+ struct mmu_gather_batch local; -+ struct page *__pages[8]; -+}; -+ -+enum HV_GENERIC_SET_FORMAT { -+ HV_GENERIC_SET_SPARSE_4K = 0, -+ HV_GENERIC_SET_ALL = 1, -+}; -+ -+struct hv_vpset { -+ u64 format; -+ u64 valid_bank_mask; -+ u64 bank_contents[0]; -+}; -+ -+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 mmu_table_batch { -+ struct callback_head rcu; -+ unsigned int nr; -+ void *tables[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 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 *); -+ -+struct acpi_device; -+ -+struct pci_sysdata { -+ int domain; -+ int node; -+ struct acpi_device *companion; -+ void *iommu; -+ void *fwnode; -+ struct pci_dev *vmd_dev; -+}; -+ -+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, -+}; -+ -+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_cfg { -+ unsigned int dest_apicid; -+ unsigned int vector; -+}; -+ -+enum { -+ IRQCHIP_FWNODE_REAL = 0, -+ IRQCHIP_FWNODE_NAMED = 1, -+ IRQCHIP_FWNODE_NAMED_ID = 2, -+}; -+ -+typedef struct irq_alloc_info msi_alloc_info_t; -+ -+struct msi_domain_info; -+ -+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_check)(struct irq_domain *, struct msi_domain_info *, struct device *); -+ int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); -+ void (*msi_finish)(msi_alloc_info_t *, int); -+ void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); -+ int (*handle_error)(struct irq_domain *, struct msi_desc *, int); -+ int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); -+ void (*domain_free_irqs)(struct irq_domain *, struct device *); -+}; -+ -+struct msi_domain_info { -+ u32 flags; -+ 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 { -+ MSI_FLAG_USE_DEF_DOM_OPS = 1, -+ MSI_FLAG_USE_DEF_CHIP_OPS = 2, -+ MSI_FLAG_MULTI_PCI_MSI = 4, -+ MSI_FLAG_PCI_MSIX = 8, -+ MSI_FLAG_ACTIVATE_EARLY = 16, -+ MSI_FLAG_MUST_REACTIVATE = 32, -+ MSI_FLAG_LEVEL_CAPABLE = 64, -+}; -+ -+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, -+}; -+ -+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; -+ }; -+}; -+ -+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; -+ }; -+}; -+ -+enum hv_device_type { -+ HV_DEVICE_TYPE_LOGICAL = 0, -+ HV_DEVICE_TYPE_PCI = 1, -+ HV_DEVICE_TYPE_IOAPIC = 2, -+ HV_DEVICE_TYPE_ACPI = 3, -+}; -+ -+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; -+ }; -+}; -+ -+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; -+}; -+ -+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; -+ u64 flags; -+ 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; -+}; -+ -+struct hv_input_unmap_device_interrupt { -+ u64 partition_id; -+ u64 device_id; -+ struct hv_interrupt_entry interrupt_entry; -+}; -+ -+struct rid_data { -+ struct pci_dev *bridge; -+ u32 rid; -+}; -+ -+struct hv_send_ipi { -+ u32 vector; -+ u32 reserved; -+ u64 cpu_mask; -+}; -+ -+struct hv_send_ipi_ex { -+ u32 vector; -+ u32 reserved; -+ struct hv_vpset vp_set; -+}; -+ -+struct hv_deposit_memory { -+ u64 partition_id; -+ u64 gpa_page_list[0]; -+}; -+ -+struct hv_proximity_domain_flags { -+ u32 proximity_preferred: 1; -+ u32 reserved: 30; -+ u32 proximity_info_valid: 1; -+}; -+ -+union hv_proximity_domain_info { -+ struct { -+ u32 domain_id; -+ struct hv_proximity_domain_flags flags; -+ }; -+ u64 as_uint64; -+}; -+ -+struct hv_lp_startup_status { -+ u64 hv_status; -+ u64 substatus1; -+ u64 substatus2; -+ u64 substatus3; -+ u64 substatus4; -+ u64 substatus5; -+ u64 substatus6; -+}; -+ -+struct hv_add_logical_processor_in { -+ u32 lp_index; -+ u32 apic_id; -+ union hv_proximity_domain_info proximity_domain_info; -+ u64 flags; -+}; -+ -+struct hv_add_logical_processor_out { -+ struct hv_lp_startup_status startup_status; -+}; -+ -+enum HV_SUBNODE_TYPE { -+ HvSubnodeAny = 0, -+ HvSubnodeSocket = 1, -+ HvSubnodeAmdNode = 2, -+ HvSubnodeL3 = 3, -+ HvSubnodeCount = 4, -+ HvSubnodeInvalid = 4294967295, -+}; -+ -+struct hv_create_vp { -+ u64 partition_id; -+ u32 vp_index; -+ u8 padding[3]; -+ u8 subnode_type; -+ u64 subnode_id; -+ union hv_proximity_domain_info proximity_domain_info; -+ u64 flags; -+}; -+ -+struct real_mode_header { -+ u32 text_start; -+ u32 ro_end; -+ u32 trampoline_start; -+ u32 trampoline_header; -+ u32 sev_es_trampoline_start; -+ u32 trampoline_pgd; -+ u32 wakeup_start; -+ u32 wakeup_header; -+ u32 machine_real_restart_asm; -+ u32 machine_real_restart_seg; -+}; -+ -+struct trampoline_header { -+ u64 start; -+ u64 efer; -+ u32 cr4; -+ u32 flags; -+}; -+ -+enum show_regs_mode { -+ SHOW_REGS_SHORT = 0, -+ SHOW_REGS_USER = 1, -+ SHOW_REGS_ALL = 2, -+}; -+ -+struct resctrl_pqr_state { -+ u32 cur_rmid; -+ u32 cur_closid; -+ u32 default_rmid; -+ u32 default_closid; -+}; -+ -+enum which_selector { -+ FS = 0, -+ GS = 1, -+}; -+ -+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 sigaltstack { -+ void *ss_sp; -+ int ss_flags; -+ size_t ss_size; -+}; -+ -+typedef struct sigaltstack stack_t; -+ -+struct siginfo { -+ union { -+ struct { -+ int si_signo; -+ int si_errno; -+ int si_code; -+ union __sifields _sifields; -+ }; -+ int _si_pad[32]; -+ }; -+}; -+ -+typedef struct siginfo siginfo_t; -+ -+struct ksignal { -+ struct k_sigaction ka; -+ kernel_siginfo_t info; -+ int sig; -+}; -+ -+struct __large_struct { -+ long unsigned int buf[100]; -+}; -+ -+typedef u32 compat_sigset_word; -+ -+typedef struct { -+ compat_sigset_word sig[2]; -+} compat_sigset_t; -+ -+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 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 rt_sigframe { -+ char *pretcode; -+ struct ucontext uc; -+ struct siginfo info; -+}; -+ -+typedef s32 compat_clock_t; -+ -+typedef s32 compat_pid_t; -+ -+typedef s32 compat_timer_t; -+ -+typedef s32 compat_int_t; -+ -+typedef u32 compat_ulong_t; -+ -+typedef u32 __compat_uid32_t; -+ -+union compat_sigval { -+ compat_int_t sival_int; -+ compat_uptr_t sival_ptr; -+}; -+ -+typedef union compat_sigval compat_sigval_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; -+ } _perf; -+ }; -+ } _sigfault; -+ struct { -+ compat_long_t _band; -+ int _fd; -+ } _sigpoll; -+ struct { -+ compat_uptr_t _call_addr; -+ int _syscall; -+ unsigned int _arch; -+ } _sigsys; -+ } _sifields; -+}; -+ -+typedef struct compat_siginfo compat_siginfo_t; -+ -+enum bug_trap_type { -+ BUG_TRAP_TYPE_NONE = 0, -+ BUG_TRAP_TYPE_WARN = 1, -+ BUG_TRAP_TYPE_BUG = 2, -+}; -+ -+enum insn_mode { -+ INSN_MODE_32 = 0, -+ INSN_MODE_64 = 1, -+ INSN_MODE_KERN = 2, -+ INSN_NUM_MODES = 3, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum kernel_gp_hint { -+ GP_NO_HINT = 0, -+ GP_NON_CANONICAL = 1, -+ GP_CANONICAL = 2, -+}; -+ -+struct bad_iret_stack { -+ void *error_entry_ret; -+ struct pt_regs regs; -+}; -+ -+typedef struct irq_desc *vector_irq_t[256]; -+ -+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 irq_stack { -+ char stack[16384]; -+}; -+ -+struct estack_pages { -+ u32 offs; -+ u16 size; -+ u16 type; -+}; -+ -+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_PCMCIA_CIS = 10, -+ LOCKDOWN_TIOCSSERIAL = 11, -+ LOCKDOWN_MODULE_PARAMETERS = 12, -+ LOCKDOWN_MMIOTRACE = 13, -+ LOCKDOWN_DEBUGFS = 14, -+ LOCKDOWN_XMON_WR = 15, -+ LOCKDOWN_BPF_WRITE_USER = 16, -+ LOCKDOWN_INTEGRITY_MAX = 17, -+ LOCKDOWN_KCORE = 18, -+ LOCKDOWN_KPROBES = 19, -+ LOCKDOWN_BPF_READ_KERNEL = 20, -+ LOCKDOWN_PERF = 21, -+ LOCKDOWN_TRACEFS = 22, -+ LOCKDOWN_XMON_RW = 23, -+ LOCKDOWN_XFRM_SECRET = 24, -+ LOCKDOWN_CONFIDENTIALITY_MAX = 25, -+}; -+ -+enum lockdep_ok { -+ LOCKDEP_STILL_OK = 0, -+ LOCKDEP_NOW_UNRELIABLE = 1, -+}; -+ -+typedef long unsigned int uintptr_t; -+ -+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; -+ struct list_head head; -+}; -+ -+struct nmi_stats { -+ unsigned int normal; -+ unsigned int unknown; -+ unsigned int external; -+ unsigned int swallow; -+}; -+ -+enum nmi_states { -+ NMI_NOT_RUNNING = 0, -+ NMI_EXECUTING = 1, -+ NMI_LATCHED = 2, -+}; -+ -+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 ldt_desc; -+ -+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 edd { -+ unsigned int mbr_signature[16]; -+ struct edd_info edd_info[6]; -+ unsigned char mbr_signature_nr; -+ unsigned char edd_info_nr; -+}; -+ -+struct setup_data { -+ __u64 next; -+ __u32 type; -+ __u32 len; -+ __u8 data[0]; -+}; -+ -+struct setup_indirect { -+ __u32 type; -+ __u32 reserved; -+ __u64 len; -+ __u64 addr; -+}; -+ -+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 (*con_init)(struct vc_data *, int); -+ void (*con_deinit)(struct vc_data *); -+ void (*con_clear)(struct vc_data *, int, int, int, int); -+ void (*con_putc)(struct vc_data *, int, int, int); -+ void (*con_putcs)(struct vc_data *, const short unsigned int *, int, int, int); -+ void (*con_cursor)(struct vc_data *, int); -+ bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); -+ int (*con_switch)(struct vc_data *); -+ int (*con_blank)(struct vc_data *, int, int); -+ int (*con_font_set)(struct vc_data *, struct console_font *, unsigned int); -+ int (*con_font_get)(struct vc_data *, struct console_font *); -+ int (*con_font_default)(struct vc_data *, struct console_font *, char *); -+ int (*con_resize)(struct vc_data *, unsigned int, unsigned int, unsigned int); -+ void (*con_set_palette)(struct vc_data *, const unsigned char *); -+ void (*con_scrolldelta)(struct vc_data *, int); -+ int (*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); -+ u16 * (*con_screen_pos)(const struct vc_data *, int); -+ long unsigned int (*con_getxy)(struct vc_data *, long unsigned int, int *, int *); -+ void (*con_flush_scrollback)(struct vc_data *); -+ int (*con_debug_enter)(struct vc_data *); -+ int (*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 { -+ char mode; -+ char waitv; -+ short int relsig; -+ short int acqsig; -+ short int frsig; -+}; -+ -+struct uni_pagedir; -+ -+struct uni_screen; -+ -+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_resize_user; -+ 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_pagedir *vc_uni_pagedir; -+ struct uni_pagedir **vc_uni_pagedir_loc; -+ struct uni_screen *vc_uni_screen; -+}; -+ -+enum memblock_flags { -+ MEMBLOCK_NONE = 0, -+ MEMBLOCK_HOTPLUG = 1, -+ MEMBLOCK_MIRROR = 2, -+ MEMBLOCK_NOMAP = 4, -+}; -+ -+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; -+}; -+ -+struct e820_entry { -+ u64 addr; -+ u64 size; -+ enum e820_type type; -+} __attribute__((packed)); -+ -+struct e820_table { -+ __u32 nr_entries; -+ struct e820_entry entries[3200]; -+} __attribute__((packed)); -+ -+struct x86_msi_ops { -+ void (*restore_msi_irqs)(struct pci_dev *); -+}; -+ -+struct x86_apic_ops { -+ unsigned int (*io_apic_read)(unsigned int, unsigned int); -+ void (*restore)(); -+}; -+ -+struct legacy_pic { -+ int nr_legacy_irqs; -+ struct irq_chip *chip; -+ void (*mask)(unsigned int); -+ void (*unmask)(unsigned int); -+ void (*mask_all)(); -+ void (*restore_mask)(); -+ void (*init)(int); -+ int (*probe)(); -+ int (*irq_pending)(unsigned int); -+ void (*make_irq)(unsigned int); -+}; -+ -+enum jump_label_type { -+ JUMP_LABEL_NOP = 0, -+ JUMP_LABEL_JMP = 1, -+}; -+ -+union text_poke_insn { -+ u8 text[5]; -+ struct { -+ u8 opcode; -+ s32 disp; -+ } __attribute__((packed)); -+}; -+ -+struct jump_label_patch { -+ const void *code; -+ int size; -+}; -+ -+enum { -+ JL_STATE_START = 0, -+ JL_STATE_NO_UPDATE = 1, -+ JL_STATE_UPDATE = 2, -+}; -+ -+typedef short unsigned int __kernel_old_uid_t; -+ -+typedef short unsigned int __kernel_old_gid_t; -+ -+typedef struct { -+ int val[2]; -+} __kernel_fsid_t; -+ -+typedef __kernel_old_uid_t old_uid_t; -+ -+typedef __kernel_old_gid_t old_gid_t; -+ -+struct kernel_clone_args { -+ u64 flags; -+ int *pidfd; -+ int *child_tid; -+ int *parent_tid; -+ int exit_signal; -+ 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 io_thread; -+ struct cgroup *cgrp; -+ struct css_set *cset; -+}; -+ -+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 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 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; -+}; -+ -+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; -+}; -+ -+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); -+}; -+ -+typedef void (*swap_func_t)(void *, void *, int); -+ -+typedef int (*cmp_func_t)(const void *, const void *); -+ -+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, -+}; -+ -+struct change_member { -+ struct e820_entry *entry; -+ long long unsigned int addr; -+}; -+ -+struct iommu_fault_param; -+ -+struct iopf_device_param; -+ -+struct iommu_fwspec; -+ -+struct dev_iommu { -+ struct mutex lock; -+ struct iommu_fault_param *fault_param; -+ struct iopf_device_param *iopf_param; -+ struct iommu_fwspec *fwspec; -+ struct iommu_device *iommu_dev; -+ void *priv; -+}; -+ -+struct of_phandle_args { -+ struct device_node *np; -+ int args_count; -+ uint32_t args[16]; -+}; -+ -+struct iommu_fault_unrecoverable { -+ __u32 reason; -+ __u32 flags; -+ __u32 pasid; -+ __u32 perm; -+ __u64 addr; -+ __u64 fetch_addr; -+}; -+ -+struct iommu_fault_page_request { -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 perm; -+ __u64 addr; -+ __u64 private_data[2]; -+}; -+ -+struct iommu_fault { -+ __u32 type; -+ __u32 padding; -+ union { -+ struct iommu_fault_unrecoverable event; -+ struct iommu_fault_page_request prm; -+ __u8 padding2[56]; -+ }; -+}; -+ -+struct iommu_page_response { -+ __u32 argsz; -+ __u32 version; -+ __u32 flags; -+ __u32 pasid; -+ __u32 grpid; -+ __u32 code; -+}; -+ -+struct iommu_inv_addr_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+ __u64 addr; -+ __u64 granule_size; -+ __u64 nb_granules; -+}; -+ -+struct iommu_inv_pasid_info { -+ __u32 flags; -+ __u32 archid; -+ __u64 pasid; -+}; -+ -+struct iommu_cache_invalidate_info { -+ __u32 argsz; -+ __u32 version; -+ __u8 cache; -+ __u8 granularity; -+ __u8 padding[6]; -+ union { -+ struct iommu_inv_pasid_info pasid_info; -+ struct iommu_inv_addr_info addr_info; -+ } granu; -+}; -+ -+struct iommu_gpasid_bind_data_vtd { -+ __u64 flags; -+ __u32 pat; -+ __u32 emt; -+}; -+ -+struct iommu_gpasid_bind_data { -+ __u32 argsz; -+ __u32 version; -+ __u32 format; -+ __u32 addr_width; -+ __u64 flags; -+ __u64 gpgd; -+ __u64 hpasid; -+ __u64 gpasid; -+ __u8 padding[8]; -+ union { -+ struct iommu_gpasid_bind_data_vtd vtd; -+ } vendor; -+}; -+ -+typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); -+ -+struct iommu_domain_geometry { -+ dma_addr_t aperture_start; -+ dma_addr_t aperture_end; -+ bool force_aperture; -+}; -+ -+struct iommu_dma_cookie; -+ -+struct iommu_domain { -+ unsigned int type; -+ const struct iommu_ops *ops; -+ long unsigned int pgsize_bitmap; -+ iommu_fault_handler_t handler; -+ void *handler_token; -+ struct iommu_domain_geometry geometry; -+ struct iommu_dma_cookie *iova_cookie; -+}; -+ -+typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault *, void *); -+ -+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; -+}; -+ -+struct iommu_iotlb_gather { -+ long unsigned int start; -+ long unsigned int end; -+ size_t pgsize; -+ struct page *freelist; -+ bool queued; -+}; -+ -+struct iommu_device { -+ struct list_head list; -+ const struct iommu_ops *ops; -+ struct fwnode_handle *fwnode; -+ struct device *dev; -+}; -+ -+struct iommu_sva { -+ struct device *dev; -+}; -+ -+struct iommu_fault_event { -+ struct iommu_fault fault; -+ struct list_head list; -+}; -+ -+struct iommu_fault_param { -+ iommu_dev_fault_handler_t handler; -+ void *data; -+ struct list_head faults; -+ struct mutex lock; -+}; -+ -+struct iommu_fwspec { -+ const struct iommu_ops *ops; -+ struct fwnode_handle *iommu_fwnode; -+ u32 flags; -+ unsigned int num_ids; -+ u32 ids[0]; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum meminit_context { -+ MEMINIT_EARLY = 0, -+ MEMINIT_HOTPLUG = 1, -+}; -+ -+struct cpu { -+ int node_id; -+ int hotpluggable; -+ struct device dev; -+}; -+ -+struct x86_cpu { -+ struct cpu cpu; -+}; -+ -+struct debugfs_blob_wrapper { -+ void *data; -+ long unsigned int size; -+}; -+ -+struct setup_data_node { -+ u64 paddr; -+ u32 type; -+ u32 len; -+}; -+ -+struct paravirt_patch_site { -+ u8 *instr; -+ u8 type; -+ u8 len; -+}; -+ -+struct die_args { -+ struct pt_regs *regs; -+ const char *str; -+ long int err; -+ int trapnr; -+ int signr; -+}; -+ -+struct tlb_state_shared { -+ bool is_lazy; -+}; -+ -+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 struct { -+ struct mm_struct *mm; -+} temp_mm_state_t; -+ -+struct text_poke_loc { -+ s32 rel_addr; -+ s32 rel32; -+ u8 opcode; -+ const u8 text[5]; -+ u8 old; -+}; -+ -+struct bp_patching_desc { -+ struct text_poke_loc *vec; -+ int nr_entries; -+ atomic_t refs; -+}; -+ -+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, -+}; -+ -+typedef unsigned int u_int; -+ -+typedef long long unsigned int cycles_t; -+ -+struct system_counterval_t { -+ u64 cycles; -+ struct clocksource *cs; -+}; -+ -+struct plist_head { -+ struct list_head node_list; -+}; -+ -+typedef struct { -+ seqcount_t seqcount; -+} seqcount_latch_t; -+ -+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 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; -+ unsigned int transition_delay_us; -+ bool dvfs_possible_from_any_cpu; -+ 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 cpufreq_freqs { -+ struct cpufreq_policy *policy; -+ unsigned int old; -+ unsigned int new; -+ u8 flags; -+}; -+ -+struct cyc2ns { -+ struct cyc2ns_data data[2]; -+ seqcount_latch_t seq; -+}; -+ -+struct x86_cpu_id { -+ __u16 vendor; -+ __u16 family; -+ __u16 model; -+ __u16 steppings; -+ __u16 feature; -+ kernel_ulong_t driver_data; -+}; -+ -+struct muldiv { -+ u32 multiplier; -+ u32 divider; -+}; -+ -+struct freq_desc { -+ bool use_msr_plat; -+ struct muldiv muldiv[16]; -+ u32 freqs[16]; -+ u32 mask; -+}; -+ -+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; -+}; -+ -+struct pdev_archdata {}; -+ -+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; -+ char *driver_override; -+ struct mfd_cell *mfd_cell; -+ struct pdev_archdata archdata; -+}; -+ -+struct platform_device_id { -+ char name[20]; -+ kernel_ulong_t driver_data; -+}; -+ -+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 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 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)); -+ -+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; -+}; -+ -+enum insn_type { -+ CALL = 0, -+ NOP = 1, -+ JMP = 2, -+ RET = 3, -+}; -+ -+typedef struct ldttss_desc tss_desc; -+ -+enum idle_boot_override { -+ IDLE_NO_OVERRIDE = 0, -+ IDLE_HALT = 1, -+ IDLE_NOMWAIT = 2, -+ IDLE_POLL = 3, -+}; -+ -+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; -+}; -+ -+enum tick_broadcast_mode { -+ TICK_BROADCAST_OFF = 0, -+ TICK_BROADCAST_ON = 1, -+ TICK_BROADCAST_FORCE = 2, -+}; -+ -+enum tick_broadcast_state { -+ TICK_BROADCAST_EXIT = 0, -+ TICK_BROADCAST_ENTER = 1, -+}; -+ -+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 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; -+}; -+ -+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 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_before_restore)(void *, struct fpu *); -+ -+typedef void (*btf_trace_x86_fpu_after_restore)(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_init_state)(void *, struct fpu *); -+ -+typedef void (*btf_trace_x86_fpu_dropped)(void *, struct fpu *); -+ -+typedef void (*btf_trace_x86_fpu_copy_src)(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 _fpreg { -+ __u16 significand[4]; -+ __u16 exponent; -+}; -+ -+struct _fpxreg { -+ __u16 significand[4]; -+ __u16 exponent; -+ __u16 padding[3]; -+}; -+ -+struct user_i387_ia32_struct { -+ u32 cwd; -+ u32 swd; -+ u32 twd; -+ u32 fip; -+ u32 fcs; -+ u32 foo; -+ u32 fos; -+ u32 st_space[20]; -+}; -+ -+struct user32_fxsr_struct { -+ short unsigned int cwd; -+ short unsigned int swd; -+ short unsigned int twd; -+ short unsigned int fop; -+ int fip; -+ int fcs; -+ int foo; -+ int fos; -+ int mxcsr; -+ int reserved; -+ int st_space[32]; -+ int xmm_space[32]; -+ int padding[56]; -+}; -+ -+enum xstate_copy_mode { -+ XSTATE_COPY_FP = 0, -+ XSTATE_COPY_FX = 1, -+ XSTATE_COPY_XSAVE = 2, -+}; -+ -+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 _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 pkru_state { -+ u32 pkru; -+ u32 pad; -+}; -+ -+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 { -+ REGSET_GENERAL = 0, -+ REGSET_FP = 1, -+ REGSET_XFP = 2, -+ REGSET_IOPERM64 = 2, -+ REGSET_XSTATE = 3, -+ REGSET_TLS = 4, -+ REGSET_IOPERM32 = 5, -+}; -+ -+struct pt_regs_offset { -+ const char *name; -+ int offset; -+}; -+ -+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; -+} __attribute__((packed)); -+ -+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)); -+ -+typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); -+ -+struct stack_frame_user { -+ const void *next_fp; -+ long unsigned int ret_addr; -+}; -+ -+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 num_levels; -+ unsigned int num_leaves; -+ bool cpu_map_populated; -+}; -+ -+struct amd_l3_cache { -+ unsigned int indices; -+ u8 subcaches[4]; -+}; -+ -+struct threshold_block { -+ unsigned int block; -+ unsigned int bank; -+ unsigned int cpu; -+ u32 address; -+ u16 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; -+ refcount_t cpus; -+ unsigned int shared; -+}; -+ -+struct amd_northbridge { -+ struct pci_dev *root; -+ struct pci_dev *misc; -+ struct pci_dev *link; -+ struct amd_l3_cache l3_cache; -+ struct threshold_bank *bank4; -+}; -+ -+struct _cache_table { -+ unsigned char descriptor; -+ char cache_type; -+ short int size; -+}; -+ -+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_regs { -+ union _cpuid4_leaf_eax eax; -+ union _cpuid4_leaf_ebx ebx; -+ union _cpuid4_leaf_ecx ecx; -+ unsigned int id; -+ long unsigned int size; -+ struct amd_northbridge *nb; -+}; -+ -+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; -+}; -+ -+struct cpuid_bit { -+ u16 feature; -+ u8 reg; -+ u8 bit; -+ u32 level; -+ u32 sub_leaf; -+}; -+ -+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, -+}; -+ -+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 (*correct_hw_break)(); -+ void (*enable_nmi)(bool); -+}; -+ -+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 cpuid_dependent_feature { -+ u32 feature; -+ u32 level; -+}; -+ -+enum spectre_v2_mitigation { -+ SPECTRE_V2_NONE = 0, -+ SPECTRE_V2_RETPOLINE_GENERIC = 1, -+ SPECTRE_V2_RETPOLINE_AMD = 2, -+ SPECTRE_V2_IBRS_ENHANCED = 3, -+}; -+ -+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_FLUSH_NOWARN = 1, -+ L1TF_MITIGATION_FLUSH = 2, -+ L1TF_MITIGATION_FLUSH_NOSMT = 3, -+ L1TF_MITIGATION_FULL = 4, -+ L1TF_MITIGATION_FULL_FORCE = 5, -+}; -+ -+enum mds_mitigations { -+ MDS_MITIGATION_OFF = 0, -+ MDS_MITIGATION_FULL = 1, -+ MDS_MITIGATION_VMWERV = 2, -+}; -+ -+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 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_UCODE_NEEDED = 1, -+ TAA_MITIGATION_VERW = 2, -+ TAA_MITIGATION_TSX_DISABLED = 3, -+}; -+ -+enum srbds_mitigations { -+ SRBDS_MITIGATION_OFF = 0, -+ SRBDS_MITIGATION_UCODE_NEEDED = 1, -+ SRBDS_MITIGATION_FULL = 2, -+ SRBDS_MITIGATION_TSX_OFF = 3, -+ SRBDS_MITIGATION_HYPERVISOR = 4, -+}; -+ -+enum spectre_v1_mitigation { -+ SPECTRE_V1_MITIGATION_NONE = 0, -+ SPECTRE_V1_MITIGATION_AUTO = 1, -+}; -+ -+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_AMD = 5, -+}; -+ -+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 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 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 aperfmperf_sample { -+ unsigned int khz; -+ atomic_t scfpending; -+ ktime_t time; -+ u64 aperf; -+ u64 mperf; -+}; -+ -+struct cpuid_dep { -+ unsigned int feature; -+ unsigned int depends; -+}; -+ -+enum vmx_feature_leafs { -+ MISC_FEATURES = 0, -+ PRIMARY_CTLS = 1, -+ SECONDARY_CTLS = 2, -+ NR_VMX_FEATURE_WORDS = 3, -+}; -+ -+struct _tlb_table { -+ unsigned char descriptor; -+ char tlb_type; -+ unsigned int entries; -+ char info[128]; -+}; -+ -+enum tsx_ctrl_states { -+ TSX_CTRL_ENABLE = 0, -+ TSX_CTRL_DISABLE = 1, -+ TSX_CTRL_RTM_ALWAYS_ABORT = 2, -+ TSX_CTRL_NOT_SUPPORTED = 3, -+}; -+ -+enum split_lock_detect_state { -+ sld_off = 0, -+ sld_warn = 1, -+ sld_fatal = 2, -+ sld_ratelimit = 3, -+}; -+ -+struct sku_microcode { -+ u8 model; -+ u8 stepping; -+ u32 microcode; -+}; -+ -+struct cpuid_regs { -+ u32 eax; -+ u32 ebx; -+ u32 ecx; -+ u32 edx; -+}; -+ -+enum pconfig_target { -+ INVALID_TARGET = 0, -+ MKTME_TARGET = 1, -+ PCONFIG_TARGET_NR = 2, -+}; -+ -+enum { -+ PCONFIG_CPUID_SUBLEAF_INVALID = 0, -+ PCONFIG_CPUID_SUBLEAF_TARGETID = 1, -+}; -+ -+enum task_work_notify_mode { -+ TWA_NONE = 0, -+ TWA_RESUME = 1, -+ TWA_SIGNAL = 2, -+}; -+ -+enum mf_flags { -+ MF_COUNT_INCREASED = 1, -+ MF_ACTION_REQUIRED = 2, -+ MF_MUST_KILL = 4, -+ MF_SOFT_OFFLINE = 8, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+typedef long unsigned int mce_banks_t[1]; -+ -+enum mcp_flags { -+ MCP_TIMESTAMP = 1, -+ MCP_UC = 2, -+ MCP_DONTLOG = 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 mce_evt_llist { -+ struct llist_node llnode; -+ struct mce mce; -+}; -+ -+struct mca_config { -+ bool dont_log_ce; -+ bool cmci_disabled; -+ bool ignore_ce; -+ bool print_all; -+ __u64 lmce_disabled: 1; -+ __u64 disabled: 1; -+ __u64 ser: 1; -+ __u64 recovery: 1; -+ __u64 bios_cmci_threshold: 1; -+ int: 27; -+ __u64 __reserved: 59; -+ s8 bootlog; -+ int tolerant; -+ int monarch_timeout; -+ int panic_timeout; -+ u32 rip_msr; -+}; -+ -+struct mce_vendor_flags { -+ __u64 overflow_recov: 1; -+ __u64 succor: 1; -+ __u64 smca: 1; -+ __u64 amd_threshold: 1; -+ __u64 __reserved_0: 60; -+}; -+ -+struct mca_msr_regs { -+ u32 (*ctl)(int); -+ u32 (*status)(int); -+ u32 (*addr)(int); -+ u32 (*misc)(int); -+}; -+ -+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 walltime; -+ u32 cpu; -+ u32 cpuid; -+ u32 apicid; -+ u32 socketid; -+ u8 cs; -+ u8 bank; -+ u8 cpuvendor; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_mce_record {}; -+ -+typedef void (*btf_trace_mce_record)(void *, struct mce *); -+ -+struct mce_bank { -+ u64 ctl; -+ bool init; -+}; -+ -+struct mce_bank_dev { -+ struct device_attribute attr; -+ char attrname[16]; -+ u8 bank; -+}; -+ -+enum handler_type { -+ EX_HANDLER_NONE = 0, -+ EX_HANDLER_FAULT = 1, -+ EX_HANDLER_UACCESS = 2, -+ EX_HANDLER_OTHER = 3, -+}; -+ -+enum context { -+ 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; -+ unsigned char mcgmask; -+ unsigned char mcgres; -+ unsigned char ser; -+ unsigned char context; -+ unsigned char excp; -+ unsigned char covered; -+ unsigned char cpu_model; -+ unsigned char cpu_minstepping; -+ unsigned char bank_lo; -+ unsigned char bank_hi; -+ char *msg; -+}; -+ -+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; -+}; -+ -+enum { -+ CMCI_STORM_NONE = 0, -+ CMCI_STORM_ACTIVE = 1, -+ CMCI_STORM_SUBSIDED = 2, -+}; -+ -+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, -+}; -+ -+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_PB = 14, -+ SMCA_PSP = 15, -+ SMCA_PSP_V2 = 16, -+ SMCA_SMU = 17, -+ SMCA_SMU_V2 = 18, -+ SMCA_MP5 = 19, -+ SMCA_NBIO = 20, -+ SMCA_PCIE = 21, -+ SMCA_PCIE_V2 = 22, -+ SMCA_XGMI_PCS = 23, -+ SMCA_XGMI_PHY = 24, -+ SMCA_WAFL_PHY = 25, -+ N_SMCA_BANK_TYPES = 26, -+}; -+ -+struct smca_hwid { -+ unsigned int bank_type; -+ u32 hwid_mcatype; -+ u8 count; -+}; -+ -+struct smca_bank { -+ struct smca_hwid *hwid; -+ u32 id; -+ u8 sysfs_id; -+}; -+ -+struct smca_bank_name { -+ const char *name; -+ const char *long_name; -+}; -+ -+struct thresh_restart { -+ struct threshold_block *b; -+ int reset; -+ 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); -+}; -+ -+enum { -+ CPER_SEV_RECOVERABLE = 0, -+ CPER_SEV_FATAL = 1, -+ CPER_SEV_CORRECTED = 2, -+ CPER_SEV_INFORMATIONAL = 3, -+}; -+ -+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 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 { -+ 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 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; -+}; -+ -+typedef struct poll_table_struct poll_table; -+ -+struct mce_log_buffer { -+ char signature[12]; -+ unsigned int len; -+ unsigned int next; -+ unsigned int flags; -+ unsigned int recordlen; -+ struct mce entry[0]; -+}; -+ -+typedef int (*cpu_stop_fn_t)(void *); -+ -+typedef __u8 mtrr_type; -+ -+struct mtrr_ops { -+ u32 vendor; -+ u32 use_intel_if; -+ void (*set)(unsigned int, long unsigned int, long unsigned int, mtrr_type); -+ void (*set_all)(); -+ 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)(); -+}; -+ -+struct set_mtrr_data { -+ long unsigned int smp_base; -+ long unsigned int smp_size; -+ unsigned int smp_reg; -+ mtrr_type smp_type; -+}; -+ -+struct mtrr_value { -+ mtrr_type ltype; -+ long unsigned int lbase; -+ long unsigned int lsize; -+}; -+ -+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 mtrr_sentry { -+ __u64 base; -+ __u32 size; -+ __u32 type; -+}; -+ -+struct mtrr_gentry { -+ __u64 base; -+ __u32 size; -+ __u32 regnum; -+ __u32 type; -+ __u32 _pad; -+}; -+ -+typedef u32 compat_uint_t; -+ -+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 mtrr_var_range { -+ __u32 base_lo; -+ __u32 base_hi; -+ __u32 mask_lo; -+ __u32 mask_hi; -+}; -+ -+struct mtrr_state_type { -+ struct mtrr_var_range var_ranges[256]; -+ mtrr_type fixed_ranges[88]; -+ unsigned char enabled; -+ unsigned char have_fixed; -+ mtrr_type def_type; -+}; -+ -+struct fixed_range_block { -+ int base_msr; -+ int ranges; -+}; -+ -+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 subsys_interface { -+ const char *name; -+ 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 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 builtin_fw { -+ char *name; -+ void *data; -+ long unsigned int size; -+}; -+ -+struct cpio_data { -+ void *data; -+ size_t size; -+ char name[18]; -+}; -+ -+struct cpu_signature { -+ unsigned int sig; -+ unsigned int pf; -+ unsigned int rev; -+}; -+ -+enum ucode_state { -+ UCODE_OK = 0, -+ UCODE_NEW = 1, -+ UCODE_UPDATED = 2, -+ UCODE_NFOUND = 3, -+ UCODE_ERROR = 4, -+}; -+ -+struct microcode_ops { -+ enum ucode_state (*request_microcode_user)(int, const void *, size_t); -+ enum ucode_state (*request_microcode_fw)(int, struct device *, bool); -+ void (*microcode_fini_cpu)(int); -+ enum ucode_state (*apply_microcode)(int); -+ int (*collect_cpu_info)(int, struct cpu_signature *); -+}; -+ -+struct ucode_cpu_info { -+ struct cpu_signature cpu_sig; -+ int valid; -+ void *mc; -+}; -+ -+struct cpu_info_ctx { -+ struct cpu_signature *cpu_sig; -+ int err; -+}; -+ -+struct firmware { -+ size_t size; -+ const u8 *data; -+ void *priv; -+}; -+ -+struct ucode_patch { -+ struct list_head plist; -+ void *data; -+ u32 patch_id; -+ u16 equiv_cpu; -+}; -+ -+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 reserved[3]; -+}; -+ -+struct microcode_intel { -+ struct microcode_header_intel hdr; -+ unsigned int bits[0]; -+}; -+ -+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 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; -+}; -+ -+struct cont_desc { -+ struct microcode_amd *mc; -+ u32 cpuid_1_eax; -+ u32 psize; -+ u8 *data; -+ size_t size; -+}; -+ -+typedef void (*exitcall_t)(); -+ -+enum rdt_group_type { -+ RDTCTRL_GROUP = 0, -+ RDTMON_GROUP = 1, -+ RDT_NUM_GROUP = 2, -+}; -+ -+struct rdtgroup; -+ -+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 pseudo_lock_region; -+ -+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; -+ struct pseudo_lock_region *plr; -+}; -+ -+struct rdt_cache { -+ unsigned int cbm_len; -+ unsigned int min_cbm_bits; -+ unsigned int cbm_idx_mult; -+ unsigned int cbm_idx_offset; -+ unsigned int shareable_bits; -+ bool arch_has_sparse_bitmaps; -+ bool arch_has_empty_bitmaps; -+ bool arch_has_per_cpu_cfg; -+}; -+ -+enum membw_throttle_mode { -+ THREAD_THROTTLE_UNDEFINED = 0, -+ THREAD_THROTTLE_MAX = 1, -+ THREAD_THROTTLE_PER_THREAD = 2, -+}; -+ -+struct rdt_membw { -+ u32 min_bw; -+ u32 bw_gran; -+ u32 delay_linear; -+ bool arch_needs_linear; -+ enum membw_throttle_mode throttle_mode; -+ bool mba_sc; -+ u32 *mb_map; -+}; -+ -+struct rdt_domain; -+ -+struct msr_param; -+ -+struct rdt_parse_data; -+ -+struct rdt_resource { -+ int rid; -+ bool alloc_enabled; -+ bool mon_enabled; -+ bool alloc_capable; -+ bool mon_capable; -+ char *name; -+ int num_closid; -+ int cache_level; -+ u32 default_ctrl; -+ unsigned int msr_base; -+ void (*msr_update)(struct rdt_domain *, struct msr_param *, struct rdt_resource *); -+ int data_width; -+ struct list_head domains; -+ struct rdt_cache cache; -+ struct rdt_membw membw; -+ const char *format_str; -+ int (*parse_ctrlval)(struct rdt_parse_data *, struct rdt_resource *, struct rdt_domain *); -+ struct list_head evt_list; -+ int num_rmid; -+ unsigned int mon_scale; -+ unsigned int mbm_width; -+ long unsigned int fflags; -+}; -+ -+struct mbm_state; -+ -+struct rdt_domain { -+ struct list_head list; -+ int id; -+ struct cpumask cpu_mask; -+ 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; -+ u32 *ctrl_val; -+ u32 *mbps_val; -+ u32 new_ctrl; -+ bool have_new_ctrl; -+ struct pseudo_lock_region *plr; -+}; -+ -+struct pseudo_lock_region { -+ struct rdt_resource *r; -+ struct rdt_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 mbm_state { -+ u64 chunks; -+ u64 prev_msr; -+ u64 prev_bw_msr; -+ u32 prev_bw; -+ u32 delta_bw; -+ bool delta_comp; -+}; -+ -+struct msr_param { -+ struct rdt_resource *res; -+ int low; -+ int high; -+}; -+ -+struct rdt_parse_data { -+ struct rdtgroup *rdtgrp; -+ char *buf; -+}; -+ -+enum { -+ RDT_RESOURCE_L3 = 0, -+ RDT_RESOURCE_L3DATA = 1, -+ RDT_RESOURCE_L3CODE = 2, -+ RDT_RESOURCE_L2 = 3, -+ RDT_RESOURCE_L2DATA = 4, -+ RDT_RESOURCE_L2CODE = 5, -+ RDT_RESOURCE_MBA = 6, -+ RDT_NUM_RESOURCES = 7, -+}; -+ -+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_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, -+}; -+ -+struct rdt_options { -+ char *name; -+ int flag; -+ bool force_off; -+ bool force_on; -+}; -+ -+typedef unsigned int uint; -+ -+enum kernfs_node_type { -+ KERNFS_DIR = 1, -+ KERNFS_FILE = 2, -+ KERNFS_LINK = 4, -+}; -+ -+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_fs_context { -+ struct kernfs_root *root; -+ void *ns_tag; -+ long unsigned int magic; -+ bool new_sb_created; -+}; -+ -+struct rdt_fs_context { -+ struct kernfs_fs_context kfc; -+ bool enable_cdpl2; -+ bool enable_cdpl3; -+ bool enable_mba_mbps; -+}; -+ -+struct mon_evt { -+ u32 evtid; -+ char *name; -+ struct list_head list; -+}; -+ -+union mon_data_bits { -+ void *priv; -+ struct { -+ unsigned int rid: 10; -+ unsigned int evtid: 8; -+ unsigned int domid: 14; -+ } u; -+}; -+ -+struct rmid_read { -+ struct rdtgroup *rgrp; -+ struct rdt_resource *r; -+ struct rdt_domain *d; -+ int evtid; -+ bool first; -+ u64 val; -+}; -+ -+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, -+ nr__rdt_params = 3, -+}; -+ -+struct rmid_entry { -+ u32 rmid; -+ int busy; -+ struct list_head list; -+}; -+ -+struct mbm_correction_factor_table { -+ u32 rmidthreshold; -+ u64 cf; -+}; -+ -+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 pseudo_lock_pm_req { -+ struct list_head list; -+ struct dev_pm_qos_request req; -+}; -+ -+struct residency_counts { -+ u64 miss_before; -+ u64 hits_before; -+ u64 miss_after; -+ u64 hits_after; -+}; -+ -+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; -+ -+struct mmu_notifier_range; -+ -+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); -+ void (*change_pte)(struct mmu_notifier *, struct mm_struct *, long unsigned int, pte_t); -+ 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 (*invalidate_range)(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_notifier_range { -+ struct vm_area_struct *vma; -+ struct mm_struct *mm; -+ long unsigned int start; -+ long unsigned int end; -+ unsigned int flags; -+ enum mmu_notifier_event event; -+ void *owner; -+}; -+ -+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, -+}; -+ -+struct sgx_encl_page; -+ -+struct sgx_epc_page { -+ unsigned int section; -+ unsigned int flags; -+ 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; -+ struct sgx_epc_page *epc_page; -+ struct sgx_encl *encl; -+ struct sgx_va_page *va_page; -+}; -+ -+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; -+}; -+ -+struct sgx_encl_mm { -+ struct sgx_encl *encl; -+ struct mm_struct *mm; -+ struct list_head list; -+ struct mmu_notifier mmu_notifier; -+}; -+ -+typedef unsigned int xa_mark_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; -+}; -+ -+enum { -+ XA_CHECK_SCHED = 4096, -+}; -+ -+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, -+}; -+ -+struct sgx_pageinfo { -+ u64 addr; -+ u64 contents; -+ u64 metadata; -+ u64 secs; -+}; -+ -+struct sgx_numa_node { -+ struct list_head free_page_list; -+ 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; -+}; -+ -+enum sgx_encl_flags { -+ SGX_ENCL_IOCTL = 1, -+ SGX_ENCL_DEBUG = 2, -+ SGX_ENCL_CREATED = 4, -+ SGX_ENCL_INITIALIZED = 8, -+}; -+ -+struct sgx_backing { -+ long unsigned int page_index; -+ struct page *contents; -+ struct page *pcmd; -+ long unsigned int pcmd_offset; -+}; -+ -+enum sgx_return_code { -+ SGX_NOT_TRACKED = 11, -+ SGX_CHILD_PRESENT = 13, -+ SGX_INVALID_EINITTOKEN = 16, -+ 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, -+}; -+ -+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]; -+}; -+ -+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]; -+} __attribute__((packed)); -+ -+struct crypto_alg; -+ -+struct crypto_tfm { -+ 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_istat_aead { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_akcipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t verify_cnt; -+ atomic64_t sign_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_cipher { -+ atomic64_t encrypt_cnt; -+ atomic64_t encrypt_tlen; -+ atomic64_t decrypt_cnt; -+ atomic64_t decrypt_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_compress { -+ atomic64_t compress_cnt; -+ atomic64_t compress_tlen; -+ atomic64_t decompress_cnt; -+ atomic64_t decompress_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_hash { -+ atomic64_t hash_cnt; -+ atomic64_t hash_tlen; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_kpp { -+ atomic64_t setsecret_cnt; -+ atomic64_t generate_public_key_cnt; -+ atomic64_t compute_shared_secret_cnt; -+ atomic64_t err_cnt; -+}; -+ -+struct crypto_istat_rng { -+ atomic64_t generate_cnt; -+ atomic64_t generate_tlen; -+ atomic64_t seed_cnt; -+ atomic64_t err_cnt; -+}; -+ -+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; -+ union { -+ struct crypto_istat_aead aead; -+ struct crypto_istat_akcipher akcipher; -+ struct crypto_istat_cipher cipher; -+ struct crypto_istat_compress compress; -+ struct crypto_istat_hash hash; -+ struct crypto_istat_rng rng; -+ struct crypto_istat_kpp kpp; -+ } stats; -+}; -+ -+struct crypto_instance; -+ -+struct crypto_type { -+ unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); -+ unsigned int (*extsize)(struct crypto_alg *); -+ int (*init)(struct crypto_tfm *, u32, u32); -+ 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_shash; -+ -+struct shash_desc { -+ struct crypto_shash *tfm; -+ void *__ctx[0]; -+}; -+ -+struct crypto_shash { -+ unsigned int descsize; -+ struct crypto_tfm base; -+}; -+ -+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_vepc { -+ struct xarray page_array; -+ struct mutex lock; -+}; -+ -+struct vmcb_seg { -+ u16 selector; -+ u16 attrib; -+ u32 limit; -+ u64 base; -+}; -+ -+struct vmcb_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; -+ u8 reserved_1[43]; -+ u8 cpl; -+ u8 reserved_2[4]; -+ u64 efer; -+ u8 reserved_3[104]; -+ u64 xss; -+ u64 cr4; -+ u64 cr3; -+ u64 cr0; -+ u64 dr7; -+ u64 dr6; -+ u64 rflags; -+ u64 rip; -+ u8 reserved_4[88]; -+ u64 rsp; -+ u8 reserved_5[24]; -+ 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_6[32]; -+ u64 g_pat; -+ u64 dbgctl; -+ u64 br_from; -+ u64 br_to; -+ u64 last_excp_from; -+ u64 last_excp_to; -+ u8 reserved_7[72]; -+ u32 spec_ctrl; -+ u8 reserved_7b[4]; -+ u32 pkru; -+ u8 reserved_7a[20]; -+ u64 reserved_8; -+ u64 rcx; -+ u64 rdx; -+ u64 rbx; -+ u64 reserved_9; -+ u64 rbp; -+ u64 rsi; -+ u64 rdi; -+ u64 r8; -+ u64 r9; -+ u64 r10; -+ u64 r11; -+ u64 r12; -+ u64 r13; -+ u64 r14; -+ u64 r15; -+ u8 reserved_10[16]; -+ u64 sw_exit_code; -+ u64 sw_exit_info_1; -+ u64 sw_exit_info_2; -+ u64 sw_scratch; -+ u8 reserved_11[56]; -+ u64 xcr0; -+ u8 valid_bitmap[16]; -+ u64 x87_state_gpa; -+}; -+ -+struct ghcb { -+ struct vmcb_save_area save; -+ u8 reserved_save[1016]; -+ u8 shared_buffer[2032]; -+ u8 reserved_1[10]; -+ u16 protocol_version; -+ u32 ghcb_usage; -+}; -+ -+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 vmware_steal_time { -+ union { -+ uint64_t clock; -+ struct { -+ uint32_t clock_low; -+ uint32_t clock_high; -+ }; -+ }; -+ uint64_t 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, -+}; -+ -+typedef u64 acpi_io_address; -+ -+typedef u64 acpi_physical_address; -+ -+typedef u32 acpi_status; -+ -+typedef char *acpi_string; -+ -+typedef void *acpi_handle; -+ -+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; -+}; -+ -+struct acpi_object_list { -+ u32 count; -+ union acpi_object *pointer; -+}; -+ -+struct acpi_subtable_header { -+ u8 type; -+ u8 length; -+}; -+ -+struct acpi_table_boot { -+ struct acpi_table_header header; -+ u8 cmos_index; -+ u8 reserved[3]; -+}; -+ -+struct acpi_hmat_structure { -+ u16 type; -+ u16 reserved; -+ u32 length; -+}; -+ -+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_RESERVED = 17, -+}; -+ -+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[1]; -+} __attribute__((packed)); -+ -+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]; -+}; -+ -+struct acpi_prmt_module_header { -+ u16 revision; -+ u16 length; -+}; -+ -+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_COUNT = 5, -+}; -+ -+union acpi_subtable_headers { -+ struct acpi_subtable_header common; -+ struct acpi_hmat_structure hmat; -+ struct acpi_prmt_module_header prmt; -+}; -+ -+typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *); -+ -+typedef int (*acpi_tbl_entry_handler)(union acpi_subtable_headers *, const long unsigned int); -+ -+struct acpi_subtable_proc { -+ int id; -+ acpi_tbl_entry_handler handler; -+ int count; -+}; -+ -+typedef u32 phys_cpuid_t; -+ -+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 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 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 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 cpc_reg { -+ u8 descriptor; -+ u16 length; -+ u8 space_id; -+ u8 bit_width; -+ u8 bit_offset; -+ u8 access_width; -+ u64 address; -+} __attribute__((packed)); -+ -+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_cx { -+ u8 valid; -+ u8 type; -+ u32 address; -+ u8 entry_method; -+ u8 index; -+ u32 latency; -+ u8 bm_sts_skip; -+ char desc[32]; -+}; -+ -+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 need_hotplug_init: 1; -+}; -+ -+struct cstate_entry { -+ struct { -+ unsigned int eax; -+ unsigned int ecx; -+ } states[8]; -+}; -+ -+enum reboot_mode { -+ REBOOT_UNDEFINED = 4294967295, -+ 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, -+}; -+ -+typedef void (*nmi_shootdown_cb)(int, struct pt_regs *); -+ -+enum allow_write_msrs { -+ MSR_WRITES_ON = 0, -+ MSR_WRITES_OFF = 1, -+ MSR_WRITES_DEFAULT = 2, -+}; -+ -+typedef struct __call_single_data call_single_data_t; -+ -+struct cpuid_regs_done { -+ struct cpuid_regs regs; -+ struct completion done; -+}; -+ -+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 { -+ 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_SHARE_PKG_RESOURCES = 256, -+ SD_SERIALIZE = 512, -+ SD_ASYM_PACKING = 1024, -+ SD_PREFER_SIBLING = 2048, -+ SD_OVERLAP = 4096, -+ SD_NUMA = 8192, -+}; -+ -+struct sched_domain_shared { -+ atomic_t ref; -+ atomic_t nr_busy_cpus; -+ int has_idle_cores; -+}; -+ -+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; -+ 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 next_decay_max_lb_cost; -+ u64 avg_scan_cost; -+ unsigned int lb_count[3]; -+ unsigned int lb_failed[3]; -+ unsigned int lb_balanced[3]; -+ unsigned int lb_imbalance[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]; -+}; -+ -+typedef const struct cpumask * (*sched_domain_mask_f)(int); -+ -+typedef int (*sched_domain_flags_f)(); -+ -+struct sched_group_capacity; -+ -+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; -+ 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 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; -+}; -+ -+struct tsc_adjust { -+ s64 bootval; -+ s64 adjusted; -+ long unsigned int nextcheck; -+ bool warned; -+}; -+ -+typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int, size_t, size_t); -+ -+typedef void (*pcpu_fc_free_fn_t)(void *, size_t); -+ -+typedef void (*pcpu_fc_populate_pte_fn_t)(long unsigned int); -+ -+typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); -+ -+enum { -+ DUMP_PREFIX_NONE = 0, -+ DUMP_PREFIX_ADDRESS = 1, -+ DUMP_PREFIX_OFFSET = 2, -+}; -+ -+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_ioapic { -+ unsigned char type; -+ unsigned char apicid; -+ unsigned char apicver; -+ unsigned char flags; -+ unsigned int apicaddr; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum { -+ IRQ_REMAP_XAPIC_MODE = 0, -+ IRQ_REMAP_X2APIC_MODE = 1, -+}; -+ -+union apic_ir { -+ long unsigned int map[4]; -+ u32 regs[8]; -+}; -+ -+enum { -+ X2APIC_OFF = 0, -+ X2APIC_ON = 1, -+ X2APIC_DISABLED = 2, -+}; -+ -+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_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_MSI_NOMASK_QUIRK = 134217728, -+ IRQD_HANDLE_ENFORCE_IRQCTX = 268435456, -+ IRQD_AFFINITY_ON_ACTIVATE = 536870912, -+ IRQD_IRQ_ENABLED_ON_SUSPEND = 1073741824, -+}; -+ -+enum { -+ X86_IRQ_ALLOC_CONTIGUOUS_VECTORS = 1, -+ X86_IRQ_ALLOC_LEGACY = 2, -+}; -+ -+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 irq_matrix; -+ -+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 clock_event_device___2; -+ -+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; -+}; -+ -+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_MSI_REMAP = 32, -+ IRQ_DOMAIN_MSI_NOMASK_QUIRK = 64, -+ IRQ_DOMAIN_FLAG_NO_MAP = 128, -+ IRQ_DOMAIN_FLAG_NONCORE = 65536, -+}; -+ -+typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); -+ -+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 reserved: 19; -+}; -+ -+typedef char acpi_bus_id[8]; -+ -+struct acpi_pnp_type { -+ u32 hardware_id: 1; -+ u32 bus_address: 1; -+ u32 platform_id: 1; -+ u32 reserved: 29; -+}; -+ -+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; -+ union acpi_object *str_obj; -+}; -+ -+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 { -+ u8 valid: 1; -+ u8 explicit_set: 1; -+ u8 reserved: 6; -+ } flags; -+ int power; -+ int latency; -+ struct list_head resources; -+}; -+ -+struct acpi_device_power { -+ int state; -+ struct acpi_device_power_flags flags; -+ struct acpi_device_power_state states[5]; -+}; -+ -+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_driver; -+ -+struct acpi_gpio_mapping; -+ -+struct acpi_device { -+ int device_type; -+ acpi_handle handle; -+ struct fwnode_handle fwnode; -+ struct acpi_device *parent; -+ struct list_head children; -+ struct list_head node; -+ 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_driver *driver; -+ 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_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_scan_handler { -+ const struct acpi_device_id *ids; -+ struct list_head list_node; -+ 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 (*bind)(struct device *); -+ void (*unbind)(struct device *); -+ struct acpi_hotplug_profile hotplug; -+}; -+ -+struct acpi_hotplug_context { -+ struct acpi_device *self; -+ int (*notify)(struct acpi_device *, u32); -+ void (*uevent)(struct acpi_device *, u32); -+ void (*fixup)(struct acpi_device *); -+}; -+ -+typedef int (*acpi_op_add)(struct acpi_device *); -+ -+typedef int (*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 module *owner; -+}; -+ -+struct acpi_device_perf_state { -+ struct { -+ u8 valid: 1; -+ u8 reserved: 7; -+ } flags; -+ u8 power; -+ u8 performance; -+ int latency; -+}; -+ -+struct acpi_gpio_params; -+ -+struct acpi_gpio_mapping { -+ const char *name; -+ const struct acpi_gpio_params *data; -+ unsigned int size; -+ unsigned int quirks; -+}; -+ -+struct acpi_gpio_params { -+ unsigned int crs_entry_index; -+ unsigned int line_index; -+ bool active_low; -+}; -+ -+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, -+}; -+ -+enum { -+ BIOS_STATUS_MORE_PASSES = 1, -+ BIOS_STATUS_SUCCESS = 0, -+ BIOS_STATUS_UNIMPLEMENTED = 4294967258, -+ BIOS_STATUS_EINVAL = 4294967274, -+ BIOS_STATUS_UNAVAIL = 4294967280, -+ BIOS_STATUS_ABORT = 4294967292, -+}; -+ -+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]; -+}; -+ -+struct uv_systab { -+ char signature[4]; -+ u32 revision; -+ u64 function; -+ u32 size; -+ struct { -+ u32 type: 8; -+ u32 offset: 24; -+ } entry[1]; -+}; -+ -+enum { -+ BIOS_FREQ_BASE_PLATFORM = 0, -+ BIOS_FREQ_BASE_INTERVAL_TIMER = 1, -+ BIOS_FREQ_BASE_REALTIME_CLOCK = 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; -+}; -+ -+struct uv_cpu_info_s { -+ void *p_uv_hub_info; -+ unsigned char blade_cpu_id; -+ void *reserved; -+}; -+ -+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 = 4294967295, -+ 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; -+}; -+ -+struct cluster_mask { -+ unsigned int clusterid; -+ int node; -+ struct cpumask mask; -+}; -+ -+struct dyn_arch_ftrace {}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 ftrace_rec_iter; -+ -+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 kimage_arch { -+ p4d_t *p4d; -+ pud_t *pud; -+ pmd_t *pmd; -+ pte_t *pte; -+}; -+ -+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 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; -+ 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; -+ void *elf_headers; -+ long unsigned int elf_headers_sz; -+ long unsigned int elf_load_addr; -+}; -+ -+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 x86_mapping_info { -+ void * (*alloc_pgt_page)(void *); -+ void *context; -+ long unsigned int page_flag; -+ long unsigned int offset; -+ bool direct_gbpages; -+ long unsigned int kernpg_flag; -+}; -+ -+struct init_pgtable_data { -+ struct x86_mapping_info *info; -+ pgd_t *level4p; -+}; -+ -+typedef void crash_vmclear_fn(); -+ -+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; -+ bool top_down; -+}; -+ -+struct crash_mem_range { -+ u64 start; -+ u64 end; -+}; -+ -+struct crash_mem { -+ unsigned int max_nr_ranges; -+ unsigned int nr_ranges; -+ struct crash_mem_range ranges[0]; -+}; -+ -+struct crash_memmap_data { -+ struct boot_params *params; -+ unsigned int type; -+}; -+ -+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; -+}; -+ -+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 efi_setup_data { -+ u64 fw_vendor; -+ u64 __unused; -+ u64 tables; -+ u64 smbios; -+ u64 reserved[8]; -+}; -+ -+struct bzimage64_data { -+ void *bootparams_buf; -+}; -+ -+struct freelist_node { -+ atomic_t refs; -+ struct freelist_node *next; -+}; -+ -+struct freelist_head { -+ struct freelist_node *head; -+}; -+ -+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_holder; -+ -+struct kretprobe_instance { -+ union { -+ struct freelist_node freelist; -+ 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; -+ refcount_t ref; -+}; -+ -+struct kretprobe { -+ struct kprobe kp; -+ kretprobe_handler_t handler; -+ kretprobe_handler_t entry_handler; -+ int maxactive; -+ int nmissed; -+ size_t data_size; -+ struct freelist_head freelist; -+ struct kretprobe_holder *rph; -+}; -+ -+struct kretprobe_blackpoint { -+ const char *name; -+ void *addr; -+}; -+ -+struct kprobe_insn_cache { -+ struct mutex mutex; -+ void * (*alloc)(); -+ void (*free)(void *); -+ const char *sym; -+ struct list_head pages; -+ size_t insn_size; -+ int nr_garbage; -+}; -+ -+struct __arch_relative_insn { -+ u8 op; -+ s32 raddr; -+} __attribute__((packed)); -+ -+struct arch_optimized_insn { -+ kprobe_opcode_t copied_insn[4]; -+ kprobe_opcode_t *insn; -+ size_t size; -+}; -+ -+struct optimized_kprobe { -+ struct kprobe kp; -+ struct list_head list; -+ struct arch_optimized_insn optinsn; -+}; -+ -+enum { -+ TRACE_FTRACE_BIT = 0, -+ TRACE_FTRACE_NMI_BIT = 1, -+ TRACE_FTRACE_IRQ_BIT = 2, -+ TRACE_FTRACE_SIRQ_BIT = 3, -+ TRACE_INTERNAL_BIT = 4, -+ TRACE_INTERNAL_NMI_BIT = 5, -+ TRACE_INTERNAL_IRQ_BIT = 6, -+ TRACE_INTERNAL_SIRQ_BIT = 7, -+ TRACE_BRANCH_BIT = 8, -+ TRACE_IRQ_BIT = 9, -+ TRACE_GRAPH_BIT = 10, -+ TRACE_GRAPH_DEPTH_START_BIT = 11, -+ TRACE_GRAPH_DEPTH_END_BIT = 12, -+ TRACE_GRAPH_NOTRACE_BIT = 13, -+ TRACE_TRANSITION_BIT = 14, -+ TRACE_RECORD_RECURSION_BIT = 15, -+}; -+ -+enum { -+ TRACE_CTX_NMI = 0, -+ TRACE_CTX_IRQ = 1, -+ TRACE_CTX_SOFTIRQ = 2, -+ TRACE_CTX_NORMAL = 3, -+}; -+ -+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 hw_breakpoint { -+ unsigned int enabled; -+ long unsigned int addr; -+ int len; -+ int type; -+ struct perf_event **pev; -+}; -+ -+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)(); -+ int (*setup)(struct console *, char *); -+ int (*exit)(struct console *); -+ int (*match)(struct console *, char *, int, char *); -+ short int flags; -+ short int index; -+ int cflag; -+ void *data; -+ struct console *next; -+}; -+ -+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: 48; -+ 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; -+}; -+ -+struct amd_nb_bus_dev_range { -+ u8 bus; -+ u8 dev_base; -+ u8 dev_limit; -+}; -+ -+struct amd_northbridge_info { -+ u16 num; -+ u64 flags; -+ struct amd_northbridge *nb; -+}; -+ -+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]; -+ __u32 enabled; -+}; -+ -+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 branch { -+ unsigned char opcode; -+ u32 delta; -+} __attribute__((packed)); -+ -+typedef long unsigned int ulong; -+ -+struct scan_area { -+ u64 addr; -+ u64 size; -+}; -+ -+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 rp_check { -+ RP_CHECK_CALL = 0, -+ RP_CHECK_CHAIN_CALL = 1, -+ RP_CHECK_RET = 2, -+}; -+ -+struct simplefb_platform_data { -+ u32 width; -+ u32 height; -+ u32 stride; -+ const char *format; -+}; -+ -+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, -+}; -+ -+enum perf_sample_regs_abi { -+ PERF_SAMPLE_REGS_ABI_NONE = 0, -+ PERF_SAMPLE_REGS_ABI_32 = 1, -+ PERF_SAMPLE_REGS_ABI_64 = 2, -+}; -+ -+struct va_format { -+ const char *fmt; -+ va_list *va; -+}; -+ -+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_NUM = 5, -+}; -+ -+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 sev_es_runtime_data { -+ struct ghcb ghcb_page; -+ char ist_stack[4096]; -+ char fallback_stack[4096]; -+ struct ghcb backup_ghcb; -+ bool ghcb_active; -+ bool backup_ghcb_active; -+ long unsigned int dr7; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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 ghcb_state { -+ struct ghcb *ghcb; -+}; -+ -+struct pci_hostbridge_probe { -+ u32 bus; -+ u32 slot; -+ u32 vendor; -+ u32 device; -+}; -+ -+struct trace_print_flags { -+ long unsigned int mask; -+ const char *name; -+}; -+ -+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, -+}; -+ -+enum { -+ REGION_INTERSECTS = 0, -+ REGION_DISJOINT = 1, -+ REGION_MIXED = 2, -+}; -+ -+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 map_range { -+ long unsigned int start; -+ long unsigned int end; -+ unsigned int page_size_mask; -+}; -+ -+struct mhp_params { -+ struct vmem_altmap *altmap; -+ pgprot_t pgprot; -+}; -+ -+struct mem_section_usage { -+ long unsigned int subsection_map[1]; -+ long unsigned int pageblock_flags[0]; -+}; -+ -+struct page_ext; -+ -+struct mem_section { -+ long unsigned int section_mem_map; -+ struct mem_section_usage *usage; -+ struct page_ext *page_ext; -+ long unsigned int pad; -+}; -+ -+struct page_ext { -+ long unsigned int flags; -+}; -+ -+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 { -+ MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12, -+ SECTION_INFO = 12, -+ MIX_SECTION_INFO = 13, -+ NODE_INFO = 14, -+ MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 14, -+}; -+ -+struct hstate { -+ struct mutex resize_lock; -+ int next_nid_to_alloc; -+ int next_nid_to_free; -+ unsigned int 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 nr_huge_pages_node[1024]; -+ unsigned int free_huge_pages_node[1024]; -+ unsigned int surplus_huge_pages_node[1024]; -+ unsigned int nr_free_vmemmap_pages; -+ struct cftype cgroup_files_dfl[7]; -+ struct cftype cgroup_files_legacy[9]; -+ char name[32]; -+}; -+ -+struct trace_event_raw_x86_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_x86_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 { -+ IORES_MAP_SYSTEM_RAM = 1, -+ IORES_MAP_ENCRYPTED = 2, -+}; -+ -+struct ioremap_desc { -+ unsigned int flags; -+}; -+ -+typedef bool (*ex_handler_t)(const struct exception_table_entry *, struct pt_regs *, int, long unsigned int, long unsigned int); -+ -+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 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; -+}; -+ -+struct exception_stacks { -+ char DF_stack_guard[0]; -+ char DF_stack[4096]; -+ char NMI_stack_guard[0]; -+ char NMI_stack[4096]; -+ char DB_stack_guard[0]; -+ char DB_stack[4096]; -+ char MCE_stack_guard[0]; -+ char MCE_stack[4096]; -+ char VC_stack_guard[0]; -+ char VC_stack[0]; -+ char VC2_stack_guard[0]; -+ char VC2_stack[0]; -+ char IST_top_guard[0]; -+}; -+ -+struct vm_event_state { -+ long unsigned int event[100]; -+}; -+ -+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, -+}; -+ -+typedef struct { -+ u64 val; -+} pfn_t; -+ -+struct memtype { -+ u64 start; -+ u64 end; -+ u64 subtree_max_end; -+ enum page_cache_mode type; -+ struct rb_node rb; -+}; -+ -+enum { -+ PAT_UC = 0, -+ PAT_WC = 1, -+ PAT_WT = 4, -+ PAT_WP = 5, -+ PAT_WB = 6, -+ PAT_UC_MINUS = 7, -+}; -+ -+struct pagerange_state { -+ long unsigned int cur_pfn; -+ int ram; -+ int not_ram; -+}; -+ -+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 { -+ MEMTYPE_EXACT_MATCH = 0, -+ MEMTYPE_END_MATCH = 1, -+}; -+ -+struct ptdump_range { -+ long unsigned int start; -+ long unsigned int end; -+}; -+ -+struct ptdump_state { -+ void (*note_page)(struct ptdump_state *, long unsigned int, int, u64); -+ void (*effective_prot)(struct ptdump_state *, int, u64); -+ const struct ptdump_range *range; -+}; -+ -+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 numa_memblk { -+ u64 start; -+ u64 end; -+ int nid; -+}; -+ -+struct numa_meminfo { -+ int nr_blks; -+ struct numa_memblk blk[2048]; -+}; -+ -+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_x2apic_cpu_affinity { -+ struct acpi_subtable_header header; -+ u16 reserved; -+ u32 proximity_domain; -+ u32 apic_id; -+ u32 flags; -+ u32 clock_domain; -+ u32 reserved2; -+}; -+ -+struct rnd_state { -+ __u32 s1; -+ __u32 s2; -+ __u32 s3; -+ __u32 s4; -+}; -+ -+struct kaslr_memory_region { -+ long unsigned int *base; -+ long unsigned int size_tb; -+}; -+ -+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, -+}; -+ -+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 crypto_async_request; -+ -+typedef void (*crypto_completion_t)(struct crypto_async_request *, int); -+ -+struct crypto_async_request { -+ struct list_head list; -+ crypto_completion_t complete; -+ void *data; -+ struct crypto_tfm *tfm; -+ u32 flags; -+}; -+ -+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; -+ }; -+ 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 scatter_walk { -+ struct scatterlist *sg; -+ unsigned int offset; -+}; -+ -+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 { -+ int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); -+ int (*encrypt)(struct skcipher_request *); -+ int (*decrypt)(struct skcipher_request *); -+ int (*init)(struct crypto_skcipher *); -+ void (*exit)(struct crypto_skcipher *); -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+ unsigned int chunksize; -+ unsigned int walksize; -+ struct crypto_alg 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 chacha_ctx { -+ u32 key[8]; -+ int nrounds; -+}; -+ -+struct crypto_aes_ctx { -+ u32 key_enc[60]; -+ u32 key_dec[60]; -+ u32 key_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 aesni_rfc4106_gcm_ctx { -+ u8 hash_subkey[16]; -+ struct crypto_aes_ctx aes_key_expanded; -+ u8 nonce[4]; -+ long: 64; -+}; -+ -+struct generic_gcmaes_ctx { -+ u8 hash_subkey[16]; -+ struct crypto_aes_ctx aes_key_expanded; -+ long: 32; -+ long: 64; -+}; -+ -+struct aesni_xts_ctx { -+ u8 raw_tweak_ctx[484]; -+ long: 32; -+ long: 64; -+ u8 raw_crypt_ctx[484]; -+ long: 32; -+ long: 64; -+}; -+ -+struct gcm_context_data { -+ u8 aad_hash[16]; -+ u64 aad_length; -+ u64 in_length; -+ u8 partial_block_enc_key[16]; -+ u8 orig_IV[16]; -+ u8 current_counter[16]; -+ u64 partial_block_len; -+ u64 unused; -+ u8 hash_keys[256]; -+}; -+ -+struct simd_skcipher_alg; -+ -+struct simd_aead_alg; -+ -+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 *); -+ unsigned int descsize; -+ int: 32; -+ unsigned int digestsize; -+ unsigned int statesize; -+ struct crypto_alg base; -+}; -+ -+struct sha1_state { -+ u32 state[5]; -+ u64 count; -+ u8 buffer[64]; -+}; -+ -+typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); -+ -+struct sha256_state { -+ u32 state[8]; -+ u64 count; -+ u8 buf[64]; -+}; -+ -+typedef void sha256_block_fn(struct sha256_state *, const u8 *, int); -+ -+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[11]; -+ struct poly1305_core_key core_r; -+ }; -+}; -+ -+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 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; -+}; -+ -+typedef u32 compat_size_t; -+ -+struct compat_sigaltstack { -+ compat_uptr_t ss_sp; -+ int ss_flags; -+ compat_size_t ss_size; -+}; -+ -+typedef struct compat_sigaltstack compat_stack_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]; -+}; -+ -+typedef struct { -+ efi_guid_t guid; -+ u64 table; -+} efi_config_table_64_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; -+}; -+ -+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, -+}; -+ -+struct efi_runtime_work { -+ void *arg1; -+ void *arg2; -+ void *arg3; -+ void *arg4; -+ void *arg5; -+ efi_status_t status; -+ struct work_struct work; -+ enum efi_rts_ids efi_rts_id; -+ struct completion efi_rts_comp; -+}; -+ -+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 { -+ u32 version; -+ u32 length; -+ u64 memory_protection_attribute; -+} efi_properties_table_t; -+ -+typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_t *); -+ -+typedef u16 ucs2_char_t; -+ -+struct pm_qos_request { -+ struct plist_node node; -+ struct pm_qos_constraints *qos; -+}; -+ -+struct semaphore { -+ raw_spinlock_t lock; -+ unsigned int count; -+ struct list_head wait_list; -+}; -+ -+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, -+}; -+ -+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 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_irq_2_mmr_pnode { -+ long unsigned int offset; -+ int pnode; -+}; -+ -+struct uv_rtc_timer_head { -+ spinlock_t lock; -+ int next_cpu; -+ int ncpus; -+ struct { -+ int lcpu; -+ u64 expires; -+ } cpu[0]; -+}; -+ -+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; -+}; -+ -+struct nmi_action { -+ char *action; -+ char *desc; -+}; -+ -+typedef char action_t[16]; -+ -+struct init_nmi { -+ unsigned int offset; -+ unsigned int mask; -+ unsigned int data; -+}; -+ -+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_tramp_progs { -+ struct bpf_prog *progs[38]; -+ int nr_progs; -+}; -+ -+enum bpf_jit_poke_reason { -+ BPF_POKE_REASON_TAIL_CALL = 0, -+}; -+ -+struct bpf_array_aux { -+ enum bpf_prog_type type; -+ bool jited; -+ 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 { -+ char value[0]; -+ void *ptrs[0]; -+ void *pptrs[0]; -+ }; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum bpf_text_poke_type { -+ BPF_MOD_CALL = 0, -+ BPF_MOD_JUMP = 1, -+}; -+ -+struct bpf_binary_header { -+ u32 pages; -+ int: 32; -+ u8 image[0]; -+}; -+ -+typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); -+ -+struct jit_context { -+ int cleanup_addr; -+}; -+ -+struct x64_jit_data { -+ struct bpf_binary_header *header; -+ int *addrs; -+ u8 *image; -+ int proglen; -+ struct jit_context ctx; -+}; -+ -+typedef void (*rcu_callback_t)(struct callback_head *); -+ -+enum tk_offsets { -+ TK_OFFS_REAL = 0, -+ TK_OFFS_BOOT = 1, -+ TK_OFFS_TAI = 2, -+ TK_OFFS_MAX = 3, -+}; -+ -+typedef long unsigned int vm_flags_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; -+}; -+ -+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 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 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 multiprocess_signals { -+ sigset_t signal; -+ struct hlist_node node; -+}; -+ -+typedef int (*proc_visitor)(struct task_struct *, void *); -+ -+enum { -+ IOPRIO_CLASS_NONE = 0, -+ IOPRIO_CLASS_RT = 1, -+ IOPRIO_CLASS_BE = 2, -+ IOPRIO_CLASS_IDLE = 3, -+}; -+ -+enum { -+ FUTEX_STATE_OK = 0, -+ FUTEX_STATE_EXITING = 1, -+ FUTEX_STATE_DEAD = 2, -+}; -+ -+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 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 taint_flag { -+ char c_true; -+ char c_false; -+ bool module; -+}; -+ -+enum ftrace_dump_mode { -+ DUMP_NONE = 0, -+ DUMP_ALL = 1, -+ DUMP_ORIG = 2, -+}; -+ -+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 con_flush_mode { -+ CONSOLE_FLUSH_PENDING = 0, -+ CONSOLE_REPLAY_ALL = 1, -+}; -+ -+struct warn_args { -+ const char *fmt; -+ va_list args; -+}; -+ -+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 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; -+ int cpu; -+ struct hlist_node *node; -+ struct hlist_node *last; -+ enum cpuhp_state cb_state; -+ int result; -+ 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 cpu_mitigations { -+ CPU_MITIGATIONS_OFF = 0, -+ CPU_MITIGATIONS_AUTO = 1, -+ CPU_MITIGATIONS_AUTO_NOSMT = 2, -+}; -+ -+struct __kernel_old_timeval { -+ __kernel_long_t tv_sec; -+ __kernel_long_t tv_usec; -+}; -+ -+struct old_timeval32 { -+ old_time32_t tv_sec; -+ s32 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; -+}; -+ -+typedef struct {} mm_segment_t; -+ -+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 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 softirq_action { -+ void (*action)(struct softirq_action *); -+}; -+ -+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 kernel_stat { -+ long unsigned int irqs_sum; -+ unsigned int softirqs[10]; -+}; -+ -+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; -+}; -+ -+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_data_offsets_irq_handler_entry { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_irq_handler_exit {}; -+ -+struct trace_event_data_offsets_softirq {}; -+ -+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); -+ -+struct tasklet_head { -+ struct tasklet_struct *head; -+ struct tasklet_struct **tail; -+}; -+ -+struct pseudo_fs_context { -+ const struct super_operations *ops; -+ const struct xattr_handler **xattr; -+ const struct dentry_operations *dops; -+ long unsigned int magic; -+}; -+ -+typedef void (*dr_release_t)(struct device *, void *); -+ -+typedef int (*dr_match_t)(struct device *, void *, void *); -+ -+struct resource_entry { -+ struct list_head node; -+ struct resource *res; -+ resource_size_t offset; -+ struct resource __res; -+}; -+ -+struct resource_constraint { -+ resource_size_t min; -+ resource_size_t max; -+ resource_size_t align; -+ resource_size_t (*alignf)(void *, const struct resource *, resource_size_t, resource_size_t); -+ void *alignf_data; -+}; -+ -+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 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 files_stat_struct { -+ long unsigned int nr_files; -+ long unsigned int nr_free_files; -+ long unsigned int max_files; -+}; -+ -+struct inodes_stat_t { -+ long int nr_inodes; -+ long int nr_unused; -+ long int dummy[5]; -+}; -+ -+enum sysctl_writes_mode { -+ SYSCTL_WRITES_LEGACY = 4294967295, -+ 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; -+}; -+ -+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 sigqueue { -+ struct list_head list; -+ int flags; -+ kernel_siginfo_t info; -+ struct ucounts *ucounts; -+}; -+ -+typedef int wait_bit_action_f(struct wait_bit_key *, int); -+ -+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; -+}; -+ -+struct compat_iovec { -+ compat_uptr_t iov_base; -+ compat_size_t iov_len; -+}; -+ -+typedef long unsigned int old_sigset_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_PERF_EVENT = 8, -+ SIL_CHLD = 9, -+ SIL_RT = 10, -+ SIL_SYS = 11, -+}; -+ -+struct fd { -+ struct file *file; -+ unsigned int flags; -+}; -+ -+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 *); -+ -+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 rlimit64 { -+ __u64 rlim_cur; -+ __u64 rlim_max; -+}; -+ -+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_OSTYPE = 0, -+ UTS_PROC_OSRELEASE = 1, -+ UTS_PROC_VERSION = 2, -+ UTS_PROC_HOSTNAME = 3, -+ UTS_PROC_DOMAINNAME = 4, -+}; -+ -+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 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 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]; -+}; -+ -+struct wq_flusher; -+ -+struct worker; -+ -+struct workqueue_attrs; -+ -+struct pool_workqueue; -+ -+struct wq_device; -+ -+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 saved_max_active; -+ struct workqueue_attrs *unbound_attrs; -+ struct pool_workqueue *dfl_pwq; -+ struct wq_device *wq_dev; -+ char name[24]; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ unsigned int flags; -+ struct pool_workqueue *cpu_pwqs; -+ struct pool_workqueue *numa_pwq_tbl[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct workqueue_attrs { -+ int nice; -+ cpumask_var_t cpumask; -+ bool no_numa; -+}; -+ -+struct execute_work { -+ struct work_struct work; -+}; -+ -+enum { -+ 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_DRAINING = 65536, -+ __WQ_ORDERED = 131072, -+ __WQ_LEGACY = 262144, -+ __WQ_ORDERED_EXPLICIT = 524288, -+ WQ_MAX_ACTIVE = 512, -+ WQ_MAX_UNBOUND_PER_CPU = 4, -+ WQ_DFL_ACTIVE = 256, -+}; -+ -+enum xa_lock_type { -+ XA_LOCK_IRQ = 1, -+ XA_LOCK_BH = 2, -+}; -+ -+struct ida { -+ struct xarray xa; -+}; -+ -+struct __una_u32 { -+ u32 x; -+}; -+ -+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; -+ 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; -+ int sleeping; -+ char desc[24]; -+ struct workqueue_struct *rescue_wq; -+ work_func_t last_func; -+}; -+ -+struct pool_workqueue { -+ struct worker_pool *pool; -+ struct workqueue_struct *wq; -+ int work_color; -+ int flush_color; -+ int refcnt; -+ int nr_in_flight[15]; -+ int nr_active; -+ int max_active; -+ struct list_head delayed_works; -+ struct list_head pwqs_node; -+ struct list_head mayday_node; -+ struct work_struct unbound_release_work; -+ struct callback_head rcu; -+ 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; -+ struct list_head worklist; -+ int nr_workers; -+ int nr_idle; -+ struct list_head idle_list; -+ struct timer_list idle_timer; -+ struct timer_list mayday_timer; -+ struct hlist_head busy_hash[64]; -+ struct worker *manager; -+ struct list_head workers; -+ struct completion *detach_completion; -+ struct ida worker_ida; -+ struct workqueue_attrs *attrs; -+ struct hlist_node hash_node; -+ int refcnt; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ atomic_t nr_running; -+ struct callback_head rcu; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+enum { -+ POOL_MANAGER_ACTIVE = 1, -+ POOL_DISASSOCIATED = 4, -+ WORKER_DIE = 2, -+ WORKER_IDLE = 4, -+ WORKER_PREP = 8, -+ WORKER_CPU_INTENSIVE = 64, -+ WORKER_UNBOUND = 128, -+ WORKER_REBOUND = 256, -+ WORKER_NOT_RUNNING = 456, -+ 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 = 4294967276, -+ HIGHPRI_NICE_LEVEL = 4294967276, -+ WQ_NAME_LEN = 24, -+}; -+ -+struct wq_flusher { -+ struct list_head list; -+ int flush_color; -+ struct completion done; -+}; -+ -+struct wq_device { -+ struct workqueue_struct *wq; -+ struct device dev; -+}; -+ -+struct trace_event_raw_workqueue_queue_work { -+ struct trace_entry ent; -+ void *work; -+ void *function; -+ u32 __data_loc_workqueue; -+ unsigned int req_cpu; -+ unsigned int cpu; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_workqueue_activate_work { -+ struct trace_entry ent; -+ void *work; -+ 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; -+}; -+ -+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 *, unsigned 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_barrier { -+ struct work_struct work; -+ struct completion done; -+ struct task_struct *task; -+}; -+ -+struct cwt_wait { -+ wait_queue_entry_t wait; -+ struct work_struct *work; -+}; -+ -+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 work_for_cpu { -+ struct work_struct work; -+ long int (*fn)(void *); -+ void *arg; -+ long int ret; -+}; -+ -+typedef struct {} local_lock_t; -+ -+struct radix_tree_preload { -+ local_lock_t lock; -+ unsigned int nr; -+ struct xa_node *nodes; -+}; -+ -+typedef void (*task_work_func_t)(struct callback_head *); -+ -+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 module_version_attribute { -+ struct module_attribute mattr; -+ const char *module_name; -+ const char *version; -+}; -+ -+struct kmalloced_param { -+ struct list_head list; -+ char val[0]; -+}; -+ -+struct sched_param { -+ int sched_priority; -+}; -+ -+enum { -+ __PERCPU_REF_ATOMIC = 1, -+ __PERCPU_REF_DEAD = 2, -+ __PERCPU_REF_ATOMIC_DEAD = 3, -+ __PERCPU_REF_FLAG_BITS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ KTW_FREEZABLE = 1, -+}; -+ -+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 kthread_delayed_work { -+ struct kthread_work work; -+ struct timer_list timer; -+}; -+ -+enum { -+ CSS_NO_REF = 1, -+ CSS_ONLINE = 2, -+ CSS_RELEASED = 4, -+ CSS_VISIBLE = 8, -+ CSS_DYING = 16, -+}; -+ -+struct kthread_create_info { -+ 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 (*threadfn)(void *); -+ void *data; -+ mm_segment_t oldfs; -+ struct completion parked; -+ struct completion exited; -+ struct cgroup_subsys_state *blkcg_css; -+}; -+ -+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 pt_regs___2; -+ -+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; -+ atomic_t msg_bytes; -+ atomic_t 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 user_namespace *user_ns; -+ struct ucounts *ucounts; -+ struct llist_node mnt_llist; -+ struct ns_common ns; -+}; -+ -+struct srcu_notifier_head { -+ struct mutex mutex; -+ struct srcu_struct srcu; -+ struct notifier_block *head; -+}; -+ -+enum what { -+ 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_COREDUMP = 1073741824, -+ PROC_EVENT_EXIT = 2147483648, -+}; -+ -+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 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 {}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ int overload; -+ int 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; -+ long unsigned int max_cpu_capacity; -+ struct perf_domain *pd; -+}; -+ -+struct cfs_rq { -+ struct load_weight load; -+ unsigned int nr_running; -+ unsigned int h_nr_running; -+ unsigned int idle_h_nr_running; -+ u64 exec_clock; -+ u64 min_vruntime; -+ unsigned int forceidle_seq; -+ u64 min_vruntime_fi; -+ struct rb_root_cached tasks_timeline; -+ struct sched_entity *curr; -+ struct sched_entity *next; -+ struct sched_entity *last; -+ struct sched_entity *skip; -+ unsigned int nr_spread_over; -+ long: 32; -+ 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; -+ 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_clock; -+ u64 throttled_clock_task; -+ u64 throttled_clock_task_time; -+ int throttled; -+ int throttle_count; -+ struct list_head throttled_list; -+ 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; -+ 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; -+ u64 throttled_time; -+}; -+ -+struct task_group { -+ struct cgroup_subsys_state css; -+ struct sched_entity **se; -+ struct cfs_rq **cfs_rq; -+ long unsigned int shares; -+ int idle; -+ long: 32; -+ long: 64; -+ 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; -+}; -+ -+struct sched_domain_attr { -+ int relax_domain_level; -+}; -+ -+struct sched_group { -+ struct sched_group *next; -+ atomic_t ref; -+ unsigned int group_weight; -+ struct sched_group_capacity *sgc; -+ int asym_prefer_cpu; -+ 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]; -+}; -+ -+struct autogroup { -+ struct kref kref; -+ struct task_group *tg; -+ struct rw_semaphore lock; -+ long unsigned int id; -+ int nice; -+}; -+ -+enum ctx_state { -+ CONTEXT_DISABLED = 4294967295, -+ CONTEXT_KERNEL = 0, -+ CONTEXT_USER = 1, -+ CONTEXT_GUEST = 2, -+}; -+ -+struct context_tracking { -+ bool active; -+ int recursion; -+ enum ctx_state state; -+}; -+ -+struct kernel_cpustat { -+ u64 cpustat[10]; -+}; -+ -+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 { -+ 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_PRESSURE = 64, -+ __CFTYPE_ONLY_ON_DFL = 65536, -+ __CFTYPE_NOT_ON_DFL = 131072, -+}; -+ -+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_stat_template { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 delay; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_sched_stat_runtime { -+ struct trace_entry ent; -+ char comm[16]; -+ pid_t pid; -+ u64 runtime; -+ u64 vruntime; -+ 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_process_hang { -+ struct trace_entry ent; -+ char comm[16]; -+ 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_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; -+}; -+ -+struct trace_event_data_offsets_sched_stat_template {}; -+ -+struct trace_event_data_offsets_sched_stat_runtime {}; -+ -+struct trace_event_data_offsets_sched_pi_setprio {}; -+ -+struct trace_event_data_offsets_sched_process_hang {}; -+ -+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 *); -+ -+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_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, 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_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 *); -+ -+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; -+ unsigned int rt_nr_migratory; -+ unsigned int rt_nr_total; -+ int overloaded; -+ struct plist_head pushable_tasks; -+ int rt_queued; -+ int rt_throttled; -+ u64 rt_time; -+ u64 rt_runtime; -+ raw_spinlock_t rt_runtime_lock; -+}; -+ -+struct dl_rq { -+ struct rb_root_cached root; -+ unsigned int dl_nr_running; -+ struct { -+ u64 curr; -+ u64 next; -+ } earliest_dl; -+ unsigned int dl_nr_migratory; -+ int overloaded; -+ struct rb_root_cached pushable_dl_tasks_root; -+ u64 running_bw; -+ u64 this_bw; -+ u64 extra_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 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: 32; -+ 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 cfs_rq cfs; -+ struct rt_rq rt; -+ struct dl_rq dl; -+ struct list_head leaf_cfs_rq_list; -+ struct list_head *tmp_alone_branch; -+ unsigned int nr_uninterruptible; -+ struct task_struct *curr; -+ 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; -+ u64 clock_task; -+ u64 clock_pelt; -+ long unsigned int lost_idle_time; -+ 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; -+ long unsigned int cpu_capacity_orig; -+ struct callback_head *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; -+ struct sched_avg avg_rt; -+ struct sched_avg avg_dl; -+ struct sched_avg avg_irq; -+ u64 idle_stamp; -+ u64 avg_idle; -+ long unsigned int wake_stamp; -+ u64 wake_avg_idle; -+ u64 max_idle_balance_cost; -+ struct rcuwait hotplug_wait; -+ u64 prev_irq_time; -+ u64 prev_steal_time; -+ u64 prev_steal_time_rq; -+ 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; -+ 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 char core_forceidle; -+ unsigned int core_forceidle_seq; -+}; -+ -+typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); -+ -+typedef void (*btf_trace_pelt_thermal_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); -+ -+struct wake_q_head { -+ struct wake_q_node *first; -+ struct wake_q_node **lastp; -+}; -+ -+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 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); -+ int (*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 cpudl_item { -+ u64 dl; -+ int cpu; -+ int idx; -+}; -+ -+struct rt_bandwidth { -+ raw_spinlock_t rt_runtime_lock; -+ ktime_t rt_period; -+ u64 rt_runtime; -+ struct hrtimer rt_period_timer; -+ unsigned int rt_period_active; -+}; -+ -+struct dl_bandwidth { -+ raw_spinlock_t dl_runtime_lock; -+ u64 dl_runtime; -+ u64 dl_period; -+}; -+ -+typedef int (*tg_visitor)(struct task_group *, void *); -+ -+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; -+}; -+ -+enum { -+ __SCHED_FEAT_GENTLE_FAIR_SLEEPERS = 0, -+ __SCHED_FEAT_START_DEBIT = 1, -+ __SCHED_FEAT_NEXT_BUDDY = 2, -+ __SCHED_FEAT_LAST_BUDDY = 3, -+ __SCHED_FEAT_CACHE_HOT_BUDDY = 4, -+ __SCHED_FEAT_WAKEUP_PREEMPTION = 5, -+ __SCHED_FEAT_HRTICK = 6, -+ __SCHED_FEAT_HRTICK_DL = 7, -+ __SCHED_FEAT_DOUBLE_TICK = 8, -+ __SCHED_FEAT_NONTASK_CAPACITY = 9, -+ __SCHED_FEAT_TTWU_QUEUE = 10, -+ __SCHED_FEAT_SIS_PROP = 11, -+ __SCHED_FEAT_WARN_DOUBLE_CLOCK = 12, -+ __SCHED_FEAT_RT_PUSH_IPI = 13, -+ __SCHED_FEAT_RT_RUNTIME_SHARE = 14, -+ __SCHED_FEAT_LB_MIN = 15, -+ __SCHED_FEAT_ATTACH_AGE_LOAD = 16, -+ __SCHED_FEAT_WA_IDLE = 17, -+ __SCHED_FEAT_WA_WEIGHT = 18, -+ __SCHED_FEAT_WA_BIAS = 19, -+ __SCHED_FEAT_UTIL_EST = 20, -+ __SCHED_FEAT_UTIL_EST_FASTUP = 21, -+ __SCHED_FEAT_LATENCY_WARN = 22, -+ __SCHED_FEAT_ALT_PERIOD = 23, -+ __SCHED_FEAT_BASE_SLICE = 24, -+ __SCHED_FEAT_NR = 25, -+}; -+ -+struct irqtime { -+ u64 total; -+ u64 tick_delta; -+ u64 irq_start_time; -+ struct u64_stats_sync sync; -+}; -+ -+enum cpu_util_type { -+ FREQUENCY_UTIL = 0, -+ ENERGY_UTIL = 1, -+}; -+ -+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; -+}; -+ -+struct cfs_schedulable_data { -+ struct task_group *tg; -+ u64 period; -+ u64 quota; -+}; -+ -+enum { -+ cpuset = 0, -+ possible = 1, -+ fail = 2, -+}; -+ -+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 sched_clock_data { -+ u64 tick_raw; -+ u64 tick_gtod; -+ u64 clock; -+}; -+ -+enum s2idle_states { -+ S2IDLE_STATE_NONE = 0, -+ S2IDLE_STATE_ENTER = 1, -+ S2IDLE_STATE_WAKE = 2, -+}; -+ -+struct idle_timer { -+ struct hrtimer timer; -+ int done; -+}; -+ -+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_cpu; -+ long unsigned int faults[0]; -+}; -+ -+struct update_util_data { -+ void (*func)(struct update_util_data *, u64, unsigned int); -+}; -+ -+enum sched_tunable_scaling { -+ SCHED_TUNABLESCALING_NONE = 0, -+ SCHED_TUNABLESCALING_LOG = 1, -+ SCHED_TUNABLESCALING_LINEAR = 2, -+ SCHED_TUNABLESCALING_END = 3, -+}; -+ -+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 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; -+ 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; -+}; -+ -+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_asym_packing = 3, -+ group_imbalanced = 4, -+ group_overloaded = 5, -+}; -+ -+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; -+ 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 rt_rq *rt_rq_iter_t; -+ -+struct sd_flag_debug { -+ unsigned int meta_flags; -+ char *name; -+}; -+ -+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 asym_cap_data { -+ struct list_head link; -+ long unsigned int capacity; -+ long unsigned int cpus[0]; -+}; -+ -+enum cpuacct_stat_index { -+ CPUACCT_STAT_USER = 0, -+ CPUACCT_STAT_SYSTEM = 1, -+ CPUACCT_STAT_NSTATS = 2, -+}; -+ -+struct cpuacct_usage { -+ u64 usages[2]; -+}; -+ -+struct cpuacct { -+ struct cgroup_subsys_state css; -+ struct cpuacct_usage *cpuusage; -+ struct kernel_cpustat *cpustat; -+}; -+ -+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); -+}; -+ -+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_dl; -+ long unsigned int max; -+ long unsigned int saved_idle_calls; -+}; -+ -+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_SHARED = 1, -+}; -+ -+enum membarrier_cmd_flag { -+ MEMBARRIER_CMD_FLAG_CPU = 1, -+}; -+ -+enum psi_res { -+ PSI_IO = 0, -+ PSI_MEM = 1, -+ PSI_CPU = 2, -+ NR_PSI_RESOURCES = 3, -+}; -+ -+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; -+ int event; -+ struct psi_window win; -+ u64 last_event_time; -+ struct kref refcount; -+}; -+ -+struct sched_core_cookie { -+ refcount_t refcnt; -+}; -+ -+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 mutex_waiter { -+ struct list_head list; -+ struct task_struct *task; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+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; -+}; -+ -+enum rwsem_wake_type { -+ RWSEM_WAKE_ANY = 0, -+ RWSEM_WAKE_READERS = 1, -+ RWSEM_WAKE_READ_OWNED = 2, -+}; -+ -+enum writer_wait_state { -+ WRITER_NOT_FIRST = 0, -+ WRITER_FIRST = 1, -+ WRITER_HANDOFF = 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 mcs_spinlock { -+ struct mcs_spinlock *next; -+ int locked; -+ int count; -+}; -+ -+struct qnode { -+ struct mcs_spinlock mcs; -+ long int reserved[2]; -+}; -+ -+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 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 hrtimer_sleeper { -+ struct hrtimer timer; -+ struct task_struct *task; -+}; -+ -+struct rt_mutex_waiter { -+ struct rb_node tree_entry; -+ struct rb_node pi_tree_entry; -+ struct task_struct *task; -+ struct rt_mutex_base *lock; -+ unsigned int wake_state; -+ int prio; -+ u64 deadline; -+ struct ww_acquire_ctx *ww_ctx; -+}; -+ -+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 pm_qos_req_action { -+ PM_QOS_ADD_REQ = 0, -+ PM_QOS_UPDATE_REQ = 1, -+ PM_QOS_REMOVE_REQ = 2, -+}; -+ -+typedef int suspend_state_t; -+ -+enum suspend_stat_step { -+ 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 suspend_stats { -+ int success; -+ int fail; -+ int failed_freeze; -+ int failed_prepare; -+ int failed_suspend; -+ int failed_suspend_late; -+ int failed_suspend_noirq; -+ int failed_resume; -+ int failed_resume_early; -+ int failed_resume_noirq; -+ int last_failed_dev; -+ char failed_devs[80]; -+ int last_failed_errno; -+ int errno[2]; -+ int last_failed_step; -+ enum suspend_stat_step failed_steps[2]; -+}; -+ -+enum { -+ TEST_NONE = 0, -+ TEST_CORE = 1, -+ TEST_CPUS = 2, -+ TEST_PLATFORM = 3, -+ TEST_DEVICES = 4, -+ TEST_FREEZER = 5, -+ __TEST_AFTER_LAST = 6, -+}; -+ -+struct pm_vt_switch { -+ struct list_head head; -+ struct device *dev; -+ bool required; -+}; -+ -+struct platform_suspend_ops { -+ int (*valid)(suspend_state_t); -+ int (*begin)(suspend_state_t); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ int (*enter)(suspend_state_t); -+ void (*wake)(); -+ void (*finish)(); -+ bool (*suspend_again)(); -+ void (*end)(); -+ void (*recover)(); -+}; -+ -+struct platform_s2idle_ops { -+ int (*begin)(); -+ int (*prepare)(); -+ int (*prepare_late)(); -+ bool (*wake)(); -+ void (*restore_early)(); -+ void (*restore)(); -+ void (*end)(); -+}; -+ -+struct platform_hibernation_ops { -+ int (*begin)(pm_message_t); -+ void (*end)(); -+ int (*pre_snapshot)(); -+ void (*finish)(); -+ int (*prepare)(); -+ int (*enter)(); -+ void (*leave)(); -+ int (*pre_restore)(); -+ void (*restore_cleanup)(); -+ void (*recover)(); -+}; -+ -+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 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 snapshot_handle { -+ unsigned int cur; -+ void *buffer; -+ int sync_read; -+}; -+ -+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; -+ 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; -+}; -+ -+typedef struct { -+ long unsigned int val; -+} swp_entry_t; -+ -+enum { -+ BIO_NO_PAGE_REF = 0, -+ BIO_CLONED = 1, -+ BIO_BOUNCED = 2, -+ BIO_WORKINGSET = 3, -+ BIO_QUIET = 4, -+ BIO_CHAIN = 5, -+ BIO_REFFED = 6, -+ BIO_THROTTLED = 7, -+ BIO_TRACE_COMPLETION = 8, -+ BIO_CGROUP_ACCT = 9, -+ BIO_TRACKED = 10, -+ BIO_REMAPPED = 11, -+ BIO_ZONE_WRITE_LOCKED = 12, -+ BIO_FLAG_LAST = 13, -+}; -+ -+enum req_opf { -+ REQ_OP_READ = 0, -+ REQ_OP_WRITE = 1, -+ REQ_OP_FLUSH = 2, -+ REQ_OP_DISCARD = 3, -+ REQ_OP_SECURE_ERASE = 5, -+ REQ_OP_WRITE_SAME = 7, -+ REQ_OP_WRITE_ZEROES = 9, -+ REQ_OP_ZONE_OPEN = 10, -+ REQ_OP_ZONE_CLOSE = 11, -+ REQ_OP_ZONE_FINISH = 12, -+ REQ_OP_ZONE_APPEND = 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, -+}; -+ -+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_CGROUP_PUNT = 22, -+ __REQ_NOUNMAP = 23, -+ __REQ_HIPRI = 24, -+ __REQ_DRV = 25, -+ __REQ_SWAP = 26, -+ __REQ_NR_BITS = 27, -+}; -+ -+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[4060]; -+ 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; -+ 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]; -+ unsigned char wrk[16384]; -+}; -+ -+struct dec_data { -+ struct task_struct *thr; -+ 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]; -+}; -+ -+typedef s64 compat_loff_t; -+ -+struct resume_swap_area { -+ __kernel_loff_t offset; -+ __u32 dev; -+} __attribute__((packed)); -+ -+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)); -+ -+struct sysrq_key_op { -+ void (* const handler)(int); -+ const char * const help_msg; -+ const char * const action_msg; -+ const int enable_mask; -+}; -+ -+struct em_data_callback { -+ int (*active_power)(long unsigned int *, long unsigned int *, struct device *); -+}; -+ -+struct dev_printk_info { -+ char subsystem[16]; -+ char device[48]; -+}; -+ -+struct kmsg_dump_iter { -+ u64 cur_seq; -+ u64 next_seq; -+}; -+ -+struct kmsg_dumper { -+ struct list_head list; -+ void (*dump)(struct kmsg_dumper *, enum kmsg_dump_reason); -+ 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; -+}; -+ -+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; -+}; -+ -+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 = 4294967295, -+ desc_reserved = 0, -+ desc_committed = 1, -+ desc_finalized = 2, -+ desc_reusable = 3, -+}; -+ -+struct console_cmdline { -+ char name[16]; -+ int index; -+ bool user_specified; -+ char *options; -+}; -+ -+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, -+}; -+ -+enum log_flags { -+ LOG_NEWLINE = 2, -+ LOG_CONT = 8, -+}; -+ -+struct latched_seq { -+ seqcount_latch_t latch; -+ u64 val[2]; -+}; -+ -+struct devkmsg_user { -+ atomic64_t seq; -+ struct ratelimit_state rs; -+ struct mutex lock; -+ char buf[8192]; -+ struct printk_info info; -+ char text_buf[8192]; -+ struct printk_record record; -+}; -+ -+enum kdb_msgsrc { -+ KDB_MSGSRC_INTERNAL = 0, -+ KDB_MSGSRC_PRINTK = 1, -+}; -+ -+struct printk_safe_seq_buf { -+ atomic_t len; -+ atomic_t message_lost; -+ struct irq_work work; -+ unsigned char buffer[8160]; -+}; -+ -+struct dev_printk_info___2; -+ -+struct prb_data_block { -+ long unsigned int id; -+ char data[0]; -+}; -+ -+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, -+}; -+ -+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 { -+ IRQTF_RUNTHREAD = 0, -+ IRQTF_WARNED = 1, -+ IRQTF_AFFINITY = 2, -+ IRQTF_FORCED_THREAD = 3, -+}; -+ -+enum { -+ IRQC_IS_HARDIRQ = 0, -+ IRQC_IS_NESTED = 1, -+}; -+ -+enum { -+ IRQ_STARTUP_NORMAL = 0, -+ IRQ_STARTUP_MANAGED = 1, -+ IRQ_STARTUP_ABORT = 2, -+}; -+ -+struct irq_devres { -+ unsigned int irq; -+ void *dev_id; -+}; -+ -+struct irq_desc_devres { -+ unsigned int from; -+ unsigned int cnt; -+}; -+ -+struct irqchip_fwid { -+ struct fwnode_handle fwnode; -+ unsigned int type; -+ char *name; -+ phys_addr_t *pa; -+}; -+ -+enum { -+ AFFINITY = 0, -+ AFFINITY_LIST = 1, -+ EFFECTIVE = 2, -+ EFFECTIVE_LIST = 3, -+}; -+ -+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 node_vectors { -+ unsigned int id; -+ union { -+ unsigned int nvectors; -+ unsigned int ncpus; -+ }; -+}; -+ -+struct cpumap { -+ unsigned int available; -+ unsigned int allocated; -+ unsigned int managed; -+ unsigned int managed_allocated; -+ bool initialized; -+ bool online; -+ long unsigned int alloc_map[4]; -+ long unsigned int managed_map[4]; -+}; -+ -+struct irq_matrix___2 { -+ 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 scratch_map[4]; -+ long unsigned int system_map[4]; -+}; -+ -+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___2 *); -+ -+typedef void (*btf_trace_irq_matrix_offline)(void *, struct irq_matrix___2 *); -+ -+typedef void (*btf_trace_irq_matrix_reserve)(void *, struct irq_matrix___2 *); -+ -+typedef void (*btf_trace_irq_matrix_remove_reserved)(void *, struct irq_matrix___2 *); -+ -+typedef void (*btf_trace_irq_matrix_assign_system)(void *, int, struct irq_matrix___2 *); -+ -+typedef void (*btf_trace_irq_matrix_alloc_reserved)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_reserve_managed)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_remove_managed)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_alloc_managed)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_assign)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_alloc)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*btf_trace_irq_matrix_free)(void *, int, unsigned int, struct irq_matrix___2 *, struct cpumap *); -+ -+typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); -+ -+struct rcu_synchronize { -+ struct callback_head head; -+ struct completion completion; -+}; -+ -+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)(); -+ -+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 { -+ struct callback_head *cbs_head; -+ struct callback_head **cbs_tail; -+ struct wait_queue_head cbs_wq; -+ raw_spinlock_t cbs_lock; -+ int gp_state; -+ int gp_sleep; -+ int init_fract; -+ long unsigned int gp_jiffies; -+ long unsigned int gp_start; -+ long unsigned int n_gps; -+ long unsigned int n_ipis; -+ long unsigned int n_ipis_fails; -+ struct task_struct *kthread_ptr; -+ 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; -+ char *name; -+ char *kname; -+}; -+ -+enum { -+ GP_IDLE = 0, -+ GP_ENTER = 1, -+ GP_PASSED = 2, -+ GP_EXIT = 3, -+ GP_REPLAY = 4, -+}; -+ -+struct rcu_cblist { -+ struct callback_head *head; -+ struct callback_head **tail; -+ long int len; -+}; -+ -+enum rcutorture_type { -+ RCU_FLAVOR = 0, -+ RCU_TASKS_FLAVOR = 1, -+ RCU_TASKS_RUDE_FLAVOR = 2, -+ RCU_TASKS_TRACING_FLAVOR = 3, -+ RCU_TRIVIAL_FLAVOR = 4, -+ SRCU_FLAVOR = 5, -+ INVALID_RCU_FLAVOR = 6, -+}; -+ -+struct rcu_exp_work { -+ long unsigned int rew_s; -+ struct work_struct 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 ofl_seq; -+ long unsigned int expmask; -+ long unsigned int expmaskinit; -+ long unsigned int expmaskinitnext; -+ 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 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; -+ raw_spinlock_t fqslock; -+ long: 32; -+ 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; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+union rcu_noqs { -+ struct { -+ u8 norm; -+ u8 exp; -+ } b; -+ u16 s; -+}; -+ -+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 exp_deferred_qs; -+ bool cpu_started; -+ struct rcu_node *mynode; -+ long unsigned int grpmask; -+ long unsigned int ticks_this_gp; -+ struct irq_work defer_qs_iw; -+ bool 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 dynticks_snap; -+ long int dynticks_nesting; -+ long int dynticks_nmi_nesting; -+ atomic_t dynticks; -+ bool rcu_need_heavy_qs; -+ bool rcu_urgent_qs; -+ bool rcu_forced_tick; -+ bool rcu_forced_tick_exp; -+ struct callback_head barrier_head; -+ int exp_dynticks_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; -+ atomic_t nocb_lock_contended; -+ int nocb_defer_wakeup; -+ struct timer_list nocb_timer; -+ long unsigned int nocb_gp_adv_time; -+ 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: 32; -+ 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 rcu_data *nocb_next_cb_rdp; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ 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_flags; -+ long unsigned int rcu_onl_gp_seq; -+ short int rcu_onl_gp_flags; -+ long unsigned int last_fqs_resched; -+ int cpu; -+ long: 32; -+ long: 64; -+}; -+ -+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; -+ u8 boost; -+ 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; -+ struct mutex barrier_mutex; -+ atomic_t barrier_cpu_count; -+ struct completion barrier_completion; -+ long unsigned int barrier_sequence; -+ 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; -+ long unsigned int jiffies_resched; -+ long unsigned int n_force_qs_gpstart; -+ const char *name; -+ char abbr; -+ long: 56; -+ long: 64; -+ long: 64; -+ raw_spinlock_t ofl_lock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct kvfree_rcu_bulk_data { -+ long unsigned int nr_records; -+ struct kvfree_rcu_bulk_data *next; -+ void *records[0]; -+}; -+ -+struct kfree_rcu_cpu; -+ -+struct kfree_rcu_cpu_work { -+ struct rcu_work rcu_work; -+ struct callback_head *head_free; -+ struct kvfree_rcu_bulk_data *bkvhead_free[2]; -+ struct kfree_rcu_cpu *krcp; -+}; -+ -+struct kfree_rcu_cpu { -+ struct callback_head *head; -+ struct kvfree_rcu_bulk_data *bkvhead[2]; -+ struct kfree_rcu_cpu_work krw_arr[2]; -+ raw_spinlock_t lock; -+ struct delayed_work monitor_work; -+ bool monitor_todo; -+ bool initialized; -+ int count; -+ 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; -+}; -+ -+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; -+}; -+ -+struct klp_find_arg { -+ const char *objname; -+ const char *name; -+ long unsigned int addr; -+ long unsigned int count; -+ long unsigned int pos; -+}; -+ -+struct klp_ops { -+ struct list_head node; -+ struct list_head func_stack; -+ struct ftrace_ops fops; -+}; -+ -+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]; -+}; -+ -+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_TYPES = 8, -+}; -+ -+struct dma_sgt_handle { -+ struct sg_table sgt; -+ struct page **pages; -+}; -+ -+struct dma_devres { -+ size_t size; -+ void *vaddr; -+ dma_addr_t dma_handle; -+ long unsigned int attrs; -+}; -+ -+struct cma_kobject; -+ -+struct cma { -+ long unsigned int base_pfn; -+ long unsigned int count; -+ long unsigned int *bitmap; -+ unsigned int order_per_bit; -+ spinlock_t lock; -+ char name[64]; -+ atomic64_t nr_pages_succeeded; -+ atomic64_t nr_pages_failed; -+ struct cma_kobject *cma_kobj; -+}; -+ -+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; -+ enum swiotlb_force swiotlb_force; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_swiotlb_bounced { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t, enum swiotlb_force); -+ -+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 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_msr_entry { -+ __u32 index; -+ __u32 reserved; -+ __u64 data; -+}; -+ -+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; -+ __u8 reserved[27]; -+ __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 kvm_vmx_nested_state_data vmx[0]; -+ struct kvm_svm_nested_state_data svm[0]; -+ } data; -+}; -+ -+struct kvm_pmu_event_filter { -+ __u32 action; -+ __u32 nevents; -+ __u32 fixed_counter_bitmap; -+ __u32 flags; -+ __u32 pad[4]; -+ __u64 events[0]; -+}; -+ -+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; -+ __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 nr; -+ __u64 args[6]; -+ __u64 ret; -+ __u32 longmode; -+ __u32 pad; -+ } 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; -+ __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; -+ __u64 flags; -+ } 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; -+ 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_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_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 unused; -+ 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_track[1]; -+}; -+ -+struct kvm_memory_slot { -+ 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 gfn_to_pfn_cache { -+ u64 generation; -+ gfn_t gfn; -+ kvm_pfn_t pfn; -+ bool dirty; -+}; -+ -+struct kvm_mmu_memory_cache { -+ int nobjs; -+ gfp_t gfp_zero; -+ struct kmem_cache *kmem_cache; -+ void *objects[40]; -+}; -+ -+struct kvm_vm_stat_generic { -+ u64 remote_tlb_flush; -+}; -+ -+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; -+}; -+ -+struct hv_partition_assist_pg { -+ u32 tlb_lock_count; -+}; -+ -+union hv_message_flags { -+ __u8 asu8; -+ struct { -+ __u8 msg_pending: 1; -+ __u8 reserved: 7; -+ }; -+}; -+ -+union hv_port_id { -+ __u32 asu32; -+ struct { -+ __u32 id: 24; -+ __u32 reserved: 8; -+ } u; -+}; -+ -+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; -+}; -+ -+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; -+ }; -+}; -+ -+enum kvm_page_track_mode { -+ KVM_PAGE_TRACK_WRITE = 0, -+ KVM_PAGE_TRACK_MAX = 1, -+}; -+ -+struct kvm_page_track_notifier_head { -+ struct srcu_struct track_srcu; -+ struct hlist_head track_notifier_list; -+}; -+ -+struct kvm_vcpu; -+ -+struct kvm; -+ -+struct kvm_page_track_notifier_node { -+ struct hlist_node node; -+ void (*track_write)(struct kvm_vcpu *, gpa_t, const u8 *, int, struct kvm_page_track_notifier_node *); -+ void (*track_flush_slot)(struct kvm *, struct kvm_memory_slot *, struct kvm_page_track_notifier_node *); -+}; -+ -+struct kvm_mmio_fragment { -+ gpa_t gpa; -+ void *data; -+ unsigned int len; -+}; -+ -+struct kvm_lapic; -+ -+struct x86_exception; -+ -+struct kvm_mmu_page; -+ -+union kvm_mmu_page_role { -+ u32 word; -+ struct { -+ unsigned int level: 4; -+ unsigned int gpte_is_8_bytes: 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; -+ char: 6; -+ unsigned int smm: 8; -+ }; -+}; -+ -+union kvm_mmu_extended_role { -+ u32 word; -+ struct { -+ unsigned int valid: 1; -+ unsigned int execonly: 1; -+ unsigned int cr0_pg: 1; -+ unsigned int cr4_pae: 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; -+ }; -+}; -+ -+union kvm_mmu_role { -+ u64 as_u64; -+ struct { -+ union kvm_mmu_page_role base; -+ union kvm_mmu_extended_role ext; -+ }; -+}; -+ -+struct kvm_mmu_root_info { -+ gpa_t pgd; -+ hpa_t hpa; -+}; -+ -+struct rsvd_bits_validate { -+ u64 rsvd_bits_mask[10]; -+ u64 bad_mt_xwr; -+}; -+ -+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 *, gpa_t, u32, bool); -+ void (*inject_page_fault)(struct kvm_vcpu *, struct x86_exception *); -+ gpa_t (*gva_to_gpa)(struct kvm_vcpu *, gpa_t, u32, struct x86_exception *); -+ gpa_t (*translate_gpa)(struct kvm_vcpu *, gpa_t, u32, struct x86_exception *); -+ int (*sync_page)(struct kvm_vcpu *, struct kvm_mmu_page *); -+ void (*invlpg)(struct kvm_vcpu *, gva_t, hpa_t); -+ hpa_t root_hpa; -+ gpa_t root_pgd; -+ union kvm_mmu_role mmu_role; -+ u8 root_level; -+ u8 shadow_root_level; -+ u8 ept_ad; -+ bool direct_map; -+ struct kvm_mmu_root_info prev_roots[3]; -+ u8 permissions[16]; -+ u32 pkru_mask; -+ u64 *pae_root; -+ u64 *pml4_root; -+ struct rsvd_bits_validate shadow_zero_check; -+ struct rsvd_bits_validate guest_rsvd_check; -+ u64 pdptrs[4]; -+}; -+ -+struct kvm_pio_request { -+ long unsigned int linear_rip; -+ long unsigned int count; -+ int in; -+ int port; -+ int size; -+}; -+ -+struct kvm_queued_exception { -+ bool pending; -+ bool injected; -+ bool has_error_code; -+ u8 nr; -+ u32 error_code; -+ long unsigned int payload; -+ bool has_payload; -+ u8 nested_apf; -+}; -+ -+struct kvm_queued_interrupt { -+ bool injected; -+ bool soft; -+ u8 nr; -+}; -+ -+struct x86_emulate_ctxt; -+ -+struct kvm_mtrr_range { -+ u64 base; -+ u64 mask; -+ struct list_head node; -+}; -+ -+struct kvm_mtrr { -+ struct kvm_mtrr_range var_ranges[8]; -+ mtrr_type fixed_ranges[88]; -+ u64 deftype; -+ struct list_head head; -+}; -+ -+enum pmc_type { -+ KVM_PMC_GP = 0, -+ KVM_PMC_FIXED = 1, -+}; -+ -+struct kvm_pmc { -+ enum pmc_type type; -+ u8 idx; -+ u64 counter; -+ u64 eventsel; -+ struct perf_event *perf_event; -+ struct kvm_vcpu *vcpu; -+ u64 current_config; -+}; -+ -+struct kvm_pmu { -+ unsigned int nr_arch_gp_counters; -+ unsigned int nr_arch_fixed_counters; -+ unsigned int available_event_types; -+ u64 fixed_ctr_ctrl; -+ u64 global_ctrl; -+ u64 global_status; -+ u64 global_ovf_ctrl; -+ u64 counter_bitmask[2]; -+ u64 global_ctrl_mask; -+ u64 global_ovf_ctrl_mask; -+ u64 reserved_bits; -+ u8 version; -+ struct kvm_pmc gp_counters[32]; -+ struct kvm_pmc fixed_counters[4]; -+ struct irq_work irq_work; -+ long unsigned int reprogram_pmi[1]; -+ long unsigned int all_valid_pmc_idx[1]; -+ long unsigned int pmc_in_use[1]; -+ bool need_cleanup; -+ u8 event_count; -+}; -+ -+struct kvm_vcpu_xen { -+ u64 hypercall_rip; -+ u32 current_runstate; -+ bool vcpu_info_set; -+ bool vcpu_time_info_set; -+ bool runstate_set; -+ struct gfn_to_hva_cache vcpu_info_cache; -+ struct gfn_to_hva_cache vcpu_time_info_cache; -+ struct gfn_to_hva_cache runstate_cache; -+ u64 last_steal; -+ u64 runstate_entry_time; -+ u64 runstate_times[4]; -+}; -+ -+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 apic_base; -+ struct kvm_lapic *apic; -+ bool apicv_active; -+ 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 tpr_access_reporting; -+ bool xsaves_enabled; -+ 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_gfn_array_cache; -+ struct kvm_mmu_memory_cache mmu_page_header_cache; -+ struct fpu *user_fpu; -+ struct fpu *guest_fpu; -+ u64 xcr0; -+ u64 guest_supported_xcr0; -+ struct kvm_pio_request pio; -+ void *pio_data; -+ void *guest_ins_data; -+ u8 event_exit_inst_len; -+ struct kvm_queued_exception exception; -+ struct kvm_queued_interrupt interrupt; -+ int halt_request; -+ int cpuid_nent; -+ struct kvm_cpuid_entry2 *cpuid_entries; -+ u64 reserved_gpa_bits; -+ int maxphyaddr; -+ int max_tdp_level; -+ 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 *); -+ gpa_t time; -+ struct pvclock_vcpu_time_info hv_clock; -+ unsigned int hw_tsc_khz; -+ struct gfn_to_hva_cache pv_time; -+ bool pv_time_enabled; -+ bool pvclock_set_guest_stopped_request; -+ struct { -+ u8 preempted; -+ u64 msr_val; -+ u64 last_steal; -+ struct gfn_to_pfn_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; -+ 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 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; -+ bool send_user_only; -+ u32 host_apf_flags; -+ long unsigned int nested_apf_token; -+ 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; -+ bool write_fault_to_shadow_pgtable; -+ long unsigned int exit_qualification; -+ struct { -+ bool pv_unhalted; -+ } pv; -+ int pending_ioapic_eoi; -+ int pending_external_vector; -+ 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 pdptrs_from_userspace; -+ hpa_t hv_root_tdp; -+}; -+ -+struct kvm_vcpu_stat { -+ struct kvm_vcpu_stat_generic generic; -+ u64 pf_fixed; -+ 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 guest_mode; -+}; -+ -+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; -+ int pre_pcpu; -+ struct list_head blocked_vcpu_list; -+ struct mutex mutex; -+ struct kvm_run *run; -+ struct rcuwait wait; -+ struct pid *pid; -+ 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 preempted; -+ bool ready; -+ struct kvm_vcpu_arch arch; -+ struct kvm_vcpu_stat stat; -+ char stats_id[48]; -+ struct kvm_dirty_ring dirty_ring; -+}; -+ -+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; -+ u64 lpages; -+ u64 nx_lpage_splits; -+ u64 max_mmu_page_hash_collisions; -+}; -+ -+struct iommu_domain___2; -+ -+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_UPDATING = 4, -+ HV_TSC_PAGE_BROKEN = 5, -+}; -+ -+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; -+ atomic_t num_mismatched_vp_indexes; -+ struct hv_partition_assist_pg *hv_pa_pg; -+ struct kvm_hv_syndbg hv_syndbg; -+}; -+ -+struct kvm_xen { -+ bool long_mode; -+ bool shinfo_set; -+ u8 upcall_vector; -+ struct gfn_to_hva_cache shinfo_cache; -+}; -+ -+enum kvm_irqchip_mode { -+ KVM_IRQCHIP_NONE = 0, -+ KVM_IRQCHIP_KERNEL = 1, -+ KVM_IRQCHIP_SPLIT = 2, -+}; -+ -+struct kvm_apic_map; -+ -+struct kvm_x86_msr_filter; -+ -+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; -+ struct hlist_head mmu_page_hash[4096]; -+ struct list_head active_mmu_pages; -+ struct list_head zapped_obsolete_pages; -+ struct list_head lpage_disallowed_mmu_pages; -+ struct kvm_page_track_notifier_node mmu_sp_tracker; -+ struct kvm_page_track_notifier_head track_notifier_head; -+ spinlock_t mmu_unsync_pages_lock; -+ struct list_head assigned_dev_head; -+ struct iommu_domain___2 *iommu_domain; -+ bool iommu_noncoherent; -+ atomic_t noncoherent_dma_count; -+ atomic_t assigned_device_count; -+ 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; -+ long unsigned int apicv_inhibit_reasons; -+ gpa_t wall_clock; -+ bool mwait_in_guest; -+ bool hlt_in_guest; -+ bool pause_in_guest; -+ bool cstate_in_guest; -+ long unsigned int irq_sources_bitmap; -+ s64 kvmclock_offset; -+ raw_spinlock_t tsc_write_lock; -+ u64 last_tsc_nsec; -+ u64 last_tsc_write; -+ u32 last_tsc_khz; -+ u64 cur_tsc_nsec; -+ u64 cur_tsc_write; -+ u64 cur_tsc_offset; -+ u64 cur_tsc_generation; -+ int nr_vcpus_matched_tsc; -+ spinlock_t pvclock_gtod_sync_lock; -+ 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_xen_hvm_config xen_hvm_config; -+ struct hlist_head mask_notifier_list; -+ struct kvm_hv hyperv; -+ struct kvm_xen xen; -+ int audit_point; -+ bool backwards_tsc_observed; -+ bool boot_vcpu_runs_old_kvmclock; -+ u32 bsp_vcpu_id; -+ u64 disabled_quirks; -+ int cpu_dirty_logging_count; -+ enum kvm_irqchip_mode irqchip_mode; -+ u8 nr_reserved_ioapic_pins; -+ bool disabled_lapic_found; -+ bool x2apic_format; -+ bool x2apic_broadcast_quirk_disabled; -+ bool guest_can_read_msr_platform_info; -+ bool exception_payload_enabled; -+ bool bus_lock_detection_enabled; -+ 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_pmu_event_filter *pmu_event_filter; -+ struct task_struct *nx_lpage_recovery_thread; -+ bool tdp_mmu_enabled; -+ struct list_head tdp_mmu_roots; -+ struct list_head tdp_mmu_pages; -+ spinlock_t tdp_mmu_pages_lock; -+ bool memslots_have_rmaps; -+ hpa_t hv_root_tdp; -+ spinlock_t hv_root_tdp_lock; -+}; -+ -+struct kvm_memslots; -+ -+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; -+ struct kvm_memslots *memslots[2]; -+ struct kvm_vcpu *vcpus[288]; -+ atomic_t online_vcpus; -+ int created_vcpus; -+ int last_boosted_vcpu; -+ struct list_head vm_list; -+ struct mutex lock; -+ struct kvm_io_bus *buses[4]; -+ 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_notifier_seq; -+ long int mmu_notifier_count; -+ long unsigned int mmu_notifier_range_start; -+ long unsigned int mmu_notifier_range_end; -+ long int tlbs_dirty; -+ 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; -+ unsigned int max_halt_poll_ns; -+ u32 dirty_ring_size; -+ struct notifier_block pm_notifier; -+ char stats_id[48]; -+}; -+ -+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, -+}; -+ -+struct kvm_rmap_head { -+ long unsigned int val; -+}; -+ -+struct kvm_tlb_range { -+ u64 start_gfn; -+ u64 pages; -+}; -+ -+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; -+}; -+ -+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]; -+ cpumask_t tlb_flush; -+ bool enforce_cpuid; -+ struct { -+ u32 features_eax; -+ u32 features_ebx; -+ u32 features_edx; -+ u32 enlightenments_eax; -+ u32 enlightenments_ebx; -+ u32 syndbg_cap_eax; -+ } cpuid_cache; -+}; -+ -+struct kvm_lpage_info { -+ int disallow_lpage; -+}; -+ -+struct kvm_apic_map { -+ struct callback_head rcu; -+ u8 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 msr_data { -+ bool host_initiated; -+ u32 index; -+ u64 data; -+}; -+ -+struct x86_instruction_info; -+ -+enum x86_intercept_stage; -+ -+struct kvm_pmu_ops; -+ -+struct kvm_x86_nested_ops; -+ -+struct kvm_x86_ops { -+ int (*hardware_enable)(); -+ void (*hardware_disable)(); -+ void (*hardware_unsetup)(); -+ bool (*cpu_has_accelerated_tpr)(); -+ 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 *); -+ int (*vcpu_create)(struct kvm_vcpu *); -+ void (*vcpu_free)(struct kvm_vcpu *); -+ void (*vcpu_reset)(struct kvm_vcpu *, bool); -+ void (*prepare_guest_switch)(struct kvm_vcpu *); -+ void (*vcpu_load)(struct kvm_vcpu *, int); -+ void (*vcpu_put)(struct kvm_vcpu *); -+ 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 *); -+ void (*set_segment)(struct kvm_vcpu *, struct kvm_segment *, int); -+ void (*get_cs_db_l_bits)(struct kvm_vcpu *, int *, int *); -+ void (*set_cr0)(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); -+ void (*tlb_flush_all)(struct kvm_vcpu *); -+ void (*tlb_flush_current)(struct kvm_vcpu *); -+ int (*tlb_remote_flush)(struct kvm *); -+ int (*tlb_remote_flush_with_range)(struct kvm *, struct kvm_tlb_range *); -+ void (*tlb_flush_gva)(struct kvm_vcpu *, gva_t); -+ void (*tlb_flush_guest)(struct kvm_vcpu *); -+ enum exit_fastpath_completion (*run)(struct kvm_vcpu *); -+ 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 (*set_irq)(struct kvm_vcpu *); -+ void (*set_nmi)(struct kvm_vcpu *); -+ void (*queue_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); -+ void (*enable_nmi_window)(struct kvm_vcpu *); -+ void (*enable_irq_window)(struct kvm_vcpu *); -+ void (*update_cr8_intercept)(struct kvm_vcpu *, int, int); -+ bool (*check_apicv_inhibit_reasons)(ulong); -+ void (*pre_update_apicv_exec_ctrl)(struct kvm *, bool); -+ void (*refresh_apicv_exec_ctrl)(struct kvm_vcpu *); -+ void (*hwapic_irr_update)(struct kvm_vcpu *, int); -+ void (*hwapic_isr_update)(struct kvm_vcpu *, int); -+ bool (*guest_apic_has_interrupt)(struct kvm_vcpu *); -+ 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 *); -+ int (*deliver_posted_interrupt)(struct kvm_vcpu *, 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); -+ u64 (*get_mt_mask)(struct kvm_vcpu *, gfn_t, bool); -+ void (*load_mmu_pgd)(struct kvm_vcpu *, hpa_t, int); -+ bool (*has_wbinvd_exit)(); -+ u64 (*get_l2_tsc_offset)(struct kvm_vcpu *); -+ u64 (*get_l2_tsc_multiplier)(struct kvm_vcpu *); -+ void (*write_tsc_offset)(struct kvm_vcpu *, u64); -+ void (*write_tsc_multiplier)(struct kvm_vcpu *, u64); -+ void (*get_exit_info)(struct kvm_vcpu *, u64 *, u64 *, 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 (*request_immediate_exit)(struct kvm_vcpu *); -+ void (*sched_in)(struct kvm_vcpu *, int); -+ int cpu_dirty_log_size; -+ void (*update_cpu_dirty_logging)(struct kvm_vcpu *); -+ const struct kvm_pmu_ops *pmu_ops; -+ const struct kvm_x86_nested_ops *nested_ops; -+ int (*pre_block)(struct kvm_vcpu *); -+ void (*post_block)(struct kvm_vcpu *); -+ void (*vcpu_blocking)(struct kvm_vcpu *); -+ void (*vcpu_unblocking)(struct kvm_vcpu *); -+ int (*update_pi_irte)(struct kvm *, unsigned int, uint32_t, bool); -+ void (*start_assignment)(struct kvm *); -+ void (*apicv_post_state_restore)(struct kvm_vcpu *); -+ bool (*dy_apicv_has_pending_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 *, char *); -+ int (*leave_smm)(struct kvm_vcpu *, const char *); -+ void (*enable_smi_window)(struct kvm_vcpu *); -+ int (*mem_enc_op)(struct kvm *, void *); -+ int (*mem_enc_reg_region)(struct kvm *, struct kvm_enc_region *); -+ int (*mem_enc_unreg_region)(struct kvm *, struct kvm_enc_region *); -+ int (*vm_copy_enc_context_from)(struct kvm *, unsigned int); -+ int (*get_msr_feature)(struct kvm_msr_entry *); -+ bool (*can_emulate_instruction)(struct kvm_vcpu *, void *, int); -+ bool (*apic_init_signal_blocked)(struct kvm_vcpu *); -+ int (*enable_direct_tlbflush)(struct kvm_vcpu *); -+ void (*migrate_timers)(struct kvm_vcpu *); -+ void (*msr_filter_changed)(struct kvm_vcpu *); -+ int (*complete_emulated_msr)(struct kvm_vcpu *, int); -+ void (*vcpu_deliver_sipi_vector)(struct kvm_vcpu *, u8); -+}; -+ -+struct kvm_x86_nested_ops { -+ int (*check_events)(struct kvm_vcpu *); -+ bool (*hv_timer_pending)(struct kvm_vcpu *); -+ 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 *); -+}; -+ -+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_NR_BUSES = 4, -+}; -+ -+struct kvm_irq_routing_table { -+ int chip[72]; -+ u32 nr_rt_entries; -+ struct hlist_head map[0]; -+}; -+ -+struct kvm_memslots { -+ u64 generation; -+ short int id_to_index[32767]; -+ atomic_t lru_slot; -+ int used_slots; -+ struct kvm_memory_slot memslots[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 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; -+}; -+ -+enum profile_type { -+ PROFILE_TASK_EXIT = 0, -+ PROFILE_MUNMAP = 1, -+}; -+ -+struct profile_hit { -+ u32 pc; -+ u32 hits; -+}; -+ -+struct stacktrace_cookie { -+ long unsigned int *store; -+ unsigned int size; -+ unsigned int skip; -+ unsigned int len; -+}; -+ -+typedef __kernel_long_t __kernel_suseconds_t; -+ -+typedef __kernel_long_t __kernel_old_time_t; -+ -+typedef __kernel_suseconds_t suseconds_t; -+ -+typedef __u64 timeu64_t; -+ -+struct __kernel_itimerspec { -+ struct __kernel_timespec it_interval; -+ struct __kernel_timespec it_value; -+}; -+ -+struct timezone { -+ int tz_minuteswest; -+ int tz_dsttime; -+}; -+ -+struct itimerspec64 { -+ struct timespec64 it_interval; -+ struct timespec64 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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_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_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, 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_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; -+}; -+ -+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 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 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 audit_ntp_val { -+ long long int oldval; -+ long long int newval; -+}; -+ -+struct audit_ntp_data { -+ struct audit_ntp_val vals[6]; -+}; -+ -+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 rtc_wkalrm { -+ unsigned char enabled; -+ unsigned char pending; -+ struct rtc_time time; -+}; -+ -+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); -+}; -+ -+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; -+ int uie_unsupported; -+ long unsigned int set_offset_nsec; -+ long unsigned int features[1]; -+ time64_t range_min; -+ timeu64_t range_max; -+ time64_t start_secs; -+ time64_t offset_secs; -+ bool set_start_time; -+}; -+ -+typedef s64 int64_t; -+ -+enum tick_nohz_mode { -+ NOHZ_MODE_INACTIVE = 0, -+ NOHZ_MODE_LOWRES = 1, -+ NOHZ_MODE_HIGHRES = 2, -+}; -+ -+struct tick_sched { -+ struct hrtimer sched_timer; -+ long unsigned int check_clocks; -+ enum tick_nohz_mode nohz_mode; -+ unsigned int inidle: 1; -+ unsigned int tick_stopped: 1; -+ unsigned int idle_active: 1; -+ unsigned int do_timer_last: 1; -+ unsigned int got_idle_tick: 1; -+ ktime_t last_tick; -+ ktime_t next_tick; -+ long unsigned int idle_jiffies; -+ long unsigned int idle_calls; -+ long unsigned int idle_sleeps; -+ ktime_t idle_entrytime; -+ ktime_t idle_waketime; -+ ktime_t idle_exittime; -+ ktime_t idle_sleeptime; -+ ktime_t iowait_sleeptime; -+ long unsigned int last_jiffies; -+ u64 timer_expires; -+ u64 timer_expires_base; -+ u64 next_timer; -+ ktime_t idle_expires; -+ atomic_t tick_dep_mask; -+}; -+ -+struct timer_list_iter { -+ int cpu; -+ bool second_pass; -+ u64 now; -+}; -+ -+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 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; -+}; -+ -+typedef __kernel_timer_t timer_t; -+ -+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 k_clock; -+ -+struct k_itimer { -+ struct list_head 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 *); -+}; -+ -+struct class_interface { -+ struct list_head node; -+ struct class *class; -+ int (*add_dev)(struct device *, struct class_interface *); -+ void (*remove_dev)(struct device *, struct class_interface *); -+}; -+ -+struct platform_driver { -+ int (*probe)(struct platform_device *); -+ int (*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; -+}; -+ -+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 (*get_timespec)(struct timespec64 *); -+ clockid_t base_clockid; -+}; -+ -+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 struct sigevent sigevent_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; -+}; -+ -+struct posix_clock; -+ -+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 *, unsigned int, long unsigned int); -+ int (*open)(struct posix_clock *, fmode_t); -+ __poll_t (*poll)(struct posix_clock *, struct file *, poll_table *); -+ int (*release)(struct posix_clock *); -+ ssize_t (*read)(struct posix_clock *, 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_desc { -+ struct file *fp; -+ struct posix_clock *clk; -+}; -+ -+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; -+}; -+ -+struct ce_unbind { -+ struct clock_event_device *ce; -+ int res; -+}; -+ -+struct proc_timens_offset { -+ int clockid; -+ struct timespec64 val; -+}; -+ -+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 futex_q { -+ struct plist_node list; -+ struct task_struct *task; -+ spinlock_t *lock_ptr; -+ 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; -+}; -+ -+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 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, -+}; -+ -+struct dma_chan { -+ int lock; -+ const char *device_id; -+}; -+ -+struct cfd_percpu { -+ call_single_data_t csd; -+}; -+ -+struct call_function_data { -+ struct cfd_percpu *pcpu; -+ 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 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 modversion_info { -+ long unsigned int crc; -+ char name[56]; -+}; -+ -+struct module_use { -+ struct list_head source_list; -+ struct list_head target_list; -+ struct module *source; -+ struct module *target; -+}; -+ -+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]; -+}; -+ -+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, -+}; -+ -+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 { -+ PROC_ENTRY_PERMANENT = 1, -+}; -+ -+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; -+ struct _ddebug *debug; -+ unsigned int num_debug; -+ 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; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_module_free { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_refcnt { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_module_request { -+ u32 name; -+}; -+ -+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 mod_tree_root { -+ struct latch_tree_root root; -+ long unsigned int addr_min; -+ long unsigned int addr_max; -+}; -+ -+enum mod_license { -+ NOT_GPL_ONLY = 0, -+ GPL_ONLY = 1, -+}; -+ -+struct symsearch { -+ const struct kernel_symbol *start; -+ const struct kernel_symbol *stop; -+ const s32 *crcs; -+ enum mod_license license; -+}; -+ -+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; -+}; -+ -+struct mod_initfree { -+ struct llist_node node; -+ void *module_init; -+}; -+ -+struct module_signature { -+ u8 algo; -+ u8 hash; -+ u8 id_type; -+ u8 signer_len; -+ u8 key_id_len; -+ u8 __pad[3]; -+ __be32 sig_len; -+}; -+ -+enum pkey_id_type { -+ PKEY_ID_PGP = 0, -+ PKEY_ID_X509 = 1, -+ PKEY_ID_PKCS7 = 2, -+}; -+ -+struct kallsym_iter { -+ loff_t pos; -+ loff_t pos_arch_end; -+ 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[128]; -+ char module_name[56]; -+ int exported; -+ int show_value; -+}; -+ -+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 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 bsd_acct_struct { -+ struct fs_pin pin; -+ atomic_long_t count; -+ struct callback_head rcu; -+ struct mutex lock; -+ int active; -+ long unsigned int needcheck; -+ struct file *file; -+ struct pid_namespace *ns; -+ struct work_struct work; -+ struct completion done; -+}; -+ -+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[27]; -+ -+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; -+}; -+ -+typedef u32 note_buf_t[92]; -+ -+struct compat_kexec_segment { -+ compat_uptr_t buf; -+ compat_size_t bufsz; -+ compat_ulong_t mem; -+ compat_size_t memsz; -+}; -+ -+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 kexec_sha_region { -+ long unsigned int start; -+ long unsigned int len; -+}; -+ -+typedef __kernel_ulong_t ino_t; -+ -+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, -+ MAX_BPF_LINK_TYPE = 7, -+}; -+ -+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; -+ }; -+ } iter; -+ struct { -+ __u32 netns_ino; -+ __u32 attach_type; -+ } netns; -+ struct { -+ __u32 ifindex; -+ } xdp; -+ }; -+}; -+ -+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; -+ struct work_struct work; -+}; -+ -+struct bpf_link_ops { -+ void (*release)(struct bpf_link *); -+ void (*dealloc)(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 *); -+}; -+ -+struct bpf_cgroup_link { -+ struct bpf_link link; -+ struct cgroup *cgroup; -+ enum bpf_attach_type type; -+}; -+ -+enum { -+ CGRP_NOTIFY_ON_RELEASE = 0, -+ CGRP_CPUSET_CLONE_CHILDREN = 1, -+ CGRP_FREEZE = 2, -+ CGRP_FROZEN = 3, -+ CGRP_KILL = 4, -+}; -+ -+enum { -+ CGRP_ROOT_NOPREFIX = 2, -+ CGRP_ROOT_XATTR = 4, -+ CGRP_ROOT_NS_DELEGATE = 8, -+ CGRP_ROOT_CPUSET_V2_MODE = 16, -+ CGRP_ROOT_MEMORY_LOCAL_EVENTS = 32, -+ CGRP_ROOT_MEMORY_RECURSIVE_PROT = 64, -+}; -+ -+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 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; -+}; -+ -+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 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 id; -+ int level; -+ u32 __data_loc_path; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_cgroup_migrate { -+ struct trace_entry ent; -+ int dst_root; -+ int dst_id; -+ int dst_level; -+ 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 id; -+ int level; -+ u32 __data_loc_path; -+ int val; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_cgroup_root { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cgroup { -+ u32 path; -+}; -+ -+struct trace_event_data_offsets_cgroup_migrate { -+ u32 dst_path; -+ u32 comm; -+}; -+ -+struct trace_event_data_offsets_cgroup_event { -+ u32 path; -+}; -+ -+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); -+ -+enum cgroup_opt_features { -+ OPT_FEATURE_PRESSURE = 0, -+ OPT_FEATURE_COUNT = 1, -+}; -+ -+enum cgroup2_param { -+ Opt_nsdelegate = 0, -+ Opt_memory_localevents = 1, -+ Opt_memory_recursiveprot = 2, -+ nr__cgroup2_params = 3, -+}; -+ -+struct cgroupstats { -+ __u64 nr_sleeping; -+ __u64 nr_running; -+ __u64 nr_stopped; -+ __u64 nr_uninterruptible; -+ __u64 nr_io_wait; -+}; -+ -+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, -+}; -+ -+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 pids_cgroup { -+ struct cgroup_subsys_state css; -+ atomic64_t counter; -+ atomic64_t limit; -+ struct cgroup_file events_file; -+ atomic64_t events_limit; -+}; -+ -+typedef struct { -+ char *from; -+ char *to; -+} substring_t; -+ -+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 root_domain___2; -+ -+struct fmeter { -+ int cnt; -+ int val; -+ time64_t time; -+ spinlock_t lock; -+}; -+ -+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 subparts_cpus; -+ nodemask_t old_mems_allowed; -+ struct fmeter fmeter; -+ int attach_in_progress; -+ int pn; -+ int relax_domain_level; -+ int nr_subparts_cpus; -+ int partition_root_state; -+ int use_parent_ecpus; -+ int child_ecpus_count; -+}; -+ -+struct tmpmasks { -+ cpumask_var_t addmask; -+ cpumask_var_t delmask; -+ cpumask_var_t new_cpus; -+}; -+ -+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; -+ -+enum subparts_cmd { -+ partcmd_enable = 0, -+ partcmd_disable = 1, -+ partcmd_update = 2, -+}; -+ -+struct cpuset_migrate_mm_work { -+ struct work_struct work; -+ struct mm_struct *mm; -+ nodemask_t from; -+ nodemask_t to; -+}; -+ -+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_CPU_EXCLUSIVE = 6, -+ FILE_MEM_EXCLUSIVE = 7, -+ FILE_MEM_HARDWALL = 8, -+ FILE_SCHED_LOAD_BALANCE = 9, -+ FILE_PARTITION_ROOT = 10, -+ FILE_SCHED_RELAX_DOMAIN_LEVEL = 11, -+ FILE_MEMORY_PRESSURE_ENABLED = 12, -+ FILE_MEMORY_PRESSURE = 13, -+ FILE_SPREAD_PAGE = 14, -+ FILE_SPREAD_SLAB = 15, -+} cpuset_filetype_t; -+ -+enum misc_res_type { -+ MISC_CG_RES_SEV = 0, -+ MISC_CG_RES_SEV_ES = 1, -+ MISC_CG_RES_TYPES = 2, -+}; -+ -+struct misc_res { -+ long unsigned int max; -+ atomic_long_t usage; -+ bool failed; -+}; -+ -+struct misc_cg { -+ struct cgroup_subsys_state css; -+ struct misc_res res[2]; -+}; -+ -+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; -+}; -+ -+struct ctl_path { -+ const char *procname; -+}; -+ -+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; -+}; -+ -+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_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 audit_proctitle { -+ int len; -+ char *value; -+}; -+ -+struct audit_aux_data; -+ -+struct __kernel_sockaddr_storage; -+ -+struct audit_tree_refs; -+ -+struct audit_context { -+ int dummy; -+ int in_syscall; -+ enum audit_state state; -+ enum audit_state current_state; -+ unsigned int serial; -+ int major; -+ 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 pid; -+ 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 { -+ int argc; -+ } execve; -+ struct { -+ char *name; -+ } module; -+ }; -+ int fds[2]; -+ struct audit_proctitle proctitle; -+}; -+ -+struct __kernel_sockaddr_storage { -+ union { -+ struct { -+ __kernel_sa_family_t ss_family; -+ char __data[126]; -+ }; -+ void *__align; -+ }; -+}; -+ -+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 net_generic { -+ union { -+ struct { -+ unsigned int len; -+ struct callback_head rcu; -+ } s; -+ void *ptr[0]; -+ }; -+}; -+ -+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 *); -+ unsigned int *id; -+ size_t size; -+}; -+ -+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; -+}; -+ -+struct netlink_kernel_cfg { -+ unsigned int groups; -+ unsigned int flags; -+ void (*input)(struct sk_buff *); -+ struct mutex *cb_mutex; -+ int (*bind)(struct net *, int); -+ void (*unbind)(struct net *, int); -+ bool (*compare)(struct net *, struct sock *); -+}; -+ -+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; -+}; -+ -+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_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_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_entry { -+ struct list_head list; -+ struct callback_head rcu; -+ struct audit_krule rule; -+}; -+ -+struct audit_buffer___2; -+ -+typedef int __kernel_key_t; -+ -+typedef __kernel_key_t key_t; -+ -+struct cpu_vfs_cap_data { -+ __u32 magic_etc; -+ kernel_cap_t permitted; -+ kernel_cap_t inheritable; -+ kuid_t rootid; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+typedef struct fsnotify_mark_connector *fsnotify_connp_t; -+ -+struct fsnotify_mark_connector { -+ spinlock_t lock; -+ short unsigned int type; -+ short unsigned int flags; -+ __kernel_fsid_t fsid; -+ union { -+ fsnotify_connp_t *obj; -+ struct fsnotify_mark_connector *destroy_next; -+ }; -+ struct hlist_head list; -+}; -+ -+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_INVALID = 19, -+}; -+ -+enum fsnotify_obj_type { -+ FSNOTIFY_OBJ_TYPE_INODE = 0, -+ FSNOTIFY_OBJ_TYPE_PARENT = 1, -+ FSNOTIFY_OBJ_TYPE_VFSMOUNT = 2, -+ FSNOTIFY_OBJ_TYPE_SB = 3, -+ FSNOTIFY_OBJ_TYPE_COUNT = 4, -+ FSNOTIFY_OBJ_TYPE_DETACHED = 4, -+}; -+ -+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; -+}; -+ -+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_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; -+}; -+ -+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; -+ unsigned int priority; -+ bool shutdown; -+ 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[4]; -+ 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 ignored_mask; -+ unsigned int flags; -+}; -+ -+struct fsnotify_event { -+ struct list_head list; -+}; -+ -+struct audit_parent { -+ struct list_head watches; -+ struct fsnotify_mark mark; -+}; -+ -+struct audit_fsnotify_mark { -+ dev_t dev; -+ long unsigned int ino; -+ char *path; -+ struct fsnotify_mark mark; -+ struct audit_krule *rule; -+}; -+ -+struct audit_chunk___2; -+ -+struct audit_tree { -+ refcount_t count; -+ int goner; -+ struct audit_chunk___2 *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 node { -+ struct list_head list; -+ struct audit_tree *owner; -+ unsigned int index; -+}; -+ -+struct audit_chunk___2 { -+ 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 node owners[0]; -+}; -+ -+struct audit_tree_mark { -+ struct fsnotify_mark mark; -+ struct audit_chunk___2 *chunk; -+}; -+ -+enum { -+ HASH_SIZE = 128, -+}; -+ -+struct kprobe_blacklist_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+}; -+ -+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, -+}; -+ -+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 kgdb_io { -+ const char *name; -+ int (*read_char)(); -+ void (*write_char)(u8); -+ void (*flush)(); -+ int (*init)(); -+ void (*deinit)(); -+ void (*pre_exception)(); -+ void (*post_exception)(); -+ 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; -+}; -+ -+struct debuggerinfo_struct { -+ void *debuggerinfo; -+ struct task_struct *task; -+ int exception_state; -+ int ret_state; -+ int irq_depth; -+ int enter_kgdb; -+ bool rounding_up; -+}; -+ -+typedef int (*get_char_func)(); -+ -+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 **); -+ -+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; -+ -+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; -+ -+struct _kdbtab { -+ char *cmd_name; -+ kdb_func_t cmd_func; -+ char *cmd_usage; -+ char *cmd_help; -+ short int cmd_minlen; -+ kdb_cmdflags_t cmd_flags; -+ struct list_head list_node; -+ bool is_dynamic; -+}; -+ -+typedef struct _kdbtab kdbtab_t; -+ -+typedef enum { -+ KDB_DB_BPT = 0, -+ KDB_DB_SS = 1, -+ KDB_DB_SSBPT = 2, -+ KDB_DB_NOBPT = 3, -+} kdb_dbtrap_t; -+ -+struct _kdbmsg { -+ int km_diag; -+ char *km_msg; -+}; -+ -+typedef struct _kdbmsg kdbmsg_t; -+ -+struct defcmd_set { -+ int count; -+ bool usable; -+ char *name; -+ char *usage; -+ char *help; -+ char **command; -+}; -+ -+struct debug_alloc_header { -+ u32 next; -+ u32 size; -+ void *caller; -+}; -+ -+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 short unsigned int u_short; -+ -+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; -+}; -+ -+struct action_cache { -+ long unsigned int allow_native[7]; -+ long unsigned int allow_compat[7]; -+}; -+ -+struct notification; -+ -+struct seccomp_filter { -+ refcount_t refs; -+ refcount_t users; -+ bool log; -+ 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 sock_fprog { -+ short unsigned int len; -+ struct sock_filter *filter; -+}; -+ -+struct compat_sock_fprog { -+ u16 len; -+ compat_uptr_t filter; -+}; -+ -+typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); -+ -+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 { -+ struct semaphore request; -+ u64 next_id; -+ struct list_head notifications; -+}; -+ -+struct seccomp_log_name { -+ u32 log; -+ const char *name; -+}; -+ -+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: 32; -+ long: 64; -+ 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 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 rchan_percpu_buf_dispatcher { -+ struct rchan_buf *buf; -+ struct dentry *dentry; -+}; -+ -+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, -+}; -+ -+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 genlmsghdr { -+ __u8 cmd; -+ __u8 version; -+ __u16 reserved; -+}; -+ -+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_TYPE_MAX = 18, -+}; -+ -+struct genl_multicast_group { -+ char name[16]; -+ u8 flags; -+}; -+ -+struct genl_ops; -+ -+struct genl_info; -+ -+struct genl_small_ops; -+ -+struct genl_family { -+ int id; -+ unsigned int hdrsize; -+ char name[16]; -+ unsigned int version; -+ unsigned int maxattr; -+ unsigned int mcgrp_offset; -+ u8 netnsok: 1; -+ u8 parallel_ops: 1; -+ u8 n_ops; -+ u8 n_small_ops; -+ u8 n_mcgrps; -+ const struct nla_policy *policy; -+ int (*pre_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ void (*post_doit)(const struct genl_ops *, struct sk_buff *, struct genl_info *); -+ const struct genl_ops *ops; -+ const struct genl_small_ops *small_ops; -+ const struct genl_multicast_group *mcgrps; -+ struct module *module; -+}; -+ -+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_info { -+ u32 snd_seq; -+ u32 snd_portid; -+ struct nlmsghdr *nlhdr; -+ struct genlmsghdr *genlhdr; -+ void *userhdr; -+ struct nlattr **attrs; -+ possible_net_t _net; -+ void *user_ptr[2]; -+ struct netlink_ext_ack *extack; -+}; -+ -+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; -+}; -+ -+enum genl_validate_flags { -+ GENL_DONT_VALIDATE_STRICT = 1, -+ GENL_DONT_VALIDATE_DUMP = 2, -+ GENL_DONT_VALIDATE_DUMP_STRICT = 4, -+}; -+ -+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 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]; -+}; -+ -+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_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_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_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, -+}; -+ -+struct ftrace_graph_ent { -+ long unsigned int func; -+ int depth; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret { -+ long unsigned int func; -+ int depth; -+ unsigned int overrun; -+ long long unsigned int calltime; -+ long long unsigned int rettime; -+}; -+ -+typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); -+ -+typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); -+ -+struct fgraph_ops { -+ trace_func_graph_ent_t entryfunc; -+ trace_func_graph_ret_t retfunc; -+}; -+ -+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 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; -+ long unsigned int max_latency; -+ struct dentry *d_max_latency; -+ struct work_struct fsnotify_work; -+ struct irq_work fsnotify_irqwork; -+ 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[448]; -+ struct trace_event_file *exit_syscall_files[448]; -+ 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; -+ struct list_head err_log; -+ struct dentry *dir; -+ struct dentry *options; -+ struct dentry *percpu_dir; -+ struct dentry *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; -+ 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 cond_snapshot *cond_snapshot; -+ struct trace_func_repeats *last_func_repeats; -+}; -+ -+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 event_subsystem; -+ -+struct trace_subsystem_dir { -+ struct list_head list; -+ struct event_subsystem *subsystem; -+ struct trace_array *tr; -+ struct dentry *entry; -+ int ref_count; -+ int nr_events; -+}; -+ -+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_pid_list { -+ int pid_max; -+ long unsigned int *pids; -+}; -+ -+enum { -+ TRACE_PIDS = 1, -+ TRACE_NO_PIDS = 2, -+}; -+ -+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; -+}; -+ -+enum { -+ TRACE_ARRAY_FL_GLOBAL = 1, -+}; -+ -+struct tracer_opt { -+ const char *name; -+ u32 bit; -+}; -+ -+struct tracer_flags { -+ u32 val; -+ struct tracer_opt *opts; -+ struct tracer *trace; -+}; -+ -+struct ftrace_mod_load { -+ struct list_head list; -+ char *func; -+ char *module; -+ int enable; -+}; -+ -+enum { -+ FTRACE_HASH_FL_MOD = 1, -+}; -+ -+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; -+ char *buffer; -+ unsigned int idx; -+ unsigned int size; -+}; -+ -+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_PRINTK_BIT = 8, -+ TRACE_ITER_ANNOTATE_BIT = 9, -+ TRACE_ITER_USERSTACKTRACE_BIT = 10, -+ TRACE_ITER_SYM_USEROBJ_BIT = 11, -+ TRACE_ITER_PRINTK_MSGONLY_BIT = 12, -+ TRACE_ITER_CONTEXT_INFO_BIT = 13, -+ TRACE_ITER_LATENCY_FMT_BIT = 14, -+ TRACE_ITER_RECORD_CMD_BIT = 15, -+ TRACE_ITER_RECORD_TGID_BIT = 16, -+ TRACE_ITER_OVERWRITE_BIT = 17, -+ TRACE_ITER_STOP_ON_FREE_BIT = 18, -+ TRACE_ITER_IRQ_INFO_BIT = 19, -+ TRACE_ITER_MARKERS_BIT = 20, -+ TRACE_ITER_EVENT_FORK_BIT = 21, -+ TRACE_ITER_PAUSE_ON_TRACE_BIT = 22, -+ TRACE_ITER_HASH_PTR_BIT = 23, -+ TRACE_ITER_FUNCTION_BIT = 24, -+ TRACE_ITER_FUNC_FORK_BIT = 25, -+ TRACE_ITER_DISPLAY_GRAPH_BIT = 26, -+ TRACE_ITER_STACKTRACE_BIT = 27, -+ TRACE_ITER_LAST_BIT = 28, -+}; -+ -+struct event_subsystem { -+ struct list_head list; -+ const char *name; -+ struct event_filter *filter; -+ int ref_count; -+}; -+ -+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; -+ 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 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___2 { -+ 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_direct_func { -+ struct list_head next; -+ long unsigned int addr; -+ int count; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum ring_buffer_flags { -+ RB_FL_OVERWRITE = 1, -+}; -+ -+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; -+ u64 read_stamp; -+ u64 page_stamp; -+ struct ring_buffer_event *event; -+ int missed_events; -+}; -+ -+struct rb_irq_work { -+ struct irq_work work; -+ wait_queue_head_t waiters; -+ wait_queue_head_t full_waiters; -+ bool waiters_pending; -+ bool full_waiters_pending; -+ bool wakeup_full; -+}; -+ -+struct trace_buffer___2 { -+ unsigned int flags; -+ int cpus; -+ atomic_t record_disabled; -+ 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)(); -+ struct rb_irq_work irq_work; -+ bool time_stamp_abs; -+}; -+ -+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_page { -+ struct list_head list; -+ local_t write; -+ unsigned int read; -+ local_t entries; -+ long unsigned int real_end; -+ 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___2 *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; -+ 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_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 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; -+}; -+ -+typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); -+ -+struct trace_export { -+ struct trace_export *next; -+ void (*write)(struct trace_export *, const void *, unsigned int); -+ int flags; -+}; -+ -+enum fsnotify_data_type { -+ FSNOTIFY_EVENT_NONE = 0, -+ FSNOTIFY_EVENT_PATH = 1, -+ FSNOTIFY_EVENT_INODE = 2, -+}; -+ -+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, -+}; -+ -+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 stack_entry { -+ struct trace_entry ent; -+ int size; -+ long unsigned int caller[8]; -+}; -+ -+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 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_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_PRINTK = 256, -+ TRACE_ITER_ANNOTATE = 512, -+ TRACE_ITER_USERSTACKTRACE = 1024, -+ TRACE_ITER_SYM_USEROBJ = 2048, -+ TRACE_ITER_PRINTK_MSGONLY = 4096, -+ TRACE_ITER_CONTEXT_INFO = 8192, -+ TRACE_ITER_LATENCY_FMT = 16384, -+ TRACE_ITER_RECORD_CMD = 32768, -+ TRACE_ITER_RECORD_TGID = 65536, -+ TRACE_ITER_OVERWRITE = 131072, -+ TRACE_ITER_STOP_ON_FREE = 262144, -+ TRACE_ITER_IRQ_INFO = 524288, -+ TRACE_ITER_MARKERS = 1048576, -+ TRACE_ITER_EVENT_FORK = 2097152, -+ TRACE_ITER_PAUSE_ON_TRACE = 4194304, -+ TRACE_ITER_HASH_PTR = 8388608, -+ TRACE_ITER_FUNCTION = 16777216, -+ TRACE_ITER_FUNC_FORK = 33554432, -+ TRACE_ITER_DISPLAY_GRAPH = 67108864, -+ TRACE_ITER_STACKTRACE = 134217728, -+}; -+ -+struct trace_min_max_param { -+ struct mutex *lock; -+ u64 *val; -+ u64 *min; -+ u64 *max; -+}; -+ -+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; -+}; -+ -+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 read; -+}; -+ -+struct err_info { -+ const char **errs; -+ u8 type; -+ u8 pos; -+ u64 ts; -+}; -+ -+struct tracing_log_err { -+ struct list_head list; -+ struct err_info info; -+ char loc[128]; -+ char cmd[256]; -+}; -+ -+struct buffer_ref { -+ struct trace_buffer *buffer; -+ void *page; -+ int cpu; -+ refcount_t refcount; -+}; -+ -+struct ftrace_func_mapper___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 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 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_mark { -+ long long unsigned int val; -+ char sym; -+}; -+ -+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 trace_bprintk_fmt { -+ struct list_head list; -+ const char *fmt; -+}; -+ -+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 *); -+}; -+ -+enum { -+ TRACE_FUNC_NO_OPTS = 0, -+ TRACE_FUNC_OPT_STACK = 1, -+ TRACE_FUNC_OPT_NO_REPEATS = 2, -+ TRACE_FUNC_OPT_HIGHEST_BIT = 4, -+}; -+ -+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 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_thread_noise {}; -+ -+struct trace_event_data_offsets_softirq_noise {}; -+ -+struct trace_event_data_offsets_irq_noise { -+ u32 desc; -+}; -+ -+struct trace_event_data_offsets_nmi_noise {}; -+ -+struct trace_event_data_offsets_sample_threshold {}; -+ -+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); -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+enum { -+ TRACE_NOP_OPT_ACCEPT = 1, -+ TRACE_NOP_OPT_REFUSE = 2, -+}; -+ -+struct ftrace_graph_ent_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ent graph_ent; -+} __attribute__((packed)); -+ -+struct ftrace_graph_ret_entry { -+ struct trace_entry ent; -+ struct ftrace_graph_ret ret; -+}; -+ -+struct fgraph_cpu_data { -+ pid_t last_pid; -+ int depth; -+ int depth_irq; -+ int ignore; -+ long unsigned int enter_funcs[50]; -+}; -+ -+struct fgraph_data { -+ struct fgraph_cpu_data *cpu_data; -+ struct ftrace_graph_ent_entry ent; -+ struct ftrace_graph_ret_entry ret; -+ int failed; -+ int cpu; -+ int: 32; -+} __attribute__((packed)); -+ -+enum { -+ FLAGS_FILL_FULL = 268435456, -+ FLAGS_FILL_START = 536870912, -+ FLAGS_FILL_END = 805306368, -+}; -+ -+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]; -+}; -+ -+typedef __u32 blk_mq_req_flags_t; -+ -+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]; -+ long unsigned int rq_dispatched[2]; -+ long unsigned int rq_merged; -+ long unsigned int rq_completed[2]; -+ struct request_queue *queue; -+ struct blk_mq_ctxs *ctxs; -+ struct kobject kobj; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct blk_mq_tags; -+ -+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; -+ long unsigned int queued; -+ long unsigned int run; -+ long unsigned int dispatched[7]; -+ 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; -+ long unsigned int poll_considered; -+ long unsigned int poll_invoked; -+ long unsigned int poll_success; -+ struct dentry *debugfs_dir; -+ struct dentry *sched_debugfs_dir; -+ struct list_head hctx_list; -+ struct srcu_struct srcu[0]; -+}; -+ -+struct blk_mq_alloc_data { -+ struct request_queue *q; -+ blk_mq_req_flags_t flags; -+ unsigned int shallow_depth; -+ unsigned int cmd_flags; -+ struct blk_mq_ctx *ctx; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+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_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; -+}; -+ -+struct blk_flush_queue { -+ 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]; -+ struct list_head flush_data_in_flight; -+ struct request *flush_rq; -+ spinlock_t mq_flush_lock; -+}; -+ -+struct blk_mq_queue_map { -+ unsigned int *mq_map; -+ unsigned int nr_queues; -+ unsigned int queue_offset; -+}; -+ -+struct blk_mq_tag_set { -+ struct blk_mq_queue_map map[3]; -+ unsigned int nr_maps; -+ const struct blk_mq_ops *ops; -+ 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; -+ atomic_t active_queues_shared_sbitmap; -+ struct sbitmap_queue __bitmap_tags; -+ struct sbitmap_queue __breserved_tags; -+ struct blk_mq_tags **tags; -+ struct mutex tag_list_lock; -+ struct list_head tag_list; -+}; -+ -+typedef u64 compat_u64; -+ -+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, -+}; -+ -+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, -+}; -+ -+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; -+ short: 16; -+ u32 buf_size; -+ u32 buf_nr; -+ compat_u64 start_lba; -+ compat_u64 end_lba; -+ u32 pid; -+} __attribute__((packed)); -+ -+struct blk_mq_tags { -+ unsigned int nr_tags; -+ unsigned int nr_reserved_tags; -+ atomic_t active_queues; -+ struct sbitmap_queue *bitmap_tags; -+ struct sbitmap_queue *breserved_tags; -+ 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_mq_queue_data { -+ struct request *rq; -+ bool last; -+}; -+ -+struct blk_mq_ctxs { -+ struct kobject kobj; -+ struct blk_mq_ctx *queue_ctx; -+}; -+ -+typedef void blk_log_action_t(struct trace_iterator *, const char *, bool); -+ -+struct ftrace_event_field { -+ struct list_head link; -+ const char *name; -+ const char *type; -+ int filter_type; -+ int offset; -+ int size; -+ int is_signed; -+}; -+ -+enum { -+ FORMAT_HEADER = 1, -+ FORMAT_FIELD_SEPERATOR = 2, -+ FORMAT_PRINTFMT = 3, -+}; -+ -+struct event_probe_data { -+ struct trace_event_file *file; -+ long unsigned int count; -+ int ref; -+ bool enable; -+}; -+ -+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 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int ret; -+}; -+ -+struct syscall_tp_t___2 { -+ long long unsigned int regs; -+ long unsigned int syscall_nr; -+ long unsigned int args[6]; -+}; -+ -+typedef long unsigned int perf_trace_t[256]; -+ -+struct filter_pred; -+ -+struct prog_entry { -+ int target; -+ int when_to_branch; -+ struct filter_pred *pred; -+}; -+ -+typedef int (*filter_pred_fn_t)(struct filter_pred *, void *); -+ -+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; -+}; -+ -+struct filter_pred { -+ filter_pred_fn_t fn; -+ u64 val; -+ struct regex regex; -+ short unsigned int *ops; -+ struct ftrace_event_field *field; -+ int offset; -+ int not; -+ int op; -+}; -+ -+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 { -+ 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_OPERAND_TOO_LONG = 5, -+ FILT_ERR_EXPECT_STRING = 6, -+ FILT_ERR_EXPECT_DIGIT = 7, -+ FILT_ERR_ILLEGAL_FIELD_OP = 8, -+ FILT_ERR_FIELD_NOT_FOUND = 9, -+ FILT_ERR_ILLEGAL_INTVAL = 10, -+ FILT_ERR_BAD_SUBSYS_FILTER = 11, -+ FILT_ERR_TOO_MANY_PREDS = 12, -+ FILT_ERR_INVALID_FILTER = 13, -+ FILT_ERR_IP_FIELD_ONLY = 14, -+ FILT_ERR_INVALID_VALUE = 15, -+ FILT_ERR_ERRNO = 16, -+ FILT_ERR_NO_FILTER = 17, -+}; -+ -+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, -+}; -+ -+enum { -+ TOO_MANY_CLOSE = 4294967295, -+ TOO_MANY_OPEN = 4294967294, -+ MISSING_QUOTE = 4294967293, -+}; -+ -+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 event_trigger_ops; -+ -+struct event_command; -+ -+struct event_trigger_data { -+ long unsigned int count; -+ int ref; -+ 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 (*func)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); -+ int (*init)(struct event_trigger_ops *, struct event_trigger_data *); -+ void (*free)(struct event_trigger_ops *, struct event_trigger_data *); -+ int (*print)(struct seq_file *, struct event_trigger_ops *, struct event_trigger_data *); -+}; -+ -+struct event_command { -+ struct list_head list; -+ char *name; -+ enum event_trigger_type trigger_type; -+ int flags; -+ int (*func)(struct event_command *, struct trace_event_file *, char *, char *, char *); -+ int (*reg)(char *, struct event_trigger_ops *, struct event_trigger_data *, struct trace_event_file *); -+ void (*unreg)(char *, struct event_trigger_ops *, 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, -+}; -+ -+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 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; -+}; -+ -+struct synth_trace_event { -+ struct trace_entry ent; -+ u64 fields[0]; -+}; -+ -+struct dyn_event_operations; -+ -+struct dyn_event { -+ struct list_head list; -+ struct dyn_event_operations *ops; -+}; -+ -+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; -+}; -+ -+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 *); -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct hist_field; -+ -+typedef u64 (*hist_field_fn_t)(struct hist_field *, struct tracing_map_elt *, struct trace_buffer *, struct ring_buffer_event *, void *); -+ -+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, -+}; -+ -+struct hist_field { -+ struct ftrace_event_field *field; -+ long unsigned int flags; -+ hist_field_fn_t fn; -+ unsigned int ref; -+ unsigned int size; -+ unsigned int offset; -+ unsigned int is_signed; -+ const char *type; -+ struct hist_field *operands[2]; -+ struct hist_trigger_data *hist_data; -+ 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; -+}; -+ -+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[32]; -+ unsigned int n_field_vars; -+ unsigned int n_field_var_str; -+ struct field_var_hist *field_var_hists[32]; -+ unsigned int n_field_var_hists; -+ struct field_var *save_vars[32]; -+ 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, -+}; -+ -+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; -+ 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[32]; -+ unsigned int var_ref_idx[16]; -+ 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[32]; -+}; -+ -+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; -+}; -+ -+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_MAX_ID = 169, -+}; -+ -+enum { -+ BPF_F_INDEX_MASK = 4294967295, -+ BPF_F_CURRENT_CPU = 4294967295, -+ BPF_F_CTXLEN_MASK = 0, -+}; -+ -+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_local_storage_data; -+ -+struct bpf_local_storage { -+ struct bpf_local_storage_data *cache[16]; -+ struct hlist_head list; -+ void *owner; -+ struct callback_head rcu; -+ raw_spinlock_t lock; -+}; -+ -+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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_UNINIT_MAP_VALUE = 4, -+ ARG_PTR_TO_MAP_VALUE_OR_NULL = 5, -+ ARG_PTR_TO_MEM = 6, -+ ARG_PTR_TO_MEM_OR_NULL = 7, -+ ARG_PTR_TO_UNINIT_MEM = 8, -+ ARG_CONST_SIZE = 9, -+ ARG_CONST_SIZE_OR_ZERO = 10, -+ ARG_PTR_TO_CTX = 11, -+ ARG_PTR_TO_CTX_OR_NULL = 12, -+ ARG_ANYTHING = 13, -+ ARG_PTR_TO_SPIN_LOCK = 14, -+ ARG_PTR_TO_SOCK_COMMON = 15, -+ ARG_PTR_TO_INT = 16, -+ ARG_PTR_TO_LONG = 17, -+ ARG_PTR_TO_SOCKET = 18, -+ ARG_PTR_TO_SOCKET_OR_NULL = 19, -+ ARG_PTR_TO_BTF_ID = 20, -+ ARG_PTR_TO_ALLOC_MEM = 21, -+ ARG_PTR_TO_ALLOC_MEM_OR_NULL = 22, -+ ARG_CONST_ALLOC_SIZE_OR_ZERO = 23, -+ ARG_PTR_TO_BTF_ID_SOCK_COMMON = 24, -+ ARG_PTR_TO_PERCPU_BTF_ID = 25, -+ ARG_PTR_TO_FUNC = 26, -+ ARG_PTR_TO_STACK_OR_NULL = 27, -+ ARG_PTR_TO_CONST_STR = 28, -+ __BPF_ARG_TYPE_MAX = 29, -+}; -+ -+enum bpf_return_type { -+ RET_INTEGER = 0, -+ RET_VOID = 1, -+ RET_PTR_TO_MAP_VALUE = 2, -+ RET_PTR_TO_MAP_VALUE_OR_NULL = 3, -+ RET_PTR_TO_SOCKET_OR_NULL = 4, -+ RET_PTR_TO_TCP_SOCK_OR_NULL = 5, -+ RET_PTR_TO_SOCK_COMMON_OR_NULL = 6, -+ RET_PTR_TO_ALLOC_MEM_OR_NULL = 7, -+ RET_PTR_TO_BTF_ID_OR_NULL = 8, -+ RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL = 9, -+ RET_PTR_TO_MEM_OR_BTF_ID = 10, -+ RET_PTR_TO_BTF_ID = 11, -+}; -+ -+struct bpf_func_proto { -+ u64 (*func)(u64, u64, u64, u64, u64); -+ bool gpl_only; -+ bool pkt_access; -+ 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]; -+ }; -+ int *ret_btf_id; -+ bool (*allowed)(const struct bpf_prog *); -+}; -+ -+enum bpf_access_type { -+ BPF_READ = 1, -+ BPF_WRITE = 2, -+}; -+ -+struct bpf_verifier_log; -+ -+struct bpf_insn_access_aux { -+ enum bpf_reg_type reg_type; -+ union { -+ int ctx_field_size; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ }; -+ struct bpf_verifier_log *log; -+}; -+ -+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_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 btf *, const struct btf_type *, int, int, enum bpf_access_type, u32 *); -+ bool (*check_kfunc_call)(u32); -+}; -+ -+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 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 btf_id_set { -+ u32 cnt; -+ u32 ids[0]; -+}; -+ -+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 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; -+}; -+ -+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_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_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)(); -+ -+typedef u64 (*btf_bpf_get_current_task_btf)(); -+ -+typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); -+ -+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_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 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_DEREF = 10, -+ FETCH_OP_UDEREF = 11, -+ FETCH_OP_ST_RAW = 12, -+ FETCH_OP_ST_MEM = 13, -+ FETCH_OP_ST_UMEM = 14, -+ FETCH_OP_ST_STRING = 15, -+ FETCH_OP_ST_USTRING = 16, -+ FETCH_OP_MOD_BF = 17, -+ FETCH_OP_LP_ARRAY = 18, -+ FETCH_OP_END = 19, -+ FETCH_NOP_SYMBOL = 20, -+}; -+ -+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; -+ int is_signed; -+ 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 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_arg args[0]; -+}; -+ -+struct event_file_link { -+ struct trace_event_file *file; -+ struct list_head list; -+}; -+ -+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_MAXACT_NO_KPROBE = 6, -+ TP_ERR_BAD_MAXACT = 7, -+ TP_ERR_MAXACT_TOO_BIG = 8, -+ TP_ERR_BAD_PROBE_ADDR = 9, -+ TP_ERR_BAD_RETPROBE = 10, -+ TP_ERR_BAD_ADDR_SUFFIX = 11, -+ TP_ERR_NO_GROUP_NAME = 12, -+ TP_ERR_GROUP_TOO_LONG = 13, -+ TP_ERR_BAD_GROUP_NAME = 14, -+ TP_ERR_NO_EVENT_NAME = 15, -+ TP_ERR_EVENT_TOO_LONG = 16, -+ TP_ERR_BAD_EVENT_NAME = 17, -+ TP_ERR_RETVAL_ON_PROBE = 18, -+ TP_ERR_BAD_STACK_NUM = 19, -+ TP_ERR_BAD_ARG_NUM = 20, -+ TP_ERR_BAD_VAR = 21, -+ TP_ERR_BAD_REG_NAME = 22, -+ TP_ERR_BAD_MEM_ADDR = 23, -+ TP_ERR_BAD_IMM = 24, -+ TP_ERR_IMMSTR_NO_CLOSE = 25, -+ TP_ERR_FILE_ON_KPROBE = 26, -+ TP_ERR_BAD_FILE_OFFS = 27, -+ TP_ERR_SYM_ON_UPROBE = 28, -+ TP_ERR_TOO_MANY_OPS = 29, -+ TP_ERR_DEREF_NEED_BRACE = 30, -+ TP_ERR_BAD_DEREF_OFFS = 31, -+ TP_ERR_DEREF_OPEN_BRACE = 32, -+ TP_ERR_COMM_CANT_DEREF = 33, -+ TP_ERR_BAD_FETCH_ARG = 34, -+ TP_ERR_ARRAY_NO_CLOSE = 35, -+ TP_ERR_BAD_ARRAY_SUFFIX = 36, -+ TP_ERR_BAD_ARRAY_NUM = 37, -+ TP_ERR_ARRAY_TOO_BIG = 38, -+ TP_ERR_BAD_TYPE = 39, -+ TP_ERR_BAD_STRING = 40, -+ TP_ERR_BAD_BITFIELD = 41, -+ TP_ERR_ARG_NAME_TOO_LONG = 42, -+ TP_ERR_NO_ARG_NAME = 43, -+ TP_ERR_BAD_ARG_NAME = 44, -+ TP_ERR_USED_ARG_NAME = 45, -+ TP_ERR_ARG_TOO_LONG = 46, -+ TP_ERR_NO_ARG_BODY = 47, -+ TP_ERR_BAD_INSN_BNDRY = 48, -+ TP_ERR_FAIL_REG_PROBE = 49, -+ TP_ERR_DIFF_PROBE_TYPE = 50, -+ TP_ERR_DIFF_ARG_TYPE = 51, -+ TP_ERR_SAME_PROBE = 52, -+}; -+ -+struct trace_kprobe { -+ struct dyn_event devent; -+ struct kretprobe rp; -+ long unsigned int *nhit; -+ const char *symbol; -+ struct trace_probe tp; -+}; -+ -+enum error_detector { -+ ERROR_DETECTOR_KFENCE = 0, -+ ERROR_DETECTOR_KASAN = 1, -+}; -+ -+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_event_raw_cpu { -+ struct trace_entry ent; -+ u32 state; -+ u32 cpu_id; -+ 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_data_offsets_cpu {}; -+ -+struct trace_event_data_offsets_powernv_throttle { -+ u32 reason; -+}; -+ -+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; -+ u32 driver; -+ u32 parent; -+ u32 pm_ops; -+}; -+ -+struct trace_event_data_offsets_device_pm_callback_end { -+ u32 device; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_suspend_resume {}; -+ -+struct trace_event_data_offsets_wakeup_source { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clock { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_power_domain { -+ u32 name; -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); -+ -+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); -+ -+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_data_offsets_rpm_internal { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_rpm_return_int { -+ u32 name; -+}; -+ -+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); -+ -+struct trace_probe_log { -+ const char *subsystem; -+ const char **argv; -+ int argc; -+ int index; -+}; -+ -+enum uprobe_filter_ctx { -+ UPROBE_FILTER_REGISTER = 0, -+ UPROBE_FILTER_UNREGISTER = 1, -+ UPROBE_FILTER_MMAP = 2, -+}; -+ -+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 *, enum uprobe_filter_ctx, struct mm_struct *); -+ struct uprobe_consumer *next; -+}; -+ -+struct uprobe_trace_entry_head { -+ struct trace_entry ent; -+ long unsigned int vaddr[0]; -+}; -+ -+struct trace_uprobe { -+ struct dyn_event devent; -+ struct uprobe_consumer consumer; -+ struct path path; -+ struct inode *inode; -+ char *filename; -+ long unsigned int offset; -+ long unsigned int ref_ctr_offset; -+ long unsigned int nhit; -+ struct trace_probe tp; -+}; -+ -+struct uprobe_dispatch_data { -+ struct trace_uprobe *tu; -+ long unsigned int bp_addr; -+}; -+ -+struct uprobe_cpu_buffer { -+ struct mutex mutex; -+ void *buf; -+}; -+ -+typedef bool (*filter_func_t)(struct uprobe_consumer *, enum uprobe_filter_ctx, struct mm_struct *); -+ -+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]; -+}; -+ -+enum xdp_action { -+ XDP_ABORTED = 0, -+ XDP_DROP = 1, -+ XDP_PASS = 2, -+ XDP_TX = 3, -+ XDP_REDIRECT = 4, -+}; -+ -+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_cpumap_stats { -+ unsigned int redirect; -+ unsigned int pass; -+ unsigned int drop; -+}; -+ -+struct bpf_prog_dummy { -+ struct bpf_prog prog; -+}; -+ -+typedef u64 (*btf_bpf_user_rnd_u32)(); -+ -+typedef u64 (*btf_bpf_get_raw_cpu_id)(); -+ -+struct _bpf_dtab_netdev { -+ struct net_device *dev; -+}; -+ -+struct rhash_lock_head {}; -+ -+struct zero_copy_allocator; -+ -+struct xdp_mem_allocator { -+ struct xdp_mem_info mem; -+ union { -+ void *allocator; -+ struct page_pool *page_pool; -+ struct zero_copy_allocator *zc_alloc; -+ }; -+ 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_mem_return_failed { -+ struct trace_entry ent; -+ const struct page *page; -+ u32 mem_id; -+ u32 mem_type; -+ 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 {}; -+ -+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 *); -+ -+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, -+}; -+ -+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, -+}; -+ -+enum bpf_stats_type { -+ BPF_STATS_RUN_TIME = 0, -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct bpf_btf_info { -+ __u64 btf; -+ __u32 btf_size; -+ __u32 id; -+ __u64 name; -+ __u32 name_len; -+ __u32 kernel_btf; -+}; -+ -+struct bpf_spin_lock { -+ __u32 val; -+}; -+ -+typedef sockptr_t bpfptr_t; -+ -+struct bpf_verifier_log { -+ u32 level; -+ char kbuf[1024]; -+ char *ubuf; -+ u32 len_used; -+ u32 len_total; -+}; -+ -+struct bpf_subprog_info { -+ u32 start; -+ u32 linfo_idx; -+ u16 stack_depth; -+ bool has_tail_call; -+ bool tail_call_reachable; -+ bool has_ld_abs; -+}; -+ -+struct bpf_id_pair { -+ u32 old; -+ u32 cur; -+}; -+ -+struct bpf_verifier_stack_elem; -+ -+struct bpf_verifier_state; -+ -+struct bpf_verifier_state_list; -+ -+struct bpf_insn_aux_data; -+ -+struct bpf_verifier_env { -+ u32 insn_idx; -+ u32 prev_insn_idx; -+ struct bpf_prog *prog; -+ const struct bpf_verifier_ops *ops; -+ struct bpf_verifier_stack_elem *head; -+ int stack_size; -+ bool strict_alignment; -+ bool test_state_freq; -+ 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; -+ bool explore_alu_limits; -+ bool allow_ptr_leaks; -+ bool allow_uninit_stack; -+ bool allow_ptr_to_map_access; -+ bool bpf_capable; -+ bool bypass_spec_v1; -+ bool bypass_spec_v4; -+ bool seen_direct_write; -+ 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[257]; -+ struct bpf_id_pair idmap_scratch[75]; -+ struct { -+ int *insn_state; -+ int *insn_stack; -+ int cur_stack; -+ } cfg; -+ 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; -+}; -+ -+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 bpf_map *map_ptr; -+ struct { -+ struct btf *btf; -+ u32 btf_id; -+ }; -+ u32 mem_size; -+ struct { -+ long unsigned int raw1; -+ long unsigned int raw2; -+ } raw; -+ u32 subprogno; -+ }; -+ u32 id; -+ u32 ref_obj_id; -+ 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; -+ struct bpf_reg_state *parent; -+ u32 frameno; -+ s32 subreg_def; -+ enum bpf_reg_liveness live; -+ bool precise; -+}; -+ -+struct bpf_reference_state; -+ -+struct bpf_stack_state; -+ -+struct bpf_func_state { -+ struct bpf_reg_state regs[11]; -+ int callsite; -+ u32 frameno; -+ u32 subprogno; -+ int acquired_refs; -+ struct bpf_reference_state *refs; -+ int allocated_stack; -+ bool in_callback_fn; -+ struct bpf_stack_state *stack; -+}; -+ -+struct bpf_attach_target_info { -+ struct btf_func_model fmodel; -+ long int tgt_addr; -+ const char *tgt_name; -+ const struct btf_type *tgt_type; -+}; -+ -+struct bpf_link_primer { -+ struct bpf_link *link; -+ struct file *file; -+ int fd; -+ 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; -+}; -+ -+struct bpf_idx_pair { -+ u32 prev_idx; -+ u32 idx; -+}; -+ -+struct bpf_verifier_state { -+ struct bpf_func_state *frame[8]; -+ struct bpf_verifier_state *parent; -+ u32 branches; -+ u32 insn_idx; -+ u32 curframe; -+ u32 active_spin_lock; -+ bool speculative; -+ u32 first_insn_idx; -+ u32 last_insn_idx; -+ struct bpf_idx_pair *jmp_history; -+ u32 jmp_history_cnt; -+}; -+ -+struct bpf_verifier_state_list { -+ struct bpf_verifier_state state; -+ struct bpf_verifier_state_list *next; -+ int miss_cnt; -+ int hit_cnt; -+}; -+ -+struct bpf_insn_aux_data { -+ union { -+ enum bpf_reg_type ptr_type; -+ long unsigned int 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; -+ }; -+ u64 map_key_state; -+ int ctx_field_size; -+ u32 seen; -+ bool sanitize_stack_spill; -+ bool zext_dst; -+ u8 alu_state; -+ unsigned int orig_idx; -+ bool prune_point; -+}; -+ -+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_tracing_link { -+ struct bpf_link link; -+ enum bpf_attach_type attach_type; -+ struct bpf_trampoline *trampoline; -+ struct bpf_prog *tgt_prog; -+}; -+ -+struct bpf_raw_tp_link { -+ struct bpf_link link; -+ struct bpf_raw_event_map *btp; -+}; -+ -+typedef u64 (*btf_bpf_sys_bpf)(int, void *, u32); -+ -+typedef u64 (*btf_bpf_sys_close)(u32); -+ -+struct btf_member { -+ __u32 name_off; -+ __u32 type; -+ __u32 offset; -+}; -+ -+struct btf_param { -+ __u32 name_off; -+ __u32 type; -+}; -+ -+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 sk_action { -+ SK_DROP = 0, -+ SK_PASS = 1, -+}; -+ -+struct bpf_kfunc_desc { -+ struct btf_func_model func_model; -+ u32 func_id; -+ s32 imm; -+}; -+ -+struct bpf_kfunc_desc_tab { -+ struct bpf_kfunc_desc descs[256]; -+ u32 nr_descs; -+}; -+ -+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 *); -+ int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); -+ int (*reg)(void *); -+ void (*unreg)(void *); -+ const struct btf_type *type; -+ const struct btf_type *value_type; -+ const char *name; -+ struct btf_func_model func_models[64]; -+ u32 type_id; -+ u32 value_id; -+}; -+ -+typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); -+ -+enum bpf_stack_slot_type { -+ STACK_INVALID = 0, -+ STACK_SPILL = 1, -+ STACK_MISC = 2, -+ STACK_ZERO = 3, -+}; -+ -+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; -+}; -+ -+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, -+ MAX_BTF_SOCK_TYPE = 13, -+}; -+ -+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_call_arg_meta { -+ struct bpf_map *map_ptr; -+ bool raw_mode; -+ bool pkt_access; -+ int regno; -+ int access_size; -+ int mem_size; -+ u64 msize_max_value; -+ int ref_obj_id; -+ int func_id; -+ struct btf *btf; -+ u32 btf_id; -+ struct btf *ret_btf; -+ u32 ret_btf_id; -+ u32 subprogno; -+}; -+ -+enum reg_arg_type { -+ SRC_OP = 0, -+ DST_OP = 1, -+ DST_OP_NO_MARK = 2, -+}; -+ -+enum stack_access_src { -+ ACCESS_DIRECT = 1, -+ ACCESS_HELPER = 2, -+}; -+ -+struct bpf_reg_types { -+ const enum bpf_reg_type types[10]; -+ u32 *btf_id; -+}; -+ -+enum { -+ AT_PKT_END = 4294967295, -+ BEYOND_PKT_END = 4294967294, -+}; -+ -+typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); -+ -+enum { -+ REASON_BOUNDS = 4294967295, -+ REASON_TYPE = 4294967294, -+ REASON_PATHS = 4294967293, -+ REASON_LIMIT = 4294967292, -+ REASON_STACK = 4294967291, -+}; -+ -+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 tree_descr { -+ const char *name; -+ const struct file_operations *ops; -+ int mode; -+}; -+ -+struct umd_info { -+ const char *driver_name; -+ struct file *pipe_to_umh; -+ struct file *pipe_from_umh; -+ struct path wd; -+ struct pid *tgid; -+}; -+ -+struct bpf_preload_info { -+ char link_name[16]; -+ int link_id; -+}; -+ -+struct bpf_preload_ops { -+ struct umd_info info; -+ int (*preload)(struct bpf_preload_info *); -+ int (*finish)(); -+ 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; -+}; -+ -+enum { -+ OPT_MODE = 0, -+}; -+ -+struct bpf_mount_opts { -+ umode_t mode; -+}; -+ -+struct bpf_pidns_info { -+ __u32 pid; -+ __u32 tgid; -+}; -+ -+struct bpf_cgroup_storage_info { -+ struct task_struct *task; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+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_get_smp_processor_id)(); -+ -+typedef u64 (*btf_bpf_get_numa_node_id)(); -+ -+typedef u64 (*btf_bpf_ktime_get_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_boot_ns)(); -+ -+typedef u64 (*btf_bpf_ktime_get_coarse_ns)(); -+ -+typedef u64 (*btf_bpf_get_current_pid_tgid)(); -+ -+typedef u64 (*btf_bpf_get_current_uid_gid)(); -+ -+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)(); -+ -+typedef u64 (*btf_bpf_get_current_cgroup_id)(); -+ -+typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); -+ -+typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); -+ -+typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, long int *); -+ -+typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, long unsigned int *); -+ -+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_per_cpu_ptr)(const void *, u32); -+ -+typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); -+ -+struct bpf_bprintf_buffers { -+ char tmp_bufs[1536]; -+}; -+ -+typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); -+ -+union bpf_iter_link_info { -+ struct { -+ __u32 map_fd; -+ } map; -+}; -+ -+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 *); -+ -+enum bpf_iter_feature { -+ BPF_ITER_RESCHED = 1, -+}; -+ -+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; -+ 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_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: 56; -+ u8 target_private[0]; -+}; -+ -+typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, 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 bpf_iter_seq_task_common { -+ struct pid_namespace *ns; -+}; -+ -+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 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; -+ }; -+}; -+ -+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 bpf_iter__bpf_map_elem { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct bpf_map *map; -+ }; -+ union { -+ void *key; -+ }; -+ union { -+ void *value; -+ }; -+}; -+ -+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 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: 32; -+ 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 nr_scans; -+ bool percpu; -+ long: 56; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bucket { -+ struct hlist_nulls_head head; -+ union { -+ raw_spinlock_t raw_lock; -+ spinlock_t lock; -+ }; -+}; -+ -+struct htab_elem; -+ -+struct bpf_htab { -+ struct bpf_map map; -+ struct bucket *buckets; -+ void *elems; -+ 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; -+ atomic_t count; -+ u32 n_buckets; -+ u32 elem_size; -+ u32 hashrnd; -+ struct lock_class_key lockdep_key; -+ int *map_locked[8]; -+ 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 bpf_htab *htab; -+ struct pcpu_freelist_node fnode; -+ struct htab_elem *batch_flink; -+ }; -+ }; -+ }; -+ union { -+ struct callback_head rcu; -+ struct bpf_lru_node lru_node; -+ }; -+ u32 hash; -+ int: 32; -+ 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_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; -+}; -+ -+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_lpm_trie_key { -+ __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; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cgroup_storage_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct rb_root root; -+ struct list_head list; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_queue_stack { -+ struct bpf_map map; -+ raw_spinlock_t lock; -+ u32 head; -+ u32 tail; -+ u32 size; -+ char elements[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ spinlock_t spinlock; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 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: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ 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; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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); -+ -+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]; -+}; -+ -+enum { -+ BPF_LOCAL_STORAGE_GET_F_CREATE = 1, -+ BPF_SK_STORAGE_GET_F_CREATE = 1, -+}; -+ -+typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64); -+ -+typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); -+ -+struct lsm_blob_sizes { -+ int lbs_cred; -+ int lbs_file; -+ int lbs_inode; -+ int lbs_superblock; -+ int lbs_ipc; -+ int lbs_msg_msg; -+ int lbs_task; -+}; -+ -+struct bpf_storage_blob { -+ struct bpf_local_storage *storage; -+}; -+ -+typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64); -+ -+typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); -+ -+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, -+}; -+ -+struct btf_var { -+ __u32 linkage; -+}; -+ -+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; -+ __u32 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; -+}; -+ -+struct xdp_md { -+ __u32 data; -+ __u32 data_end; -+ __u32 data_meta; -+ __u32 ingress_ifindex; -+ __u32 rx_queue_index; -+ __u32 egress_ifindex; -+}; -+ -+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; -+}; -+ -+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_sk_lookup { -+ union { -+ union { -+ struct bpf_sock *sk; -+ }; -+ __u64 cookie; -+ }; -+ __u32 family; -+ __u32 protocol; -+ __u32 remote_ip4; -+ __u32 remote_ip6[4]; -+ __u32 remote_port; -+ __u32 local_ip4; -+ __u32 local_ip6[4]; -+ __u32 local_port; -+}; -+ -+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; -+}; -+ -+struct inet_listen_hashbucket { -+ spinlock_t lock; -+ unsigned int count; -+ union { -+ struct hlist_head head; -+ struct hlist_nulls_head nulls_head; -+ }; -+}; -+ -+struct inet_ehash_bucket; -+ -+struct inet_bind_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; -+ unsigned int bhash_size; -+ unsigned int lhash2_mask; -+ struct inet_listen_hashbucket *lhash2; -+ long: 64; -+ struct inet_listen_hashbucket listening_hash[32]; -+}; -+ -+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 tcp_fastopen_context { -+ siphash_key_t key[2]; -+ int num; -+ struct callback_head rcu; -+}; -+ -+struct xdp_txq_info { -+ struct net_device *dev; -+}; -+ -+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; -+}; -+ -+struct bpf_sock_addr_kern { -+ struct sock *sk; -+ struct sockaddr *uaddr; -+ u64 tmp_reg; -+ void *t_ctx; -+}; -+ -+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 bpf_sysctl_kern { -+ struct ctl_table_header *head; -+ 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; -+ s32 retval; -+}; -+ -+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; -+ bool no_reuseport; -+}; -+ -+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 sock_reuseport { -+ struct callback_head rcu; -+ u16 max_socks; -+ u16 num_socks; -+ u16 num_closed_socks; -+ 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 sk_psock_progs { -+ struct bpf_prog *msg_parser; -+ struct bpf_prog *stream_parser; -+ struct bpf_prog *stream_verdict; -+ struct bpf_prog *skb_verdict; -+}; -+ -+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_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 { -+ struct sk_buff *skb; -+ 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; -+ struct sk_msg *cork; -+ struct sk_psock_progs progs; -+ struct strparser strp; -+ 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_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 work_struct work; -+ struct rcu_work rwork; -+}; -+ -+struct inet_ehash_bucket { -+ struct hlist_nulls_head chain; -+}; -+ -+struct inet_bind_hashbucket { -+ spinlock_t lock; -+ struct hlist_head chain; -+}; -+ -+struct ack_sample { -+ u32 pkts_acked; -+ s32 rtt_us; -+ u32 in_flight; -+}; -+ -+struct rate_sample { -+ u64 prior_mstamp; -+ u32 prior_delivered; -+ s32 delivered; -+ 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; -+ bool is_app_limited; -+ bool is_retrans; -+ bool is_ack_delayed; -+}; -+ -+struct sk_msg_sg { -+ u32 start; -+ u32 curr; -+ u32 end; -+ u32 size; -+ u32 copybreak; -+ long unsigned int copy; -+ 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 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 *); -+}; -+ -+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; -+}; -+ -+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_convert_unused = 30, -+}; -+ -+enum bpf_struct_walk_result { -+ WALK_SCALAR = 0, -+ WALK_PTR = 1, -+ WALK_STRUCT = 2, -+}; -+ -+struct btf_show_snprintf { -+ struct btf_show show; -+ int len_left; -+ int len; -+}; -+ -+struct btf_module { -+ struct list_head list; -+ struct module *module; -+ struct btf *btf; -+ struct bin_attribute *sysfs_attr; -+}; -+ -+typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); -+ -+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; -+ u32 image_off; -+ struct bpf_ksym ksym; -+}; -+ -+enum { -+ BPF_F_BROADCAST = 8, -+ BPF_F_EXCLUDE_INGRESS = 16, -+}; -+ -+struct bpf_devmap_val { -+ __u32 ifindex; -+ 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, -+}; -+ -+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; -+}; -+ -+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_RELEASE = 18, -+ NETDEV_NOTIFY_PEERS = 19, -+ NETDEV_JOIN = 20, -+ NETDEV_CHANGEUPPER = 21, -+ NETDEV_RESEND_IGMP = 22, -+ NETDEV_PRECHANGEMTU = 23, -+ NETDEV_CHANGEINFODATA = 24, -+ NETDEV_BONDING_INFO = 25, -+ NETDEV_PRECHANGEUPPER = 26, -+ NETDEV_CHANGELOWERSTATE = 27, -+ NETDEV_UDP_TUNNEL_PUSH_INFO = 28, -+ NETDEV_UDP_TUNNEL_DROP_INFO = 29, -+ NETDEV_CHANGE_TX_QUEUE_LEN = 30, -+ NETDEV_CVLAN_FILTER_PUSH_INFO = 31, -+ NETDEV_CVLAN_FILTER_DROP_INFO = 32, -+ NETDEV_SVLAN_FILTER_PUSH_INFO = 33, -+ NETDEV_SVLAN_FILTER_DROP_INFO = 34, -+}; -+ -+struct netdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+}; -+ -+struct bpf_nh_params { -+ u32 nh_family; -+ union { -+ u32 ipv4_nh; -+ struct in6_addr ipv6_nh; -+ }; -+}; -+ -+struct bpf_redirect_info { -+ u32 flags; -+ u32 tgt_index; -+ void *tgt_value; -+ struct bpf_map *map; -+ u32 map_id; -+ enum bpf_map_type map_type; -+ u32 kern_flags; -+ struct bpf_nh_params nh; -+}; -+ -+struct bpf_dtab; -+ -+struct bpf_dtab_netdev { -+ struct net_device *dev; -+ struct hlist_node index_hlist; -+ struct bpf_dtab *dtab; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+struct bpf_cpumap_val { -+ __u32 qsize; -+ union { -+ int fd; -+ __u32 id; -+ } bpf_prog; -+}; -+ -+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; -+ -+struct bpf_cpu_map_entry { -+ u32 cpu; -+ int map_id; -+ struct xdp_bulk_queue *bulkq; -+ struct bpf_cpu_map *cmap; -+ struct ptr_ring *queue; -+ struct task_struct *kthread; -+ struct bpf_cpumap_val value; -+ struct bpf_prog *prog; -+ atomic_t refcnt; -+ struct callback_head rcu; -+ struct work_struct kthread_stop_wq; -+}; -+ -+struct bpf_cpu_map { -+ struct bpf_map map; -+ struct bpf_cpu_map_entry **cpu_map; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct rhlist_head { -+ struct rhash_head rhead; -+ struct rhlist_head *next; -+}; -+ -+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 *); -+ -+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 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; -+}; -+ -+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 = 4294967264, -+ PERF_CONTEXT_KERNEL = 4294967168, -+ PERF_CONTEXT_USER = 4294966784, -+ PERF_CONTEXT_GUEST = 4294965248, -+ PERF_CONTEXT_GUEST_KERNEL = 4294965120, -+ PERF_CONTEXT_GUEST_USER = 4294964736, -+ PERF_CONTEXT_MAX = 4294963201, -+}; -+ -+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]; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct stack_map_irq_work { -+ struct irq_work irq_work; -+ struct mm_struct *mm; -+}; -+ -+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_task_stack)(struct task_struct *, void *, u32, u64); -+ -+typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); -+ -+enum { -+ BPF_F_SYSCTL_BASE_NAME = 1, -+}; -+ -+struct bpf_prog_list { -+ struct list_head node; -+ struct bpf_prog *prog; -+ struct bpf_cgroup_link *link; -+ struct bpf_cgroup_storage *storage[2]; -+}; -+ -+struct qdisc_skb_cb { -+ struct { -+ unsigned int pkt_len; -+ u16 slave_dev_queue_mapping; -+ u16 tc_classid; -+ }; -+ unsigned char data[20]; -+ u16 mru; -+ bool post_ct; -+}; -+ -+struct bpf_skb_data_end { -+ struct qdisc_skb_cb qdisc_cb; -+ void *data_meta; -+ void *data_end; -+}; -+ -+struct bpf_sockopt_buf { -+ u8 data[32]; -+}; -+ -+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, -+}; -+ -+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); -+ -+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_SCTP = 132, -+ IPPROTO_UDPLITE = 136, -+ IPPROTO_MPLS = 137, -+ IPPROTO_ETHERNET = 143, -+ IPPROTO_RAW = 255, -+ IPPROTO_MPTCP = 262, -+ IPPROTO_MAX = 263, -+}; -+ -+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, -+}; -+ -+struct reuseport_array { -+ struct bpf_map map; -+ struct sock *ptrs[0]; -+}; -+ -+enum bpf_struct_ops_state { -+ BPF_STRUCT_OPS_STATE_INIT = 0, -+ BPF_STRUCT_OPS_STATE_INUSE = 1, -+ BPF_STRUCT_OPS_STATE_TOBEFREE = 2, -+}; -+ -+struct bpf_struct_ops_value { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state state; -+ 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 *st_ops; -+ struct mutex lock; -+ struct bpf_prog **progs; -+ void *image; -+ struct bpf_struct_ops_value *uvalue; -+ struct bpf_struct_ops_value kvalue; -+}; -+ -+struct bpf_struct_ops_tcp_congestion_ops { -+ refcount_t refcnt; -+ enum bpf_struct_ops_state state; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct tcp_congestion_ops data; -+}; -+ -+struct sembuf { -+ short unsigned int sem_num; -+ short int sem_op; -+ short int sem_flg; -+}; -+ -+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 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; -+}; -+ -+enum { -+ BPF_F_BPRM_SECUREEXEC = 1, -+}; -+ -+struct watch_notification; -+ -+typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); -+ -+typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); -+ -+struct static_call_tramp_key { -+ s32 tramp; -+ s32 key; -+}; -+ -+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_MAX = 16, -+}; -+ -+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_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_MAX = 21, -+}; -+ -+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_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; -+ 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; -+ void **aux_pages; -+ void *aux_priv; -+ struct perf_event_mmap_page *user_page; -+ void *data_pages[0]; -+}; -+ -+struct match_token { -+ int token; -+ const char *pattern; -+}; -+ -+enum { -+ MAX_OPT_ARGS = 3, -+}; -+ -+struct min_heap { -+ void *data; -+ int nr; -+ int size; -+}; -+ -+struct min_heap_callbacks { -+ int elem_size; -+ bool (*less)(const void *, const void *); -+ void (*swp)(void *, void *); -+}; -+ -+typedef int (*remote_function_f)(void *); -+ -+struct remote_function_call { -+ struct task_struct *p; -+ remote_function_f func; -+ void *info; -+ int ret; -+}; -+ -+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; -+}; -+ -+enum event_type_t { -+ EVENT_FLEXIBLE = 1, -+ EVENT_PINNED = 2, -+ EVENT_TIME = 4, -+ EVENT_CPU = 8, -+ EVENT_ALL = 3, -+}; -+ -+struct __group_key { -+ int cpu; -+ struct cgroup *cgroup; -+}; -+ -+struct stop_event_data { -+ struct perf_event *event; -+ unsigned int restart; -+}; -+ -+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; -+ int recursion[4]; -+}; -+ -+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 = 4294967295, -+ 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; -+ u32 pid; -+ u32 tid; -+}; -+ -+struct perf_aux_event___2 { -+ struct perf_event_header header; -+ u64 offset; -+ u64 size; -+ u64 flags; -+}; -+ -+struct callchain_cpus_entries { -+ struct callback_head callback_head; -+ struct perf_callchain_entry *cpu_entries[0]; -+}; -+ -+enum bp_type_idx { -+ TYPE_INST = 0, -+ TYPE_DATA = 0, -+ TYPE_MAX = 1, -+}; -+ -+struct bp_cpuinfo { -+ unsigned int cpu_pinned; -+ unsigned int *tsk_pinned; -+ unsigned int flexible; -+}; -+ -+struct bp_busy_slots { -+ unsigned int pinned; -+ unsigned int flexible; -+}; -+ -+typedef u8 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 uprobe_consumer *consumers; -+ struct inode *inode; -+ loff_t offset; -+ loff_t ref_ctr_offset; -+ long unsigned int flags; -+ struct arch_uprobe arch; -+}; -+ -+struct xol_area { -+ wait_queue_head_t wq; -+ atomic_t slot_count; -+ long unsigned int *bitmap; -+ struct vm_special_mapping xol_mapping; -+ struct page *pages[2]; -+ long unsigned int vaddr; -+}; -+ -+struct compact_control; -+ -+struct capture_control { -+ struct compact_control *cc; -+ struct page *page; -+}; -+ -+typedef int filler_t(void *, struct page *); -+ -+struct page_vma_mapped_walk { -+ struct page *page; -+ struct vm_area_struct *vma; -+ long unsigned int address; -+ pmd_t *pmd; -+ pte_t *pte; -+ spinlock_t *ptl; -+ unsigned int flags; -+}; -+ -+struct compact_control { -+ struct list_head freepages; -+ 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 rescan; -+ bool alloc_contig; -+}; -+ -+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 user_return_notifier { -+ void (*on_user_return)(struct user_return_notifier *); -+ struct hlist_node link; -+}; -+ -+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; -+ atomic_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: 32; -+ 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_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; -+}; -+ -+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 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); -+ -+enum rseq_cpu_id_state { -+ RSEQ_CPU_ID_UNINITIALIZED = 4294967295, -+ RSEQ_CPU_ID_REGISTRATION_FAILED = 4294967294, -+}; -+ -+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; -+ 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 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___2 { -+ __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___2 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[2]; -+ }; -+ 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; -+ bool defunct; -+}; -+ -+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; -+}; -+ -+struct pkcs7_message; -+ -+typedef int __kernel_rwf_t; -+ -+enum positive_aop_returns { -+ AOP_WRITEPAGE_ACTIVATE = 524288, -+ AOP_TRUNCATED_PAGE = 524289, -+}; -+ -+enum iter_type { -+ ITER_IOVEC = 0, -+ ITER_KVEC = 1, -+ ITER_BVEC = 2, -+ ITER_PIPE = 3, -+ ITER_XARRAY = 4, -+ ITER_DISCARD = 5, -+}; -+ -+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_THP_SUPPORT = 6, -+}; -+ -+struct wait_page_key { -+ struct page *page; -+ int bit_nr; -+ int page_match; -+}; -+ -+struct pagevec { -+ unsigned char nr; -+ bool percpu_pvec_drained; -+ struct page *pages[15]; -+}; -+ -+struct fid { -+ union { -+ struct { -+ u32 ino; -+ u32 gen; -+ u32 parent_ino; -+ u32 parent_gen; -+ } i32; -+ struct { -+ u32 block; -+ u16 partref; -+ u16 parent_partref; -+ u32 generation; -+ u32 parent_block; -+ u32 parent_generation; -+ } udf; -+ __u32 raw[0]; -+ }; -+}; -+ -+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; -+ 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_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 page *); -+ -+typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct page *); -+ -+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 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; -+ struct kmem_cache_order_objects oo; -+ struct kmem_cache_order_objects max; -+ 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]; -+}; -+ -+struct kmem_cache_cpu { -+ void **freelist; -+ long unsigned int tid; -+ struct page *page; -+ struct page *partial; -+}; -+ -+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 zap_details { -+ struct address_space *check_mapping; -+ long unsigned int first_index; -+ long unsigned int last_index; -+ struct page *single_page; -+}; -+ -+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, -+}; -+ -+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; -+ 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 {}; -+ -+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 *, int); -+ -+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); -+ -+enum wb_congested_state { -+ WB_async_congested = 0, -+ WB_sync_congested = 1, -+}; -+ -+enum wb_state { -+ WB_registered = 0, -+ WB_writeback_running = 1, -+ WB_has_dirty_io = 2, -+ WB_start_all = 3, -+}; -+ -+enum { -+ BLK_RW_ASYNC = 0, -+ BLK_RW_SYNC = 1, -+}; -+ -+struct wb_lock_cookie { -+ bool locked; -+ long unsigned int flags; -+}; -+ -+typedef int (*writepage_t)(struct page *, struct writeback_control *, void *); -+ -+enum page_memcg_data_flags { -+ MEMCG_DATA_OBJCGS = 1, -+ MEMCG_DATA_KMEM = 2, -+ __NR_MEMCG_DATA_FLAGS = 4, -+}; -+ -+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; -+}; -+ -+typedef void compound_page_dtor(struct page *); -+ -+struct trace_event_raw_mm_lru_insertion { -+ struct trace_entry ent; -+ struct page *page; -+ 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 page *page; -+ 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 page *); -+ -+typedef void (*btf_trace_mm_lru_activate)(void *, struct page *); -+ -+struct lru_rotate { -+ local_lock_t lock; -+ struct pagevec pvec; -+}; -+ -+struct lru_pvecs { -+ local_lock_t lock; -+ struct pagevec lru_add; -+ struct pagevec lru_deactivate_file; -+ struct pagevec lru_deactivate; -+ struct pagevec lru_lazyfree; -+ struct pagevec activate_page; -+}; -+ -+enum lruvec_flags { -+ LRUVEC_CONGESTED = 0, -+}; -+ -+enum pgdat_flags { -+ PGDAT_DIRTY = 0, -+ PGDAT_WRITEBACK = 1, -+ PGDAT_RECLAIM_LOCKED = 2, -+}; -+ -+enum zone_flags { -+ ZONE_BOOSTED_WATERMARK = 0, -+ ZONE_RECLAIM_ACTIVE = 1, -+}; -+ -+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; -+}; -+ -+struct mem_cgroup_reclaim_cookie { -+ pg_data_t *pgdat; -+ unsigned int generation; -+}; -+ -+enum ttu_flags { -+ TTU_SPLIT_HUGE_PMD = 4, -+ TTU_IGNORE_MLOCK = 8, -+ TTU_SYNC = 16, -+ TTU_IGNORE_HWPOISON = 32, -+ TTU_BATCH_FLUSH = 64, -+ TTU_RMAP_LOCKED = 128, -+}; -+ -+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; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { -+ struct trace_entry ent; -+ int order; -+ gfp_t 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; -+ gfp_t 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; -+ isolate_mode_t isolate_mode; -+ int lru; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_mm_vmscan_writepage { -+ 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; -+ gfp_t gfp_flags; -+ 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_writepage {}; -+ -+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 {}; -+ -+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, isolate_mode_t, int); -+ -+typedef void (*btf_trace_mm_vmscan_writepage)(void *, struct page *); -+ -+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); -+ -+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; -+ 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 memcg_low_reclaim: 1; -+ unsigned int memcg_low_skipped: 1; -+ unsigned int hibernation_mode: 1; -+ unsigned int compaction_ready: 1; -+ unsigned int cache_trim_mode: 1; -+ unsigned int file_is_tiny: 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 page_references { -+ PAGEREF_RECLAIM = 0, -+ PAGEREF_RECLAIM_CLEAN = 1, -+ PAGEREF_KEEP = 2, -+ PAGEREF_ACTIVATE = 3, -+}; -+ -+enum scan_balance { -+ SCAN_EQUAL = 0, -+ SCAN_FRACT = 1, -+ SCAN_ANON = 2, -+ SCAN_FILE = 3, -+}; -+ -+typedef __u64 __le64; -+ -+enum transparent_hugepage_flag { -+ TRANSPARENT_HUGEPAGE_NEVER_DAX = 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 xattr; -+ -+typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); -+ -+struct xattr { -+ const char *name; -+ void *value; -+ size_t value_len; -+}; -+ -+struct constant_table { -+ const char *name; -+ int value; -+}; -+ -+enum { -+ MPOL_DEFAULT = 0, -+ MPOL_PREFERRED = 1, -+ MPOL_BIND = 2, -+ MPOL_INTERLEAVE = 3, -+ MPOL_LOCAL = 4, -+ MPOL_MAX = 5, -+}; -+ -+struct shared_policy { -+ struct rb_root root; -+ rwlock_t lock; -+}; -+ -+struct simple_xattrs { -+ struct list_head head; -+ spinlock_t lock; -+}; -+ -+struct simple_xattr { -+ struct list_head list; -+ char *name; -+ size_t size; -+ char value[0]; -+}; -+ -+struct shmem_inode_info { -+ spinlock_t lock; -+ unsigned int seals; -+ long unsigned int flags; -+ long unsigned int alloced; -+ long unsigned int swapped; -+ struct list_head shrinklist; -+ struct list_head swaplist; -+ struct shared_policy policy; -+ struct simple_xattrs xattrs; -+ atomic_t stop_eviction; -+ struct inode vfs_inode; -+}; -+ -+struct shmem_sb_info { -+ long unsigned int max_blocks; -+ struct percpu_counter used_blocks; -+ long unsigned int max_inodes; -+ long unsigned int free_inodes; -+ spinlock_t stat_lock; -+ umode_t mode; -+ unsigned char huge; -+ kuid_t uid; -+ kgid_t gid; -+ bool full_inums; -+ ino_t next_ino; -+ ino_t *ino_batch; -+ struct mempolicy *mpol; -+ spinlock_t shrinklist_lock; -+ struct list_head shrinklist; -+ long unsigned int shrinklist_len; -+}; -+ -+enum sgp_type { -+ SGP_READ = 0, -+ SGP_CACHE = 1, -+ SGP_NOHUGE = 2, -+ SGP_HUGE = 3, -+ SGP_WRITE = 4, -+ SGP_FALLOC = 5, -+}; -+ -+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_LUSTRE = 151, -+ FILEID_KERNFS = 254, -+ FILEID_INVALID = 255, -+}; -+ -+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; -+}; -+ -+enum shmem_param { -+ Opt_gid = 0, -+ Opt_huge = 1, -+ Opt_mode = 2, -+ Opt_mpol = 3, -+ Opt_nr_blocks = 4, -+ Opt_nr_inodes = 5, -+ Opt_size = 6, -+ Opt_uid = 7, -+ Opt_inode32 = 8, -+ Opt_inode64 = 9, -+}; -+ -+enum writeback_stat_item { -+ NR_DIRTY_THRESHOLD = 0, -+ NR_DIRTY_BG_THRESHOLD = 1, -+ NR_VM_WRITEBACK_STAT_ITEMS = 2, -+}; -+ -+struct contig_page_info { -+ long unsigned int free_pages; -+ long unsigned int free_blocks_total; -+ long unsigned int free_blocks_suitable; -+}; -+ -+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 mminit_level { -+ MMINIT_WARNING = 0, -+ MMINIT_VERIFY = 1, -+ MMINIT_TRACE = 2, -+}; -+ -+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]; -+}; -+ -+struct trace_event_raw_percpu_alloc_percpu { -+ struct trace_entry ent; -+ bool reserved; -+ bool is_atomic; -+ size_t size; -+ size_t align; -+ void *base_addr; -+ int off; -+ void *ptr; -+ 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 *, bool, bool, size_t, size_t, void *, int, void *); -+ -+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 pcpu_chunk { -+ struct list_head list; -+ int free_bytes; -+ struct pcpu_block_md chunk_md; -+ void *base_addr; -+ long unsigned int *alloc_map; -+ long unsigned int *bound_map; -+ struct pcpu_block_md *md_blocks; -+ void *data; -+ bool immutable; -+ bool isolated; -+ int start_offset; -+ int end_offset; -+ struct obj_cgroup **obj_cgroups; -+ int nr_pages; -+ int nr_populated; -+ int nr_empty_pop_pages; -+ long unsigned int populated[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t gfp_flags; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_kmem_alloc_node { -+ struct trace_entry ent; -+ long unsigned int call_site; -+ const void *ptr; -+ size_t bytes_req; -+ size_t bytes_alloc; -+ gfp_t 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; -+ gfp_t 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; -+ 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_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_alloc {}; -+ -+struct trace_event_data_offsets_kmem_alloc_node {}; -+ -+struct trace_event_data_offsets_kfree {}; -+ -+struct trace_event_data_offsets_kmem_cache_free { -+ u32 name; -+}; -+ -+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_rss_stat {}; -+ -+typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t); -+ -+typedef void (*btf_trace_kmalloc_node)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); -+ -+typedef void (*btf_trace_kmem_cache_alloc_node)(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 char *); -+ -+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); -+ -+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_rss_stat)(void *, struct mm_struct *, int, long int); -+ -+enum slab_state { -+ DOWN = 0, -+ PARTIAL = 1, -+ PARTIAL_NODE = 2, -+ UP = 3, -+ FULL = 4, -+}; -+ -+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 page *kp_page; -+ 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]; -+}; -+ -+enum pageblock_bits { -+ PB_migrate = 0, -+ PB_migrate_end = 2, -+ PB_migrate_skip = 3, -+ NR_PAGEBLOCK_BITS = 4, -+}; -+ -+struct node___2 { -+ struct device dev; -+ struct list_head access_list; -+ struct work_struct node_work; -+ struct list_head cache_attrs; -+ struct device *cache_dev; -+}; -+ -+typedef struct page *new_page_t(struct page *, long unsigned int); -+ -+typedef void free_page_t(struct page *, long unsigned int); -+ -+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; -+ gfp_t 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_migratepages)(void *, long unsigned int, int, struct list_head *); -+ -+typedef void (*btf_trace_mm_compaction_begin)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, bool); -+ -+typedef void (*btf_trace_mm_compaction_end)(void *, long unsigned int, long unsigned int, 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; -+ -+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; -+}; -+ -+enum lru_status { -+ LRU_REMOVED = 0, -+ LRU_REMOVED_RETRY = 1, -+ LRU_ROTATE = 2, -+ LRU_SKIP = 3, -+ LRU_RETRY = 4, -+}; -+ -+typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, spinlock_t *, void *); -+ -+typedef struct { -+ long unsigned int pd; -+} hugepd_t; -+ -+struct migration_target_control { -+ int nid; -+ nodemask_t *nmask; -+ gfp_t gfp_mask; -+}; -+ -+struct follow_page_context { -+ struct dev_pagemap *pgmap; -+ unsigned int page_mask; -+}; -+ -+struct trace_event_raw_mmap_lock_start_locking { -+ 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_raw_mmap_lock_released { -+ struct trace_entry ent; -+ struct mm_struct *mm; -+ u32 __data_loc_memcg_path; -+ bool write; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_start_locking { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_acquire_returned { -+ u32 memcg_path; -+}; -+ -+struct trace_event_data_offsets_mmap_lock_released { -+ u32 memcg_path; -+}; -+ -+typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); -+ -+typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); -+ -+typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); -+ -+struct memcg_path { -+ local_lock_t lock; -+ char *buf; -+ local_t buf_idx; -+}; -+ -+typedef unsigned int pgtbl_mod_mask; -+ -+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, -+}; -+ -+struct copy_subpage_arg { -+ struct page *dst; -+ struct page *src; -+ struct vm_area_struct *vma; -+}; -+ -+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_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; -+}; -+ -+enum { -+ HUGETLB_SHMFS_INODE = 1, -+ HUGETLB_ANONHUGE_INODE = 2, -+}; -+ -+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_data_offsets_vm_unmapped_area {}; -+ -+typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); -+ -+enum pgt_entry { -+ NORMAL_PMD = 0, -+ HPAGE_PMD = 1, -+ NORMAL_PUD = 2, -+ HPAGE_PUD = 3, -+}; -+ -+struct rmap_walk_control { -+ void *arg; -+ bool (*rmap_one)(struct page *, struct vm_area_struct *, long unsigned int, void *); -+ int (*done)(struct page *); -+ struct anon_vma * (*anon_lock)(struct page *); -+ bool (*invalid_vma)(struct vm_area_struct *, void *); -+}; -+ -+struct page_referenced_arg { -+ int mapcount; -+ int referenced; -+ long unsigned int vm_flags; -+ struct mem_cgroup *memcg; -+}; -+ -+struct make_exclusive_args { -+ struct mm_struct *mm; -+ long unsigned int address; -+ void *owner; -+ bool valid; -+}; -+ -+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; -+ }; -+}; -+ -+struct vfree_deferred { -+ struct llist_head list; -+ struct work_struct wq; -+}; -+ -+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 vmap_block { -+ spinlock_t lock; -+ struct vmap_area *va; -+ long unsigned int free; -+ long unsigned int dirty; -+ long unsigned int dirty_min; -+ long unsigned int dirty_max; -+ struct list_head free_list; -+ struct callback_head callback_head; -+ struct list_head purge; -+}; -+ -+struct vmap_pfn_data { -+ long unsigned int *pfns; -+ pgprot_t prot; -+ unsigned int idx; -+}; -+ -+struct page_frag_cache { -+ void *va; -+ __u16 offset; -+ __u16 size; -+ unsigned int pagecnt_bias; -+ bool pfmemalloc; -+}; -+ -+typedef int fpi_t; -+ -+struct pagesets { -+ local_lock_t lock; -+}; -+ -+struct pcpu_drain { -+ struct zone *zone; -+ struct work_struct work; -+}; -+ -+struct mminit_pfnnid_cache { -+ long unsigned int last_start; -+ long unsigned int last_end; -+ int last_nid; -+}; -+ -+enum { -+ MMOP_OFFLINE = 0, -+ MMOP_ONLINE = 1, -+ MMOP_ONLINE_KERNEL = 2, -+ MMOP_ONLINE_MOVABLE = 3, -+}; -+ -+typedef int mhp_t; -+ -+typedef void (*online_page_callback_t)(struct page *, unsigned int); -+ -+struct memory_block { -+ long unsigned int start_section_nr; -+ long unsigned int state; -+ int online_type; -+ int nid; -+ struct device dev; -+ long unsigned int nr_vmemmap_pages; -+}; -+ -+struct memory_notify { -+ long unsigned int start_pfn; -+ long unsigned int nr_pages; -+ int status_change_nid_normal; -+ int status_change_nid_high; -+ int status_change_nid; -+}; -+ -+typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); -+ -+enum hugetlb_page_flags { -+ HPG_restore_reserve = 0, -+ HPG_migratable = 1, -+ HPG_temporary = 2, -+ HPG_freed = 3, -+ HPG_vmemmap_optimized = 4, -+ __NR_HPAGEFLAGS = 5, -+}; -+ -+struct madvise_walk_private { -+ struct mmu_gather *tlb; -+ bool pageout; -+}; -+ -+struct vma_swap_readahead { -+ short unsigned int win; -+ short unsigned int offset; -+ short unsigned int nr_pte; -+ pte_t *ptes; -+}; -+ -+enum { -+ PERCPU_REF_INIT_ATOMIC = 1, -+ PERCPU_REF_INIT_DEAD = 2, -+ PERCPU_REF_ALLOW_REINIT = 4, -+}; -+ -+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 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; -+}; -+ -+struct frontswap_ops { -+ void (*init)(unsigned int); -+ int (*store)(unsigned int, long unsigned int, struct page *); -+ int (*load)(unsigned int, long unsigned int, struct page *); -+ void (*invalidate_page)(unsigned int, long unsigned int); -+ void (*invalidate_area)(unsigned int); -+ struct frontswap_ops *next; -+}; -+ -+struct crypto_wait { -+ struct completion completion; -+ int err; -+}; -+ -+struct zpool; -+ -+struct zpool_ops { -+ int (*evict)(struct zpool *, long unsigned int); -+}; -+ -+enum zpool_mapmode { -+ ZPOOL_MM_RW = 0, -+ ZPOOL_MM_RO = 1, -+ ZPOOL_MM_WO = 2, -+ ZPOOL_MM_DEFAULT = 0, -+}; -+ -+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 crypto_acomp_ctx { -+ struct crypto_acomp *acomp; -+ struct acomp_req *req; -+ struct crypto_wait wait; -+ u8 *dstmem; -+ struct mutex *mutex; -+}; -+ -+struct zswap_pool { -+ struct zpool *zpool; -+ struct crypto_acomp_ctx *acomp_ctx; -+ struct kref kref; -+ struct list_head list; -+ struct work_struct release_work; -+ struct work_struct shrink_work; -+ struct hlist_node node; -+ char tfm_name[128]; -+}; -+ -+struct zswap_entry { -+ struct rb_node rbnode; -+ long unsigned int offset; -+ int refcount; -+ unsigned int length; -+ struct zswap_pool *pool; -+ union { -+ long unsigned int handle; -+ long unsigned int value; -+ }; -+}; -+ -+struct zswap_header { -+ swp_entry_t swpentry; -+}; -+ -+struct zswap_tree { -+ struct rb_root rbroot; -+ spinlock_t lock; -+}; -+ -+enum zswap_get_swap_ret { -+ ZSWAP_SWAPCACHE_NEW = 0, -+ ZSWAP_SWAPCACHE_EXIST = 1, -+ ZSWAP_SWAPCACHE_FAIL = 2, -+}; -+ -+struct dma_pool { -+ struct list_head page_list; -+ spinlock_t lock; -+ size_t size; -+ struct device *dev; -+ size_t allocation; -+ size_t boundary; -+ char name[32]; -+ struct list_head pools; -+}; -+ -+struct dma_page { -+ struct list_head page_list; -+ void *vaddr; -+ dma_addr_t dma; -+ unsigned int in_use; -+ unsigned int offset; -+}; -+ -+typedef void (*node_registration_func_t)(struct node___2 *); -+ -+enum string_size_units { -+ STRING_UNITS_10 = 0, -+ STRING_UNITS_2 = 1, -+}; -+ -+enum mcopy_atomic_mode { -+ MCOPY_ATOMIC_NORMAL = 0, -+ MCOPY_ATOMIC_ZEROPAGE = 1, -+ MCOPY_ATOMIC_CONTINUE = 2, -+}; -+ -+enum { -+ SUBPAGE_INDEX_SUBPOOL = 1, -+ SUBPAGE_INDEX_CGROUP = 2, -+ SUBPAGE_INDEX_CGROUP_RSVD = 3, -+ __MAX_CGROUP_SUBPAGE_INDEX = 3, -+ __NR_USED_SUBPAGE = 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 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 huge_bootmem_page { -+ struct list_head list; -+ struct hstate *hstate; -+}; -+ -+enum hugetlb_memory_event { -+ HUGETLB_MAX = 0, -+ HUGETLB_NR_MEMORY_EVENTS = 1, -+}; -+ -+struct hugetlb_cgroup { -+ struct cgroup_subsys_state css; -+ 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]; -+}; -+ -+enum vma_resv_mode { -+ VMA_NEEDS_RESV = 0, -+ VMA_COMMIT_RESV = 1, -+ VMA_END_RESV = 2, -+ VMA_ADD_RESV = 3, -+ VMA_DEL_RESV = 4, -+}; -+ -+struct node_hstate { -+ struct kobject *hugepages_kobj; -+ struct kobject *hstate_kobjs[2]; -+}; -+ -+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 mempolicy_operations { -+ int (*create)(struct mempolicy *, const nodemask_t *); -+ void (*rebind)(struct mempolicy *, const nodemask_t *); -+}; -+ -+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 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; -+}; -+ -+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_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; -+}; -+ -+struct rmap_item; -+ -+struct mm_slot { -+ struct hlist_node link; -+ struct list_head mm_list; -+ struct rmap_item *rmap_list; -+ struct mm_struct *mm; -+}; -+ -+struct stable_node; -+ -+struct rmap_item { -+ struct rmap_item *rmap_list; -+ union { -+ struct anon_vma *anon_vma; -+ int nid; -+ }; -+ struct mm_struct *mm; -+ long unsigned int address; -+ unsigned int oldchecksum; -+ union { -+ struct rb_node node; -+ struct { -+ struct stable_node *head; -+ struct hlist_node hlist; -+ }; -+ }; -+}; -+ -+struct ksm_scan { -+ struct mm_slot *mm_slot; -+ long unsigned int address; -+ struct rmap_item **rmap_list; -+ long unsigned int seqnr; -+}; -+ -+struct 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; -+}; -+ -+enum get_ksm_page_flags { -+ GET_KSM_PAGE_NOLOCK = 0, -+ GET_KSM_PAGE_LOCK = 1, -+ GET_KSM_PAGE_TRYLOCK = 2, -+}; -+ -+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 track { -+ long unsigned int addr; -+ long unsigned int addrs[16]; -+ int cpu; -+ int pid; -+ long unsigned int when; -+}; -+ -+enum track_item { -+ TRACK_ALLOC = 0, -+ TRACK_FREE = 1, -+}; -+ -+struct detached_freelist { -+ struct page *page; -+ void *tail; -+ void *freelist; -+ int cnt; -+ struct kmem_cache *s; -+}; -+ -+struct location { -+ long unsigned int count; -+ long unsigned int addr; -+ 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; -+}; -+ -+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; -+}; -+ -+enum slab_modes { -+ M_NONE = 0, -+ M_PARTIAL = 1, -+ M_FULL = 2, -+ M_FREE = 3, -+}; -+ -+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; -+ struct page *b_page; -+ 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; -+}; -+ -+enum migrate_vma_direction { -+ MIGRATE_VMA_SELECT_SYSTEM = 1, -+ MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 2, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ 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_data_offsets_mm_migrate_pages {}; -+ -+struct trace_event_data_offsets_mm_migrate_pages_start {}; -+ -+typedef void (*btf_trace_mm_migrate_pages)(void *, 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); -+ -+enum scan_result { -+ SCAN_FAIL = 0, -+ SCAN_SUCCEED = 1, -+ SCAN_PMD_NULL = 2, -+ SCAN_EXCEED_NONE_PTE = 3, -+ SCAN_EXCEED_SWAP_PTE = 4, -+ SCAN_EXCEED_SHARED_PTE = 5, -+ SCAN_PTE_NON_PRESENT = 6, -+ SCAN_PTE_UFFD_WP = 7, -+ SCAN_PAGE_RO = 8, -+ SCAN_LACK_REFERENCED_PAGE = 9, -+ SCAN_PAGE_NULL = 10, -+ SCAN_SCAN_ABORT = 11, -+ SCAN_PAGE_COUNT = 12, -+ SCAN_PAGE_LRU = 13, -+ SCAN_PAGE_LOCK = 14, -+ SCAN_PAGE_ANON = 15, -+ SCAN_PAGE_COMPOUND = 16, -+ SCAN_ANY_PROCESS = 17, -+ SCAN_VMA_NULL = 18, -+ SCAN_VMA_CHECK = 19, -+ SCAN_ADDRESS_RANGE = 20, -+ SCAN_SWAP_CACHE_PAGE = 21, -+ SCAN_DEL_PAGE_LRU = 22, -+ SCAN_ALLOC_HUGE_PAGE_FAIL = 23, -+ SCAN_CGROUP_CHARGE_FAIL = 24, -+ SCAN_TRUNCATED = 25, -+ SCAN_PAGE_HAS_PRIVATE = 26, -+}; -+ -+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_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 {}; -+ -+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); -+ -+struct mm_slot___2 { -+ struct hlist_node hash; -+ struct list_head mm_node; -+ struct mm_struct *mm; -+ int nr_pte_mapped_thp; -+ long unsigned int pte_mapped_thp[8]; -+}; -+ -+struct khugepaged_scan { -+ struct list_head mm_head; -+ struct mm_slot___2 *mm_slot; -+ long unsigned int address; -+}; -+ -+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[1024]; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+enum res_type { -+ _MEM = 0, -+ _MEMSWAP = 1, -+ _OOM_TYPE = 2, -+ _KMEM = 3, -+ _TCP = 4, -+}; -+ -+struct memory_stat { -+ const char *name; -+ unsigned int idx; -+}; -+ -+struct oom_wait_info { -+ struct mem_cgroup *memcg; -+ wait_queue_entry_t wait; -+}; -+ -+enum oom_status { -+ OOM_SUCCESS = 0, -+ OOM_FAILED = 1, -+ OOM_ASYNC = 2, -+ OOM_SKIPPED = 3, -+}; -+ -+struct obj_stock { -+ 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 memcg_stock_pcp { -+ struct mem_cgroup *cached; -+ unsigned int nr_pages; -+ struct obj_stock task_obj; -+ struct obj_stock irq_obj; -+ struct work_struct work; -+ long unsigned int flags; -+}; -+ -+enum { -+ RES_USAGE = 0, -+ RES_LIMIT = 1, -+ RES_MAX_USAGE = 2, -+ RES_FAILCNT = 3, -+ RES_SOFT_LIMIT = 4, -+}; -+ -+union mc_target { -+ struct page *page; -+ 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 uncharge_gather { -+ struct mem_cgroup *memcg; -+ long unsigned int nr_memory; -+ long unsigned int pgpgout; -+ long unsigned int nr_kmem; -+ struct page *dummy_page; -+}; -+ -+struct numa_stat { -+ const char *name; -+ unsigned int lru_mask; -+}; -+ -+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 swap_cgroup_ctrl { -+ struct page **map; -+ long unsigned int length; -+ spinlock_t lock; -+}; -+ -+struct swap_cgroup { -+ short unsigned int id; -+}; -+ -+enum { -+ RES_USAGE___2 = 0, -+ RES_RSVD_USAGE = 1, -+ RES_LIMIT___2 = 2, -+ RES_RSVD_LIMIT = 3, -+ RES_MAX_USAGE___2 = 4, -+ RES_RSVD_MAX_USAGE = 5, -+ RES_FAILCNT___2 = 6, -+ RES_RSVD_FAILCNT = 7, -+}; -+ -+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_SLAB = 2, -+ MF_MSG_DIFFERENT_COMPOUND = 3, -+ MF_MSG_POISONED_HUGE = 4, -+ MF_MSG_HUGE = 5, -+ MF_MSG_FREE_HUGE = 6, -+ MF_MSG_NON_PMD_HUGE = 7, -+ MF_MSG_UNMAP_FAILED = 8, -+ MF_MSG_DIRTY_SWAPCACHE = 9, -+ MF_MSG_CLEAN_SWAPCACHE = 10, -+ MF_MSG_DIRTY_MLOCKED_LRU = 11, -+ MF_MSG_CLEAN_MLOCKED_LRU = 12, -+ MF_MSG_DIRTY_UNEVICTABLE_LRU = 13, -+ MF_MSG_CLEAN_UNEVICTABLE_LRU = 14, -+ MF_MSG_DIRTY_LRU = 15, -+ MF_MSG_CLEAN_LRU = 16, -+ MF_MSG_TRUNCATED_LRU = 17, -+ MF_MSG_BUDDY = 18, -+ MF_MSG_BUDDY_2ND = 19, -+ MF_MSG_DAX = 20, -+ MF_MSG_UNSPLIT_THP = 21, -+ MF_MSG_UNKNOWN = 22, -+}; -+ -+typedef long unsigned int dax_entry_t; -+ -+struct __kfifo { -+ unsigned int in; -+ unsigned int out; -+ unsigned int mask; -+ unsigned int esize; -+ void *data; -+}; -+ -+struct to_kill { -+ struct list_head nd; -+ struct task_struct *tsk; -+ long unsigned int addr; -+ short int size_shift; -+}; -+ -+struct hwp_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 *, long unsigned int); -+}; -+ -+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; -+ spinlock_t lock; -+ struct work_struct work; -+}; -+ -+typedef u32 depot_stack_handle_t; -+ -+struct page_ext_operations { -+ size_t offset; -+ size_t size; -+ bool (*need)(); -+ void (*init)(); -+}; -+ -+enum page_ext_flags { -+ PAGE_EXT_OWNER = 0, -+ PAGE_EXT_OWNER_ALLOCATED = 1, -+}; -+ -+struct page_owner { -+ short unsigned int order; -+ short int last_migrate_reason; -+ gfp_t gfp_mask; -+ depot_stack_handle_t handle; -+ depot_stack_handle_t free_handle; -+ u64 ts_nsec; -+ u64 free_ts_nsec; -+ pid_t pid; -+}; -+ -+struct cleancache_filekey { -+ union { -+ ino_t ino; -+ __u32 fh[6]; -+ u32 key[6]; -+ } u; -+}; -+ -+struct cleancache_ops { -+ int (*init_fs)(size_t); -+ int (*init_shared_fs)(uuid_t *, size_t); -+ int (*get_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*put_page)(int, struct cleancache_filekey, long unsigned int, struct page *); -+ void (*invalidate_page)(int, struct cleancache_filekey, long unsigned int); -+ void (*invalidate_inode)(int, struct cleancache_filekey); -+ void (*invalidate_fs)(int); -+}; -+ -+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 zpool_driver; -+ -+struct zpool { -+ struct zpool_driver *driver; -+ void *pool; -+ const struct zpool_ops *ops; -+ bool evictable; -+ bool can_sleep_mapped; -+ struct list_head list; -+}; -+ -+struct zpool_driver { -+ char *type; -+ struct module *owner; -+ atomic_t refcount; -+ struct list_head list; -+ void * (*create)(const char *, gfp_t, const struct zpool_ops *, struct zpool *); -+ void (*destroy)(void *); -+ bool malloc_support_movable; -+ int (*malloc)(void *, size_t, gfp_t, long unsigned int *); -+ void (*free)(void *, long unsigned int); -+ int (*shrink)(void *, unsigned int, unsigned int *); -+ bool sleep_mapped; -+ void * (*map)(void *, long unsigned int, enum zpool_mapmode); -+ void (*unmap)(void *, long unsigned int); -+ u64 (*total_size)(void *); -+}; -+ -+struct zbud_pool; -+ -+struct zbud_ops { -+ int (*evict)(struct zbud_pool *, long unsigned int); -+}; -+ -+struct zbud_pool { -+ spinlock_t lock; -+ union { -+ struct list_head buddied; -+ struct list_head unbuddied[63]; -+ }; -+ struct list_head lru; -+ u64 pages_nr; -+ const struct zbud_ops *ops; -+ struct zpool *zpool; -+ const struct zpool_ops *zpool_ops; -+}; -+ -+struct zbud_header { -+ struct list_head buddy; -+ struct list_head lru; -+ unsigned int first_chunks; -+ unsigned int last_chunks; -+ bool under_reclaim; -+}; -+ -+enum buddy { -+ FIRST = 0, -+ LAST = 1, -+}; -+ -+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_EMPTY = 0, -+ ZS_ALMOST_EMPTY = 1, -+ ZS_ALMOST_FULL = 2, -+ ZS_FULL = 3, -+ NR_ZS_FULLNESS = 4, -+}; -+ -+enum zs_stat_type { -+ CLASS_EMPTY = 0, -+ CLASS_ALMOST_EMPTY = 1, -+ CLASS_ALMOST_FULL = 2, -+ CLASS_FULL = 3, -+ OBJ_ALLOCATED = 4, -+ OBJ_USED = 5, -+ NR_ZS_STAT_TYPE = 6, -+}; -+ -+struct zs_size_stat { -+ long unsigned int objs[6]; -+}; -+ -+struct size_class { -+ spinlock_t lock; -+ struct list_head fullness_list[4]; -+ 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 dentry *stat_dentry; -+ struct inode *inode; -+ struct work_struct free_work; -+ struct wait_queue_head migration_wait; -+ atomic_long_t isolated_pages; -+ bool destroying; -+}; -+ -+struct zspage { -+ struct { -+ unsigned int fullness: 2; -+ unsigned int class: 9; -+ unsigned int isolated: 3; -+ unsigned int magic: 8; -+ }; -+ unsigned int inuse; -+ unsigned int freeobj; -+ struct page *first_page; -+ struct list_head list; -+ rwlock_t lock; -+}; -+ -+struct mapping_area { -+ char *vm_buf; -+ char *vm_addr; -+ enum zs_mapmode vm_mm; -+}; -+ -+struct zs_compact_control { -+ struct page *s_page; -+ struct page *d_page; -+ int obj_idx; -+}; -+ -+struct trace_event_raw_cma_alloc_class { -+ 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_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_data_offsets_cma_alloc_class { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cma_release { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_cma_alloc_start { -+ u32 name; -+}; -+ -+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); -+ -+typedef void (*btf_trace_cma_alloc_busy_retry)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int); -+ -+struct cma_kobject { -+ struct kobject kobj; -+ struct cma *cma; -+}; -+ -+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 inode *inode; -+}; -+ -+enum { -+ BAD_STACK = 4294967295, -+ NOT_STACK = 0, -+ GOOD_FRAME = 1, -+ GOOD_STACK = 2, -+}; -+ -+enum hmm_pfn_flags { -+ HMM_PFN_VALID = 0, -+ HMM_PFN_WRITE = 0, -+ HMM_PFN_ERROR = 0, -+ HMM_PFN_ORDER_SHIFT = 56, -+ HMM_PFN_REQ_FAULT = 0, -+ HMM_PFN_REQ_WRITE = 0, -+ HMM_PFN_FLAGS = 0, -+}; -+ -+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_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, -+}; -+ -+struct hugetlbfs_inode_info { -+ struct shared_policy policy; -+ struct inode vfs_inode; -+ unsigned int seals; -+}; -+ -+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 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 open_how { -+ __u64 flags; -+ __u64 mode; -+ __u64 resolve; -+}; -+ -+typedef s32 compat_off_t; -+ -+struct open_flags { -+ int open_flag; -+ umode_t mode; -+ int acc_mode; -+ int intent; -+ int lookup_flags; -+}; -+ -+typedef __kernel_long_t __kernel_off_t; -+ -+typedef __kernel_off_t off_t; -+ -+typedef __kernel_rwf_t rwf_t; -+ -+enum vfs_get_super_keying { -+ vfs_get_single_super = 0, -+ vfs_get_single_reconf_super = 1, -+ vfs_get_keyed_super = 2, -+ vfs_get_independent_super = 3, -+}; -+ -+typedef struct kobject *kobj_probe_t(dev_t, int *, void *); -+ -+struct kobj_map; -+ -+struct char_device_struct { -+ struct char_device_struct *next; -+ unsigned int major; -+ unsigned int baseminor; -+ int minorct; -+ char name[64]; -+ struct cdev *cdev; -+}; -+ -+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; -+ __u64 __spare2; -+ __u64 __spare3[12]; -+}; -+ -+struct mount; -+ -+struct mnt_namespace { -+ struct ns_common ns; -+ struct mount *root; -+ struct list_head list; -+ spinlock_t ns_lock; -+ struct user_namespace *user_ns; -+ struct ucounts *ucounts; -+ u64 seq; -+ wait_queue_head_t poll; -+ u64 event; -+ unsigned int mounts; -+ unsigned int pending_mounts; -+}; -+ -+typedef u16 compat_mode_t; -+ -+typedef u32 compat_ino_t; -+ -+typedef u16 __compat_uid_t; -+ -+typedef u16 __compat_gid_t; -+ -+typedef u16 compat_dev_t; -+ -+typedef u16 compat_nlink_t; -+ -+struct compat_stat { -+ compat_dev_t st_dev; -+ u16 __pad1; -+ 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; -+ compat_dev_t st_rdev; -+ u16 __pad2; -+ 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 mnt_pcp; -+ -+struct mountpoint; -+ -+struct mount { -+ struct hlist_node mnt_hash; -+ struct mount *mnt_parent; -+ struct dentry *mnt_mountpoint; -+ struct vfsmount mnt; -+ union { -+ 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; -+ 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; -+}; -+ -+typedef short unsigned int ushort; -+ -+struct user_arg_ptr { -+ bool is_compat; -+ union { -+ const char * const *native; -+ const compat_uptr_t *compat; -+ } ptr; -+}; -+ -+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 name_snapshot { -+ struct qstr name; -+ unsigned char inline_name[32]; -+}; -+ -+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 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; -+ kuid_t dir_uid; -+ umode_t dir_mode; -+}; -+ -+struct renamedata { -+ struct user_namespace *old_mnt_userns; -+ struct inode *old_dir; -+ struct dentry *old_dentry; -+ struct user_namespace *new_mnt_userns; -+ struct inode *new_dir; -+ struct dentry *new_dentry; -+ struct inode **delegated_inode; -+ unsigned int flags; -+}; -+ -+enum { -+ LAST_NORM = 0, -+ LAST_ROOT = 1, -+ LAST_DOT = 2, -+ LAST_DOTDOT = 3, -+}; -+ -+enum { -+ WALK_TRAILING = 1, -+ WALK_MORE = 2, -+ WALK_NOFOLLOW = 4, -+}; -+ -+struct word_at_a_time { -+ const long unsigned int one_bits; -+ const long unsigned int high_bits; -+}; -+ -+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 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_clone_range { -+ __s64 src_fd; -+ __u64 src_offset; -+ __u64 src_length; -+ __u64 dest_offset; -+}; -+ -+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]; -+}; -+ -+typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); -+ -+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 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 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_extent { -+ __u64 fe_logical; -+ __u64 fe_physical; -+ __u64 fe_length; -+ __u64 fe_reserved64[2]; -+ __u32 fe_flags; -+ __u32 fe_reserved[3]; -+}; -+ -+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 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[1]; -+}; -+ -+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[1]; -+}; -+ -+struct getdents_callback { -+ 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 compat_old_linux_dirent { -+ compat_ulong_t d_ino; -+ compat_ulong_t d_offset; -+ short unsigned int d_namlen; -+ char d_name[1]; -+}; -+ -+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[1]; -+}; -+ -+struct compat_getdents_callback { -+ struct dir_context ctx; -+ struct compat_linux_dirent *current_dir; -+ int prev_reclen; -+ int count; -+ int error; -+}; -+ -+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; -+ 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; -+}; -+ -+enum dentry_d_lock_class { -+ DENTRY_D_LOCK_NORMAL = 0, -+ DENTRY_D_LOCK_NESTED = 1, -+}; -+ -+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; -+}; -+ -+enum file_time_flags { -+ S_ATIME = 1, -+ S_MTIME = 2, -+ S_CTIME = 4, -+ S_VERSION = 8, -+}; -+ -+struct mount_attr { -+ __u64 attr_set; -+ __u64 attr_clr; -+ __u64 propagation; -+ __u64 userns_fd; -+}; -+ -+struct proc_mounts { -+ struct mnt_namespace *ns; -+ struct path root; -+ int (*show)(struct seq_file *, struct vfsmount *); -+ struct mount cursor; -+}; -+ -+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; -+}; -+ -+enum umount_tree_flags { -+ UMOUNT_SYNC = 1, -+ UMOUNT_PROPAGATE = 2, -+ UMOUNT_CONNECTED = 4, -+}; -+ -+struct simple_transaction_argresp { -+ ssize_t size; -+ char data[0]; -+}; -+ -+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; -+}; -+ -+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_page_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_congest_waited_template { -+ struct trace_entry ent; -+ unsigned int usec_timeout; -+ unsigned int usec_delayed; -+ 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_page_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_congest_waited_template {}; -+ -+struct trace_event_data_offsets_writeback_single_inode_template {}; -+ -+struct trace_event_data_offsets_writeback_inode_template {}; -+ -+typedef void (*btf_trace_writeback_dirty_page)(void *, struct page *, struct address_space *); -+ -+typedef void (*btf_trace_wait_on_page_writeback)(void *, struct page *, 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 page *, 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_congestion_wait)(void *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_writeback_wait_iff_congested)(void *, unsigned int, unsigned int); -+ -+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 splice_desc { -+ size_t total_len; -+ unsigned int len; -+ unsigned int flags; -+ union { -+ void *userptr; -+ struct file *file; -+ void *data; -+ } u; -+ 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 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; -+}; -+ -+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)); -+ -+struct ns_get_path_task_args { -+ const struct proc_ns_operations *ns_ops; -+ struct task_struct *task; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+struct dax_device; -+ -+struct iomap_page_ops; -+ -+struct iomap___2 { -+ 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_page_ops *page_ops; -+}; -+ -+struct iomap_page_ops { -+ int (*page_prepare)(struct inode *, loff_t, unsigned int, struct iomap___2 *); -+ void (*page_done)(struct inode *, loff_t, unsigned int, struct page *, struct iomap___2 *); -+}; -+ -+struct decrypt_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; -+}; -+ -+enum stat_group { -+ STAT_READ = 0, -+ STAT_WRITE = 1, -+ STAT_DISCARD = 2, -+ STAT_FLUSH = 3, -+ NR_STAT_GROUPS = 4, -+}; -+ -+enum { -+ DISK_EVENT_MEDIA_CHANGE = 1, -+ DISK_EVENT_EJECT_REQUEST = 2, -+}; -+ -+enum { -+ BIOSET_NEED_BVECS = 1, -+ BIOSET_NEED_RESCUER = 2, -+}; -+ -+struct bdev_inode { -+ struct block_device bdev; -+ struct inode vfs_inode; -+}; -+ -+struct blkdev_dio { -+ union { -+ struct kiocb *iocb; -+ struct task_struct *waiter; -+ }; -+ size_t size; -+ atomic_t ref; -+ bool multi_bio: 1; -+ bool should_dirty: 1; -+ bool is_sync: 1; -+ struct bio bio; -+}; -+ -+struct bd_holder_disk { -+ struct list_head list; -+ struct gendisk *disk; -+ int refcnt; -+}; -+ -+typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); -+ -+typedef void dio_submit_t(struct bio *, struct inode *, loff_t); -+ -+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; -+ dio_submit_t *submit_io; -+ 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; -+ int op; -+ int op_flags; -+ blk_qc_t bio_cookie; -+ struct gendisk *bio_disk; -+ struct inode *inode; -+ loff_t i_size; -+ dio_iodone_t *end_io; -+ 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 bvec_iter_all { -+ struct bio_vec bv; -+ int idx; -+ unsigned int done; -+}; -+ -+struct mpage_readpage_args { -+ struct bio *bio; -+ struct page *page; -+ 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; -+ unsigned int use_writepage; -+}; -+ -+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; -+ }; -+ 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]; -+}; -+ -+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 *); -+ const char *lsm; -+}; -+ -+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; -+}; -+ -+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 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 inotify_event_info { -+ struct fsnotify_event fse; -+ u32 mask; -+ int wd; -+ u32 sync_cookie; -+ int name_len; -+ char name[0]; -+}; -+ -+struct inotify_event { -+ __s32 wd; -+ __u32 mask; -+ __u32 cookie; -+ __u32 len; -+ char name[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 file_fh_totlen; -+ u8 name_len; -+ u8 pad; -+ 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_NUM = 5, -+}; -+ -+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 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_path_event { -+ struct fanotify_event fae; -+ struct path path; -+}; -+ -+struct fanotify_perm_event { -+ struct fanotify_event fae; -+ struct path path; -+ short unsigned int response; -+ short unsigned int state; -+ int fd; -+}; -+ -+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_response { -+ __s32 fd; -+ __u32 response; -+}; -+ -+struct epoll_event { -+ __poll_t events; -+ __u64 data; -+} __attribute__((packed)); -+ -+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; -+ 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; -+ rwlock_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; -+ unsigned int napi_id; -+}; -+ -+struct ep_pqueue { -+ poll_table pt; -+ struct epitem *epi; -+}; -+ -+struct epitems_head { -+ struct hlist_head epitems; -+ struct epitems_head *next; -+}; -+ -+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 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 eventfd_ctx___2 { -+ struct kref kref; -+ wait_queue_head_t wqh; -+ __u64 count; -+ unsigned int flags; -+ int id; -+}; -+ -+enum userfaultfd_state { -+ UFFD_STATE_WAIT_API = 0, -+ UFFD_STATE_RUNNING = 1, -+}; -+ -+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; -+ enum userfaultfd_state state; -+ bool released; -+ bool mmap_changing; -+ struct mm_struct *mm; -+}; -+ -+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 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; -+}; -+ -+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 page **ring_pages; -+ 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: 32; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ }; -+ struct page *internal_pages[8]; -+ struct file *aio_ring_file; -+ unsigned int id; -+ long: 32; -+ 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 done; -+ bool cancelled; -+ 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_poll_table { -+ struct poll_table_struct pt; -+ struct aio_kiocb *iocb; -+ 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 iomap_ops { -+ int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap___2 *, struct iomap___2 *); -+ int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap___2 *); -+}; -+ -+typedef loff_t (*iomap_actor_t)(struct inode *, loff_t, loff_t, void *, struct iomap___2 *, struct iomap___2 *); -+ -+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; -+ long unsigned int 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; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ struct page *zero_page; -+ void *radix_entry; -+ dev_t dev; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pmd_insert_mapping_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ long int length; -+ u64 pfn_val; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_dax_pte_fault_class { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int 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_insert_mapping { -+ struct trace_entry ent; -+ long unsigned int ino; -+ long unsigned int vm_flags; -+ long unsigned int address; -+ void *radix_entry; -+ dev_t dev; -+ int write; -+ 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_pmd_insert_mapping_class {}; -+ -+struct trace_event_data_offsets_dax_pte_fault_class {}; -+ -+struct trace_event_data_offsets_dax_insert_mapping {}; -+ -+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 page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct page *, void *); -+ -+typedef void (*btf_trace_dax_pmd_insert_mapping)(void *, struct inode *, struct vm_fault *, long int, pfn_t, 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_insert_mapping)(void *, struct inode *, struct vm_fault *, void *); -+ -+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, -+}; -+ -+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 *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_pid; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *fl; -+ long unsigned int i_ino; -+ dev_t s_dev; -+ struct file_lock *fl_blocker; -+ fl_owner_t fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_type; -+ long unsigned int fl_break_time; -+ long unsigned int fl_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 fl_owner; -+ unsigned int fl_flags; -+ unsigned char fl_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_lock *); -+ -+typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lock *); -+ -+typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lock *, struct file_lock *); -+ -+struct file_lock_list_struct { -+ spinlock_t lock; -+ struct hlist_head hlist; -+}; -+ -+struct locks_iterator { -+ int li_cpu; -+ loff_t li_pos; -+}; -+ -+typedef unsigned int __kernel_uid_t; -+ -+typedef unsigned int __kernel_gid_t; -+ -+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 core_vma_metadata { -+ long unsigned int start; -+ long unsigned int end; -+ long unsigned int flags; -+ long unsigned int dump_size; -+}; -+ -+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 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 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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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 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 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 elf_thread_core_info___2 { -+ struct elf_thread_core_info___2 *next; -+ struct task_struct *task; -+ struct compat_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; -+ compat_siginfo_t csigdata; -+ size_t size; -+ int thread_notes; -+}; -+ -+struct posix_acl_xattr_entry { -+ __le16 e_tag; -+ __le16 e_perm; -+ __le32 e_id; -+}; -+ -+struct posix_acl_xattr_header { -+ __le32 a_version; -+}; -+ -+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; -+ short unsigned int qlen; -+ struct rpc_timer timer_list; -+ const char *name; -+}; -+ -+struct nfs_seqid_counter { -+ ktime_t create_time; -+ int owner_id; -+ int flags; -+ u32 counter; -+ spinlock_t lock; -+ struct list_head list; -+ struct rpc_wait_queue wait; -+}; -+ -+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_state; -+ -+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 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; -+ unsigned int nwords; -+ struct rpc_rqst *rqst; -+}; -+ -+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 list_head 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_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; -+ int tk_rpc_status; -+ 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; -+ 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; -+ unsigned char tk_rebind_retry: 2; -+}; -+ -+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; -+ -+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_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_sysfs_client; -+ -+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_clnt { -+ atomic_t cl_count; -+ unsigned int cl_clid; -+ struct list_head cl_clients; -+ struct list_head cl_tasks; -+ 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; -+ 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; -+}; -+ -+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; -+ 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; -+ const char *servername; -+ const char *address_strings[6]; -+ struct dentry *debugfs; -+ atomic_t inject_disconnect; -+ 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 *); -+}; -+ -+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 (*buf_alloc)(struct rpc_task *); -+ void (*buf_free)(struct rpc_task *); -+ void (*prepare_request)(struct rpc_rqst *); -+ int (*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_ops; -+ -+struct svc_serv { -+ struct svc_program *sv_program; -+ struct svc_stat *sv_stats; -+ spinlock_t sv_lock; -+ 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; -+ struct svc_pool *sv_pools; -+ const struct svc_serv_ops *sv_ops; -+ struct list_head sv_cb_list; -+ spinlock_t sv_cb_lock; -+ wait_queue_head_t sv_cb_waitq; -+ 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 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; -+ 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; -+}; -+ -+struct svc_version; -+ -+struct svc_rqst; -+ -+struct svc_process_info; -+ -+struct svc_program { -+ struct svc_program *pg_next; -+ 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; -+ struct svc_stat *pg_stats; -+ int (*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_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 = 4294967295, -+}; -+ -+struct nfs4_label { -+ uint32_t lfs; -+ uint32_t pi; -+ u32 len; -+ char *label; -+}; -+ -+typedef struct { -+ char data[8]; -+} nfs4_verifier; -+ -+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_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 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 nlm_host; -+ -+struct nfs_iostats; -+ -+struct nfs_auth_info { -+ unsigned int flavor_len; -+ rpc_authflavor_t flavors[12]; -+}; -+ -+struct nfs_fscache_key; -+ -+struct fscache_cookie; -+ -+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; -+ atomic_long_t writeback; -+ 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; -+ __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 nfs_fscache_key *fscache_key; -+ struct fscache_cookie *fscache; -+ u32 pnfs_blksize; -+ u32 attr_bitmask[3]; -+ u32 attr_bitmask_nl[3]; -+ u32 exclcreat_bitmask[3]; -+ u32 cache_consistency_bitmask[3]; -+ u32 acl_bitmask; -+ u32 fh_expire_type; -+ struct pnfs_layoutdriver_type *pnfs_curr_ld; -+ struct rpc_wait_queue roc_rpcwaitq; -+ void *pnfs_ld_data; -+ struct rb_root state_owners; -+ struct ida openowner_id; -+ struct ida lockowner_id; -+ struct list_head state_owners_lru; -+ struct list_head layouts; -+ struct list_head delegations; -+ struct list_head ss_copies; -+ 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 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; -+ const char *cl_principal; -+ 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 fscache_cookie *fscache; -+ struct net *cl_net; -+ struct list_head pending_cb_stateids; -+}; -+ -+struct pnfs_layout_segment; -+ -+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; -+ }; -+ 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; -+ __u64 prev_cookie; -+ const char *name; -+ unsigned int len; -+ int eof; -+ struct nfs_fh *fh; -+ struct nfs_fattr *fattr; -+ struct nfs4_label *label; -+ 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 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; -+ 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; -+ 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 nfs4_label *, struct inode *); -+ int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); -+ int (*lookup)(struct inode *, struct dentry *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *); -+ int (*access)(struct inode *, struct nfs_access_entry *); -+ 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 page *, 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); -+ 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); -+}; -+ -+struct nfs_access_entry { -+ struct rb_node rb_node; -+ struct list_head lru; -+ const struct cred *cred; -+ __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_fsinfo *); -+ 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 *); -+ 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; -+ int (*accept)(struct svc_rqst *, __be32 *); -+ int (*release)(struct svc_rqst *); -+ void (*domain_release)(struct auth_domain *); -+ int (*set_client)(struct svc_rqst *); -+}; -+ -+struct svc_cacherep; -+ -+struct svc_procedure; -+ -+struct svc_deferred_req; -+ -+struct svc_rqst { -+ struct list_head rq_all; -+ 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; -+ size_t rq_xprt_hlen; -+ 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 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; -+ void *rq_auth_data; -+ 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 svc_cacherep *rq_cacherep; -+ struct task_struct *rq_task; -+ spinlock_t rq_lock; -+ struct net *rq_bc_net; -+ void **rq_lease_breaker; -+}; -+ -+struct svc_pool_stats { -+ atomic_long_t packets; -+ long unsigned int sockets_queued; -+ atomic_long_t threads_woken; -+ atomic_long_t threads_timedout; -+}; -+ -+struct svc_pool { -+ unsigned int sp_id; -+ spinlock_t sp_lock; -+ struct list_head sp_sockets; -+ unsigned int sp_nrthreads; -+ struct list_head sp_all_threads; -+ struct svc_pool_stats sp_stats; -+ long unsigned int sp_flags; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct svc_serv_ops { -+ void (*svo_shutdown)(struct svc_serv *, struct net *); -+ int (*svo_function)(void *); -+ void (*svo_enqueue_xprt)(struct svc_xprt *); -+ int (*svo_setup)(struct svc_serv *, struct svc_pool *, int); -+ struct module *svo_module; -+}; -+ -+struct svc_procedure { -+ __be32 (*pc_func)(struct svc_rqst *); -+ int (*pc_decode)(struct svc_rqst *, __be32 *); -+ int (*pc_encode)(struct svc_rqst *, __be32 *); -+ void (*pc_release)(struct svc_rqst *); -+ unsigned int pc_argsize; -+ 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; -+ struct cache_deferred_req handle; -+ size_t xprt_hlen; -+ int argslen; -+ __be32 args[0]; -+}; -+ -+struct svc_process_info { -+ union { -+ int (*dispatch)(struct svc_rqst *, __be32 *); -+ struct { -+ unsigned int lovers; -+ unsigned int hivers; -+ } mismatch; -+ }; -+}; -+ -+struct svc_version { -+ u32 vs_vers; -+ u32 vs_nproc; -+ const struct svc_procedure *vs_proc; -+ 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 *, __be32 *); -+}; -+ -+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 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 inode *, 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; -+ seqcount_spinlock_t so_reclaim_seqcount; -+ struct mutex so_delegreturn_mutex; -+}; -+ -+struct core_name { -+ char *corename; -+ int used; -+ int size; -+}; -+ -+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; -+ long unsigned int offset; -+ unsigned int 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_apply { -+ struct trace_entry ent; -+ dev_t dev; -+ u64 ino; -+ loff_t pos; -+ loff_t length; -+ unsigned int flags; -+ const void *ops; -+ void *actor; -+ long unsigned int caller; -+ 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_apply {}; -+ -+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 *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_releasepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_invalidatepage)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, long unsigned int, unsigned int); -+ -+typedef void (*btf_trace_iomap_apply_dstmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply_srcmap)(void *, struct inode *, struct iomap___2 *); -+ -+typedef void (*btf_trace_iomap_apply)(void *, struct inode *, loff_t, loff_t, unsigned int, const void *, void *, long unsigned int); -+ -+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; -+ struct bio *io_bio; -+ struct bio io_inline_bio; -+}; -+ -+struct iomap_writepage_ctx; -+ -+struct iomap_writeback_ops { -+ int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t); -+ int (*prepare_ioend)(struct iomap_ioend *, int); -+ void (*discard_page)(struct page *, loff_t); -+}; -+ -+struct iomap_writepage_ctx { -+ struct iomap___2 iomap; -+ struct iomap_ioend *ioend; -+ const struct iomap_writeback_ops *ops; -+}; -+ -+typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); -+ -+struct iomap_page { -+ atomic_t read_bytes_pending; -+ atomic_t write_bytes_pending; -+ spinlock_t uptodate_lock; -+ long unsigned int uptodate[0]; -+}; -+ -+struct iomap_readpage_ctx { -+ struct page *cur_page; -+ bool cur_page_in_bio; -+ struct bio *bio; -+ struct readahead_control *rac; -+}; -+ -+enum { -+ IOMAP_WRITE_F_UNSHARE = 1, -+}; -+ -+struct iomap_dio_ops { -+ int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); -+ blk_qc_t (*submit_io)(struct inode *, struct iomap___2 *, struct bio *, loff_t); -+}; -+ -+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; -+ bool wait_for_completion; -+ union { -+ struct { -+ struct iov_iter *iter; -+ struct task_struct *waiter; -+ struct request_queue *last_queue; -+ blk_qc_t cookie; -+ } submit; -+ struct { -+ struct work_struct work; -+ } aio; -+ }; -+}; -+ -+struct fiemap_ctx { -+ struct fiemap_extent_info *fi; -+ struct iomap___2 prev; -+}; -+ -+struct iomap_swapfile_info { -+ struct iomap___2 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 { -+ 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; -+}; -+ -+struct qtree_fmt_operations { -+ void (*mem2disk_dqblk)(void *, struct dquot *); -+ void (*disk2mem_dqblk)(struct dquot *, void *); -+ int (*is_id)(void *, struct dquot *); -+}; -+ -+struct qtree_mem_dqinfo { -+ struct super_block *dqi_sb; -+ int dqi_type; -+ unsigned int dqi_blocks; -+ unsigned int dqi_free_blk; -+ unsigned int dqi_free_entry; -+ unsigned int dqi_blocksize_bits; -+ unsigned int dqi_entry_size; -+ unsigned int dqi_usable_bs; -+ unsigned int dqi_qtree_depth; -+ const struct qtree_fmt_operations *dqi_ops; -+}; -+ -+struct v2_disk_dqheader { -+ __le32 dqh_magic; -+ __le32 dqh_version; -+}; -+ -+struct v2r0_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_ihardlimit; -+ __le32 dqb_isoftlimit; -+ __le32 dqb_curinodes; -+ __le32 dqb_bhardlimit; -+ __le32 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2r1_disk_dqblk { -+ __le32 dqb_id; -+ __le32 dqb_pad; -+ __le64 dqb_ihardlimit; -+ __le64 dqb_isoftlimit; -+ __le64 dqb_curinodes; -+ __le64 dqb_bhardlimit; -+ __le64 dqb_bsoftlimit; -+ __le64 dqb_curspace; -+ __le64 dqb_btime; -+ __le64 dqb_itime; -+}; -+ -+struct v2_disk_dqinfo { -+ __le32 dqi_bgrace; -+ __le32 dqi_igrace; -+ __le32 dqi_flags; -+ __le32 dqi_blocks; -+ __le32 dqi_free_blk; -+ __le32 dqi_free_entry; -+}; -+ -+struct qt_disk_dqdbheader { -+ __le32 dqdh_next_free; -+ __le32 dqdh_prev_free; -+ __le16 dqdh_entries; -+ __le16 dqdh_pad1; -+ __le32 dqdh_pad2; -+}; -+ -+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; -+ char: 8; -+ __u16 qs_flags; -+ __s8 qs_pad; -+ int: 24; -+ 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; -+} __attribute__((packed)); -+ -+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 proc_maps_private { -+ struct inode *inode; -+ struct task_struct *task; -+ struct mm_struct *mm; -+ struct vm_area_struct *tail_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; -+ u64 pss; -+ u64 pss_anon; -+ u64 pss_file; -+ u64 pss_shmem; -+ u64 pss_locked; -+ u64 swap_pss; -+ bool check_shmem_swap; -+}; -+ -+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 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 pde_opener { -+ struct list_head lh; -+ struct file *file; -+ bool closing; -+ struct completion *c; -+}; -+ -+enum { -+ BIAS = 2147483648, -+}; -+ -+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___2 = 0, -+ Opt_hidepid = 1, -+ Opt_subset = 2, -+}; -+ -+struct genradix_root; -+ -+struct __genradix { -+ struct genradix_root *root; -+}; -+ -+struct syscall_info { -+ __u64 sp; -+ struct seccomp_data data; -+}; -+ -+typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); -+ -+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; -+}; -+ -+struct fd_data { -+ fmode_t mode; -+ unsigned int fd; -+}; -+ -+struct sysctl_alias { -+ const char *kernel_param; -+ const char *sysctl_param; -+}; -+ -+struct seq_net_private { -+ struct net *net; -+}; -+ -+struct bpf_iter_aux_info___2; -+ -+struct vmcore { -+ struct list_head list; -+ long long unsigned int paddr; -+ long long unsigned int size; -+ loff_t offset; -+}; -+ -+struct vmcoredd_node { -+ struct list_head list; -+ void *buf; -+ unsigned int size; -+}; -+ -+typedef struct elf32_hdr Elf32_Ehdr; -+ -+typedef struct elf32_phdr Elf32_Phdr; -+ -+typedef struct elf32_note Elf32_Nhdr; -+ -+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 vmcoredd_data { -+ char dump_name[44]; -+ unsigned int size; -+ int (*vmcoredd_callback)(struct vmcoredd_data *, void *); -+}; -+ -+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_super_info { -+ struct super_block *sb; -+ struct kernfs_root *root; -+ const void *ns; -+ struct list_head node; -+}; -+ -+enum kernfs_node_flag { -+ KERNFS_ACTIVATED = 16, -+ KERNFS_NS = 32, -+ KERNFS_HAS_SEQ_SHOW = 64, -+ KERNFS_HAS_MMAP = 128, -+ KERNFS_LOCKDEP = 256, -+ KERNFS_SUICIDAL = 1024, -+ KERNFS_SUICIDED = 2048, -+ KERNFS_EMPTY_DIR = 4096, -+ KERNFS_HAS_RELEASE = 8192, -+}; -+ -+struct kernfs_open_node { -+ atomic_t refcnt; -+ atomic_t event; -+ wait_queue_head_t poll; -+ struct list_head files; -+}; -+ -+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 *); -+ int (*commit_item)(struct config_item *); -+ void (*disconnect_notify)(struct config_group *, struct config_item *); -+ void (*drop_item)(struct config_group *, struct config_item *); -+}; -+ -+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; -+}; -+ -+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 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___2 = 0, -+ Opt_gid___3 = 1, -+ Opt_mode___2 = 2, -+ Opt_ptmxmode = 3, -+ Opt_newinstance = 4, -+ Opt_max = 5, -+ Opt_err = 6, -+}; -+ -+struct pts_fs_info { -+ struct ida allocated_ptys; -+ struct pts_mount_opts mount_opts; -+ struct super_block *sb; -+ struct dentry *ptmx_dentry; -+}; -+ -+struct ramfs_mount_opts { -+ umode_t mode; -+}; -+ -+struct ramfs_fs_info { -+ struct ramfs_mount_opts mount_opts; -+}; -+ -+enum ramfs_param { -+ Opt_mode___3 = 0, -+}; -+ -+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___4 = 0, -+ Opt_min_size = 1, -+ Opt_mode___4 = 2, -+ Opt_nr_inodes___2 = 3, -+ Opt_pagesize = 4, -+ Opt_size___2 = 5, -+ Opt_uid___3 = 6, -+}; -+ -+struct getdents_callback___2 { -+ struct dir_context ctx; -+ char *name; -+ u64 ino; -+ int found; -+ int sequence; -+}; -+ -+typedef u16 wchar_t; -+ -+typedef u32 unicode_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; -+}; -+ -+enum utf16_endian { -+ UTF16_HOST_ENDIAN = 0, -+ UTF16_LITTLE_ENDIAN = 1, -+ UTF16_BIG_ENDIAN = 2, -+}; -+ -+struct utf8_table { -+ int cmask; -+ int cval; -+ int shift; -+ long int lmask; -+ long int lval; -+}; -+ -+typedef unsigned int autofs_wqt_t; -+ -+struct autofs_sb_info; -+ -+struct autofs_info { -+ struct dentry *dentry; -+ struct inode *inode; -+ int flags; -+ struct completion expire_complete; -+ struct list_head active; -+ struct list_head expiring; -+ struct autofs_sb_info *sbi; -+ 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; -+}; -+ -+enum { -+ Opt_err___2 = 0, -+ Opt_fd = 1, -+ Opt_uid___4 = 2, -+ Opt_gid___5 = 3, -+ Opt_pgrp = 4, -+ Opt_minproto = 5, -+ Opt_maxproto = 6, -+ Opt_indirect = 7, -+ Opt_direct = 8, -+ Opt_offset = 9, -+ Opt_strictexpire = 10, -+ Opt_ignore = 11, -+}; -+ -+struct autofs_packet_hdr { -+ int proto_version; -+ int type; -+}; -+ -+struct autofs_packet_expire { -+ struct autofs_packet_hdr hdr; -+ int len; -+ char name[256]; -+}; -+ -+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_notify { -+ NFY_NONE = 0, -+ NFY_MOUNT = 1, -+ NFY_EXPIRE = 2, -+}; -+ -+enum { -+ AUTOFS_IOC_EXPIRE_MULTI_CMD = 102, -+ AUTOFS_IOC_PROTOSUBVER_CMD = 103, -+ AUTOFS_IOC_ASKUMOUNT_CMD = 112, -+}; -+ -+struct autofs_packet_missing { -+ struct autofs_packet_hdr hdr; -+ autofs_wqt_t wait_queue_token; -+ int len; -+ char name[256]; -+}; -+ -+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 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)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); -+ -+struct debugfs_fsdata { -+ const struct file_operations *real_fops; -+ refcount_t active_users; -+ struct completion active_users_drained; -+}; -+ -+struct debugfs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+enum { -+ Opt_uid___5 = 0, -+ Opt_gid___6 = 1, -+ Opt_mode___5 = 2, -+ Opt_err___3 = 3, -+}; -+ -+struct debugfs_fs_info { -+ struct debugfs_mount_opts mount_opts; -+}; -+ -+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; -+}; -+ -+struct debugfs_devm_entry { -+ int (*read)(struct seq_file *, void *); -+ struct device *dev; -+}; -+ -+struct tracefs_dir_ops { -+ int (*mkdir)(const char *); -+ int (*rmdir)(const char *); -+}; -+ -+struct tracefs_mount_opts { -+ kuid_t uid; -+ kgid_t gid; -+ umode_t mode; -+}; -+ -+struct tracefs_fs_info { -+ struct tracefs_mount_opts mount_opts; -+}; -+ -+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; -+ int count; -+ enum kmsg_dump_reason reason; -+ unsigned int part; -+ bool compressed; -+}; -+ -+struct pstore_info { -+ struct module *owner; -+ const char *name; -+ struct semaphore 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___4 = 1, -+}; -+ -+struct crypto_comp { -+ struct crypto_tfm base; -+}; -+ -+struct pstore_zbackend { -+ int (*zbufsize)(size_t); -+ const char *name; -+}; -+ -+struct efi_variable { -+ efi_char16_t VariableName[512]; -+ efi_guid_t VendorGuid; -+ long unsigned int DataSize; -+ __u8 Data[1024]; -+ efi_status_t Status; -+ __u32 Attributes; -+} __attribute__((packed)); -+ -+struct efivar_entry { -+ struct efi_variable var; -+ struct list_head list; -+ struct kobject kobj; -+ bool scanning; -+ bool deleting; -+}; -+ -+typedef unsigned int __kernel_mode_t; -+ -+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; -+}; -+ -+typedef s32 compat_key_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; -+ short unsigned int mode; -+ short unsigned int __pad1; -+ short unsigned int seq; -+ short unsigned int __pad2; -+ compat_ulong_t unused1; -+ compat_ulong_t unused2; -+}; -+ -+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 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 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 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_msgseg { -+ struct msg_msgseg *next; -+}; -+ -+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; -+}; -+ -+typedef s32 compat_ssize_t; -+ -+typedef u16 compat_ipc_pid_t; -+ -+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 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[1]; -+}; -+ -+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; -+}; -+ -+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 sem_undo_list { -+ refcount_t refcnt; -+ spinlock_t lock; -+ struct list_head list_proc; -+}; -+ -+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: 32; -+ 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 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; -+ 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 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_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; -+ long: 64; -+ 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; -+}; -+ -+struct compat_ipc_kludge { -+ compat_uptr_t msgp; -+ compat_long_t msgtyp; -+}; -+ -+struct mqueue_fs_context { -+ struct ipc_namespace *ipc_ns; -+}; -+ -+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]; -+}; -+ -+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; -+}; -+ -+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___2 watch; -+ __u32 key_id; -+ __u32 aux; -+}; -+ -+struct assoc_array_edit; -+ -+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___2 { -+ 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]; -+}; -+ -+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; -+}; -+ -+struct keyring_read_iterator_context { -+ size_t buflen; -+ size_t count; -+ key_serial_t *buffer; -+}; -+ -+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]; -+}; -+ -+struct user_key_payload { -+ struct callback_head rcu; -+ short unsigned int datalen; -+ long: 48; -+ char data[0]; -+}; -+ -+struct compat_keyctl_kdf_params { -+ compat_uptr_t hashname; -+ compat_uptr_t otherinfo; -+ __u32 otherinfolen; -+ __u32 __spare[8]; -+}; -+ -+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 { -+ 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 *); -+ unsigned int reqsize; -+ struct crypto_alg base; -+}; -+ -+struct dh { -+ void *key; -+ void *p; -+ void *q; -+ void *g; -+ unsigned int key_size; -+ unsigned int p_size; -+ unsigned int q_size; -+ unsigned int g_size; -+}; -+ -+struct dh_completion { -+ struct completion completion; -+ int err; -+}; -+ -+struct kdf_sdesc { -+ struct shash_desc shash; -+ char ctx[0]; -+}; -+ -+enum { -+ Opt_err___5 = 0, -+ Opt_enc = 1, -+ Opt_hash = 2, -+}; -+ -+enum chacha20poly1305_lengths { -+ XCHACHA20POLY1305_NONCE_SIZE = 24, -+ CHACHA20POLY1305_KEY_SIZE = 32, -+ CHACHA20POLY1305_AUTHTAG_SIZE = 16, -+}; -+ -+enum { -+ big_key_data = 0, -+ big_key_path = 1, -+ big_key_path_2nd_part = 2, -+ big_key_len = 3, -+}; -+ -+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__LAST = 20, -+}; -+ -+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)(); -+ int (*seal)(struct trusted_key_payload *, char *); -+ int (*unseal)(struct trusted_key_payload *, char *); -+ int (*get_random)(unsigned char *, size_t); -+ void (*exit)(); -+}; -+ -+struct trusted_key_source { -+ char *name; -+ struct trusted_key_ops *ops; -+}; -+ -+enum { -+ Opt_err___6 = 0, -+ Opt_new = 1, -+ Opt_load = 2, -+ Opt_update = 3, -+}; -+ -+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 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); -+ 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[3]; -+ const struct attribute_group *groups[8]; -+ unsigned int groups_cnt; -+ u32 nr_allocated_banks; -+ struct tpm_bank_info *allocated_banks; -+ 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; -+}; -+ -+struct tpm_header { -+ __be16 tag; -+ __be32 length; -+ union { -+ __be32 ordinal; -+ __be32 return_code; -+ }; -+} __attribute__((packed)); -+ -+enum tpm_buf_flags { -+ TPM_BUF_OVERFLOW = 1, -+}; -+ -+struct tpm_buf { -+ unsigned int flags; -+ u8 *data; -+}; -+ -+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 osapsess { -+ uint32_t handle; -+ unsigned char secret[20]; -+ unsigned char enonce[20]; -+}; -+ -+enum { -+ SEAL_keytype = 1, -+ SRK_keytype = 4, -+}; -+ -+struct sdesc { -+ struct shash_desc shash; -+ char ctx[0]; -+}; -+ -+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___2 = 7, -+ Opt_policydigest = 8, -+ Opt_policyhandle = 9, -+}; -+ -+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 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_md2WithRSAEncryption = 11, -+ OID_md3WithRSAEncryption = 12, -+ OID_md4WithRSAEncryption = 13, -+ OID_sha1WithRSAEncryption = 14, -+ OID_sha256WithRSAEncryption = 15, -+ OID_sha384WithRSAEncryption = 16, -+ OID_sha512WithRSAEncryption = 17, -+ OID_sha224WithRSAEncryption = 18, -+ OID_data = 19, -+ OID_signed_data = 20, -+ OID_email_address = 21, -+ OID_contentType = 22, -+ OID_messageDigest = 23, -+ OID_signingTime = 24, -+ OID_smimeCapabilites = 25, -+ OID_smimeAuthenticatedAttrs = 26, -+ OID_md2 = 27, -+ OID_md4 = 28, -+ OID_md5 = 29, -+ OID_mskrb5 = 30, -+ OID_krb5 = 31, -+ OID_krb5u2u = 32, -+ OID_msIndirectData = 33, -+ OID_msStatementType = 34, -+ OID_msSpOpusInfo = 35, -+ OID_msPeImageDataObjId = 36, -+ OID_msIndividualSPKeyPurpose = 37, -+ OID_msOutlookExpress = 38, -+ OID_ntlmssp = 39, -+ OID_spnego = 40, -+ OID_certAuthInfoAccess = 41, -+ OID_sha1 = 42, -+ OID_id_ansip384r1 = 43, -+ OID_sha256 = 44, -+ OID_sha384 = 45, -+ OID_sha512 = 46, -+ OID_sha224 = 47, -+ OID_commonName = 48, -+ OID_surname = 49, -+ OID_countryName = 50, -+ OID_locality = 51, -+ OID_stateOrProvinceName = 52, -+ OID_organizationName = 53, -+ OID_organizationUnitName = 54, -+ OID_title = 55, -+ OID_description = 56, -+ OID_name = 57, -+ OID_givenName = 58, -+ OID_initials = 59, -+ OID_generationalQualifier = 60, -+ OID_subjectKeyIdentifier = 61, -+ OID_keyUsage = 62, -+ OID_subjectAltName = 63, -+ OID_issuerAltName = 64, -+ OID_basicConstraints = 65, -+ OID_crlDistributionPoints = 66, -+ OID_certPolicies = 67, -+ OID_authorityKeyIdentifier = 68, -+ OID_extKeyUsage = 69, -+ OID_gostCPSignA = 70, -+ OID_gostCPSignB = 71, -+ OID_gostCPSignC = 72, -+ OID_gost2012PKey256 = 73, -+ OID_gost2012PKey512 = 74, -+ OID_gost2012Digest256 = 75, -+ OID_gost2012Digest512 = 76, -+ OID_gost2012Signature256 = 77, -+ OID_gost2012Signature512 = 78, -+ OID_gostTC26Sign256A = 79, -+ OID_gostTC26Sign256B = 80, -+ OID_gostTC26Sign256C = 81, -+ OID_gostTC26Sign256D = 82, -+ OID_gostTC26Sign512A = 83, -+ OID_gostTC26Sign512B = 84, -+ OID_gostTC26Sign512C = 85, -+ OID_sm2 = 86, -+ OID_sm3 = 87, -+ OID_SM2_with_SM3 = 88, -+ OID_sm3WithRSAEncryption = 89, -+ OID_TPMLoadableKey = 90, -+ OID_TPMImportableKey = 91, -+ OID_TPMSealedData = 92, -+ OID__NR = 93, -+}; -+ -+enum tpm_algorithms { -+ TPM_ALG_ERROR = 0, -+ TPM_ALG_SHA1 = 4, -+ 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, -+}; -+ -+enum tpm2_structures { -+ TPM2_ST_NO_SESSIONS = 32769, -+ TPM2_ST_SESSIONS = 32770, -+}; -+ -+enum tpm2_return_codes { -+ TPM2_RC_SUCCESS = 0, -+ TPM2_RC_HASH = 131, -+ TPM2_RC_HANDLE = 139, -+ TPM2_RC_INITIALIZE = 256, -+ TPM2_RC_FAILURE = 257, -+ TPM2_RC_DISABLED = 288, -+ TPM2_RC_COMMAND_CODE = 323, -+ TPM2_RC_TESTING = 2314, -+ TPM2_RC_REFERENCE_H0 = 2320, -+ TPM2_RC_RETRY = 2338, -+}; -+ -+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_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 tpm2_permanent_handles { -+ TPM2_RS_PW = 1073741833, -+}; -+ -+enum tpm2_object_attributes { -+ TPM2_OA_FIXED_TPM = 2, -+ TPM2_OA_FIXED_PARENT = 16, -+ TPM2_OA_USER_WITH_AUTH = 64, -+}; -+ -+enum tpm2_session_attributes { -+ TPM2_SA_CONTINUE_SESSION = 1, -+}; -+ -+struct tpm2_hash { -+ unsigned int crypto_id; -+ unsigned int tpm_id; -+}; -+ -+struct tpm2_key_context { -+ u32 parent; -+ const u8 *pub; -+ u32 pub_len; -+ const u8 *priv; -+ u32 priv_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, -+}; -+ -+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 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___8 = 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 ecryptfs_token_types { -+ ECRYPTFS_PASSWORD = 0, -+ ECRYPTFS_PRIVATE_KEY = 1, -+}; -+ -+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 sctp_endpoint; -+ -+union security_list_options { -+ int (*binder_set_context_mgr)(struct task_struct *); -+ int (*binder_transaction)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_binder)(struct task_struct *, struct task_struct *); -+ int (*binder_transfer_file)(struct task_struct *, struct task_struct *, struct file *); -+ int (*ptrace_access_check)(struct task_struct *, unsigned int); -+ int (*ptrace_traceme)(struct task_struct *); -+ int (*capget)(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, 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 *, struct file *); -+ int (*bprm_check_security)(struct linux_binprm *); -+ void (*bprm_committing_creds)(struct linux_binprm *); -+ void (*bprm_committed_creds)(struct linux_binprm *); -+ 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)(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 (*sb_add_mnt_opt)(const char *, const char *, int, void **); -+ int (*move_mount)(const struct path *, const struct path *); -+ int (*dentry_init_security)(struct dentry *, int, const struct qstr *, 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 *); -+ int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, const char **, void **, size_t *); -+ int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); -+ int (*inode_create)(struct inode *, struct dentry *, umode_t); -+ 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 dentry *, struct iattr *); -+ int (*inode_getattr)(const struct path *); -+ int (*inode_setxattr)(struct user_namespace *, 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 user_namespace *, struct dentry *, const char *); -+ int (*inode_need_killpriv)(struct dentry *); -+ int (*inode_killpriv)(struct user_namespace *, struct dentry *); -+ int (*inode_getsecurity)(struct user_namespace *, 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)(const char *); -+ int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); -+ int (*file_permission)(struct file *, int); -+ int (*file_alloc_security)(struct file *); -+ void (*file_free_security)(struct file *); -+ int (*file_ioctl)(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 (*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_setpgid)(struct task_struct *, pid_t); -+ int (*task_getpgid)(struct task_struct *); -+ int (*task_getsid)(struct task_struct *); -+ void (*task_getsecid_subj)(struct task_struct *, 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 (*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 (*getprocattr)(struct task_struct *, 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 (*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 *, char *, int *, 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)(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 (*secmark_refcount_dec)(); -+ void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); -+ int (*tun_dev_alloc_security)(void **); -+ void (*tun_dev_free_security)(void *); -+ int (*tun_dev_create)(); -+ int (*tun_dev_attach_queue)(void *); -+ int (*tun_dev_attach)(struct sock *, void *); -+ int (*tun_dev_open)(void *); -+ int (*sctp_assoc_request)(struct sctp_endpoint *, struct sk_buff *); -+ int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); -+ void (*sctp_sk_clone)(struct sctp_endpoint *, 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 **); -+ void (*ib_free_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); -+ void (*key_free)(struct key *); -+ int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); -+ int (*key_getsecurity)(struct key *, char **); -+ int (*audit_rule_init)(u32, u32, char *, void **); -+ 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_alloc_security)(struct bpf_map *); -+ void (*bpf_map_free_security)(struct bpf_map *); -+ int (*bpf_prog_alloc_security)(struct bpf_prog_aux *); -+ void (*bpf_prog_free_security)(struct bpf_prog_aux *); -+ int (*locked_down)(enum lockdown_reason); -+ int (*lock_kernel_down)(const char *, enum lockdown_reason); -+ int (*perf_event_open)(struct perf_event_attr *, int); -+ int (*perf_event_alloc)(struct perf_event *); -+ void (*perf_event_free)(struct perf_event *); -+ int (*perf_event_read)(struct perf_event *); -+ int (*perf_event_write)(struct perf_event *); -+}; -+ -+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_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 sb_add_mnt_opt; -+ struct hlist_head move_mount; -+ struct hlist_head dentry_init_security; -+ struct hlist_head dentry_create_files_as; -+ struct hlist_head path_notify; -+ struct hlist_head inode_alloc_security; -+ struct hlist_head inode_free_security; -+ struct hlist_head inode_init_security; -+ struct hlist_head inode_init_security_anon; -+ struct hlist_head inode_create; -+ 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_getattr; -+ 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_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_getsecid; -+ struct hlist_head inode_copy_up; -+ struct hlist_head inode_copy_up_xattr; -+ struct hlist_head kernfs_init_security; -+ struct hlist_head file_permission; -+ struct hlist_head file_alloc_security; -+ struct hlist_head file_free_security; -+ struct hlist_head file_ioctl; -+ 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 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 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_setpgid; -+ struct hlist_head task_getpgid; -+ struct hlist_head task_getsid; -+ struct hlist_head task_getsecid_subj; -+ struct hlist_head task_getsecid_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 ipc_permission; -+ struct hlist_head ipc_getsecid; -+ 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 getprocattr; -+ struct hlist_head setprocattr; -+ struct hlist_head ismaclabel; -+ struct hlist_head secid_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_free_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 ib_pkey_access; -+ struct hlist_head ib_endport_manage_subnet; -+ struct hlist_head ib_alloc_security; -+ struct hlist_head ib_free_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_free; -+ struct hlist_head key_permission; -+ struct hlist_head key_getsecurity; -+ 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_alloc_security; -+ struct hlist_head bpf_map_free_security; -+ struct hlist_head bpf_prog_alloc_security; -+ struct hlist_head bpf_prog_free_security; -+ 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_free; -+ struct hlist_head perf_event_read; -+ struct hlist_head perf_event_write; -+}; -+ -+struct security_hook_list { -+ struct hlist_node list; -+ struct hlist_head *head; -+ union security_list_options hook; -+ char *lsm; -+}; -+ -+enum lsm_order { -+ LSM_ORDER_FIRST = 4294967295, -+ LSM_ORDER_MUTABLE = 0, -+}; -+ -+struct lsm_info { -+ const char *name; -+ enum lsm_order order; -+ long unsigned int flags; -+ int *enabled; -+ int (*init)(); -+ struct lsm_blob_sizes *blobs; -+}; -+ -+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_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_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, -+}; -+ -+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, -+}; -+ -+enum ethtool_link_ext_substate_cable_issue { -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, -+ ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, -+}; -+ -+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_ts_info { -+ __u32 cmd; -+ __u32 so_timestamping; -+ __s32 phc_index; -+ __u32 tx_types; -+ __u32 tx_reserved[3]; -+ __u32 rx_filters; -+ __u32 rx_reserved[3]; -+}; -+ -+struct ethtool_fecparam { -+ __u32 cmd; -+ __u32 active_fec; -+ __u32 fec; -+ __u32 reserved; -+}; -+ -+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_MASK_NBITS = 92, -+}; -+ -+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 reserved1[1]; -+ __u32 reserved[7]; -+ __u32 link_mode_masks[0]; -+}; -+ -+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; -+ u8 __link_ext_substate; -+ }; -+}; -+ -+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_eth_mac_stats { -+ 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 ethtool_eth_phy_stats { -+ u64 SymbolErrorDuringCarrier; -+}; -+ -+struct ethtool_eth_ctrl_stats { -+ u64 MACControlFramesTransmitted; -+ u64 MACControlFramesReceived; -+ u64 UnsupportedOpcodesReceived; -+}; -+ -+struct ethtool_pause_stats { -+ u64 tx_pause_frames; -+ u64 rx_pause_frames; -+}; -+ -+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 { -+ u64 undersize_pkts; -+ u64 oversize_pkts; -+ u64 fragments; -+ u64 jabbers; -+ u64 hist[10]; -+ u64 hist_tx[10]; -+}; -+ -+struct ethtool_module_eeprom { -+ u32 offset; -+ u32 length; -+ u8 page; -+ u8 bank; -+ u8 i2c_address; -+ u8 *data; -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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_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_state; -+ -+struct selinux_audit_data { -+ u32 ssid; -+ u32 tsid; -+ u16 tclass; -+ u32 requested; -+ u32 audited; -+ u32 denied; -+ int result; -+ struct selinux_state *state; -+}; -+ -+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; -+ } u; -+ union { -+ struct selinux_audit_data *selinux_audit_data; -+ }; -+}; -+ -+enum { -+ POLICYDB_CAPABILITY_NETPEER = 0, -+ POLICYDB_CAPABILITY_OPENPERM = 1, -+ POLICYDB_CAPABILITY_EXTSOCKCLASS = 2, -+ POLICYDB_CAPABILITY_ALWAYSNETWORK = 3, -+ POLICYDB_CAPABILITY_CGROUPSECLABEL = 4, -+ POLICYDB_CAPABILITY_NNP_NOSUID_TRANSITION = 5, -+ POLICYDB_CAPABILITY_GENFS_SECLABEL_SYMLINKS = 6, -+ __POLICYDB_CAPABILITY_MAX = 7, -+}; -+ -+struct selinux_avc; -+ -+struct selinux_policy; -+ -+struct selinux_state { -+ bool enforcing; -+ bool checkreqprot; -+ bool initialized; -+ bool policycap[7]; -+ struct page *status_page; -+ struct mutex status_lock; -+ struct selinux_avc *avc; -+ struct selinux_policy *policy; -+ struct mutex policy_mutex; -+}; -+ -+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 selinux_avc { -+ unsigned int avc_cache_threshold; -+ struct avc_cache avc_cache; -+}; -+ -+struct av_decision { -+ u32 allowed; -+ u32 auditallow; -+ u32 auditdeny; -+ u32 seqno; -+ u32 flags; -+}; -+ -+struct extended_perms_data { -+ u32 p[8]; -+}; -+ -+struct extended_perms_decision { -+ u8 used; -+ u8 driver; -+ struct extended_perms_data *allowed; -+ struct extended_perms_data *auditallow; -+ struct extended_perms_data *dontaudit; -+}; -+ -+struct extended_perms { -+ u16 len; -+ struct extended_perms_data drivers; -+}; -+ -+struct avc_cache_stats { -+ unsigned int lookups; -+ unsigned int misses; -+ unsigned int allocations; -+ unsigned int reclaims; -+ unsigned int frees; -+}; -+ -+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; -+ u32 tcontext; -+ u32 tclass; -+}; -+ -+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_callback_node { -+ int (*callback)(u32); -+ u32 events; -+ struct avc_callback_node *next; -+}; -+ -+typedef __u16 __sum16; -+ -+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 { -+ struct hlist_node node; -+ int hashent; -+ 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; -+}; -+ -+struct crypto_shash___2; -+ -+struct sctp_hmac_algo_param; -+ -+struct sctp_chunks_param; -+ -+struct sctp_endpoint { -+ struct sctp_ep_common base; -+ struct list_head asocs; -+ __u8 secret_key[32]; -+ __u8 *digest; -+ __u32 sndbuf_policy; -+ __u32 rcvbuf_policy; -+ struct crypto_shash___2 **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; -+ u32 secid; -+ u32 peer_secid; -+}; -+ -+struct sockaddr_in6 { -+ short unsigned int sin6_family; -+ __be16 sin6_port; -+ __be32 sin6_flowinfo; -+ struct in6_addr sin6_addr; -+ __u32 sin6_scope_id; -+}; -+ -+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 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 *); -+}; -+ -+enum nf_hook_ops_type { -+ NF_HOOK_OP_UNDEFINED = 0, -+ NF_HOOK_OP_NF_TABLES = 1, -+}; -+ -+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 = 4294966846, -+ NF_IP_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP_PRI_RAW = 4294966996, -+ NF_IP_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP_PRI_CONNTRACK = 4294967096, -+ NF_IP_PRI_MANGLE = 4294967146, -+ NF_IP_PRI_NAT_DST = 4294967196, -+ 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 = 4294966846, -+ NF_IP6_PRI_CONNTRACK_DEFRAG = 4294966896, -+ NF_IP6_PRI_RAW = 4294966996, -+ NF_IP6_PRI_SELINUX_FIRST = 4294967071, -+ NF_IP6_PRI_CONNTRACK = 4294967096, -+ NF_IP6_PRI_MANGLE = 4294967146, -+ NF_IP6_PRI_NAT_DST = 4294967196, -+ 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 socket_alloc { -+ struct socket socket; -+ struct inode vfs_inode; -+}; -+ -+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_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; -+ __be32 inet_saddr; -+ __s16 uc_ttl; -+ __u16 cmsg_flags; -+ __be16 inet_sport; -+ __u16 inet_id; -+ struct ip_options_rcu *inet_opt; -+ int rx_dst_ifindex; -+ __u8 tos; -+ __u8 min_ttl; -+ __u8 mc_ttl; -+ __u8 pmtudisc; -+ __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 rcv_tos; -+ __u8 convert_csum; -+ int uc_index; -+ int mc_index; -+ __be32 mc_addr; -+ 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; -+}; -+ -+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; -+ __be32 flow_label; -+ __u32 frag_size; -+ __u16 __unused_1: 7; -+ __s16 hop_limit: 9; -+ __u16 mc_loop: 1; -+ __u16 __unused_2: 6; -+ __s16 mcast_hops: 9; -+ 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; -+ __u16 recverr: 1; -+ __u16 sndflow: 1; -+ __u16 repflow: 1; -+ __u16 pmtudisc: 3; -+ __u16 padding: 1; -+ __u16 srcprefs: 3; -+ __u16 dontfrag: 1; -+ __u16 autoflowlabel: 1; -+ __u16 autoflowlabel_set: 1; -+ __u16 mc_all: 1; -+ __u16 recverr_rfc4884: 1; -+ __u16 rtalert_isolate: 1; -+ __u8 min_hopcount; -+ __u8 tclass; -+ __be32 rcv_flowinfo; -+ __u32 dst_cookie; -+ __u32 rx_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 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 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; -+}; -+ -+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; -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+}; -+ -+struct udphdr { -+ __be16 source; -+ __be16 dest; -+ __be16 len; -+ __sum16 check; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct inet_skb_parm { -+ int iif; -+ struct ip_options opt; -+ u16 flags; -+ u16 frag_max_size; -+}; -+ -+struct tty_file_private { -+ struct tty_struct *tty; -+ struct file *file; -+ struct list_head list; -+}; -+ -+struct netlbl_lsm_cache { -+ refcount_t refcount; -+ void (*free)(const void *); -+ void *data; -+}; -+ -+struct netlbl_lsm_catmap { -+ u32 startbit; -+ u64 bitmap[4]; -+ struct netlbl_lsm_catmap *next; -+}; -+ -+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 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 = 13, -+ DCCP_PASSIVE_CLOSEREQ = 14, -+ DCCP_MAX_STATES = 15, -+}; -+ -+typedef __s32 sctp_assoc_t; -+ -+enum sctp_msg_flags { -+ MSG_NOTIFICATION = 32768, -+}; -+ -+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; -+ char: 8; -+} __attribute__((packed)); -+ -+struct sctphdr { -+ __be16 source; -+ __be16 dest; -+ __be32 vtag; -+ __le32 checksum; -+}; -+ -+struct sctp_chunkhdr { -+ __u8 type; -+ __u8 flags; -+ __be16 length; -+}; -+ -+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_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; -+ __u8 payload[0]; -+}; -+ -+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; -+ __u8 params[0]; -+}; -+ -+struct sctp_init_chunk { -+ struct sctp_chunkhdr chunk_hdr; -+ struct sctp_inithdr init_hdr; -+}; -+ -+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_gap_ack_block { -+ __be16 start; -+ __be16 end; -+}; -+ -+union sctp_sack_variable { -+ struct sctp_gap_ack_block gab; -+ __be32 dup; -+}; -+ -+struct sctp_sackhdr { -+ __be32 cum_tsn_ack; -+ __be32 a_rwnd; -+ __be16 num_gap_ack_blocks; -+ __be16 num_dup_tsns; -+ union sctp_sack_variable variable[0]; -+}; -+ -+struct sctp_heartbeathdr { -+ struct sctp_paramhdr info; -+}; -+ -+struct sctp_shutdownhdr { -+ __be32 cum_tsn_ack; -+}; -+ -+struct sctp_errhdr { -+ __be16 cause; -+ __be16 length; -+ __u8 variable[0]; -+}; -+ -+struct sctp_ecnehdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_cwrhdr { -+ __be32 lowest_tsn; -+}; -+ -+struct sctp_fwdtsn_skip { -+ __be16 stream; -+ __be16 ssn; -+}; -+ -+struct sctp_fwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_fwdtsn_skip skip[0]; -+}; -+ -+struct sctp_ifwdtsn_skip { -+ __be16 stream; -+ __u8 reserved; -+ __u8 flags; -+ __be32 mid; -+}; -+ -+struct sctp_ifwdtsn_hdr { -+ __be32 new_cum_tsn; -+ struct sctp_ifwdtsn_skip skip[0]; -+}; -+ -+struct sctp_addip_param { -+ struct sctp_paramhdr param_hdr; -+ __be32 crr_id; -+}; -+ -+struct sctp_addiphdr { -+ __be32 serial; -+ __u8 params[0]; -+}; -+ -+struct sctp_authhdr { -+ __be16 shkey_id; -+ __be16 hmac_id; -+ __u8 hmac[0]; -+}; -+ -+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_init_chunk peer_init[0]; -+}; -+ -+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 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_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 hostname_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]; -+ 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_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_scope { -+ SCTP_SCOPE_GLOBAL = 0, -+ SCTP_SCOPE_PRIVATE = 1, -+ SCTP_SCOPE_LINK = 2, -+ SCTP_SCOPE_LOOPBACK = 3, -+ SCTP_SCOPE_UNUSABLE = 4, -+}; -+ -+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 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; -+ int: 32; -+ struct sctp_pf *pf; -+ struct crypto_shash___2 *hmac; -+ char *sctp_hmac_alg; -+ struct sctp_endpoint *ep; -+ struct sctp_bind_bucket *bind_hash; -+ __u16 default_stream; -+ short: 16; -+ __u32 default_ppid; -+ __u16 default_flags; -+ short: 16; -+ __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; -+ short: 16; -+ __u32 flowlabel; -+ __u8 dscp; -+ char: 8; -+ __u16 pf_retrans; -+ __u16 ps_retrans; -+ short: 16; -+ __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; -+ short: 16; -+ 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; -+ int: 22; -+ atomic_t pd_mode; -+ struct sk_buff_head pd_lobby; -+ struct list_head auto_asconf_list; -+ int do_auto_asconf; -+ int: 32; -+} __attribute__((packed)); -+ -+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_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 (*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 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 { -+ __u32 last_rtx_chunks; -+ __u16 pmtu; -+ __u16 probe_size; -+ __u16 probe_high; -+ __u8 probe_count: 3; -+ __u8 raise_count: 5; -+ __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; -+}; -+ -+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 task_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; -+}; -+ -+struct file_security_struct { -+ u32 sid; -+ u32 fown_sid; -+ u32 isid; -+ u32 pseqno; -+}; -+ -+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; -+}; -+ -+struct msg_security_struct { -+ u32 sid; -+}; -+ -+struct ipc_security_struct { -+ u16 sclass; -+ u32 sid; -+}; -+ -+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 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 { -+ const char *fscontext; -+ const char *context; -+ const char *rootcontext; -+ const char *defcontext; -+}; -+ -+enum { -+ Opt_error___2 = 4294967295, -+ Opt_context = 0, -+ Opt_defcontext = 1, -+ Opt_fscontext = 2, -+ Opt_rootcontext = 3, -+ Opt_seclabel = 4, -+}; -+ -+struct selinux_policy_convert_data; -+ -+struct selinux_load_state { -+ struct selinux_policy *policy; -+ struct selinux_policy_convert_data *convert_data; -+}; -+ -+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; -+ unsigned 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 selinux_state *state; -+ struct super_block *sb; -+}; -+ -+struct policy_load_memory { -+ size_t len; -+ void *data; -+}; -+ -+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; -+}; -+ -+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_MAX = 39, -+}; -+ -+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_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_MAX = 119, -+}; -+ -+struct nlmsg_perm { -+ u16 nlmsg_type; -+ u32 perm; -+}; -+ -+struct netif_security_struct { -+ 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 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 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 hashtab_node { -+ void *key; -+ void *datum; -+ struct hashtab_node *next; -+}; -+ -+struct hashtab { -+ struct hashtab_node **htable; -+ u32 size; -+ u32 nel; -+}; -+ -+struct hashtab_info { -+ u32 slots_used; -+ u32 max_chain_len; -+}; -+ -+struct hashtab_key_params { -+ u32 (*hash)(const void *); -+ int (*cmp)(const void *, const void *); -+}; -+ -+struct symtab { -+ struct hashtab table; -+ u32 nprim; -+}; -+ -+struct mls_level { -+ u32 sens; -+ struct ebitmap cat; -+}; -+ -+struct mls_range { -+ struct mls_level level[2]; -+}; -+ -+struct context___2 { -+ 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___2 context; -+ struct sidtab_str_cache *cache; -+ struct hlist_node list; -+}; -+ -+struct sidtab_str_cache { -+ struct callback_head rcu_member; -+ struct list_head lru_member; -+ struct sidtab_entry *parent; -+ u32 len; -+ char str[0]; -+}; -+ -+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 sidtab; -+ -+struct sidtab_convert_params { -+ int (*func)(struct context___2 *, struct context___2 *, void *); -+ void *args; -+ struct sidtab *target; -+}; -+ -+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 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 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 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_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 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___2 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; -+ size_t len; -+ unsigned int policyvers; -+ unsigned int reject_unknown: 1; -+ unsigned int allow_unknown: 1; -+ u16 process_class; -+ u32 process_trans_perms; -+}; -+ -+struct perm_datum { -+ u32 value; -+}; -+ -+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 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_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; -+ void *fp; -+}; -+ -+struct cond_expr_node { -+ u32 expr_type; -+ u32 bool; -+}; -+ -+struct policydb_compat_info { -+ int version; -+ int sym_num; -+ int ocon_num; -+}; -+ -+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 convert_context_args { -+ struct selinux_state *state; -+ struct policydb *oldp; -+ struct policydb *newp; -+}; -+ -+struct selinux_policy_convert_data { -+ struct convert_context_args args; -+ struct sidtab_convert_params sidtab_params; -+}; -+ -+struct selinux_mapping { -+ u16 value; -+ unsigned int num_perms; -+ u32 perms[32]; -+}; -+ -+struct selinux_audit_rule { -+ u32 au_seqno; -+ struct context___2 au_ctxt; -+}; -+ -+struct cond_insertf_data { -+ struct policydb *p; -+ struct avtab_node **dst; -+ struct cond_av_list *other; -+}; -+ -+struct rt6key { -+ struct in6_addr addr; -+ int plen; -+}; -+ -+struct rtable; -+ -+struct fnhe_hash_bucket; -+ -+struct fib_nh_common { -+ struct net_device *nhc_dev; -+ 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 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 should_flush: 1; -+ u8 dst_nocount: 1; -+ u8 dst_nopolicy: 1; -+ u8 fib6_destroying: 1; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 1; -+ struct callback_head rcu; -+ struct nexthop *nh; -+ struct fib6_nh fib6_nh[0]; -+}; -+ -+struct uncached_list; -+ -+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; -+ struct list_head rt6i_uncached; -+ struct uncached_list *rt6i_uncached_list; -+ 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; -+ atomic_t fib_rt_uncache; -+}; -+ -+struct fib6_node { -+ struct fib6_node *parent; -+ struct fib6_node *left; -+ struct fib6_node *right; -+ 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; -+}; -+ -+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; -+}; -+ -+enum { -+ XFRM_POLICY_TYPE_MAIN = 0, -+ XFRM_POLICY_TYPE_SUB = 1, -+ XFRM_POLICY_TYPE_MAX = 2, -+ XFRM_POLICY_TYPE_ANY = 255, -+}; -+ -+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_MAX = 32, -+}; -+ -+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 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_state_offload { -+ struct net_device *dev; -+ struct net_device *real_dev; -+ long unsigned int offload_handle; -+ unsigned int num_exthdrs; -+ u8 flags; -+}; -+ -+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; -+ }; -+ struct hlist_node bysrc; -+ struct hlist_node byspi; -+ struct hlist_node byseq; -+ refcount_t refcnt; -+ spinlock_t lock; -+ 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; -+ struct xfrm_encap_tmpl *encap; -+ struct sock *encap_sk; -+ 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_state_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; -+}; -+ -+struct dst_metrics { -+ u32 metrics[17]; -+ refcount_t refcnt; -+}; -+ -+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; -+ 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 hlist_node bydst_inexact_list; -+ struct callback_head rcu; -+}; -+ -+struct udp_hslot; -+ -+struct udp_table { -+ struct udp_hslot *hash; -+ struct udp_hslot *hash2; -+ unsigned int mask; -+ unsigned int log; -+}; -+ -+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 list_head rt_uncached; -+ struct uncached_list *rt_uncached_list; -+}; -+ -+struct fnhe_hash_bucket { -+ struct fib_nh_exception *chain; -+}; -+ -+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 *); -+ 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_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 xfrm_offload { -+ struct { -+ __u32 low; -+ __u32 hi; -+ } seq; -+ __u32 flags; -+ __u32 status; -+ __u8 proto; -+ __u8 inner_ipproto; -+}; -+ -+struct sec_path { -+ int len; -+ int olen; -+ struct xfrm_state *xvec[6]; -+ struct xfrm_offload ovec[1]; -+}; -+ -+struct udp_hslot { -+ struct hlist_head head; -+ int count; -+ spinlock_t lock; -+}; -+ -+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 sockaddr_un { -+ __kernel_sa_family_t sun_family; -+ char sun_path[108]; -+}; -+ -+struct unix_address { -+ refcount_t refcnt; -+ int len; -+ unsigned int hash; -+ struct sockaddr_un name[0]; -+}; -+ -+struct scm_stat { -+ atomic_t nr_fds; -+}; -+ -+struct unix_sock { -+ struct sock sk; -+ struct unix_address *addr; -+ struct path path; -+ struct mutex iolock; -+ struct mutex bindlock; -+ struct sock *peer; -+ struct list_head link; -+ atomic_long_t inflight; -+ spinlock_t lock; -+ long unsigned int gc_flags; -+ 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; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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 ima_digest_data { -+ u8 algo; -+ u8 length; -+ union { -+ struct { -+ u8 unused; -+ u8 type; -+ } sha1; -+ struct { -+ u8 type; -+ u8 algo; -+ } ng; -+ u8 data[2]; -+ } xattr; -+ u8 digest[0]; -+}; -+ -+struct integrity_iint_cache { -+ struct rb_node rb_node; -+ struct mutex mutex; -+ struct inode *inode; -+ u64 version; -+ 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; -+ enum integrity_status evm_status: 4; -+ struct ima_digest_data *ima_hash; -+}; -+ -+struct modsig; -+ -+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; -+}; -+ -+struct asymmetric_key_id; -+ -+struct public_key_signature { -+ struct asymmetric_key_id *auth_ids[2]; -+ u8 *s; -+ u32 s_size; -+ u8 *digest; -+ u8 digest_size; -+ const char *pkey_algo; -+ const char *hash_algo; -+ const char *encoding; -+ const void *data; -+ unsigned int data_size; -+}; -+ -+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)); -+ -+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; -+ -+typedef void (*efi_element_handler_t)(const char *, const void *, size_t); -+ -+struct efi_mokvar_table_entry { -+ char name[256]; -+ u64 data_size; -+ u8 data[0]; -+}; -+ -+struct evm_ima_xattr_data { -+ u8 type; -+ u8 data[0]; -+}; -+ -+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_event_data { -+ struct integrity_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_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]; -+}; -+ -+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 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_XATTR_LAST = 6, -+}; -+ -+enum ima_hooks { -+ NONE___2 = 0, -+ FILE_CHECK = 1, -+ MMAP_CHECK = 2, -+ BPRM_CHECK = 3, -+ CREDS_CHECK = 4, -+ POST_SETATTR = 5, -+ MODULE_CHECK = 6, -+ FIRMWARE_CHECK = 7, -+ KEXEC_KERNEL_CHECK = 8, -+ KEXEC_INITRAMFS_CHECK = 9, -+ POLICY_CHECK = 10, -+ KEXEC_CMDLINE = 11, -+ KEY_CHECK = 12, -+ CRITICAL_DATA = 13, -+ MAX_CHECK = 14, -+}; -+ -+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; -+ struct scatterlist *src; -+ u8 *result; -+ void *priv; -+ void *__ctx[0]; -+}; -+ -+struct crypto_ahash { -+ 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); -+ unsigned int reqsize; -+ struct crypto_tfm base; -+}; -+ -+enum tpm_pcrs { -+ TPM_PCR0 = 0, -+ TPM_PCR8 = 8, -+ TPM_PCR10 = 10, -+}; -+ -+struct ima_algo_desc { -+ struct crypto_shash *tfm; -+ enum hash_algo algo; -+}; -+ -+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; -+ kuid_t fowner; -+ bool (*uid_op)(kuid_t, kuid_t); -+ bool (*fowner_op)(kuid_t, kuid_t); -+ int pcr; -+ 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 { -+ Opt_measure = 0, -+ Opt_dont_measure = 1, -+ Opt_appraise = 2, -+ Opt_dont_appraise = 3, -+ Opt_audit = 4, -+ Opt_hash___3 = 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_fowner_eq = 20, -+ Opt_uid_gt = 21, -+ Opt_euid_gt = 22, -+ Opt_fowner_gt = 23, -+ Opt_uid_lt = 24, -+ Opt_euid_lt = 25, -+ Opt_fowner_lt = 26, -+ Opt_appraise_type = 27, -+ Opt_appraise_flag = 28, -+ Opt_permit_directio = 29, -+ Opt_pcr = 30, -+ Opt_template = 31, -+ Opt_keyrings = 32, -+ Opt_label = 33, -+ Opt_err___9 = 34, -+}; -+ -+enum { -+ mask_exec = 0, -+ mask_write = 1, -+ mask_read = 2, -+ mask_append = 3, -+}; -+ -+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, -+}; -+ -+enum data_formats { -+ DATA_FMT_DIGEST = 0, -+ DATA_FMT_DIGEST_WITH_ALGO = 1, -+ DATA_FMT_STRING = 2, -+ DATA_FMT_HEX = 3, -+ DATA_FMT_UINT = 4, -+}; -+ -+struct modsig___2 { -+ 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_key_entry { -+ struct list_head list; -+ void *payload; -+ size_t payload_len; -+ char *keyring_name; -+}; -+ -+struct evm_xattr { -+ struct evm_ima_xattr_data data; -+ u8 digest[20]; -+}; -+ -+struct xattr_list { -+ struct list_head list; -+ char *name; -+ bool enabled; -+}; -+ -+struct evm_digest { -+ struct ima_digest_data hdr; -+ char digest[64]; -+}; -+ -+struct h_misc { -+ long unsigned int ino; -+ __u32 generation; -+ uid_t uid; -+ gid_t gid; -+ umode_t mode; -+}; -+ -+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; -+}; -+ -+struct crypto_cipher { -+ struct crypto_tfm base; -+}; -+ -+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 { -+ 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, -+}; -+ -+enum { -+ CRYPTOA_UNSPEC = 0, -+ CRYPTOA_ALG = 1, -+ CRYPTOA_TYPE = 2, -+ __CRYPTOA_MAX = 3, -+}; -+ -+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; -+}; -+ -+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_MAX = 22, -+}; -+ -+struct crypto_report_aead { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int maxauthsize; -+ unsigned int ivsize; -+}; -+ -+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 crypto_cipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_sync_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct skcipher_instance { -+ void (*free)(struct skcipher_instance *); -+ union { -+ struct { -+ char head[64]; -+ 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_report_blkcipher { -+ char type[64]; -+ char geniv[64]; -+ unsigned int blocksize; -+ unsigned int min_keysize; -+ unsigned int max_keysize; -+ unsigned int ivsize; -+}; -+ -+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 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 *); -+ struct hash_alg_common halg; -+}; -+ -+struct crypto_hash_walk { -+ char *data; -+ unsigned int offset; -+ unsigned int alignmask; -+ struct page *pg; -+ unsigned int entrylen; -+ unsigned int total; -+ struct scatterlist *sg; -+ unsigned int flags; -+}; -+ -+struct ahash_instance { -+ void (*free)(struct ahash_instance *); -+ union { -+ struct { -+ char head[88]; -+ struct crypto_instance base; -+ } s; -+ struct ahash_alg alg; -+ }; -+}; -+ -+struct crypto_ahash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_hash { -+ char type[64]; -+ unsigned int blocksize; -+ unsigned int digestsize; -+}; -+ -+struct ahash_request_priv { -+ crypto_completion_t complete; -+ void *data; -+ u8 *result; -+ u32 flags; -+ void *ubuf[0]; -+}; -+ -+struct shash_instance { -+ void (*free)(struct shash_instance *); -+ union { -+ struct { -+ char head[96]; -+ struct crypto_instance base; -+ } s; -+ struct shash_alg alg; -+ }; -+}; -+ -+struct crypto_shash_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_akcipher { -+ char type[64]; -+}; -+ -+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 { -+ 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 *); -+ unsigned int reqsize; -+ struct crypto_alg base; -+}; -+ -+struct akcipher_instance { -+ void (*free)(struct akcipher_instance *); -+ union { -+ struct { -+ char head[80]; -+ struct crypto_instance base; -+ } s; -+ struct akcipher_alg alg; -+ }; -+}; -+ -+struct crypto_akcipher_spawn { -+ struct crypto_spawn base; -+}; -+ -+struct crypto_report_kpp { -+ char type[64]; -+}; -+ -+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 q; -+ MPI g; -+ MPI xa; -+}; -+ -+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 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 rsa_mpi_key { -+ MPI n; -+ MPI e; -+ MPI d; -+}; -+ -+struct asn1_decoder___2; -+ -+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 crypto_report_acomp { -+ char type[64]; -+}; -+ -+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; -+ struct crypto_alg base; -+}; -+ -+struct crypto_report_comp { -+ char type[64]; -+}; -+ -+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 *); -+ struct crypto_alg base; -+}; -+ -+struct scomp_scratch { -+ spinlock_t lock; -+ void *src; -+ void *dst; -+}; -+ -+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 drbg_string { -+ const unsigned char *buf; -+ size_t len; -+ struct list_head list; -+}; -+ -+struct drbg_test_data { -+ struct drbg_string *testentropy; -+}; -+ -+struct hash_testvec { -+ const char *key; -+ const char *plaintext; -+ const char *digest; -+ unsigned int psize; -+ short unsigned int ksize; -+ int setkey_error; -+ int digest_error; -+}; -+ -+struct cipher_testvec { -+ const char *key; -+ const char *iv; -+ const char *iv_out; -+ const char *ptext; -+ const char *ctext; -+ unsigned char wk; -+ short unsigned int klen; -+ unsigned int len; -+ bool fips_skip; -+ bool generates_iv; -+ int setkey_error; -+ int crypt_error; -+}; -+ -+struct aead_testvec { -+ const char *key; -+ const char *iv; -+ const char *ptext; -+ const char *assoc; -+ const char *ctext; -+ unsigned char novrfy; -+ unsigned char wk; -+ unsigned char klen; -+ unsigned int plen; -+ unsigned int clen; -+ unsigned int alen; -+ int setkey_error; -+ int setauthsize_error; -+ int crypt_error; -+}; -+ -+struct cprng_testvec { -+ const char *key; -+ const char *dt; -+ const char *v; -+ const char *result; -+ unsigned char klen; -+ short unsigned int dtlen; -+ short unsigned int vlen; -+ short unsigned int rlen; -+ short unsigned int loops; -+}; -+ -+struct drbg_testvec { -+ const unsigned char *entropy; -+ size_t entropylen; -+ const unsigned char *entpra; -+ const unsigned char *entprb; -+ size_t entprlen; -+ const unsigned char *addtla; -+ const unsigned char *addtlb; -+ size_t addtllen; -+ const unsigned char *pers; -+ size_t perslen; -+ const unsigned char *expected; -+ size_t expectedlen; -+}; -+ -+struct akcipher_testvec { -+ const unsigned char *key; -+ const unsigned char *params; -+ const unsigned char *m; -+ const unsigned char *c; -+ unsigned int key_len; -+ unsigned int param_len; -+ unsigned int m_size; -+ unsigned int c_size; -+ bool public_key_vec; -+ bool siggen_sigver_test; -+ enum OID algo; -+}; -+ -+struct kpp_testvec { -+ const unsigned char *secret; -+ const unsigned char *b_secret; -+ const unsigned char *b_public; -+ const unsigned char *expected_a_public; -+ const unsigned char *expected_ss; -+ short unsigned int secret_size; -+ short unsigned int b_secret_size; -+ short unsigned int b_public_size; -+ short unsigned int expected_a_public_size; -+ short unsigned int expected_ss_size; -+ bool genkey; -+}; -+ -+struct comp_testvec { -+ int inlen; -+ int outlen; -+ char input[512]; -+ char output[512]; -+}; -+ -+struct aead_test_suite { -+ const struct aead_testvec *vecs; -+ unsigned int count; -+ unsigned int einval_allowed: 1; -+ unsigned int aad_iv: 1; -+}; -+ -+struct cipher_test_suite { -+ const struct cipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct comp_test_suite { -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } comp; -+ struct { -+ const struct comp_testvec *vecs; -+ unsigned int count; -+ } decomp; -+}; -+ -+struct hash_test_suite { -+ const struct hash_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct cprng_test_suite { -+ const struct cprng_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct drbg_test_suite { -+ const struct drbg_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct akcipher_test_suite { -+ const struct akcipher_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct kpp_test_suite { -+ const struct kpp_testvec *vecs; -+ unsigned int count; -+}; -+ -+struct alg_test_desc { -+ const char *alg; -+ const char *generic_driver; -+ int (*test)(const struct alg_test_desc *, const char *, u32, u32); -+ int fips_allowed; -+ union { -+ struct aead_test_suite aead; -+ struct cipher_test_suite cipher; -+ struct comp_test_suite comp; -+ struct hash_test_suite hash; -+ struct cprng_test_suite cprng; -+ struct drbg_test_suite drbg; -+ struct akcipher_test_suite akcipher; -+ struct kpp_test_suite kpp; -+ } suite; -+}; -+ -+enum flush_type { -+ FLUSH_TYPE_NONE = 0, -+ FLUSH_TYPE_FLUSH = 1, -+ FLUSH_TYPE_REIMPORT = 2, -+}; -+ -+enum finalization_type { -+ FINALIZATION_TYPE_FINAL = 0, -+ FINALIZATION_TYPE_FINUP = 1, -+ FINALIZATION_TYPE_DIGEST = 2, -+}; -+ -+struct test_sg_division { -+ unsigned int proportion_of_total; -+ unsigned int offset; -+ bool offset_relative_to_alignmask; -+ enum flush_type flush_type; -+ bool nosimd; -+}; -+ -+struct testvec_config { -+ const char *name; -+ bool inplace; -+ u32 req_flags; -+ struct test_sg_division src_divs[8]; -+ struct test_sg_division dst_divs[8]; -+ unsigned int iv_offset; -+ unsigned int key_offset; -+ bool iv_offset_relative_to_alignmask; -+ bool key_offset_relative_to_alignmask; -+ enum finalization_type finalization_type; -+ bool nosimd; -+}; -+ -+struct test_sglist { -+ char *bufs[8]; -+ struct scatterlist sgl[8]; -+ struct scatterlist sgl_saved[8]; -+ struct scatterlist *sgl_ptr; -+ unsigned int nents; -+}; -+ -+struct cipher_test_sglists { -+ struct test_sglist src; -+ struct test_sglist dst; -+}; -+ -+struct cmac_tfm_ctx { -+ struct crypto_cipher *child; -+ u8 ctx[0]; -+}; -+ -+struct cmac_desc_ctx { -+ unsigned int len; -+ u8 ctx[0]; -+}; -+ -+struct hmac_ctx { -+ struct crypto_shash *hash; -+}; -+ -+struct md5_state { -+ u32 hash[4]; -+ u32 block[16]; -+ u64 byte_count; -+}; -+ -+struct sha512_state { -+ u64 state[8]; -+ u64 count[2]; -+ u8 buf[128]; -+}; -+ -+typedef void sha512_block_fn(struct sha512_state *, const u8 *, int); -+ -+struct sha3_state { -+ u64 st[25]; -+ unsigned int rsiz; -+ unsigned int rsizw; -+ unsigned int partial; -+ u8 buf[144]; -+}; -+ -+typedef struct { -+ u64 a; -+ u64 b; -+} u128; -+ -+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 crypto_cts_ctx { -+ struct crypto_skcipher *child; -+}; -+ -+struct crypto_cts_reqctx { -+ struct scatterlist sg[2]; -+ unsigned int offset; -+ struct skcipher_request subreq; -+}; -+ -+struct xts_tfm_ctx { -+ struct crypto_skcipher *child; -+ struct crypto_cipher *tweak; -+}; -+ -+struct xts_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ char name[128]; -+}; -+ -+struct xts_request_ctx { -+ le128 t; -+ struct scatterlist *tail; -+ struct scatterlist sg[2]; -+ struct skcipher_request subreq; -+}; -+ -+struct crypto_rfc3686_ctx { -+ struct crypto_skcipher *child; -+ u8 nonce[4]; -+}; -+ -+struct crypto_rfc3686_req_ctx { -+ u8 iv[16]; -+ struct skcipher_request subreq; -+}; -+ -+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 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; -+}; -+ -+struct cryptd_skcipher { -+ struct crypto_skcipher base; -+}; -+ -+struct cryptd_ahash { -+ struct crypto_ahash base; -+}; -+ -+struct cryptd_aead { -+ struct crypto_aead base; -+}; -+ -+struct cryptd_cpu_queue { -+ struct crypto_queue queue; -+ struct work_struct work; -+}; -+ -+struct cryptd_queue { -+ struct cryptd_cpu_queue *cpu_queue; -+}; -+ -+struct cryptd_instance_ctx { -+ struct crypto_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct skcipherd_instance_ctx { -+ struct crypto_skcipher_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct hashd_instance_ctx { -+ struct crypto_shash_spawn spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct aead_instance_ctx { -+ struct crypto_aead_spawn aead_spawn; -+ struct cryptd_queue *queue; -+}; -+ -+struct cryptd_skcipher_ctx { -+ refcount_t refcnt; -+ struct crypto_sync_skcipher *child; -+}; -+ -+struct cryptd_skcipher_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+struct cryptd_hash_ctx { -+ refcount_t refcnt; -+ struct crypto_shash *child; -+}; -+ -+struct cryptd_hash_request_ctx { -+ crypto_completion_t complete; -+ struct shash_desc desc; -+}; -+ -+struct cryptd_aead_ctx { -+ refcount_t refcnt; -+ struct crypto_aead *child; -+}; -+ -+struct cryptd_aead_request_ctx { -+ crypto_completion_t complete; -+}; -+ -+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; -+ -+struct deflate_ctx { -+ struct z_stream_s comp_stream; -+ struct z_stream_s decomp_stream; -+}; -+ -+struct chksum_ctx { -+ u32 key; -+}; -+ -+struct chksum_desc_ctx { -+ u32 crc; -+}; -+ -+struct chksum_desc_ctx___2 { -+ __u16 crc; -+}; -+ -+enum { -+ CRYPTO_AUTHENC_KEYA_UNSPEC = 0, -+ CRYPTO_AUTHENC_KEYA_PARAM = 1, -+}; -+ -+struct crypto_authenc_key_param { -+ __be32 enckeylen; -+}; -+ -+struct crypto_authenc_keys { -+ const u8 *authkey; -+ const u8 *enckey; -+ unsigned int authkeylen; -+ unsigned int enckeylen; -+}; -+ -+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 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]; -+}; -+ -+struct lzo_ctx { -+ void *lzo_comp_mem; -+}; -+ -+struct lzorle_ctx { -+ void *lzorle_comp_mem; -+}; -+ -+struct random_extrng { -+ ssize_t (*extrng_read)(void *, size_t); -+ struct module *owner; -+}; -+ -+struct crypto_report_rng { -+ char type[64]; -+ unsigned int seedsize; -+}; -+ -+struct random_ready_callback { -+ struct list_head list; -+ void (*func)(struct random_ready_callback *); -+ struct module *owner; -+}; -+ -+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 *); -+}; -+ -+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; -+ bool seeded; -+ bool pr; -+ bool fips_primed; -+ unsigned char *prev; -+ struct work_struct seed_work; -+ struct crypto_rng *jent; -+ const struct drbg_state_ops *d_ops; -+ const struct drbg_core *core; -+ struct drbg_string test_data; -+ struct random_ready_callback random_ready; -+}; -+ -+enum drbg_prefixes { -+ DRBG_PREFIX0 = 0, -+ DRBG_PREFIX1 = 1, -+ DRBG_PREFIX2 = 2, -+ DRBG_PREFIX3 = 3, -+}; -+ -+struct s { -+ __be32 conv; -+}; -+ -+struct rand_data { -+ __u64 data; -+ __u64 old_data; -+ __u64 prev_time; -+ __u64 last_delta; -+ __s64 last_delta2; -+ unsigned int osr; -+ unsigned char *mem; -+ unsigned int memlocation; -+ unsigned int memblocks; -+ unsigned int memblocksize; -+ unsigned int memaccessloops; -+ int rct_count; -+ unsigned int apt_observations; -+ unsigned int apt_count; -+ unsigned int apt_base; -+ unsigned int apt_base_set: 1; -+ unsigned int health_failure: 1; -+}; -+ -+struct rand_data___2; -+ -+struct jitterentropy { -+ spinlock_t jent_lock; -+ struct rand_data___2 *entropy_collector; -+ unsigned int reset_cnt; -+}; -+ -+struct ghash_ctx { -+ struct gf128mul_4k *gf128; -+}; -+ -+struct ghash_desc_ctx { -+ u8 buffer[16]; -+ u32 bytes; -+}; -+ -+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 cmsghdr { -+ __kernel_size_t cmsg_len; -+ int cmsg_level; -+ int cmsg_type; -+}; -+ -+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_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_control { -+ struct af_alg_iv *iv; -+ int op; -+ unsigned int aead_assoclen; -+}; -+ -+struct af_alg_sgl { -+ struct scatterlist sg[17]; -+ struct page *pages[16]; -+ unsigned int npages; -+}; -+ -+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; -+ size_t aead_assoclen; -+ struct crypto_wait wait; -+ size_t used; -+ atomic_t rcvused; -+ bool more; -+ bool merge; -+ bool enc; -+ bool init; -+ unsigned int len; -+}; -+ -+struct alg_type_list { -+ const struct af_alg_type *type; -+ struct list_head list; -+}; -+ -+struct hash_ctx { -+ struct af_alg_sgl sgl; -+ u8 *result; -+ struct crypto_wait wait; -+ unsigned int len; -+ bool more; -+ struct ahash_request req; -+}; -+ -+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; -+}; -+ -+struct aead_tfm { -+ struct crypto_aead *aead; -+ struct crypto_sync_skcipher *null_tfm; -+}; -+ -+struct asymmetric_key_ids { -+ void *id[2]; -+}; -+ -+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 *); -+}; -+ -+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_pkey_algo = 7, -+ ACT_x509_note_serial = 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_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_key; -+ bool unsupported_sig; -+ bool blacklisted; -+}; -+ -+struct x509_parse_context { -+ struct x509_certificate *cert; -+ long unsigned int data; -+ const void *cert_start; -+ const void *key; -+ size_t key_size; -+ const void *params; -+ size_t params_size; -+ enum OID key_algo; -+ enum OID last_oid; -+ enum OID algo_oid; -+ unsigned char nr_mpi; -+ 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, -+}; -+ -+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___2 { -+ 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___2 *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; -+}; -+ -+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 simd_skcipher_alg___2 { -+ const char *ialg_name; -+ struct skcipher_alg alg; -+}; -+ -+struct simd_skcipher_ctx { -+ struct cryptd_skcipher *cryptd_tfm; -+}; -+ -+struct simd_aead_alg___2 { -+ const char *ialg_name; -+ struct aead_alg alg; -+}; -+ -+struct simd_aead_ctx { -+ struct cryptd_aead *cryptd_tfm; -+}; -+ -+enum rq_qos_id { -+ RQ_QOS_WBT = 0, -+ RQ_QOS_LATENCY = 1, -+ RQ_QOS_COST = 2, -+ RQ_QOS_IOPRIO = 3, -+}; -+ -+struct rq_qos_ops; -+ -+struct rq_qos { -+ struct rq_qos_ops *ops; -+ struct request_queue *q; -+ enum rq_qos_id id; -+ struct rq_qos *next; -+ struct dentry *debugfs_dir; -+}; -+ -+enum hctx_type { -+ HCTX_TYPE_DEFAULT = 0, -+ HCTX_TYPE_READ = 1, -+ HCTX_TYPE_POLL = 2, -+ HCTX_MAX_TYPES = 3, -+}; -+ -+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 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[8]; -+}; -+ -+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 = 32, -+ BLK_MQ_F_NO_SCHED = 64, -+ BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, -+ BLK_MQ_F_ALLOC_POLICY_BITS = 1, -+ BLK_MQ_S_STOPPED = 0, -+ BLK_MQ_S_TAG_ACTIVE = 1, -+ BLK_MQ_S_SCHED_RESTART = 2, -+ BLK_MQ_S_INACTIVE = 3, -+ BLK_MQ_MAX_DEPTH = 10240, -+ BLK_MQ_CPU_WORK_BATCH = 8, -+}; -+ -+enum { -+ WBT_RWQ_BG = 0, -+ WBT_RWQ_KSWAPD = 1, -+ WBT_RWQ_DISCARD = 2, -+ WBT_NUM_RWQ = 3, -+}; -+ -+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, -+}; -+ -+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; -+ char rwbs[8]; -+ u32 __data_loc_cmd; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_block_rq_complete { -+ struct trace_entry ent; -+ dev_t dev; -+ sector_t sector; -+ unsigned int nr_sector; -+ int error; -+ 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; -+ 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; -+}; -+ -+struct trace_event_data_offsets_block_rq_complete { -+ u32 cmd; -+}; -+ -+struct trace_event_data_offsets_block_rq { -+ u32 cmd; -+}; -+ -+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 *, int, 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_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); -+ -+enum { -+ BLK_MQ_NO_TAG = 4294967295, -+ BLK_MQ_TAG_MIN = 1, -+ BLK_MQ_TAG_MAX = 4294967294, -+}; -+ -+struct queue_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct request_queue *, char *); -+ ssize_t (*store)(struct request_queue *, const char *, size_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, -+}; -+ -+enum blk_default_limits { -+ BLK_MAX_SEGMENTS = 128, -+ BLK_SAFE_MAX_SECTORS = 255, -+ BLK_DEF_MAX_SECTORS = 2560, -+ BLK_MAX_SEGMENT_SIZE = 65536, -+ BLK_SEG_BOUNDARY_MASK = 4294967295, -+}; -+ -+enum { -+ ICQ_EXITED = 4, -+ ICQ_DESTROYED = 8, -+}; -+ -+struct rq_map_data { -+ struct page **pages; -+ int page_order; -+ int nr_entries; -+ long unsigned int offset; -+ int null_mapped; -+ int from_user; -+}; -+ -+struct bio_map_data { -+ bool is_our_pages: 1; -+ bool is_null_mapped: 1; -+ struct iov_iter iter; -+ struct iovec iov[0]; -+}; -+ -+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, -+}; -+ -+typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); -+ -+typedef bool busy_iter_fn(struct blk_mq_hw_ctx *, struct request *, void *, bool); -+ -+typedef bool busy_tag_iter_fn(struct request *, void *, bool); -+ -+enum { -+ BLK_MQ_UNIQUE_TAG_BITS = 16, -+ BLK_MQ_UNIQUE_TAG_MASK = 65535, -+}; -+ -+struct mq_inflight { -+ struct block_device *part; -+ unsigned int inflight[2]; -+}; -+ -+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 sbq_wait { -+ struct sbitmap_queue *sbq; -+ struct wait_queue_entry wait; -+}; -+ -+struct bt_iter_data { -+ struct blk_mq_hw_ctx *hctx; -+ busy_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; -+}; -+ -+struct blk_queue_stats { -+ struct list_head callbacks; -+ spinlock_t lock; -+ bool enable_accounting; -+}; -+ -+struct blk_mq_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_ctx *, const char *, size_t); -+}; -+ -+struct blk_mq_hw_ctx_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_mq_hw_ctx *, char *); -+ ssize_t (*store)(struct blk_mq_hw_ctx *, const char *, size_t); -+}; -+ -+typedef u32 compat_caddr_t; -+ -+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 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 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 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 class_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+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 blk_major_name { -+ struct blk_major_name *next; -+ int major; -+ char name[16]; -+ void (*probe)(dev_t); -+}; -+ -+enum { -+ IOPRIO_WHO_PROCESS = 1, -+ IOPRIO_WHO_PGRP = 2, -+ IOPRIO_WHO_USER = 3, -+}; -+ -+struct parsed_partitions { -+ struct block_device *bdev; -+ 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 page *v; -+} Sector; -+ -+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 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 = 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 d_partition { -+ __le32 p_size; -+ __le32 p_offset; -+ __le32 p_fsize; -+ u8 p_fstype; -+ u8 p_frag; -+ __le16 p_cpg; -+}; -+ -+struct disklabel { -+ __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 d_partitions[18]; -+}; -+ -+enum { -+ LINUX_RAID_PARTITION___2 = 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; -+}; -+ -+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 _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 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; -+}; -+ -+enum { -+ DISK_EVENT_FLAG_POLL = 1, -+ DISK_EVENT_FLAG_UEVENT = 2, -+}; -+ -+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 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 for_data; -+ int (*exit)(struct cdrom_device_info *); -+ int mrw_mode_page; -+}; -+ -+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; -+}; -+ -+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 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 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 *, int); -+ int (*select_disc)(struct cdrom_device_info *, 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 *); -+ const int capability; -+ int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); -+}; -+ -+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 scsi_ioctl_command { -+ unsigned int inlen; -+ unsigned int outlen; -+ unsigned char data[0]; -+}; -+ -+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 scsi_request { -+ unsigned char __cmd[16]; -+ unsigned char *cmd; -+ short unsigned int cmd_len; -+ int result; -+ unsigned int sense_len; -+ unsigned int resid_len; -+ int retries; -+ void *sense; -+}; -+ -+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; -+}; -+ -+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 blk_cmd_filter { -+ long unsigned int read_ok[4]; -+ long unsigned int write_ok[4]; -+}; -+ -+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 { -+ OMAX_SB_LEN = 16, -+}; -+ -+struct bsg_device { -+ struct request_queue *queue; -+ spinlock_t lock; -+ struct hlist_node dev_list; -+ refcount_t ref_count; -+ char name[20]; -+ int max_queue; -+}; -+ -+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 *); -+ -+struct bsg_set { -+ struct blk_mq_tag_set tag_set; -+ bsg_job_fn *job_fn; -+ bsg_timeout_fn *timeout_fn; -+}; -+ -+typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); -+ -+typedef void blkcg_pol_init_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); -+ -+typedef void blkcg_pol_bind_cpd_fn(struct blkcg_policy_data *); -+ -+typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(gfp_t, struct request_queue *, struct blkcg *); -+ -+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 size_t blkcg_pol_stat_pd_fn(struct blkg_policy_data *, char *, size_t); -+ -+struct blkcg_policy { -+ int plid; -+ struct cftype *dfl_cftypes; -+ struct cftype *legacy_cftypes; -+ blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; -+ blkcg_pol_init_cpd_fn *cpd_init_fn; -+ blkcg_pol_free_cpd_fn *cpd_free_fn; -+ blkcg_pol_bind_cpd_fn *cpd_bind_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 { -+ struct block_device *bdev; -+ struct blkcg_gq *blkg; -+ char *body; -+}; -+ -+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 blkg_rwstat { -+ struct percpu_counter cpu_cnt[5]; -+ atomic64_t aux_cnt[5]; -+}; -+ -+struct blkg_rwstat_sample { -+ u64 cnt[5]; -+}; -+ -+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 latency_bucket { -+ long unsigned int total_latency; -+ int samples; -+}; -+ -+struct avg_latency_bucket { -+ long unsigned int latency; -+ bool valid; -+}; -+ -+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; -+ unsigned int limit_index; -+ bool limit_valid[2]; -+ long unsigned int low_upgrade_time; -+ long unsigned int low_downgrade_time; -+ unsigned int scale; -+ struct latency_bucket tmp_buckets[18]; -+ struct avg_latency_bucket avg_buckets[18]; -+ struct latency_bucket *latency_buckets[2]; -+ long unsigned int last_calculate_time; -+ long unsigned int filtered_latency; -+ bool track_bio_latency; -+}; -+ -+struct throtl_grp; -+ -+struct throtl_qnode { -+ struct list_head node; -+ struct bio_list bios; -+ 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[2]; -+ uint64_t bps[4]; -+ uint64_t bps_conf[4]; -+ unsigned int iops[4]; -+ unsigned int iops_conf[4]; -+ uint64_t bytes_disp[2]; -+ unsigned int io_disp[2]; -+ long unsigned int last_low_overflow_time[2]; -+ uint64_t last_bytes_disp[2]; -+ unsigned int last_io_disp[2]; -+ long unsigned int last_check_time; -+ long unsigned int latency_target; -+ long unsigned int latency_target_conf; -+ long unsigned int slice_start[2]; -+ long unsigned int slice_end[2]; -+ long unsigned int last_finish_time; -+ long unsigned int checked_last_finish_time; -+ long unsigned int avg_idletime; -+ long unsigned int idletime_threshold; -+ long unsigned int idletime_threshold_conf; -+ unsigned int bio_cnt; -+ unsigned int bad_bio_cnt; -+ long unsigned int bio_cnt_reset_time; -+ struct blkg_rwstat stat_bytes; -+ struct blkg_rwstat stat_ios; -+}; -+ -+enum tg_state_flags { -+ THROTL_TG_PENDING = 1, -+ THROTL_TG_WAS_EMPTY = 2, -+}; -+ -+enum { -+ LIMIT_LOW = 0, -+ LIMIT_MAX = 1, -+ LIMIT_CNT = 2, -+}; -+ -+struct blk_iolatency { -+ struct rq_qos rqos; -+ struct timer_list timer; -+ atomic_t enabled; -+}; -+ -+struct iolatency_grp; -+ -+struct child_latency_info { -+ spinlock_t lock; -+ u64 last_scale_event; -+ u64 scale_lat; -+ u64 nr_samples; -+ struct iolatency_grp *scale_grp; -+ atomic_t scale_cookie; -+}; -+ -+struct percentile_stats { -+ u64 total; -+ u64 missed; -+}; -+ -+struct latency_stat { -+ union { -+ struct percentile_stats ps; -+ struct blk_rq_stat rqs; -+ }; -+}; -+ -+struct iolatency_grp { -+ struct blkg_policy_data pd; -+ struct latency_stat *stats; -+ struct latency_stat cur_stat; -+ struct blk_iolatency *blkiolat; -+ struct rq_depth rq_depth; -+ struct rq_wait rq_wait; -+ atomic64_t window_start; -+ atomic_t scale_cookie; -+ u64 min_lat_nsec; -+ u64 cur_win_nsec; -+ u64 lat_avg; -+ u64 nr_samples; -+ bool ssd; -+ struct child_latency_info child_lat; -+}; -+ -+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 { -+ local_t inserted; -+ local_t merged; -+ local_t dispatched; -+ local_t completed; -+}; -+ -+struct io_stats { -+ struct io_stats_per_prio stats[3]; -+}; -+ -+struct dd_per_prio { -+ struct list_head dispatch; -+ struct rb_root sort_list[2]; -+ struct list_head fifo_list[2]; -+ struct request *next_rq[2]; -+}; -+ -+struct deadline_data { -+ struct dd_per_prio per_prio[3]; -+ enum dd_data_dir last_dir; -+ unsigned int batching; -+ unsigned int starved; -+ struct io_stats *stats; -+ int fifo_expire[2]; -+ int fifo_batch; -+ int writes_starved; -+ int front_merges; -+ u32 async_depth; -+ spinlock_t lock; -+ spinlock_t zone_lock; -+}; -+ -+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 *, struct request_queue *, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_kyber_adjust)(void *, struct request_queue *, const char *, unsigned int); -+ -+typedef void (*btf_trace_kyber_throttled)(void *, struct request_queue *, 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; -+ 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 bfq_entity; -+ -+struct bfq_service_tree { -+ struct rb_root active; -+ struct rb_root idle; -+ struct bfq_entity *first_idle; -+ struct bfq_entity *last_idle; -+ u64 vtime; -+ long unsigned int wsum; -+}; -+ -+struct bfq_sched_data; -+ -+struct bfq_queue; -+ -+struct bfq_entity { -+ struct rb_node rb_node; -+ bool on_st_or_in_serv; -+ u64 start; -+ u64 finish; -+ struct rb_root *tree; -+ u64 min_start; -+ int service; -+ int budget; -+ int dev_weight; -+ int weight; -+ int new_weight; -+ int orig_weight; -+ struct bfq_entity *parent; -+ struct bfq_sched_data *my_sched_data; -+ struct bfq_sched_data *sched_data; -+ int prio_changed; -+ bool in_groups_with_pending_reqs; -+ struct bfq_queue *last_bfqq_created; -+}; -+ -+struct bfq_sched_data { -+ struct bfq_entity *in_service_entity; -+ struct bfq_entity *next_in_service; -+ struct bfq_service_tree service_tree[3]; -+ long unsigned int bfq_class_idle_last_service; -+}; -+ -+struct bfq_weight_counter { -+ unsigned int weight; -+ unsigned int num_active; -+ struct rb_node weights_node; -+}; -+ -+struct bfq_ttime { -+ u64 last_end_request; -+ u64 ttime_total; -+ long unsigned int ttime_samples; -+ u64 ttime_mean; -+}; -+ -+struct bfq_data; -+ -+struct bfq_io_cq; -+ -+struct bfq_queue { -+ int ref; -+ int stable_ref; -+ struct bfq_data *bfqd; -+ short unsigned int ioprio; -+ short unsigned int ioprio_class; -+ short unsigned int new_ioprio; -+ short unsigned int new_ioprio_class; -+ u64 last_serv_time_ns; -+ unsigned int inject_limit; -+ long unsigned int decrease_time_jif; -+ struct bfq_queue *new_bfqq; -+ struct rb_node pos_node; -+ struct rb_root *pos_root; -+ struct rb_root sort_list; -+ struct request *next_rq; -+ int queued[2]; -+ int allocated; -+ int meta_pending; -+ struct list_head fifo; -+ struct bfq_entity entity; -+ struct bfq_weight_counter *weight_counter; -+ int max_budget; -+ long unsigned int budget_timeout; -+ int dispatched; -+ long unsigned int flags; -+ struct list_head bfqq_list; -+ struct bfq_ttime ttime; -+ u64 io_start_time; -+ u64 tot_idle_time; -+ u32 seek_history; -+ struct hlist_node burst_list_node; -+ sector_t last_request_pos; -+ unsigned int requests_within_timer; -+ pid_t pid; -+ struct bfq_io_cq *bic; -+ long unsigned int wr_cur_max_time; -+ long unsigned int soft_rt_next_start; -+ long unsigned int last_wr_start_finish; -+ unsigned int wr_coeff; -+ long unsigned int last_idle_bklogged; -+ long unsigned int service_from_backlogged; -+ long unsigned int service_from_wr; -+ long unsigned int wr_start_at_switch_to_srt; -+ long unsigned int split_time; -+ long unsigned int first_IO_time; -+ long unsigned int creation_time; -+ u32 max_service_rate; -+ struct bfq_queue *waker_bfqq; -+ struct bfq_queue *tentative_waker_bfqq; -+ unsigned int num_waker_detections; -+ struct hlist_node woken_list_node; -+ struct hlist_head woken_list; -+}; -+ -+struct bfq_group; -+ -+struct bfq_data { -+ struct request_queue *queue; -+ struct list_head dispatch; -+ struct bfq_group *root_group; -+ struct rb_root_cached queue_weights_tree; -+ unsigned int num_groups_with_pending_reqs; -+ unsigned int busy_queues[3]; -+ int wr_busy_queues; -+ int queued; -+ int rq_in_driver; -+ bool nonrot_with_queueing; -+ int max_rq_in_driver; -+ int hw_tag_samples; -+ int hw_tag; -+ int budgets_assigned; -+ struct hrtimer idle_slice_timer; -+ struct bfq_queue *in_service_queue; -+ sector_t last_position; -+ sector_t in_serv_last_pos; -+ u64 last_completion; -+ struct bfq_queue *last_completed_rq_bfqq; -+ struct bfq_queue *last_bfqq_created; -+ u64 last_empty_occupied_ns; -+ bool wait_dispatch; -+ struct request *waited_rq; -+ bool rqs_injected; -+ u64 first_dispatch; -+ u64 last_dispatch; -+ ktime_t last_budget_start; -+ ktime_t last_idling_start; -+ long unsigned int last_idling_start_jiffies; -+ int peak_rate_samples; -+ u32 sequential_samples; -+ u64 tot_sectors_dispatched; -+ u32 last_rq_max_size; -+ u64 delta_from_first; -+ u32 peak_rate; -+ int bfq_max_budget; -+ struct list_head active_list; -+ struct list_head idle_list; -+ u64 bfq_fifo_expire[2]; -+ unsigned int bfq_back_penalty; -+ unsigned int bfq_back_max; -+ u32 bfq_slice_idle; -+ int bfq_user_max_budget; -+ unsigned int bfq_timeout; -+ bool strict_guarantees; -+ long unsigned int last_ins_in_burst; -+ long unsigned int bfq_burst_interval; -+ int burst_size; -+ struct bfq_entity *burst_parent_entity; -+ long unsigned int bfq_large_burst_thresh; -+ bool large_burst; -+ struct hlist_head burst_list; -+ bool low_latency; -+ unsigned int bfq_wr_coeff; -+ unsigned int bfq_wr_max_time; -+ unsigned int bfq_wr_rt_max_time; -+ unsigned int bfq_wr_min_idle_time; -+ long unsigned int bfq_wr_min_inter_arr_async; -+ unsigned int bfq_wr_max_softrt_rate; -+ u64 rate_dur_prod; -+ struct bfq_queue oom_bfqq; -+ spinlock_t lock; -+ struct bfq_io_cq *bio_bic; -+ struct bfq_queue *bio_bfqq; -+ unsigned int word_depths[4]; -+}; -+ -+struct bfq_io_cq { -+ struct io_cq icq; -+ struct bfq_queue *bfqq[2]; -+ int ioprio; -+ uint64_t blkcg_serial_nr; -+ bool saved_has_short_ttime; -+ bool saved_IO_bound; -+ u64 saved_io_start_time; -+ u64 saved_tot_idle_time; -+ bool saved_in_large_burst; -+ bool was_in_burst_list; -+ unsigned int saved_weight; -+ long unsigned int saved_wr_coeff; -+ long unsigned int saved_last_wr_start_finish; -+ long unsigned int saved_service_from_wr; -+ long unsigned int saved_wr_start_at_switch_to_srt; -+ unsigned int saved_wr_cur_max_time; -+ struct bfq_ttime saved_ttime; -+ u64 saved_last_serv_time_ns; -+ unsigned int saved_inject_limit; -+ long unsigned int saved_decrease_time_jif; -+ struct bfq_queue *stable_merge_bfqq; -+ bool stably_merged; -+}; -+ -+struct bfqg_stats { -+ struct blkg_rwstat bytes; -+ struct blkg_rwstat ios; -+}; -+ -+struct bfq_group { -+ struct blkg_policy_data pd; -+ char blkg_path[128]; -+ int ref; -+ struct bfq_entity entity; -+ struct bfq_sched_data sched_data; -+ void *bfqd; -+ struct bfq_queue *async_bfqq[16]; -+ struct bfq_queue *async_idle_bfqq; -+ struct bfq_entity *my_entity; -+ int active_entities; -+ struct rb_root rq_pos_tree; -+ struct bfqg_stats stats; -+}; -+ -+enum bfqq_state_flags { -+ BFQQF_just_created = 0, -+ BFQQF_busy = 1, -+ BFQQF_wait_request = 2, -+ BFQQF_non_blocking_wait_rq = 3, -+ BFQQF_fifo_expire = 4, -+ BFQQF_has_short_ttime = 5, -+ BFQQF_sync = 6, -+ BFQQF_IO_bound = 7, -+ BFQQF_in_large_burst = 8, -+ BFQQF_softrt_update = 9, -+ BFQQF_coop = 10, -+ BFQQF_split_coop = 11, -+}; -+ -+enum bfqq_expiration { -+ BFQQE_TOO_IDLE = 0, -+ BFQQE_BUDGET_TIMEOUT = 1, -+ BFQQE_BUDGET_EXHAUSTED = 2, -+ BFQQE_NO_MORE_REQUESTS = 3, -+ BFQQE_PREEMPTED = 4, -+}; -+ -+struct bfq_group_data { -+ struct blkcg_policy_data pd; -+ unsigned int weight; -+}; -+ -+enum bip_flags { -+ BIP_BLOCK_INTEGRITY = 1, -+ BIP_MAPPED_INTEGRITY = 2, -+ BIP_CTRL_NOCHECK = 4, -+ BIP_DISK_NOCHECK = 8, -+ BIP_IP_CHECKSUM = 16, -+}; -+ -+enum blk_integrity_flags { -+ BLK_INTEGRITY_VERIFY = 1, -+ BLK_INTEGRITY_GENERATE = 2, -+ BLK_INTEGRITY_DEVICE_CAPABLE = 4, -+ BLK_INTEGRITY_IP_CHECKSUM = 8, -+}; -+ -+struct integrity_sysfs_entry { -+ struct attribute attr; -+ ssize_t (*show)(struct blk_integrity *, char *); -+ ssize_t (*store)(struct blk_integrity *, const char *, size_t); -+}; -+ -+struct virtio_device_id { -+ __u32 device; -+ __u32 vendor; -+}; -+ -+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; -+ void *priv; -+}; -+ -+struct vringh_config_ops; -+ -+struct virtio_config_ops; -+ -+struct virtio_device { -+ int index; -+ bool failed; -+ bool config_enabled; -+ 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; -+}; -+ -+typedef void vq_callback_t(struct virtqueue *); -+ -+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 **, vq_callback_t **, const char * const *, const bool *, struct irq_affinity *); -+ void (*del_vqs)(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); -+}; -+ -+struct virtio_shm_region { -+ u64 addr; -+ u64 len; -+}; -+ -+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 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_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_MAX = 8, -+}; -+ -+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; -+}; -+ -+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_hw_stats { -+ struct mutex lock; -+ long unsigned int timestamp; -+ long unsigned int lifespan; -+ const char * const *names; -+ 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, -+}; -+ -+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, -+}; -+ -+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 uverbs_attr_bundle; -+ -+struct rdma_cm_id; -+ -+struct iw_cm_id; -+ -+struct iw_cm_conn_param; -+ -+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_sge; -+ -+struct ib_mr_status; -+ -+struct ib_mw; -+ -+struct ib_xrcd; -+ -+struct ib_flow; -+ -+struct ib_flow_attr; -+ -+struct ib_flow_action; -+ -+struct ib_flow_action_attrs_esp; -+ -+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 *); -+ struct ib_qp * (*create_qp)(struct ib_pd *, 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 ib_udata *); -+ 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 *); -+ 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_udata *); -+ struct ib_mr * (*reg_user_mr_dmabuf)(struct ib_pd *, u64, u64, u64, int, int, struct ib_udata *); -+ 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 *); -+ struct ib_flow_action * (*create_flow_action_esp)(struct ib_device *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ int (*destroy_flow_action)(struct ib_flow_action *); -+ int (*modify_flow_action_esp)(struct ib_flow_action *, const struct ib_flow_action_attrs_esp *, struct uverbs_attr_bundle *); -+ 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 *); -+ 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 (*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 (*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 *); -+ int (*counter_unbind_qp)(struct ib_qp *); -+ int (*counter_dealloc)(struct rdma_counter *); -+ struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); -+ int (*counter_update_stats)(struct rdma_counter *); -+ int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); -+ int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); -+ size_t size_ib_ah; -+ size_t size_ib_counters; -+ size_t size_ib_cq; -+ size_t size_ib_mw; -+ size_t size_ib_pd; -+ size_t size_ib_rwq_ind_table; -+ size_t size_ib_srq; -+ size_t size_ib_ucontext; -+ size_t size_ib_xrcd; -+}; -+ -+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; -+ 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]; -+ 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; -+}; -+ -+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 ib_uverbs_flow_action_esp_keymat { -+ IB_UVERBS_FLOW_ACTION_ESP_KEYMAT_AES_GCM = 0, -+}; -+ -+struct ib_uverbs_flow_action_esp_keymat_aes_gcm { -+ __u64 iv; -+ __u32 iv_algo; -+ __u32 salt; -+ __u32 icv_len; -+ __u32 key_len; -+ __u32 aes_key[8]; -+}; -+ -+enum ib_uverbs_flow_action_esp_replay { -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_NONE = 0, -+ IB_UVERBS_FLOW_ACTION_ESP_REPLAY_BMP = 1, -+}; -+ -+struct ib_uverbs_flow_action_esp_replay_bmp { -+ __u32 size; -+}; -+ -+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 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 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 *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_REG_MR = 8, -+ IB_WC_MASKED_COMP_SWAP = 9, -+ IB_WC_MASKED_FETCH_ADD = 10, -+ 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_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 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_uverbs_file; -+ -+struct ib_ucontext { -+ struct ib_device *device; -+ struct ib_uverbs_file *ufile; -+ struct ib_rdmacg_object cg_obj; -+ 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_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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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; -+ u8 real_sz[0]; -+}; -+ -+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_flow_action_attrs_esp_keymats { -+ enum ib_uverbs_flow_action_esp_keymat protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_keymat_aes_gcm aes_gcm; -+ } keymat; -+}; -+ -+struct ib_flow_action_attrs_esp_replays { -+ enum ib_uverbs_flow_action_esp_replay protocol; -+ union { -+ struct ib_uverbs_flow_action_esp_replay_bmp bmp; -+ } replay; -+}; -+ -+struct ib_flow_spec_list { -+ struct ib_flow_spec_list *next; -+ union ib_flow_spec spec; -+}; -+ -+struct ib_flow_action_attrs_esp { -+ struct ib_flow_action_attrs_esp_keymats *keymat; -+ struct ib_flow_action_attrs_esp_replays *replay; -+ struct ib_flow_spec_list *encap; -+ u32 esn; -+ u32 spi; -+ u32 seq; -+ u32 tfc_pad; -+ u64 flags; -+ u64 hard_limit_pkts; -+}; -+ -+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; -+}; -+ -+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; -+ 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; -+}; -+ -+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 zone_report_args { -+ struct blk_zone *zones; -+}; -+ -+struct blk_revalidate_zone_args { -+ struct gendisk *disk; -+ long unsigned int *conv_zones_bitmap; -+ long unsigned int *seq_zones_wlock; -+ unsigned int nr_zones; -+ sector_t zone_sectors; -+ sector_t sector; -+}; -+ -+enum wbt_flags { -+ WBT_TRACKED = 1, -+ WBT_READ = 2, -+ WBT_KSWAPD = 4, -+ WBT_DISCARD = 8, -+ WBT_NR_BITS = 4, -+}; -+ -+enum { -+ WBT_STATE_ON_DEFAULT = 1, -+ WBT_STATE_ON_MANUAL = 2, -+ WBT_STATE_OFF_DEFAULT = 3, -+}; -+ -+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; -+ unsigned int wc; -+ 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; -+}; -+ -+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 { -+ 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; -+ long unsigned int rw; -+}; -+ -+struct show_busy_params { -+ struct seq_file *m; -+ struct blk_mq_hw_ctx *hctx; -+}; -+ -+typedef int (*cmp_r_func_t)(const void *, const void *, const void *); -+ -+struct siprand_state { -+ long unsigned int v0; -+ long unsigned int v1; -+ long unsigned int v2; -+ long unsigned int v3; -+}; -+ -+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; -+}; -+ -+enum { -+ REG_OP_ISFREE = 0, -+ REG_OP_ALLOC = 1, -+ REG_OP_RELEASE = 2, -+}; -+ -+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 csum_state { -+ __wsum csum; -+ size_t off; -+}; -+ -+struct rhltable { -+ struct rhashtable ht; -+}; -+ -+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; -+}; -+ -+union nested_table { -+ union nested_table *table; -+ struct rhash_lock_head *bucket; -+}; -+ -+struct once_work { -+ struct work_struct work; -+ struct static_key_true *key; -+ struct module *module; -+}; -+ -+struct genradix_iter { -+ size_t offset; -+ size_t pos; -+}; -+ -+struct genradix_node { -+ union { -+ struct genradix_node *children[512]; -+ u8 data[4096]; -+ }; -+}; -+ -+struct test_fail { -+ const char *str; -+ unsigned int base; -+}; -+ -+struct test_s8 { -+ const char *str; -+ unsigned int base; -+ s8 expected_res; -+}; -+ -+struct test_u8 { -+ const char *str; -+ unsigned int base; -+ u8 expected_res; -+}; -+ -+struct test_s16 { -+ const char *str; -+ unsigned int base; -+ s16 expected_res; -+}; -+ -+struct test_u16 { -+ const char *str; -+ unsigned int base; -+ u16 expected_res; -+}; -+ -+struct test_s32 { -+ const char *str; -+ unsigned int base; -+ s32 expected_res; -+}; -+ -+struct test_u32 { -+ const char *str; -+ unsigned int base; -+ u32 expected_res; -+}; -+ -+struct test_s64 { -+ const char *str; -+ unsigned int base; -+ s64 expected_res; -+}; -+ -+struct test_u64 { -+ const char *str; -+ unsigned int base; -+ u64 expected_res; -+}; -+ -+struct test_ll { -+ const char *str; -+ unsigned int base; -+ long long int expected_res; -+}; -+ -+struct test_ull { -+ const char *str; -+ unsigned int base; -+ long long unsigned int expected_res; -+}; -+ -+struct reciprocal_value_adv { -+ u32 m; -+ u8 sh; -+ u8 exp; -+ bool is_wide_m; -+}; -+ -+struct chacha20poly1305_testvec { -+ const u8 *input; -+ const u8 *output; -+ const u8 *assoc; -+ const u8 *nonce; -+ const u8 *key; -+ size_t ilen; -+ size_t alen; -+ size_t nlen; -+ bool failure; -+}; -+ -+enum { -+ MAXIMUM_TEST_BUFFER_LEN = 4096, -+}; -+ -+typedef __int128 unsigned u128___2; -+ -+enum devm_ioremap_type { -+ DEVM_IOREMAP = 0, -+ DEVM_IOREMAP_UC = 1, -+ DEVM_IOREMAP_WC = 2, -+ DEVM_IOREMAP_NP = 3, -+}; -+ -+struct pcim_iomap_devres { -+ void *table[6]; -+}; -+ -+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); -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef struct { -+ unsigned char op; -+ unsigned char bits; -+ short unsigned int val; -+} code; -+ -+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]; -+}; -+ -+union uu { -+ short unsigned int us; -+ unsigned char b[2]; -+}; -+ -+typedef unsigned int uInt; -+ -+typedef enum { -+ CODES = 0, -+ LENS = 1, -+ DISTS = 2, -+} codetype; -+ -+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 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 tree_desc_s tree_desc; -+ -+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 uint8_t BYTE; -+ -+typedef uint16_t U16; -+ -+typedef uint32_t U32; -+ -+typedef uint64_t U64; -+ -+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; -+ -+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 xz_dec; -+ -+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___2 { -+ 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; -+}; -+ -+struct xz_dec_lzma2___2 { -+ 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_bcj___2 { -+ enum { -+ BCJ_X86 = 4, -+ BCJ_POWERPC = 5, -+ BCJ_IA64 = 6, -+ BCJ_ARM = 7, -+ BCJ_ARMTHUMB = 8, -+ BCJ_SPARC = 9, -+ } 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_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 ts_linear_state { -+ unsigned int len; -+ const void *data; -+}; -+ -+struct ei_entry { -+ struct list_head list; -+ long unsigned int start_addr; -+ long unsigned int end_addr; -+ int etype; -+ void *priv; -+}; -+ -+struct ddebug_table { -+ struct list_head link; -+ 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; -+ unsigned int first_lineno; -+ unsigned int last_lineno; -+}; -+ -+struct ddebug_iter { -+ struct ddebug_table *table; -+ unsigned int idx; -+}; -+ -+struct flag_settings { -+ unsigned int flags; -+ unsigned int mask; -+}; -+ -+struct flagsbuf { -+ char buf[7]; -+}; -+ -+struct nla_bitfield32 { -+ __u32 value; -+ __u32 selector; -+}; -+ -+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 cpu_rmap { -+ struct kref refcount; -+ u16 size; -+ u16 used; -+ void **obj; -+ struct { -+ u16 index; -+ u16 dist; -+ } near[0]; -+}; -+ -+struct irq_glue { -+ struct irq_affinity_notify notify; -+ struct cpu_rmap *rmap; -+ u16 index; -+}; -+ -+typedef mpi_limb_t *mpi_ptr_t; -+ -+typedef int mpi_size_t; -+ -+typedef mpi_limb_t UWtype; -+ -+typedef unsigned int UHWtype; -+ -+enum gcry_mpi_constants { -+ MPI_C_ZERO = 0, -+ MPI_C_ONE = 1, -+ MPI_C_TWO = 2, -+ MPI_C_THREE = 3, -+ MPI_C_FOUR = 4, -+ MPI_C_EIGHT = 5, -+}; -+ -+struct barrett_ctx_s; -+ -+typedef struct barrett_ctx_s *mpi_barrett_t; -+ -+struct gcry_mpi_point { -+ MPI x; -+ MPI y; -+ MPI z; -+}; -+ -+typedef struct gcry_mpi_point *MPI_POINT; -+ -+enum gcry_mpi_ec_models { -+ MPI_EC_WEIERSTRASS = 0, -+ MPI_EC_MONTGOMERY = 1, -+ MPI_EC_EDWARDS = 2, -+}; -+ -+enum ecc_dialects { -+ ECC_DIALECT_STANDARD = 0, -+ ECC_DIALECT_ED25519 = 1, -+ ECC_DIALECT_SAFECURVE = 2, -+}; -+ -+struct mpi_ec_ctx { -+ enum gcry_mpi_ec_models model; -+ enum ecc_dialects dialect; -+ int flags; -+ unsigned int nbits; -+ MPI p; -+ MPI a; -+ MPI b; -+ MPI_POINT G; -+ MPI n; -+ unsigned int h; -+ MPI_POINT Q; -+ MPI d; -+ const char *name; -+ struct { -+ struct { -+ unsigned int a_is_pminus3: 1; -+ unsigned int two_inv_p: 1; -+ } valid; -+ int a_is_pminus3; -+ MPI two_inv_p; -+ mpi_barrett_t p_barrett; -+ MPI scratch[11]; -+ } t; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+}; -+ -+struct field_table { -+ const char *p; -+ void (*addm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*subm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mulm)(MPI, MPI, MPI, struct mpi_ec_ctx *); -+ void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); -+ void (*pow2)(MPI, const MPI, struct mpi_ec_ctx *); -+}; -+ -+enum gcry_mpi_format { -+ GCRYMPI_FMT_NONE = 0, -+ GCRYMPI_FMT_STD = 1, -+ GCRYMPI_FMT_PGP = 2, -+ GCRYMPI_FMT_SSH = 3, -+ GCRYMPI_FMT_HEX = 4, -+ GCRYMPI_FMT_USG = 5, -+ GCRYMPI_FMT_OPAQUE = 8, -+}; -+ -+struct barrett_ctx_s___2; -+ -+typedef struct barrett_ctx_s___2 *mpi_barrett_t___2; -+ -+struct barrett_ctx_s___2 { -+ MPI m; -+ int m_copied; -+ int k; -+ MPI y; -+ MPI r1; -+ MPI r2; -+ MPI r3; -+}; -+ -+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 long int mpi_limb_signed_t; -+ -+enum dim_tune_state { -+ DIM_PARKING_ON_TOP = 0, -+ DIM_PARKING_TIRED = 1, -+ DIM_GOING_RIGHT = 2, -+ DIM_GOING_LEFT = 3, -+}; -+ -+struct dim_cq_moder { -+ u16 usec; -+ u16 pkts; -+ u16 comps; -+ u8 cq_period_mode; -+}; -+ -+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, -+}; -+ -+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)); -+ -+struct sg_pool { -+ size_t size; -+ char *name; -+ struct kmem_cache *slab; -+ mempool_t *pool; -+}; -+ -+enum { -+ IRQ_POLL_F_SCHED = 0, -+ IRQ_POLL_F_DISABLE = 1, -+}; -+ -+union handle_parts { -+ depot_stack_handle_t handle; -+ struct { -+ u32 slabindex: 21; -+ u32 offset: 10; -+ u32 valid: 1; -+ }; -+}; -+ -+struct stack_record { -+ struct stack_record *next; -+ u32 hash; -+ u32 size; -+ union handle_parts handle; -+ long unsigned int entries[0]; -+}; -+ -+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 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; -+}; -+ -+struct pldmfw_ops; -+ -+struct pldmfw { -+ const struct pldmfw_ops *ops; -+ struct device *dev; -+}; -+ -+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 msr { -+ union { -+ struct { -+ u32 l; -+ u32 h; -+ }; -+ u64 q; -+ }; -+}; -+ -+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 warn_args___2; -+ -+struct compress_format { -+ unsigned char magic[2]; -+ const char *name; -+ decompress_fn decompressor; -+}; -+ -+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 { -+ int state; -+ uint32_t rep0; -+ uint32_t rep1; -+ uint32_t rep2; -+ uint32_t rep3; -+}; -+ -+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 fprop_local_single { -+ long unsigned int events; -+ unsigned int period; -+ raw_spinlock_t lock; -+}; -+ -+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 uevent_sock { -+ struct list_head list; -+ struct sock *sk; -+}; -+ -+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); -+}; -+ -+typedef struct { -+ long unsigned int key[2]; -+} hsiphash_key_t; -+ -+struct clk_core; -+ -+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 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 minmax_sample { -+ u32 t; -+ u32 v; -+}; -+ -+struct minmax { -+ struct minmax_sample s[3]; -+}; -+ -+struct xa_limit { -+ u32 max; -+ u32 min; -+}; -+ -+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, -+}; -+ -+struct in6_addr___2; -+ -+enum reg_type { -+ REG_TYPE_RM = 0, -+ REG_TYPE_REG = 1, -+ REG_TYPE_INDEX = 2, -+ REG_TYPE_BASE = 3, -+}; -+ -+enum device_link_state { -+ DL_STATE_NONE = 4294967295, -+ DL_STATE_DORMANT = 0, -+ DL_STATE_AVAILABLE = 1, -+ DL_STATE_CONSUMER_PROBE = 2, -+ DL_STATE_ACTIVE = 3, -+ DL_STATE_SUPPLIER_UNBIND = 4, -+}; -+ -+struct pinctrl; -+ -+struct pinctrl_state; -+ -+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 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 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_pin_desc { -+ unsigned int number; -+ const char *name; -+ void *drv_data; -+}; -+ -+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; -+}; -+ -+struct gpio_irq_chip { -+ struct irq_chip *chip; -+ struct irq_domain *domain; -+ const struct irq_domain_ops *domain_ops; -+ 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 *); -+ void * (*populate_parent_alloc_arg)(struct gpio_chip *, 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; -+ void *parent_handler_data; -+ unsigned int num_parents; -+ unsigned int *parents; -+ unsigned int *map; -+ bool threaded; -+ 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 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 base; -+ u16 ngpio; -+ 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; -+ spinlock_t bgpio_lock; -+ long unsigned int bgpio_data; -+ long unsigned int bgpio_dir; -+ struct gpio_irq_chip irq; -+ long unsigned int *valid_mask; -+}; -+ -+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_dev { -+ struct list_head node; -+ 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 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_MODE_LOW_POWER = 15, -+ PIN_CONFIG_MODE_PWM = 16, -+ PIN_CONFIG_OUTPUT = 17, -+ PIN_CONFIG_OUTPUT_ENABLE = 18, -+ PIN_CONFIG_PERSIST_STATE = 19, -+ PIN_CONFIG_POWER_SOURCE = 20, -+ PIN_CONFIG_SKEW_DELAY = 21, -+ PIN_CONFIG_SLEEP_HARDWARE_STATE = 22, -+ PIN_CONFIG_SLEW_RATE = 23, -+ 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 gpio_desc; -+ -+struct gpio_device { -+ int id; -+ struct device dev; -+ struct cdev chrdev; -+ struct device *mockdev; -+ struct module *owner; -+ struct gpio_chip *chip; -+ struct gpio_desc *descs; -+ int base; -+ u16 ngpio; -+ const char *label; -+ void *data; -+ struct list_head list; -+ struct blocking_notifier_head notifier; -+ struct list_head pin_ranges; -+}; -+ -+struct gpio_desc { -+ struct gpio_device *gdev; -+ long unsigned int flags; -+ const char *label; -+ const char *name; -+ unsigned int debounce_period_us; -+}; -+ -+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 pinctrl_maps { -+ struct list_head node; -+ const struct pinctrl_map *maps; -+ unsigned int num_maps; -+}; -+ -+struct pctldev; -+ -+struct amd_pingroup { -+ const char *name; -+ const unsigned int *pins; -+ unsigned int npins; -+}; -+ -+struct amd_gpio { -+ raw_spinlock_t lock; -+ void *base; -+ const struct amd_pingroup *groups; -+ u32 ngroups; -+ struct pinctrl_dev *pctrl; -+ struct gpio_chip gc; -+ unsigned int hwbank_num; -+ struct resource *res; -+ struct platform_device *pdev; -+ u32 *saved_regs; -+ int irq; -+}; -+ -+struct intel_pingroup { -+ const char *name; -+ const unsigned int *pins; -+ size_t npins; -+ short unsigned int mode; -+ const unsigned int *modes; -+}; -+ -+struct intel_function { -+ const char *name; -+ const char * const *groups; -+ size_t ngroups; -+}; -+ -+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_community_context; -+ -+struct intel_pad_context; -+ -+struct intel_pinctrl_context { -+ struct intel_pad_context *pads; -+ struct intel_community_context *communities; -+}; -+ -+struct intel_pad_context { -+ u32 conf0; -+ u32 val; -+}; -+ -+struct intel_pinctrl { -+ struct device *dev; -+ raw_spinlock_t lock; -+ struct pinctrl_desc pctldesc; -+ struct pinctrl_dev *pctldev; -+ struct gpio_chip chip; -+ struct irq_chip irqchip; -+ const struct intel_pinctrl_soc_data *soc; -+ struct intel_community *communities; -+ size_t ncommunities; -+ struct intel_pinctrl_context context; -+ int irq; -+}; -+ -+enum { -+ INTEL_GPIO_BASE_ZERO = 4294967294, -+ INTEL_GPIO_BASE_NOMAP = 4294967295, -+ 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; -+ struct irq_chip irqchip; -+ 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, -+}; -+ -+struct gpio_pin_range { -+ struct list_head node; -+ struct pinctrl_dev *pctldev; -+ struct pinctrl_gpio_range range; -+}; -+ -+struct gpio_array; -+ -+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_chip *chip; -+ long unsigned int *get_mask; -+ long unsigned int *set_mask; -+ long unsigned int invert_mask[0]; -+}; -+ -+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, -+}; -+ -+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_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 acpi_gpio_info { -+ struct acpi_device *adev; -+ enum gpiod_flags flags; -+ bool gpioint; -+ int pin_config; -+ int polarity; -+ int triggering; -+ unsigned int debounce; -+ unsigned int quirks; -+}; -+ -+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 devres; -+ -+struct gpio { -+ unsigned int gpio; -+ long unsigned int flags; -+ const char *label; -+}; -+ -+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, -+}; -+ -+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 linereq; -+ -+struct line { -+ struct gpio_desc *desc; -+ struct linereq *req; -+ unsigned int irq; -+ u64 eflags; -+ u64 timestamp_ns; -+ u32 req_seqno; -+ u32 line_seqno; -+ struct delayed_work work; -+ unsigned int sw_debounced; -+ unsigned int level; -+}; -+ -+struct linereq { -+ struct gpio_device *gdev; -+ const char *label; -+ u32 num_lines; -+ wait_queue_head_t wait; -+ 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 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; -+ long unsigned int *watched_lines; -+}; -+ -+typedef u64 acpi_size; -+ -+struct acpi_buffer { -+ acpi_size length; -+ void *pointer; -+}; -+ -+typedef void (*acpi_object_handler)(acpi_handle, void *); -+ -+typedef acpi_status (*acpi_adr_space_handler)(u32, acpi_physical_address, u32, u64 *, void *, void *); -+ -+struct acpi_connection_info { -+ u8 *connection; -+ u16 length; -+ u8 access_length; -+}; -+ -+typedef acpi_status (*acpi_adr_space_setup)(acpi_handle, u32, void *, void **); -+ -+struct acpi_resource_irq { -+ u8 descriptor_length; -+ u8 triggering; -+ u8 polarity; -+ u8 shareable; -+ u8 wake_capable; -+ u8 interrupt_count; -+ u8 interrupts[1]; -+}; -+ -+struct acpi_resource_dma { -+ u8 type; -+ u8 bus_master; -+ u8 transfer; -+ u8 channel_count; -+ u8 channels[1]; -+}; -+ -+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[1]; -+} __attribute__((packed)); -+ -+struct acpi_resource_vendor_typed { -+ u16 byte_length; -+ u8 uuid_subtype; -+ u8 uuid[16]; -+ u8 byte_data[1]; -+}; -+ -+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; -+ u32 interrupts[1]; -+} __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_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_address address; -+}; -+ -+struct acpi_resource { -+ u32 type; -+ u32 length; -+ union acpi_resource_data data; -+} __attribute__((packed)); -+ -+typedef acpi_status (*acpi_walk_resource_callback)(struct acpi_resource *, void *); -+ -+struct acpi_gpiolib_dmi_quirk { -+ bool no_edge_events_on_boot; -+ char *ignore_wake; -+}; -+ -+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_lookup { -+ struct acpi_gpio_info info; -+ int index; -+ u16 pin_index; -+ bool active_low; -+ struct gpio_desc *desc; -+ int n; -+}; -+ -+enum pwm_polarity { -+ PWM_POLARITY_NORMAL = 0, -+ PWM_POLARITY_INVERSED = 1, -+}; -+ -+struct pwm_args { -+ u64 period; -+ enum pwm_polarity polarity; -+}; -+ -+enum { -+ PWMF_REQUESTED = 1, -+ PWMF_EXPORTED = 2, -+}; -+ -+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; -+ unsigned int pwm; -+ struct pwm_chip *chip; -+ void *chip_data; -+ struct pwm_args args; -+ struct pwm_state state; -+ struct pwm_state last; -+}; -+ -+struct pwm_ops; -+ -+struct pwm_chip { -+ struct device *dev; -+ const struct pwm_ops *ops; -+ int base; -+ unsigned int npwm; -+ struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); -+ unsigned int of_pwm_n_cells; -+ struct list_head list; -+ struct pwm_device *pwms; -+}; -+ -+struct pwm_capture; -+ -+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); -+ int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); -+ void (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -+ struct module *owner; -+ int (*config)(struct pwm_chip *, struct pwm_device *, int, int); -+ int (*set_polarity)(struct pwm_chip *, struct pwm_device *, enum pwm_polarity); -+ int (*enable)(struct pwm_chip *, struct pwm_device *); -+ void (*disable)(struct pwm_chip *, struct pwm_device *); -+}; -+ -+struct pwm_capture { -+ unsigned int period; -+ unsigned int duty_cycle; -+}; -+ -+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; -+}; -+ -+struct trace_event_raw_pwm { -+ struct trace_entry ent; -+ struct pwm_device *pwm; -+ u64 period; -+ u64 duty_cycle; -+ enum pwm_polarity polarity; -+ bool enabled; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_pwm {}; -+ -+typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *); -+ -+typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *); -+ -+struct pwm_export { -+ struct device child; -+ struct pwm_device *pwm; -+ struct mutex lock; -+ struct pwm_state suspend; -+}; -+ -+enum { -+ pci_channel_io_normal = 1, -+ pci_channel_io_frozen = 2, -+ pci_channel_io_perm_failure = 3, -+}; -+ -+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]; -+ bool drivers_autoprobe; -+}; -+ -+struct rcec_ea { -+ u8 nextbusn; -+ u8 lastbusn; -+ u32 bitmap; -+}; -+ -+struct pci_bus_resource { -+ struct list_head list; -+ struct resource *res; -+ unsigned int flags; -+}; -+ -+typedef u64 pci_bus_addr_t; -+ -+struct pci_bus_region { -+ pci_bus_addr_t start; -+ pci_bus_addr_t end; -+}; -+ -+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; -+ -+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 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, -+}; -+ -+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_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 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 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 unsigned int private[0]; -+}; -+ -+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, -+}; -+ -+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 *, int); -+}; -+ -+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 bus_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct bus_type *, char *); -+ ssize_t (*store)(struct bus_type *, const char *, size_t); -+}; -+ -+enum pcie_reset_state { -+ pcie_deassert_reset = 1, -+ pcie_warm_reset = 2, -+ pcie_hot_reset = 3, -+}; -+ -+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, -+}; -+ -+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 pci_platform_pm_ops { -+ bool (*bridge_d3)(struct pci_dev *); -+ bool (*is_manageable)(struct pci_dev *); -+ int (*set_state)(struct pci_dev *, pci_power_t); -+ pci_power_t (*get_state)(struct pci_dev *); -+ void (*refresh_state)(struct pci_dev *); -+ pci_power_t (*choose_state)(struct pci_dev *); -+ int (*set_wakeup)(struct pci_dev *, bool); -+ bool (*need_resume)(struct pci_dev *); -+}; -+ -+struct pci_pme_device { -+ struct list_head list; -+ struct pci_dev *dev; -+}; -+ -+struct pci_saved_state { -+ u32 config_space[16]; -+ struct pci_cap_saved_data cap[0]; -+}; -+ -+struct pci_devres { -+ unsigned int enabled: 1; -+ unsigned int pinned: 1; -+ unsigned int orig_intx: 1; -+ unsigned int restore_intx: 1; -+ unsigned int mwi: 1; -+ u32 region_mask; -+}; -+ -+struct driver_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct device_driver *, char *); -+ ssize_t (*store)(struct device_driver *, const char *, size_t); -+}; -+ -+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, -+}; -+ -+enum dev_dma_attr { -+ DEV_DMA_NOT_SUPPORTED = 0, -+ DEV_DMA_NON_COHERENT = 1, -+ DEV_DMA_COHERENT = 2, -+}; -+ -+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 *); -+ void (*error_resume)(struct pci_dev *); -+ 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; -+}; -+ -+enum pci_mmap_state { -+ pci_mmap_io = 0, -+ pci_mmap_mem = 1, -+}; -+ -+enum pci_mmap_api { -+ PCI_MMAP_SYSFS = 0, -+ PCI_MMAP_PROCFS = 1, -+}; -+ -+struct pci_vpd_ops; -+ -+struct pci_vpd { -+ const struct pci_vpd_ops *ops; -+ struct mutex lock; -+ unsigned int len; -+ u16 flag; -+ u8 cap; -+ unsigned int busy: 1; -+ unsigned int valid: 1; -+}; -+ -+struct pci_vpd_ops { -+ ssize_t (*read)(struct pci_dev *, loff_t, size_t, void *); -+ ssize_t (*write)(struct pci_dev *, loff_t, size_t, const void *); -+}; -+ -+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 = 4294967295, -+ user_disabled = 0, -+ auto_disabled = 1, -+ user_enabled = 2, -+ auto_enabled = 3, -+}; -+ -+struct msix_entry { -+ u32 vector; -+ u16 entry; -+}; -+ -+struct portdrv_service_data { -+ struct pcie_port_service_driver *drv; -+ struct device *dev; -+ u32 service; -+}; -+ -+typedef int (*pcie_pm_callback_t)(struct pcie_device *); -+ -+struct walk_rcec_data { -+ struct pci_dev *rcec; -+ int (*user_callback)(struct pci_dev *, void *); -+ void *user_data; -+}; -+ -+struct aspm_latency { -+ u32 l0s; -+ u32 l1; -+}; -+ -+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; -+ char: 4; -+ u32 aspm_disable: 7; -+ u32 clkpm_capable: 1; -+ u32 clkpm_enabled: 1; -+ u32 clkpm_default: 1; -+ u32 clkpm_disable: 1; -+ struct aspm_latency latency_up; -+ struct aspm_latency latency_dw; -+ struct aspm_latency acceptable[8]; -+}; -+ -+struct aer_stats { -+ u64 dev_cor_errs[16]; -+ u64 dev_fatal_errs[27]; -+ u64 dev_nonfatal_errs[27]; -+ 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 aer_header_log_regs { -+ unsigned int dw0; -+ unsigned int dw1; -+ unsigned int dw2; -+ unsigned int dw3; -+}; -+ -+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 aer_header_log_regs 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 error_dev_num; -+ unsigned int id: 16; -+ unsigned int severity: 2; -+ unsigned int __pad1: 5; -+ 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 aer_header_log_regs tlp; -+}; -+ -+struct aer_err_source { -+ unsigned int status; -+ unsigned int 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 pcie_pme_service_data { -+ spinlock_t lock; -+ struct pcie_device *srv; -+ struct work_struct work; -+ bool noirq; -+}; -+ -+typedef void (*acpi_notify_handler)(acpi_handle, u32, void *); -+ -+struct pci_filp_private { -+ enum pci_mmap_state mmap_state; -+ int write_combine; -+}; -+ -+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 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 *); -+ void (*cleanup)(struct device *); -+}; -+ -+struct acpi_pci_root { -+ struct acpi_device *device; -+ struct pci_bus *bus; -+ u16 segment; -+ struct resource secondary; -+ u32 osc_support_set; -+ u32 osc_control_set; -+ phys_addr_t mcfg_addr; -+}; -+ -+enum pm_qos_flags_status { -+ PM_QOS_FLAGS_UNDEFINED = 4294967295, -+ PM_QOS_FLAGS_NONE = 0, -+ PM_QOS_FLAGS_SOME = 1, -+ PM_QOS_FLAGS_ALL = 2, -+}; -+ -+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 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_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_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_CAP_CSS_NVM = 1, -+ NVME_CAP_CSS_CSI = 64, -+ 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, -+ NVME_CMBMSC_CRE = 1, -+ NVME_CMBMSC_CMSE = 2, -+}; -+ -+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 *, int); -+}; -+ -+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 *); -+}; -+ -+typedef acpi_status (*acpi_walk_callback)(acpi_handle, u32, void *, void **); -+ -+struct controller { -+ struct pcie_device *pcie; -+ 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 ist_running; -+ int request_result; -+ wait_queue_head_t requester; -+}; -+ -+struct controller___2; -+ -+struct hpc_ops; -+ -+struct slot { -+ 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; -+ const struct hpc_ops *hpc_ops; -+ 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; -+ const struct hpc_ops *hpc_ops; -+ 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; -+}; -+ -+struct hpc_ops { -+ int (*power_on_slot)(struct slot *); -+ int (*slot_enable)(struct slot *); -+ int (*slot_disable)(struct slot *); -+ int (*set_bus_speed_mode)(struct slot *, enum pci_bus_speed); -+ int (*get_power_status)(struct slot *, u8 *); -+ int (*get_attention_status)(struct slot *, u8 *); -+ int (*set_attention_status)(struct slot *, u8); -+ int (*get_latch_status)(struct slot *, u8 *); -+ int (*get_adapter_status)(struct slot *, u8 *); -+ int (*get_adapter_speed)(struct slot *, enum pci_bus_speed *); -+ int (*get_mode1_ECC_cap)(struct slot *, u8 *); -+ int (*get_prog_int)(struct slot *, u8 *); -+ int (*query_power_fault)(struct slot *); -+ void (*green_led_on)(struct slot *); -+ void (*green_led_off)(struct slot *); -+ void (*green_led_blink)(struct slot *); -+ void (*release_ctlr)(struct controller___2 *); -+ int (*check_cmd_status)(struct controller___2 *); -+}; -+ -+struct event_info { -+ u32 event_type; -+ struct slot *p_slot; -+ struct work_struct work; -+}; -+ -+struct pushbutton_work_info { -+ struct slot *p_slot; -+ struct work_struct work; -+}; -+ -+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 acpiphp_slot; -+ -+struct slot___2 { -+ 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___2 *slot; -+ u8 device; -+ u32 flags; -+}; -+ -+struct acpiphp_attention_info { -+ int (*set_attn)(struct hotplug_slot *, u8); -+ int (*get_attn)(struct hotplug_slot *, u8 *); -+ struct module *owner; -+}; -+ -+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; -+}; -+ -+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 = 4294967295, -+ DMI_DEV_TYPE_OEM_STRING = 4294967294, -+ DMI_DEV_TYPE_DEV_ONBOARD = 4294967293, -+ DMI_DEV_TYPE_DEV_SLOT = 4294967292, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum vmd_features { -+ VMD_FEAT_HAS_MEMBAR_SHADOW = 1, -+ VMD_FEAT_HAS_BUS_RESTRICTIONS = 2, -+ VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP = 4, -+ VMD_FEAT_OFFSET_FIRST_VECTOR = 8, -+ VMD_FEAT_CAN_BYPASS_MSI_REMAP = 16, -+}; -+ -+struct vmd_irq_list; -+ -+struct vmd_irq { -+ struct list_head node; -+ struct vmd_irq_list *irq; -+ bool enabled; -+ unsigned int virq; -+}; -+ -+struct vmd_irq_list { -+ struct list_head irq_list; -+ struct srcu_struct srcu; -+ unsigned int count; -+}; -+ -+struct vmd_dev { -+ struct pci_dev *dev; -+ spinlock_t cfg_lock; -+ void *cfgbar; -+ int msix_count; -+ struct vmd_irq_list *irqs; -+ struct pci_sysdata sysdata; -+ struct resource resources[3]; -+ struct irq_domain *irq_domain; -+ struct pci_bus *bus; -+ u8 busn_start; -+ u8 first_vec; -+ char *name; -+ int instance; -+}; -+ -+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; -+ 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; -+ bool itc; -+ 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; -+ unsigned char pixel_repeat; -+ 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 = 4294967295, -+ 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; -+}; -+ -+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; -+}; -+ -+struct vc { -+ struct vc_data *d; -+ struct work_struct SAK_work; -+}; -+ -+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 linux_logo { -+ int type; -+ unsigned int width; -+ unsigned int height; -+ unsigned int clutsize; -+ const unsigned char *clut; -+ const unsigned char *data; -+}; -+ -+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_event { -+ struct fb_info *info; -+ void *data; -+}; -+ -+struct fb_pixmap { -+ u8 *addr; -+ u32 size; -+ u32 offset; -+ u32 buf_align; -+ u32 scan_align; -+ u32 access_align; -+ u32 flags; -+ u32 blit_x; -+ u32 blit_y; -+ void (*writeio)(struct fb_info *, void *, void *, unsigned int); -+ void (*readio)(struct fb_info *, void *, void *, unsigned int); -+}; -+ -+struct fb_deferred_io; -+ -+struct fb_ops; -+ -+struct fb_tile_ops; -+ -+struct apertures_struct; -+ -+struct fb_info { -+ atomic_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 work_struct queue; -+ struct fb_pixmap pixmap; -+ struct fb_pixmap sprite; -+ struct fb_cmap cmap; -+ struct list_head modelist; -+ struct fb_videomode *mode; -+ struct delayed_work deferred_work; -+ 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; -+ struct apertures_struct *apertures; -+ bool skip_vt_switch; -+}; -+ -+struct fb_blit_caps { -+ u32 x; -+ u32 y; -+ u32 len; -+ u32 flags; -+}; -+ -+struct fb_deferred_io { -+ long unsigned int delay; -+ struct mutex lock; -+ struct list_head pagelist; -+ void (*first_io)(struct fb_info *); -+ 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 aperture { -+ resource_size_t base; -+ resource_size_t size; -+}; -+ -+struct apertures_struct { -+ unsigned int count; -+ struct aperture ranges[0]; -+}; -+ -+enum backlight_update_reason { -+ BACKLIGHT_UPDATE_HOTKEY = 0, -+ BACKLIGHT_UPDATE_SYSFS = 1, -+}; -+ -+enum backlight_type { -+ BACKLIGHT_RAW = 1, -+ BACKLIGHT_PLATFORM = 2, -+ BACKLIGHT_FIRMWARE = 3, -+ BACKLIGHT_TYPE_MAX = 4, -+}; -+ -+enum backlight_notification { -+ BACKLIGHT_REGISTERED = 0, -+ BACKLIGHT_UNREGISTERED = 1, -+}; -+ -+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 *); -+ int (*check_fb)(struct backlight_device *, struct fb_info *); -+}; -+ -+struct backlight_properties { -+ int brightness; -+ int max_brightness; -+ int power; -+ int fb_blank; -+ 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 fb_cmap_user { -+ __u32 start; -+ __u32 len; -+ __u16 *red; -+ __u16 *green; -+ __u16 *blue; -+ __u16 *transp; -+}; -+ -+struct fb_modelist { -+ struct list_head list; -+ struct fb_videomode mode; -+}; -+ -+struct logo_data { -+ int depth; -+ int needs_directpalette; -+ int needs_truepalette; -+ int needs_cmapreset; -+ const struct linux_logo *logo; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef unsigned char u_char; -+ -+struct fb_con2fbmap { -+ __u32 console; -+ __u32 framebuffer; -+}; -+ -+struct fbcon_display { -+ const u_char *fontdata; -+ int userfont; -+ u_short scrollmode; -+ 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); -+ 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 *, int, int, int); -+ int (*update_start)(struct fb_info *); -+ int (*rotate_font)(struct fb_info *, struct vc_data *); -+ struct fb_var_screeninfo var; -+ struct timer_list cursor_timer; -+ 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; -+ int flags; -+ int rotate; -+ int cur_rotate; -+ char *cursor_data; -+ u8 *fontbuffer; -+ u8 *fontdata; -+ u8 *cursor_src; -+ u32 cursor_size; -+ u32 fd_size; -+}; -+ -+enum { -+ FBCON_LOGO_CANSHOW = 4294967295, -+ FBCON_LOGO_DRAW = 4294967294, -+ FBCON_LOGO_DONTSHOW = 4294967293, -+}; -+ -+struct vesafb_par { -+ u32 pseudo_palette[256]; -+ int wc_cookie; -+ struct resource *region; -+}; -+ -+enum drm_panel_orientation { -+ DRM_MODE_PANEL_ORIENTATION_UNKNOWN = 4294967295, -+ 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, -+}; -+ -+struct thermal_cooling_device_ops; -+ -+struct thermal_cooling_device { -+ int id; -+ char *type; -+ 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; -+}; -+ -+struct idle_cpu { -+ struct cpuidle_state *state_table; -+ long unsigned int auto_demotion_disable_flags; -+ bool byt_auto_demotion_disable_flag; -+ bool disable_promotion_to_c1e; -+ 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_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; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ struct acpi_processor_px *states; -+ struct acpi_psd_package domain_info; -+ cpumask_var_t shared_cpu_map; -+ unsigned int shared_type; -+ int: 32; -+} __attribute__((packed)); -+ -+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; -+ short: 16; -+ unsigned int state_count; -+ int: 32; -+ 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; -+ char: 8; -+ unsigned int shared_type; -+ struct acpi_processor_tx states[16]; -+ int: 32; -+} __attribute__((packed)); -+ -+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; -+}; -+ -+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, -+}; -+ -+struct dmi_header { -+ u8 type; -+ u8 length; -+ u16 handle; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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 software_node { -+ const char *name; -+ const struct software_node *parent; -+ const struct property_entry *properties; -+}; -+ -+typedef u16 acpi_owner_id; -+ -+union acpi_name_union { -+ u32 integer; -+ char ascii[4]; -+}; -+ -+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_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_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; -+} __attribute__((packed)); -+ -+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]; -+}; -+ -+enum acpi_subtable_type { -+ ACPI_SUBTABLE_COMMON = 0, -+ ACPI_SUBTABLE_HMAT = 1, -+ ACPI_SUBTABLE_PRMT = 2, -+}; -+ -+struct acpi_subtable_entry { -+ union acpi_subtable_headers *hdr; -+ enum acpi_subtable_type type; -+}; -+ -+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; -+}; -+ -+typedef u32 (*acpi_interface_handler)(acpi_string, u32); -+ -+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_predefined_names { -+ const char *name; -+ u8 type; -+ char *val; -+}; -+ -+typedef u32 (*acpi_osd_handler)(void *); -+ -+typedef void (*acpi_osd_exec_callback)(void *); -+ -+typedef u32 (*acpi_gpe_handler)(acpi_handle, u32, void *); -+ -+struct acpi_pci_id { -+ u16 segment; -+ u16 bus; -+ u16 device; -+ u16 function; -+}; -+ -+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; -+}; -+ -+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; -+ -+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; -+}; -+ -+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; -+}; -+ -+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; -+ 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; -+ 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 { -+ u32 parse_args; -+ u32 runtime_args; -+ u16 flags; -+ u8 object_type; -+ u8 class; -+ u8 type; -+}; -+ -+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 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; -+}; -+ -+struct acpi_handle_list { -+ u32 count; -+ acpi_handle handles[10]; -+}; -+ -+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 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 acpi_wakeup_handler { -+ struct list_head list_node; -+ bool (*wakeup)(void *); -+ void *context; -+}; -+ -+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]; -+}; -+ -+struct acpi_hardware_id { -+ struct list_head list; -+ const char *id; -+}; -+ -+struct acpi_data_node { -+ const char *name; -+ acpi_handle handle; -+ struct fwnode_handle fwnode; -+ struct fwnode_handle *parent; -+ struct acpi_device_data data; -+ struct list_head sibling; -+ 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 pm_domain_data { -+ struct list_head list_node; -+ struct device *dev; -+}; -+ -+struct acpi_device_physical_node { -+ unsigned int node_id; -+ struct list_head node; -+ struct device *dev; -+ bool put_online: 1; -+}; -+ -+typedef u32 (*acpi_event_handler)(void *); -+ -+typedef acpi_status (*acpi_table_handler)(u32, void *, void *); -+ -+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_osc_context { -+ char *uuid_str; -+ int rev; -+ struct acpi_buffer cap; -+ struct acpi_buffer ret; -+}; -+ -+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]; -+}; -+ -+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_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 reserved1; -+ u16 pci_device_id; -+ u16 pci_vendor_id; -+ u8 pci_bus; -+ u8 pci_device; -+ u8 pci_function; -+ u32 pci_flags; -+ u8 pci_segment; -+ u32 reserved2; -+} __attribute__((packed)); -+ -+struct acpi_table_stao { -+ struct acpi_table_header header; -+ u8 ignore_uart; -+} __attribute__((packed)); -+ -+struct acpi_dep_data { -+ struct list_head node; -+ acpi_handle supplier; -+ acpi_handle consumer; -+}; -+ -+enum acpi_reconfig_event { -+ ACPI_RECONFIG_DEVICE_ADD = 0, -+ ACPI_RECONFIG_DEVICE_REMOVE = 1, -+}; -+ -+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 platform_device___2; -+ -+struct resource_win { -+ struct resource res; -+ resource_size_t offset; -+}; -+ -+struct res_proc_context { -+ struct list_head *list; -+ int (*preproc)(struct acpi_resource *, void *); -+ void *preproc_data; -+ int count; -+ int error; -+}; -+ -+struct acpi_processor_errata { -+ u8 smp; -+ struct { -+ u8 throttle: 1; -+ u8 fdma: 1; -+ u8 reserved: 6; -+ u32 bmisx; -+ } piix4; -+}; -+ -+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[1]; -+} __attribute__((packed)); -+ -+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; -+ long unsigned int nr_pending_queries; -+ 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_QUERY_PENDING = 1, -+ EC_FLAGS_QUERY_GUARDING = 2, -+ EC_FLAGS_EVENT_HANDLER_INSTALLED = 3, -+ EC_FLAGS_EC_HANDLER_INSTALLED = 4, -+ EC_FLAGS_QUERY_METHODS_INSTALLED = 5, -+ EC_FLAGS_STARTED = 6, -+ EC_FLAGS_STOPPED = 7, -+ EC_FLAGS_EVENTS_MASKED = 8, -+}; -+ -+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 dock_station { -+ acpi_handle handle; -+ long unsigned int last_dock_time; -+ u32 flags; -+ struct list_head dependent_devices; -+ struct list_head sibling; -+ struct platform_device *dock_device; -+}; -+ -+struct dock_dependent_device { -+ struct list_head list; -+ struct acpi_device *adev; -+}; -+ -+enum dock_callback_type { -+ DOCK_CALL_HANDLER = 0, -+ DOCK_CALL_FIXUP = 1, -+ DOCK_CALL_UEVENT = 2, -+}; -+ -+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_osc_bit_struct { -+ u32 bit; -+ char *desc; -+}; -+ -+struct acpi_handle_node { -+ struct list_head node; -+ acpi_handle handle; -+}; -+ -+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 acpi_pci_routing_table { -+ u32 length; -+ u32 pin; -+ u64 address; -+ u32 source_index; -+ char source[4]; -+}; -+ -+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 lpss_clk_data { -+ const char *name; -+ struct clk *clk; -+}; -+ -+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; -+ 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 fch_clk_data { -+ void *base; -+ u32 is_rv; -+}; -+ -+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_power_dependent_device { -+ struct device *dev; -+ struct list_head node; -+}; -+ -+struct acpi_power_resource { -+ struct acpi_device device; -+ struct list_head list_node; -+ char *name; -+ u32 system_level; -+ u32 order; -+ unsigned int ref_count; -+ u8 state; -+ bool wakeup_enabled; -+ struct mutex resource_lock; -+ struct list_head dependents; -+}; -+ -+struct acpi_power_resource_entry { -+ struct list_head node; -+ struct acpi_power_resource *resource; -+}; -+ -+struct acpi_bus_event { -+ struct list_head node; -+ acpi_device_class device_class; -+ acpi_bus_id bus_id; -+ u32 type; -+ u32 data; -+}; -+ -+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_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 void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); -+ -+struct acpi_table_bert { -+ struct acpi_table_header header; -+ u32 region_length; -+ u64 address; -+}; -+ -+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; -+}; -+ -+struct acpi_device_properties { -+ const guid_t *guid; -+ const union acpi_object *properties; -+ struct list_head list; -+}; -+ -+struct always_present_id { -+ struct acpi_device_id hid[2]; -+ struct x86_cpu_id cpu_ids[2]; -+ struct dmi_system_id dmi_ids[2]; -+ const char *uid; -+}; -+ -+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 acpi_lpat { -+ int temp; -+ int raw; -+}; -+ -+struct acpi_lpat_conversion_table { -+ struct acpi_lpat *lpat; -+ int lpat_count; -+}; -+ -+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; -+} __attribute__((packed)); -+ -+struct lpit_residency_info { -+ struct acpi_generic_address gaddr; -+ u64 frequency; -+ void *iomem_addr; -+}; -+ -+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; -+} __attribute__((packed)); -+ -+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 { -+ guid_t guid; -+ u64 handler_addr; -+ 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_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; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+typedef u32 acpi_name; -+ -+typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); -+ -+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, -+}; -+ -+typedef acpi_status (*acpi_execute_op)(struct acpi_walk_state *); -+ -+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; -+}; -+ -+typedef u32 acpi_mutex_handle; -+ -+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_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 *); -+ -+struct acpi_reg_walk_info { -+ u32 function; -+ u32 reg_run_count; -+ acpi_adr_space_type space_id; -+}; -+ -+typedef u32 (*acpi_sci_handler)(void *); -+ -+struct acpi_sci_handler_info { -+ struct acpi_sci_handler_info *next; -+ acpi_sci_handler address; -+ void *context; -+}; -+ -+enum { -+ AML_FIELD_UPDATE_PRESERVE = 0, -+ AML_FIELD_UPDATE_WRITE_AS_ONES = 32, -+ AML_FIELD_UPDATE_WRITE_AS_ZEROS = 64, -+}; -+ -+struct acpi_signal_fatal_info { -+ u32 type; -+ u32 code; -+ u32 argument; -+}; -+ -+enum { -+ MATCH_MTR = 0, -+ MATCH_MEQ = 1, -+ MATCH_MLE = 2, -+ MATCH_MLT = 3, -+ MATCH_MGE = 4, -+ MATCH_MGT = 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, -+}; -+ -+typedef enum { -+ ACPI_TRACE_AML_METHOD = 0, -+ ACPI_TRACE_AML_OPCODE = 1, -+ ACPI_TRACE_AML_REGION = 2, -+} acpi_trace_event_type; -+ -+struct acpi_gpe_block_status_context { -+ struct acpi_gpe_register_info *gpe_skip_register_info; -+ u8 gpe_skip_mask; -+ u8 retval; -+}; -+ -+struct acpi_bit_register_info { -+ u8 parent_register; -+ u8 bit_position; -+ u16 access_bit_mask; -+}; -+ -+struct acpi_port_info { -+ char *name; -+ u16 start; -+ u16 end; -+ u8 osi_dependency; -+}; -+ -+struct acpi_pci_device { -+ acpi_handle device; -+ struct acpi_pci_device *next; -+}; -+ -+typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); -+ -+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_pkg_callback)(u8, union acpi_operand_object *, union acpi_generic_state *, void *); -+ -+struct acpi_table_list { -+ struct acpi_table_desc *tables; -+ u32 current_table_count; -+ u32 max_table_count; -+ u8 flags; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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_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_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; -+}; -+ -+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; -+ u32 interrupts[1]; -+} __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_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_address address; -+ u32 dword_item; -+ u16 word_item; -+ u8 byte_item; -+}; -+ -+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, -+}; -+ -+typedef u16 acpi_rs_length; -+ -+typedef acpi_status (*acpi_walk_aml_callback)(u8 *, u32, u32, u8, void **); -+ -+typedef u32 acpi_rsdesc_size; -+ -+struct acpi_vendor_uuid { -+ u8 subtype; -+ u8 data[16]; -+}; -+ -+struct acpi_vendor_walk_info { -+ struct acpi_vendor_uuid *uuid; -+ struct acpi_buffer *buffer; -+ acpi_status status; -+}; -+ -+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)); -+ -+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; -+}; -+ -+struct acpi_pkg_info { -+ u8 *free_space; -+ acpi_size length; -+ u32 object_space; -+ u32 num_packages; -+}; -+ -+struct acpi_exception_info { -+ char *name; -+}; -+ -+struct acpi_mutex_info { -+ void *mutex; -+ u32 use_count; -+ u64 thread_id; -+}; -+ -+struct acpi_comment_node { -+ char *comment; -+ struct acpi_comment_node *next; -+}; -+ -+struct acpi_interface_info { -+ char *name; -+ struct acpi_interface_info *next; -+ u8 flags; -+ u8 value; -+}; -+ -+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; -+ 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 work_struct set_brightness_work; -+ int delayed_set_value; -+ 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; -+ 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 *); -+ struct led_hw_trigger_type *trigger_type; -+ rwlock_t leddev_list_lock; -+ struct list_head led_cdevs; -+ struct list_head next_trig; -+ const struct attribute_group **groups; -+}; -+ -+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_INPUT_CURRENT_LIMIT = 37, -+ POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 38, -+ POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 39, -+ POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 40, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 41, -+ POWER_SUPPLY_PROP_ENERGY_FULL = 42, -+ POWER_SUPPLY_PROP_ENERGY_EMPTY = 43, -+ POWER_SUPPLY_PROP_ENERGY_NOW = 44, -+ POWER_SUPPLY_PROP_ENERGY_AVG = 45, -+ POWER_SUPPLY_PROP_CAPACITY = 46, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 47, -+ POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 48, -+ POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 49, -+ POWER_SUPPLY_PROP_CAPACITY_LEVEL = 50, -+ POWER_SUPPLY_PROP_TEMP = 51, -+ POWER_SUPPLY_PROP_TEMP_MAX = 52, -+ POWER_SUPPLY_PROP_TEMP_MIN = 53, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 54, -+ POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 55, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT = 56, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 57, -+ POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 58, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 59, -+ POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 60, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 61, -+ POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 62, -+ POWER_SUPPLY_PROP_TYPE = 63, -+ POWER_SUPPLY_PROP_USB_TYPE = 64, -+ POWER_SUPPLY_PROP_SCOPE = 65, -+ POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 66, -+ POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 67, -+ POWER_SUPPLY_PROP_CALIBRATE = 68, -+ POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 69, -+ POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 70, -+ POWER_SUPPLY_PROP_MANUFACTURE_DAY = 71, -+ POWER_SUPPLY_PROP_MODEL_NAME = 72, -+ POWER_SUPPLY_PROP_MANUFACTURER = 73, -+ POWER_SUPPLY_PROP_SERIAL_NUMBER = 74, -+}; -+ -+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, -+}; -+ -+union power_supply_propval { -+ int intval; -+ const char *strval; -+}; -+ -+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 power_supply; -+ -+struct power_supply_desc { -+ const char *name; -+ enum power_supply_type type; -+ const enum power_supply_usb_type *usb_types; -+ size_t num_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 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; -+ 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 thermal_zone_device *tzd; -+ struct thermal_cooling_device *tcd; -+ struct led_trigger *charging_full_trig; -+ char *charging_full_trig_name; -+ struct led_trigger *charging_trig; -+ char *charging_trig_name; -+ struct led_trigger *full_trig; -+ char *full_trig_name; -+ struct led_trigger *online_trig; -+ char *online_trig_name; -+ struct led_trigger *charging_blink_full_solid_trig; -+ char *charging_blink_full_solid_trig_name; -+}; -+ -+struct acpi_ac_bl { -+ const char *hid; -+ int hrv; -+}; -+ -+struct acpi_ac { -+ struct power_supply *charger; -+ struct power_supply_desc charger_desc; -+ struct acpi_device *device; -+ long long unsigned int state; -+ struct notifier_block battery_nb; -+}; -+ -+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; -+ 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); -+ void (*events)(struct input_handle *, const 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; -+}; -+ -+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_fan_fps { -+ u64 control; -+ u64 trip_point; -+ u64 speed; -+ u64 noise_level; -+ u64 power; -+ char name[20]; -+ struct device_attribute dev_attr; -+}; -+ -+struct acpi_fan_fif { -+ u64 revision; -+ u64 fine_grain_ctrl; -+ u64 step_size; -+ u64 low_speed_notification; -+}; -+ -+struct acpi_fan { -+ bool acpi4; -+ struct acpi_fan_fif fif; -+ struct acpi_fan_fps *fps; -+ int fps_count; -+ struct thermal_cooling_device *cdev; -+}; -+ -+struct acpi_pci_slot { -+ struct pci_slot *pci_slot; -+ struct list_head list; -+}; -+ -+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 throttling_tstate { -+ unsigned int cpu; -+ int target_state; -+}; -+ -+struct acpi_processor_throttling_arg { -+ struct acpi_processor *pr; -+ int target_state; -+ bool force; -+}; -+ -+struct container_dev { -+ struct device dev; -+ int (*offline)(struct container_dev *); -+}; -+ -+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, -+ THERMAL_TREND_RAISE_FULL = 3, -+ THERMAL_TREND_DROP_FULL = 4, -+}; -+ -+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, -+}; -+ -+struct thermal_zone_device_ops { -+ int (*bind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ int (*unbind)(struct thermal_zone_device *, struct thermal_cooling_device *); -+ 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 (*get_trip_type)(struct thermal_zone_device *, int, enum thermal_trip_type *); -+ int (*get_trip_temp)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_temp)(struct thermal_zone_device *, int, int); -+ int (*get_trip_hyst)(struct thermal_zone_device *, int, int *); -+ int (*set_trip_hyst)(struct thermal_zone_device *, int, 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 *, int, enum thermal_trend *); -+ void (*hot)(struct thermal_zone_device *); -+ void (*critical)(struct thermal_zone_device *); -+}; -+ -+struct thermal_attr; -+ -+struct thermal_zone_params; -+ -+struct thermal_governor; -+ -+struct thermal_zone_device { -+ int id; -+ char type[20]; -+ struct device device; -+ struct attribute_group trips_attribute_group; -+ struct thermal_attr *trip_temp_attrs; -+ struct thermal_attr *trip_type_attrs; -+ struct thermal_attr *trip_hyst_attrs; -+ enum thermal_device_mode mode; -+ void *devdata; -+ int trips; -+ long unsigned int trips_disabled; -+ long unsigned int passive_delay_jiffies; -+ long unsigned int polling_delay_jiffies; -+ int temperature; -+ int last_temperature; -+ int emul_temperature; -+ int passive; -+ int prev_low_trip; -+ int prev_high_trip; -+ atomic_t need_update; -+ struct thermal_zone_device_ops *ops; -+ struct thermal_zone_params *tzp; -+ struct thermal_governor *governor; -+ void *governor_data; -+ struct list_head thermal_instances; -+ struct ida ida; -+ struct mutex lock; -+ struct list_head node; -+ struct delayed_work poll_queue; -+ enum thermal_notify_event notify_event; -+}; -+ -+struct thermal_bind_params; -+ -+struct thermal_zone_params { -+ char governor_name[20]; -+ bool no_hwmon; -+ int num_tbps; -+ struct thermal_bind_params *tbp; -+ 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 { -+ char name[20]; -+ int (*bind_to_tz)(struct thermal_zone_device *); -+ void (*unbind_from_tz)(struct thermal_zone_device *); -+ int (*throttle)(struct thermal_zone_device *, int); -+ struct list_head governor_list; -+}; -+ -+struct thermal_bind_params { -+ struct thermal_cooling_device *cdev; -+ int weight; -+ int trip_mask; -+ long unsigned int *binding_limits; -+ int (*match)(struct thermal_zone_device *, struct thermal_cooling_device *); -+}; -+ -+struct acpi_thermal_state { -+ u8 critical: 1; -+ u8 hot: 1; -+ u8 passive: 1; -+ u8 active: 1; -+ u8 reserved: 4; -+ int active_index; -+}; -+ -+struct acpi_thermal_state_flags { -+ u8 valid: 1; -+ u8 enabled: 1; -+ u8 reserved: 6; -+}; -+ -+struct acpi_thermal_critical { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+}; -+ -+struct acpi_thermal_hot { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+}; -+ -+struct acpi_thermal_passive { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+ long unsigned int tc1; -+ long unsigned int tc2; -+ long unsigned int tsp; -+ struct acpi_handle_list devices; -+}; -+ -+struct acpi_thermal_active { -+ struct acpi_thermal_state_flags flags; -+ long unsigned int temperature; -+ struct acpi_handle_list devices; -+}; -+ -+struct acpi_thermal_trips { -+ struct acpi_thermal_critical critical; -+ struct acpi_thermal_hot hot; -+ struct acpi_thermal_passive passive; -+ struct acpi_thermal_active active[10]; -+}; -+ -+struct acpi_thermal_flags { -+ u8 cooling_mode: 1; -+ u8 devices: 1; -+ u8 reserved: 6; -+}; -+ -+struct acpi_thermal { -+ struct acpi_device *device; -+ acpi_bus_id name; -+ long unsigned int temperature; -+ long unsigned int last_temperature; -+ long unsigned int polling_frequency; -+ volatile u8 zombie; -+ struct acpi_thermal_flags flags; -+ struct acpi_thermal_state state; -+ struct acpi_thermal_trips trips; -+ struct acpi_handle_list devices; -+ struct thermal_zone_device *thermal_zone; -+ int kelvin_offset; -+ struct work_struct thermal_check_work; -+ struct mutex thermal_check_lock; -+ refcount_t thermal_check_count; -+}; -+ -+struct acpi_table_slit { -+ struct acpi_table_header header; -+ u64 locality_count; -+ u8 entry[1]; -+} __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_RESERVED = 6, -+}; -+ -+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_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; -+}; -+ -+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 reserved2; -+ u16 number_of_SMBIOShandles; -+}; -+ -+struct node_hmem_attrs { -+ 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, -+}; -+ -+struct node_cache_attrs { -+ enum cache_indexing indexing; -+ enum cache_write_policy write_policy; -+ u64 size; -+ u16 line_size; -+ u8 level; -+}; -+ -+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; -+}; -+ -+struct memory_target { -+ struct list_head node; -+ unsigned int memory_pxm; -+ unsigned int processor_pxm; -+ struct resource memregions; -+ struct node_hmem_attrs hmem_attrs[2]; -+ struct list_head caches; -+ struct node_cache_attrs cache_attrs; -+ bool registered; -+}; -+ -+struct memory_initiator { -+ struct list_head node; -+ unsigned int processor_pxm; -+ bool has_cpu; -+}; -+ -+struct acpi_memory_info { -+ struct list_head list; -+ u64 start_addr; -+ u64 length; -+ short unsigned int caching; -+ short unsigned int write_protect; -+ unsigned int enabled: 1; -+}; -+ -+struct acpi_memory_device { -+ struct acpi_device *device; -+ struct list_head res_list; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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_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, -+}; -+ -+struct acpi_battery_hook { -+ const char *name; -+ int (*add_battery)(struct power_supply *); -+ int (*remove_battery)(struct power_supply *); -+ struct list_head list; -+}; -+ -+enum { -+ ACPI_BATTERY_ALARM_PRESENT = 0, -+ ACPI_BATTERY_XINFO_PRESENT = 1, -+ ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY = 2, -+ ACPI_BATTERY_QUIRK_THINKPAD_MAH = 3, -+ ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE = 4, -+}; -+ -+struct acpi_battery { -+ struct mutex lock; -+ struct mutex sysfs_lock; -+ struct power_supply *bat; -+ struct power_supply_desc bat_desc; -+ struct acpi_device *device; -+ struct notifier_block pm_nb; -+ struct list_head list; -+ long unsigned int update_time; -+ int revision; -+ int rate_now; -+ int capacity_now; -+ int voltage_now; -+ int design_capacity; -+ int full_charge_capacity; -+ int technology; -+ int design_voltage; -+ int design_capacity_warning; -+ int design_capacity_low; -+ int cycle_count; -+ int measurement_accuracy; -+ int max_sampling_time; -+ int min_sampling_time; -+ int max_averaging_interval; -+ int min_averaging_interval; -+ int capacity_granularity_1; -+ int capacity_granularity_2; -+ int alarm; -+ char model_number[32]; -+ char serial_number[32]; -+ char type[32]; -+ char oem_info[32]; -+ int state; -+ int power_unit; -+ long unsigned int flags; -+}; -+ -+struct acpi_offsets { -+ size_t offset; -+ u8 mode; -+}; -+ -+struct acpi_table_bgrt { -+ struct acpi_table_header header; -+ u16 version; -+ u8 status; -+ u8 image_type; -+ u64 image_address; -+ u32 image_offset_x; -+ u32 image_offset_y; -+}; -+ -+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_shared_memory { -+ u32 signature; -+ u16 command; -+ u16 status; -+}; -+ -+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_client; -+ -+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; -+ struct list_head node; -+}; -+ -+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 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; -+ 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; -+}; -+ -+struct cppc_perf_fb_ctrs { -+ u64 reference; -+ u64 delivered; -+ u64 reference_perf; -+ u64 wraparound_time; -+}; -+ -+struct cppc_cpudata { -+ struct list_head node; -+ 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 mbox_chan *pcc_channel; -+ void *pcc_comm_addr; -+ 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_whea_header { -+ u8 action; -+ u8 instruction; -+ u8 flags; -+ u8 reserved; -+ struct acpi_generic_address register_region; -+ u64 value; -+ u64 mask; -+} __attribute__((packed)); -+ -+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_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; -+} __attribute__((packed)); -+ -+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 ghes_arr { -+ struct platform_device **ghes_devs; -+ unsigned int count; -+}; -+ -+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 erst_erange { -+ u64 base; -+ u64 size; -+ void *vaddr; -+ u32 attr; -+}; -+ -+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 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 acpi_hest_notify_types { -+ ACPI_HEST_NOTIFY_POLLED = 0, -+ ACPI_HEST_NOTIFY_EXTERNAL = 1, -+ ACPI_HEST_NOTIFY_LOCAL = 2, -+ ACPI_HEST_NOTIFY_SCI = 3, -+ ACPI_HEST_NOTIFY_NMI = 4, -+ ACPI_HEST_NOTIFY_CMCI = 5, -+ ACPI_HEST_NOTIFY_MCE = 6, -+ ACPI_HEST_NOTIFY_GPIO = 7, -+ ACPI_HEST_NOTIFY_SEA = 8, -+ ACPI_HEST_NOTIFY_SEI = 9, -+ ACPI_HEST_NOTIFY_GSIV = 10, -+ ACPI_HEST_NOTIFY_SOFTWARE_DELEGATED = 11, -+ ACPI_HEST_NOTIFY_RESERVED = 12, -+}; -+ -+struct acpi_hest_generic_v2 { -+ 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_generic_address read_ack_register; -+ u64 read_ack_preserve; -+ u64 read_ack_write; -+} __attribute__((packed)); -+ -+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 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_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 ghes { -+ union { -+ struct acpi_hest_generic *generic; -+ struct acpi_hest_generic_v2 *generic_v2; -+ }; -+ struct acpi_hest_generic_status *estatus; -+ long unsigned int flags; -+ union { -+ struct list_head list; -+ struct timer_list timer; -+ unsigned int irq; -+ }; -+}; -+ -+struct ghes_estatus_node { -+ struct llist_node llnode; -+ struct acpi_hest_generic *generic; -+ struct ghes *ghes; -+ int task_work_cpu; -+ struct callback_head task_work; -+}; -+ -+struct ghes_estatus_cache { -+ u32 estatus_len; -+ atomic_t count; -+ struct acpi_hest_generic *generic; -+ long long unsigned int time_in; -+ struct callback_head rcu; -+}; -+ -+struct ghes_vendor_record_entry { -+ struct work_struct work; -+ int error_severity; -+ char vendor_record[0]; -+}; -+ -+struct regmap; -+ -+struct pmic_table { -+ int address; -+ int reg; -+ int bit; -+}; -+ -+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); -+ struct pmic_table *power_table; -+ int power_table_count; -+ 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; -+ struct intel_pmic_opregion_data *data; -+ struct intel_pmic_regs_handler_ctx ctx; -+}; -+ -+struct pnp_resource { -+ struct list_head list; -+ struct resource res; -+}; -+ -+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_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 pnp_fixup { -+ char id[7]; -+ void (*quirk_function)(struct pnp_dev *); -+}; -+ -+struct acpipnp_parse_option_s { -+ struct pnp_dev *dev; -+ unsigned int option_flags; -+}; -+ -+struct clk_bulk_data { -+ const char *id; -+ struct clk *clk; -+}; -+ -+struct clk_bulk_devres { -+ struct clk_bulk_data *clks; -+ int num_clks; -+}; -+ -+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_init_data; -+ -+struct clk_hw { -+ struct clk_core *core; -+ struct clk *clk; -+ const struct clk_init_data *init; -+}; -+ -+struct clk_rate_request { -+ 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[20]; -+ char con_id[16]; -+}; -+ -+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 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_data_offsets_clk { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_rate_range { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_parent { -+ u32 name; -+ u32 pname; -+}; -+ -+struct trace_event_data_offsets_clk_phase { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_clk_duty_cycle { -+ u32 name; -+}; -+ -+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 *); -+ -+struct clk_notifier_devres { -+ struct clk *clk; -+ struct notifier_block *nb; -+}; -+ -+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 clk_fixed_factor { -+ struct clk_hw hw; -+ unsigned int mult; -+ unsigned int div; -+}; -+ -+struct clk_fixed_rate { -+ struct clk_hw hw; -+ long unsigned int fixed_rate; -+ long unsigned int fixed_accuracy; -+ long unsigned int flags; -+}; -+ -+struct clk_gate { -+ struct clk_hw hw; -+ void *reg; -+ u8 bit_idx; -+ u8 flags; -+ 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; -+ u32 *table; -+ u32 mask; -+ u8 shift; -+ 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 clk_fractional_divider { -+ struct clk_hw hw; -+ void *reg; -+ u8 mshift; -+ u8 mwidth; -+ u32 mmask; -+ u8 nshift; -+ u8 nwidth; -+ u32 nmask; -+ u8 flags; -+ void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); -+ spinlock_t *lock; -+}; -+ -+struct gpio_desc___2; -+ -+struct clk_gpio { -+ struct clk_hw hw; -+ struct gpio_desc___2 *gpiod; -+}; -+ -+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; -+}; -+ -+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]; -+}; -+ -+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___2 { -+ 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___2 *, 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; -+ struct mutex chan_mutex; -+ 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___2 *); -+ int (*device_router_config)(struct dma_chan___2 *); -+ void (*device_free_chan_resources)(struct dma_chan___2 *); -+ struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan___2 *, dma_addr_t, dma_addr_t, size_t, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan___2 *, 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___2 *, 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___2 *, 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___2 *, 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___2 *, dma_addr_t, int, size_t, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan___2 *, struct scatterlist *, unsigned int, int, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan___2 *, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan___2 *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); -+ struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan___2 *, 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___2 *, struct dma_interleaved_template *, long unsigned int); -+ struct dma_async_tx_descriptor * (*device_prep_dma_imm_data)(struct dma_chan___2 *, dma_addr_t, u64, long unsigned int); -+ void (*device_caps)(struct dma_chan___2 *, struct dma_slave_caps *); -+ int (*device_config)(struct dma_chan___2 *, struct dma_slave_config *); -+ int (*device_pause)(struct dma_chan___2 *); -+ int (*device_resume)(struct dma_chan___2 *); -+ int (*device_terminate_all)(struct dma_chan___2 *); -+ void (*device_synchronize)(struct dma_chan___2 *); -+ enum dma_status (*device_tx_status)(struct dma_chan___2 *, dma_cookie_t, struct dma_tx_state *); -+ void (*device_issue_pending)(struct dma_chan___2 *); -+ 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___2 *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, -+}; -+ -+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; -+ unsigned int slave_id; -+ 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___2 *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 dma_chan_tbl_ent { -+ struct dma_chan___2 *chan; -+}; -+ -+struct dmaengine_unmap_pool { -+ struct kmem_cache *cache; -+ const char *name; -+ mempool_t *pool; -+ size_t size; -+}; -+ -+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___2 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 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___2 * (*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 dw_dma_slave { -+ struct device *dma_dev; -+ u8 src_id; -+ u8 dst_id; -+ u8 m_master; -+ u8 p_master; -+ u8 channels; -+ bool hs_polarity; -+}; -+ -+struct dw_dma_platform_data { -+ unsigned int nr_channels; -+ unsigned char chan_allocation_order; -+ unsigned char chan_priority; -+ unsigned int block_size; -+ unsigned char nr_masters; -+ unsigned char data_width[4]; -+ unsigned char multi_block[8]; -+ u32 max_burst[8]; -+ unsigned char protctl; -+}; -+ -+struct dw_dma; -+ -+struct dw_dma_chip { -+ struct device *dev; -+ int id; -+ int irq; -+ void *regs; -+ struct clk *clk; -+ struct dw_dma *dw; -+ const struct dw_dma_platform_data *pdata; -+}; -+ -+struct dma_pool___2; -+ -+struct dw_dma_chan; -+ -+struct dw_dma { -+ struct dma_device dma; -+ char name[20]; -+ void *regs; -+ struct dma_pool___2 *desc_pool; -+ struct tasklet_struct tasklet; -+ struct dw_dma_chan *chan; -+ u8 all_chan_mask; -+ u8 in_use; -+ void (*initialize_chan)(struct dw_dma_chan *); -+ void (*suspend_chan)(struct dw_dma_chan *, bool); -+ void (*resume_chan)(struct dw_dma_chan *, bool); -+ u32 (*prepare_ctllo)(struct dw_dma_chan *); -+ void (*encode_maxburst)(struct dw_dma_chan *, u32 *); -+ u32 (*bytes2block)(struct dw_dma_chan *, size_t, unsigned int, size_t *); -+ size_t (*block2bytes)(struct dw_dma_chan *, u32, u32); -+ void (*set_device_name)(struct dw_dma *, int); -+ void (*disable)(struct dw_dma *); -+ void (*enable)(struct dw_dma *); -+ struct dw_dma_platform_data *pdata; -+}; -+ -+enum dw_dma_fc { -+ DW_DMA_FC_D_M2M = 0, -+ DW_DMA_FC_D_M2P = 1, -+ DW_DMA_FC_D_P2M = 2, -+ DW_DMA_FC_D_P2P = 3, -+ DW_DMA_FC_P_P2M = 4, -+ DW_DMA_FC_SP_P2P = 5, -+ DW_DMA_FC_P_M2P = 6, -+ DW_DMA_FC_DP_P2P = 7, -+}; -+ -+struct dw_dma_chan_regs { -+ u32 SAR; -+ u32 __pad_SAR; -+ u32 DAR; -+ u32 __pad_DAR; -+ u32 LLP; -+ u32 __pad_LLP; -+ u32 CTL_LO; -+ u32 CTL_HI; -+ u32 SSTAT; -+ u32 __pad_SSTAT; -+ u32 DSTAT; -+ u32 __pad_DSTAT; -+ u32 SSTATAR; -+ u32 __pad_SSTATAR; -+ u32 DSTATAR; -+ u32 __pad_DSTATAR; -+ u32 CFG_LO; -+ u32 CFG_HI; -+ u32 SGR; -+ u32 __pad_SGR; -+ u32 DSR; -+ u32 __pad_DSR; -+}; -+ -+struct dw_dma_irq_regs { -+ u32 XFER; -+ u32 __pad_XFER; -+ u32 BLOCK; -+ u32 __pad_BLOCK; -+ u32 SRC_TRAN; -+ u32 __pad_SRC_TRAN; -+ u32 DST_TRAN; -+ u32 __pad_DST_TRAN; -+ u32 ERROR; -+ u32 __pad_ERROR; -+}; -+ -+struct dw_dma_regs { -+ struct dw_dma_chan_regs CHAN[8]; -+ struct dw_dma_irq_regs RAW; -+ struct dw_dma_irq_regs STATUS; -+ struct dw_dma_irq_regs MASK; -+ struct dw_dma_irq_regs CLEAR; -+ u32 STATUS_INT; -+ u32 __pad_STATUS_INT; -+ u32 REQ_SRC; -+ u32 __pad_REQ_SRC; -+ u32 REQ_DST; -+ u32 __pad_REQ_DST; -+ u32 SGL_REQ_SRC; -+ u32 __pad_SGL_REQ_SRC; -+ u32 SGL_REQ_DST; -+ u32 __pad_SGL_REQ_DST; -+ u32 LAST_SRC; -+ u32 __pad_LAST_SRC; -+ u32 LAST_DST; -+ u32 __pad_LAST_DST; -+ u32 CFG; -+ u32 __pad_CFG; -+ u32 CH_EN; -+ u32 __pad_CH_EN; -+ u32 ID; -+ u32 __pad_ID; -+ u32 TEST; -+ u32 __pad_TEST; -+ u32 CLASS_PRIORITY0; -+ u32 __pad_CLASS_PRIORITY0; -+ u32 CLASS_PRIORITY1; -+ u32 __pad_CLASS_PRIORITY1; -+ u32 __reserved; -+ u32 DWC_PARAMS[8]; -+ u32 MULTI_BLK_TYPE; -+ u32 MAX_BLK_SIZE; -+ u32 DW_PARAMS; -+ u32 COMP_TYPE; -+ u32 COMP_VERSION; -+ u32 FIFO_PARTITION0; -+ u32 __pad_FIFO_PARTITION0; -+ u32 FIFO_PARTITION1; -+ u32 __pad_FIFO_PARTITION1; -+ u32 SAI_ERR; -+ u32 __pad_SAI_ERR; -+ u32 GLOBAL_CFG; -+ u32 __pad_GLOBAL_CFG; -+}; -+ -+enum dw_dmac_flags { -+ DW_DMA_IS_CYCLIC = 0, -+ DW_DMA_IS_SOFT_LLP = 1, -+ DW_DMA_IS_PAUSED = 2, -+ DW_DMA_IS_INITIALIZED = 3, -+}; -+ -+struct dw_dma_chan { -+ struct dma_chan___2 chan; -+ void *ch_regs; -+ u8 mask; -+ u8 priority; -+ enum dma_transfer_direction direction; -+ struct list_head *tx_node_active; -+ spinlock_t lock; -+ long unsigned int flags; -+ struct list_head active_list; -+ struct list_head queue; -+ unsigned int descs_allocated; -+ unsigned int block_size; -+ bool nollp; -+ u32 max_burst; -+ struct dw_dma_slave dws; -+ struct dma_slave_config dma_sconfig; -+}; -+ -+struct dw_lli { -+ __le32 sar; -+ __le32 dar; -+ __le32 llp; -+ __le32 ctllo; -+ __le32 ctlhi; -+ __le32 sstat; -+ __le32 dstat; -+}; -+ -+struct dw_desc { -+ struct dw_lli lli; -+ struct list_head desc_node; -+ struct list_head tx_list; -+ struct dma_async_tx_descriptor txd; -+ size_t len; -+ size_t total_len; -+ u32 residue; -+}; -+ -+struct dw_dma_chip_pdata { -+ const struct dw_dma_platform_data *pdata; -+ int (*probe)(struct dw_dma_chip *); -+ int (*remove)(struct dw_dma_chip *); -+ struct dw_dma_chip *chip; -+}; -+ -+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 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_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 *); -+}; -+ -+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 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 { -+ 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 { -+ 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; -+ } split; -+ struct { -+ 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; -+ bool used_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; -+ } packed; -+ }; -+ bool (*notify)(struct virtqueue *); -+ bool we_own_ring; -+}; -+ -+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_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; -+ int notify_map_cap; -+ u32 notify_offset_multiplier; -+ int modern_bars; -+ struct virtio_device_id id; -+}; -+ -+struct virtio_pci_vq_info { -+ struct virtqueue *vq; -+ struct list_head node; -+ unsigned int msix_vector; -+}; -+ -+struct virtio_pci_device { -+ struct virtio_device vdev; -+ struct pci_dev *pci_dev; -+ struct virtio_pci_modern_device mdev; -+ u8 *isr; -+ void *ioaddr; -+ spinlock_t lock; -+ struct list_head virtqueues; -+ struct virtio_pci_vq_info **vqs; -+ 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); -+}; -+ -+enum { -+ VP_MSIX_CONFIG_VECTOR = 0, -+ VP_MSIX_VQ_VECTOR = 1, -+}; -+ -+struct xsd_errors { -+ int errnum; -+ const char *errstring; -+}; -+ -+struct xenbus_watch { -+ struct list_head list; -+ const char *node; -+ unsigned int nr_pending; -+ bool (*will_handle)(struct xenbus_watch *, const char *, const char *); -+ void (*callback)(struct xenbus_watch *, const char *, const char *); -+}; -+ -+struct xenbus_transaction { -+ u32 id; -+}; -+ -+typedef xen_pfn_t *__guest_handle_xen_pfn_t; -+ -+typedef uint32_t grant_ref_t; -+ -+struct grant_entry_v1 { -+ uint16_t flags; -+ domid_t domid; -+ uint32_t frame; -+}; -+ -+struct grant_entry_header { -+ uint16_t flags; -+ domid_t domid; -+}; -+ -+union grant_entry_v2 { -+ struct grant_entry_header hdr; -+ struct { -+ struct grant_entry_header hdr; -+ uint32_t pad0; -+ uint64_t frame; -+ } full_page; -+ struct { -+ struct grant_entry_header hdr; -+ uint16_t page_off; -+ uint16_t length; -+ uint64_t frame; -+ } sub_page; -+ struct { -+ struct grant_entry_header hdr; -+ domid_t trans_domid; -+ uint16_t pad0; -+ grant_ref_t gref; -+ } transitive; -+ uint32_t __spacer[4]; -+}; -+ -+typedef uint32_t grant_handle_t; -+ -+struct gnttab_map_grant_ref { -+ uint64_t host_addr; -+ uint32_t flags; -+ grant_ref_t ref; -+ domid_t dom; -+ int16_t status; -+ grant_handle_t handle; -+ uint64_t dev_bus_addr; -+}; -+ -+struct gnttab_unmap_grant_ref { -+ uint64_t host_addr; -+ uint64_t dev_bus_addr; -+ grant_handle_t handle; -+ int16_t status; -+}; -+ -+struct gnttab_setup_table { -+ domid_t dom; -+ uint32_t nr_frames; -+ int16_t status; -+ __guest_handle_xen_pfn_t frame_list; -+}; -+ -+struct gnttab_copy { -+ struct { -+ union { -+ grant_ref_t ref; -+ xen_pfn_t gmfn; -+ } u; -+ domid_t domid; -+ uint16_t offset; -+ } source; -+ struct { -+ union { -+ grant_ref_t ref; -+ xen_pfn_t gmfn; -+ } u; -+ domid_t domid; -+ uint16_t offset; -+ } dest; -+ uint16_t len; -+ uint16_t flags; -+ int16_t status; -+}; -+ -+struct gnttab_query_size { -+ domid_t dom; -+ uint32_t nr_frames; -+ uint32_t max_nr_frames; -+ int16_t status; -+}; -+ -+struct gnttab_set_version { -+ uint32_t version; -+}; -+ -+struct gnttab_get_status_frames { -+ uint32_t nr_frames; -+ domid_t dom; -+ int16_t status; -+ __guest_handle_uint64_t frame_list; -+}; -+ -+struct gnttab_free_callback { -+ struct gnttab_free_callback *next; -+ void (*fn)(void *); -+ void *arg; -+ u16 count; -+}; -+ -+struct gntab_unmap_queue_data; -+ -+typedef void (*gnttab_unmap_refs_done)(int, struct gntab_unmap_queue_data *); -+ -+struct gntab_unmap_queue_data { -+ struct delayed_work gnttab_work; -+ void *data; -+ gnttab_unmap_refs_done done; -+ struct gnttab_unmap_grant_ref *unmap_ops; -+ struct gnttab_unmap_grant_ref *kunmap_ops; -+ struct page **pages; -+ unsigned int count; -+ unsigned int age; -+}; -+ -+struct grant_frames { -+ xen_pfn_t *pfn; -+ unsigned int count; -+ void *vaddr; -+}; -+ -+struct gnttab_page_cache { -+ spinlock_t lock; -+ struct list_head pages; -+ unsigned int num_pages; -+}; -+ -+struct xen_page_foreign { -+ domid_t domid; -+ grant_ref_t gref; -+}; -+ -+typedef void (*xen_grant_fn_t)(long unsigned int, unsigned int, unsigned int, void *); -+ -+struct gnttab_ops { -+ unsigned int version; -+ unsigned int grefs_per_grant_frame; -+ int (*map_frames)(xen_pfn_t *, unsigned int); -+ void (*unmap_frames)(); -+ void (*update_entry)(grant_ref_t, domid_t, long unsigned int, unsigned int); -+ int (*end_foreign_access_ref)(grant_ref_t, int); -+ long unsigned int (*end_foreign_transfer_ref)(grant_ref_t); -+ int (*query_foreign_access)(grant_ref_t); -+}; -+ -+struct unmap_refs_callback_data { -+ struct completion completion; -+ int result; -+}; -+ -+struct deferred_entry { -+ struct list_head list; -+ grant_ref_t ref; -+ bool ro; -+ uint16_t warn_delay; -+ struct page *page; -+}; -+ -+struct xen_feature_info { -+ unsigned int submap_idx; -+ uint32_t submap; -+}; -+ -+struct balloon_stats { -+ long unsigned int current_pages; -+ long unsigned int target_pages; -+ long unsigned int target_unpopulated; -+ long unsigned int balloon_low; -+ long unsigned int balloon_high; -+ long unsigned int total_pages; -+ long unsigned int schedule_delay; -+ long unsigned int max_schedule_delay; -+ long unsigned int retry_count; -+ long unsigned int max_retry_count; -+}; -+ -+enum bp_state { -+ BP_DONE = 0, -+ BP_WAIT = 1, -+ BP_EAGAIN = 2, -+ BP_ECANCELED = 3, -+}; -+ -+enum shutdown_state { -+ SHUTDOWN_INVALID = 4294967295, -+ SHUTDOWN_POWEROFF = 0, -+ SHUTDOWN_SUSPEND = 2, -+ SHUTDOWN_HALT = 4, -+}; -+ -+struct suspend_info { -+ int cancelled; -+}; -+ -+struct shutdown_handler { -+ const char command[11]; -+ bool flag; -+ void (*cb)(); -+}; -+ -+struct vcpu_runstate_info { -+ int state; -+ uint64_t state_entry_time; -+ uint64_t time[4]; -+}; -+ -+typedef struct vcpu_runstate_info *__guest_handle_vcpu_runstate_info; -+ -+struct vcpu_register_runstate_memory_area { -+ union { -+ __guest_handle_vcpu_runstate_info h; -+ struct vcpu_runstate_info *v; -+ uint64_t p; -+ } addr; -+}; -+ -+struct xen_memory_reservation { -+ __guest_handle_xen_pfn_t extent_start; -+ xen_ulong_t nr_extents; -+ unsigned int extent_order; -+ unsigned int address_bits; -+ domid_t domid; -+}; -+ -+typedef uint32_t evtchn_port_t; -+ -+typedef evtchn_port_t *__guest_handle_evtchn_port_t; -+ -+struct evtchn_bind_interdomain { -+ domid_t remote_dom; -+ evtchn_port_t remote_port; -+ evtchn_port_t local_port; -+}; -+ -+struct evtchn_bind_virq { -+ uint32_t virq; -+ uint32_t vcpu; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_bind_pirq { -+ uint32_t pirq; -+ uint32_t flags; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_bind_ipi { -+ uint32_t vcpu; -+ evtchn_port_t port; -+}; -+ -+struct evtchn_close { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_send { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_status { -+ domid_t dom; -+ evtchn_port_t port; -+ uint32_t status; -+ uint32_t vcpu; -+ union { -+ struct { -+ domid_t dom; -+ } unbound; -+ struct { -+ domid_t dom; -+ evtchn_port_t port; -+ } interdomain; -+ uint32_t pirq; -+ uint32_t virq; -+ } u; -+}; -+ -+struct evtchn_bind_vcpu { -+ evtchn_port_t port; -+ uint32_t vcpu; -+}; -+ -+struct evtchn_set_priority { -+ evtchn_port_t port; -+ uint32_t priority; -+}; -+ -+struct sched_poll { -+ __guest_handle_evtchn_port_t ports; -+ unsigned int nr_ports; -+ uint64_t timeout; -+}; -+ -+struct physdev_eoi { -+ uint32_t irq; -+}; -+ -+struct physdev_pirq_eoi_gmfn { -+ xen_ulong_t gmfn; -+}; -+ -+struct physdev_irq_status_query { -+ uint32_t irq; -+ uint32_t flags; -+}; -+ -+struct physdev_irq { -+ uint32_t irq; -+ uint32_t vector; -+}; -+ -+struct physdev_map_pirq { -+ domid_t domid; -+ int type; -+ int index; -+ int pirq; -+ int bus; -+ int devfn; -+ int entry_nr; -+ uint64_t table_base; -+}; -+ -+struct physdev_unmap_pirq { -+ domid_t domid; -+ int pirq; -+}; -+ -+struct physdev_get_free_pirq { -+ int type; -+ uint32_t pirq; -+}; -+ -+enum xenbus_state { -+ XenbusStateUnknown = 0, -+ XenbusStateInitialising = 1, -+ XenbusStateInitWait = 2, -+ XenbusStateInitialised = 3, -+ XenbusStateConnected = 4, -+ XenbusStateClosing = 5, -+ XenbusStateClosed = 6, -+ XenbusStateReconfiguring = 7, -+ XenbusStateReconfigured = 8, -+}; -+ -+struct xenbus_device { -+ const char *devicetype; -+ const char *nodename; -+ const char *otherend; -+ int otherend_id; -+ struct xenbus_watch otherend_watch; -+ struct device dev; -+ enum xenbus_state state; -+ struct completion down; -+ struct work_struct work; -+ struct semaphore reclaim_sem; -+ atomic_t event_channels; -+ atomic_t events; -+ atomic_t spurious_events; -+ atomic_t jiffies_eoi_delayed; -+ unsigned int spurious_threshold; -+}; -+ -+struct evtchn_loop_ctrl; -+ -+struct evtchn_ops { -+ unsigned int (*max_channels)(); -+ unsigned int (*nr_channels)(); -+ int (*setup)(evtchn_port_t); -+ void (*remove)(evtchn_port_t, unsigned int); -+ void (*bind_to_cpu)(evtchn_port_t, unsigned int, unsigned int); -+ void (*clear_pending)(evtchn_port_t); -+ void (*set_pending)(evtchn_port_t); -+ bool (*is_pending)(evtchn_port_t); -+ void (*mask)(evtchn_port_t); -+ void (*unmask)(evtchn_port_t); -+ void (*handle_events)(unsigned int, struct evtchn_loop_ctrl *); -+ void (*resume)(); -+ int (*percpu_init)(unsigned int); -+ int (*percpu_deinit)(unsigned int); -+}; -+ -+struct evtchn_loop_ctrl { -+ ktime_t timeout; -+ unsigned int count; -+ bool defer_eoi; -+}; -+ -+enum xen_irq_type { -+ IRQT_UNBOUND = 0, -+ IRQT_PIRQ = 1, -+ IRQT_VIRQ = 2, -+ IRQT_IPI = 3, -+ IRQT_EVTCHN = 4, -+}; -+ -+struct irq_info { -+ struct list_head list; -+ struct list_head eoi_list; -+ short int refcnt; -+ u8 spurious_cnt; -+ u8 is_accounted; -+ short int type; -+ u8 mask_reason; -+ u8 is_active; -+ unsigned int irq; -+ evtchn_port_t evtchn; -+ short unsigned int cpu; -+ short unsigned int eoi_cpu; -+ unsigned int irq_epoch; -+ u64 eoi_time; -+ raw_spinlock_t lock; -+ union { -+ short unsigned int virq; -+ enum ipi_vector ipi; -+ struct { -+ short unsigned int pirq; -+ short unsigned int gsi; -+ unsigned char vector; -+ unsigned char flags; -+ uint16_t domid; -+ } pirq; -+ struct xenbus_device *interdomain; -+ } u; -+}; -+ -+struct lateeoi_work { -+ struct delayed_work delayed; -+ spinlock_t eoi_list_lock; -+ struct list_head eoi_list; -+}; -+ -+struct evtchn_unmask { -+ evtchn_port_t port; -+}; -+ -+struct evtchn_init_control { -+ uint64_t control_gfn; -+ uint32_t offset; -+ uint32_t vcpu; -+ uint8_t link_bits; -+ uint8_t _pad[7]; -+}; -+ -+struct evtchn_expand_array { -+ uint64_t array_gfn; -+}; -+ -+typedef uint32_t event_word_t; -+ -+struct evtchn_fifo_control_block { -+ uint32_t ready; -+ uint32_t _rsvd; -+ event_word_t head[16]; -+}; -+ -+struct evtchn_fifo_queue { -+ uint32_t head[16]; -+}; -+ -+struct evtchn_alloc_unbound { -+ domid_t dom; -+ domid_t remote_dom; -+ evtchn_port_t port; -+}; -+ -+struct xenbus_map_node { -+ struct list_head next; -+ union { -+ struct { -+ struct vm_struct *area; -+ } pv; -+ struct { -+ struct page *pages[16]; -+ long unsigned int addrs[16]; -+ void *addr; -+ } hvm; -+ }; -+ grant_handle_t handles[16]; -+ unsigned int nr_handles; -+}; -+ -+struct map_ring_valloc { -+ struct xenbus_map_node *node; -+ long unsigned int addrs[16]; -+ phys_addr_t phys_addrs[16]; -+ struct gnttab_map_grant_ref map[16]; -+ struct gnttab_unmap_grant_ref unmap[16]; -+ unsigned int idx; -+}; -+ -+struct xenbus_ring_ops { -+ int (*map)(struct xenbus_device *, struct map_ring_valloc *, grant_ref_t *, unsigned int, void **); -+ int (*unmap)(struct xenbus_device *, void *); -+}; -+ -+struct unmap_ring_hvm { -+ unsigned int idx; -+ long unsigned int addrs[16]; -+}; -+ -+enum xsd_sockmsg_type { -+ XS_DEBUG = 0, -+ XS_DIRECTORY = 1, -+ XS_READ = 2, -+ XS_GET_PERMS = 3, -+ XS_WATCH = 4, -+ XS_UNWATCH = 5, -+ XS_TRANSACTION_START = 6, -+ XS_TRANSACTION_END = 7, -+ XS_INTRODUCE = 8, -+ XS_RELEASE = 9, -+ XS_GET_DOMAIN_PATH = 10, -+ XS_WRITE = 11, -+ XS_MKDIR = 12, -+ XS_RM = 13, -+ XS_SET_PERMS = 14, -+ XS_WATCH_EVENT = 15, -+ XS_ERROR = 16, -+ XS_IS_DOMAIN_INTRODUCED = 17, -+ XS_RESUME = 18, -+ XS_SET_TARGET = 19, -+ XS_RESTRICT = 20, -+ XS_RESET_WATCHES = 21, -+}; -+ -+struct xsd_sockmsg { -+ uint32_t type; -+ uint32_t req_id; -+ uint32_t tx_id; -+ uint32_t len; -+}; -+ -+typedef uint32_t XENSTORE_RING_IDX; -+ -+struct xenstore_domain_interface { -+ char req[1024]; -+ char rsp[1024]; -+ XENSTORE_RING_IDX req_cons; -+ XENSTORE_RING_IDX req_prod; -+ XENSTORE_RING_IDX rsp_cons; -+ XENSTORE_RING_IDX rsp_prod; -+}; -+ -+struct xs_watch_event { -+ struct list_head list; -+ unsigned int len; -+ struct xenbus_watch *handle; -+ const char *path; -+ const char *token; -+ char body[0]; -+}; -+ -+enum xb_req_state { -+ xb_req_state_queued = 0, -+ xb_req_state_wait_reply = 1, -+ xb_req_state_got_reply = 2, -+ xb_req_state_aborted = 3, -+}; -+ -+struct xb_req_data { -+ struct list_head list; -+ wait_queue_head_t wq; -+ struct xsd_sockmsg msg; -+ uint32_t caller_req_id; -+ enum xsd_sockmsg_type type; -+ char *body; -+ const struct kvec *vec; -+ int num_vecs; -+ int err; -+ enum xb_req_state state; -+ bool user_req; -+ void (*cb)(struct xb_req_data *); -+ void *par; -+}; -+ -+enum xenstore_init { -+ XS_UNKNOWN = 0, -+ XS_PV = 1, -+ XS_HVM = 2, -+ XS_LOCAL = 3, -+}; -+ -+struct xenbus_device_id { -+ char devicetype[32]; -+}; -+ -+struct xenbus_driver { -+ const char *name; -+ const struct xenbus_device_id *ids; -+ bool allow_rebind; -+ int (*probe)(struct xenbus_device *, const struct xenbus_device_id *); -+ void (*otherend_changed)(struct xenbus_device *, enum xenbus_state); -+ int (*remove)(struct xenbus_device *); -+ int (*suspend)(struct xenbus_device *); -+ int (*resume)(struct xenbus_device *); -+ int (*uevent)(struct xenbus_device *, struct kobj_uevent_env *); -+ struct device_driver driver; -+ int (*read_otherend_details)(struct xenbus_device *); -+ int (*is_ready)(struct xenbus_device *); -+ void (*reclaim_memory)(struct xenbus_device *); -+}; -+ -+struct xen_hvm_param { -+ domid_t domid; -+ uint32_t index; -+ uint64_t value; -+}; -+ -+struct xen_bus_type { -+ char *root; -+ unsigned int levels; -+ int (*get_bus_id)(char *, const char *); -+ int (*probe)(struct xen_bus_type *, const char *, const char *); -+ bool (*otherend_will_handle)(struct xenbus_watch *, const char *, const char *); -+ void (*otherend_changed)(struct xenbus_watch *, const char *, const char *); -+ struct bus_type bus; -+}; -+ -+struct xb_find_info { -+ struct xenbus_device *dev; -+ const char *nodename; -+}; -+ -+struct xenbus_transaction_holder { -+ struct list_head list; -+ struct xenbus_transaction handle; -+ unsigned int generation_id; -+}; -+ -+struct read_buffer { -+ struct list_head list; -+ unsigned int cons; -+ unsigned int len; -+ char msg[0]; -+}; -+ -+struct xenbus_file_priv { -+ struct mutex msgbuffer_mutex; -+ struct list_head transactions; -+ struct list_head watches; -+ unsigned int len; -+ union { -+ struct xsd_sockmsg msg; -+ char buffer[4096]; -+ } u; -+ struct mutex reply_mutex; -+ struct list_head read_buffers; -+ wait_queue_head_t read_waitq; -+ struct kref kref; -+ struct work_struct wq; -+}; -+ -+struct watch_adapter { -+ struct list_head list; -+ struct xenbus_watch watch; -+ struct xenbus_file_priv *dev_data; -+ char *token; -+}; -+ -+typedef uint8_t xen_domain_handle_t[16]; -+ -+struct xen_compile_info { -+ char compiler[64]; -+ char compile_by[16]; -+ char compile_domain[32]; -+ char compile_date[32]; -+}; -+ -+struct xen_platform_parameters { -+ xen_ulong_t virt_start; -+}; -+ -+struct xen_build_id { -+ uint32_t len; -+ unsigned char buf[0]; -+}; -+ -+struct hyp_sysfs_attr { -+ struct attribute attr; -+ ssize_t (*show)(struct hyp_sysfs_attr *, char *); -+ ssize_t (*store)(struct hyp_sysfs_attr *, const char *, size_t); -+ void *hyp_attr_data; -+}; -+ -+enum xen_swiotlb_err { -+ XEN_SWIOTLB_UNKNOWN = 0, -+ XEN_SWIOTLB_ENOMEM = 1, -+ XEN_SWIOTLB_EFIXUP = 2, -+}; -+ -+typedef int *__guest_handle_int; -+ -+typedef xen_ulong_t *__guest_handle_xen_ulong_t; -+ -+struct xen_add_to_physmap_range { -+ domid_t domid; -+ uint16_t space; -+ uint16_t size; -+ domid_t foreign_domid; -+ __guest_handle_xen_ulong_t idxs; -+ __guest_handle_xen_pfn_t gpfns; -+ __guest_handle_int errs; -+}; -+ -+struct xen_remove_from_physmap { -+ domid_t domid; -+ xen_pfn_t gpfn; -+}; -+ -+typedef void (*xen_gfn_fn_t)(long unsigned int, void *); -+ -+struct xen_remap_gfn_info; -+ -+struct remap_data { -+ xen_pfn_t *fgfn; -+ int nr_fgfn; -+ pgprot_t prot; -+ domid_t domid; -+ struct vm_area_struct *vma; -+ int index; -+ struct page **pages; -+ struct xen_remap_gfn_info *info; -+ int *err_ptr; -+ int mapped; -+ int h_errs[1]; -+ xen_ulong_t h_idxs[1]; -+ xen_pfn_t h_gpfns[1]; -+ int h_iter; -+}; -+ -+struct map_balloon_pages { -+ xen_pfn_t *pfns; -+ unsigned int idx; -+}; -+ -+struct remap_pfn { -+ struct mm_struct *mm; -+ struct page **pages; -+ pgprot_t prot; -+ long unsigned int i; -+}; -+ -+struct reset_control; -+ -+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; -+ 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; -+}; -+ -+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 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; -+ 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; -+ char read_buf[4096]; -+ long unsigned int read_flags[64]; -+ unsigned char echo_buf[4096]; -+ size_t read_tail; -+ size_t line_start; -+ 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 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 pts_fs_info___2; -+ -+struct tty_audit_buf { -+ struct mutex mutex; -+ dev_t dev; -+ unsigned int icanon: 1; -+ size_t valid; -+ unsigned char *data; -+}; -+ -+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 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 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_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 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 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; -+ char: 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 kbd_led_trigger { -+ struct led_trigger trigger; -+ unsigned int mask; -+}; -+ -+struct uni_pagedir { -+ u16 **uni_pgdir[32]; -+ long unsigned int refcount; -+ long unsigned int sum; -+ unsigned char *inverse_translations[4]; -+ u16 *inverse_trans_unicode; -+}; -+ -+typedef uint32_t char32_t; -+ -+struct uni_screen { -+ char32_t *lines[0]; -+}; -+ -+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, -+}; -+ -+struct rgb { -+ u8 r; -+ u8 g; -+ u8 b; -+}; -+ -+enum { -+ 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, -+}; -+ -+struct interval { -+ uint32_t first; -+ uint32_t last; -+}; -+ -+struct vc_draw_region { -+ long unsigned int from; -+ long unsigned int to; -+ int x; -+}; -+ -+struct hv_ops; -+ -+struct hvc_struct { -+ struct tty_port port; -+ spinlock_t lock; -+ int index; -+ int do_wakeup; -+ char *outbuf; -+ 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; -+}; -+ -+struct hv_ops { -+ int (*get_chars)(uint32_t, char *, int); -+ int (*put_chars)(uint32_t, const char *, int); -+ 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 *, int); -+}; -+ -+struct circ_buf { -+ char *buf; -+ int head; -+ int tail; -+}; -+ -+struct serial_rs485 { -+ __u32 flags; -+ __u32 delay_rts_before_send; -+ __u32 delay_rts_after_send; -+ __u32 padding[5]; -+}; -+ -+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 (*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 *, 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 *); -+}; -+ -+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 unsigned int upf_t; -+ -+typedef unsigned int upstat_t; -+ -+struct uart_state; -+ -+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 *, 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 serial_rs485 *); -+ int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); -+ 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; -+ int hw_stopped; -+ unsigned int mctrl; -+ unsigned int timeout; -+ 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; -+ long unsigned int sysrq; -+ unsigned int 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 gpio_desc___2 *rs485_term_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; -+ struct circ_buf xmit; -+ atomic_t refcount; -+ wait_queue_head_t remove_wait; -+ struct uart_port *uart_port; -+}; -+ -+struct earlycon_device { -+ struct console *con; -+ struct uart_port port; -+ char options[16]; -+ unsigned int baud; -+}; -+ -+struct earlycon_id { -+ char name[15]; -+ char name_term; -+ char compatible[128]; -+ int (*setup)(struct earlycon_device *, const char *); -+}; -+ -+typedef uint32_t XENCONS_RING_IDX; -+ -+struct xencons_interface { -+ char in[1024]; -+ char out[2048]; -+ XENCONS_RING_IDX in_cons; -+ XENCONS_RING_IDX in_prod; -+ XENCONS_RING_IDX out_cons; -+ XENCONS_RING_IDX out_prod; -+}; -+ -+struct xencons_info { -+ struct list_head list; -+ struct xenbus_device *xbdev; -+ struct xencons_interface *intf; -+ unsigned int evtchn; -+ struct hvc_struct *hvc; -+ int irq; -+ int vtermno; -+ grant_ref_t gntref; -+}; -+ -+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 uart_match { -+ struct uart_port *port; -+ struct uart_driver *driver; -+}; -+ -+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; -+ unsigned int irq; -+ long unsigned int irqflags; -+ unsigned int uartclk; -+ void *private_data; -+ unsigned char regshift; -+ unsigned char iotype; -+ unsigned char hub6; -+ unsigned char has_sysrq; -+ upf_t flags; -+ unsigned int type; -+ unsigned int (*serial_in)(struct uart_port *, int); -+ void (*serial_out)(struct uart_port *, int, int); -+ void (*set_termios)(struct uart_port *, struct ktermios *, 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 = 4294967295, -+ 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_port; -+ -+struct uart_8250_ops { -+ int (*setup_irq)(struct uart_8250_port *); -+ void (*release_irq)(struct uart_8250_port *); -+}; -+ -+struct mctrl_gpios; -+ -+struct uart_8250_dma; -+ -+struct uart_8250_em485; -+ -+struct uart_8250_port { -+ struct uart_port port; -+ struct timer_list timer; -+ struct list_head list; -+ u32 capabilities; -+ short unsigned int bugs; -+ bool fifo_bug; -+ unsigned int tx_loadsz; -+ unsigned char acr; -+ unsigned char fcr; -+ unsigned char ier; -+ unsigned char lcr; -+ unsigned char mcr; -+ unsigned char mcr_mask; -+ unsigned char mcr_force; -+ unsigned char cur_iotype; -+ unsigned int rpm_tx_active; -+ unsigned char canary; -+ unsigned char probe; -+ struct mctrl_gpios *gpios; -+ unsigned char lsr_saved_flags; -+ unsigned char msr_saved_flags; -+ struct uart_8250_dma *dma; -+ const struct uart_8250_ops *ops; -+ int (*dl_read)(struct uart_8250_port *); -+ void (*dl_write)(struct uart_8250_port *, int); -+ 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_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 *); -+ dma_filter_fn fn; -+ void *rx_param; -+ void *tx_param; -+ struct dma_slave_config rxconf; -+ struct dma_slave_config txconf; -+ struct dma_chan___2 *rxchan; -+ struct dma_chan___2 *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; -+}; -+ -+struct irq_info___2 { -+ struct hlist_node node; -+ int irq; -+ spinlock_t lock; -+ struct list_head *head; -+}; -+ -+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 dw8250_port_data { -+ int line; -+ struct uart_8250_dma dma; -+ u8 dlf_size; -+}; -+ -+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; -+}; -+ -+struct quatech_feature { -+ u16 devid; -+ bool amcc; -+}; -+ -+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_3906250 = 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_endrun_2_4000000 = 71, -+ pbn_oxsemi = 72, -+ pbn_oxsemi_1_3906250 = 73, -+ pbn_oxsemi_2_3906250 = 74, -+ pbn_oxsemi_4_3906250 = 75, -+ pbn_oxsemi_8_3906250 = 76, -+ pbn_intel_i960 = 77, -+ pbn_sgi_ioc3 = 78, -+ pbn_computone_4 = 79, -+ pbn_computone_6 = 80, -+ pbn_computone_8 = 81, -+ pbn_sbsxrsio = 82, -+ pbn_pasemi_1682M = 83, -+ pbn_ni8430_2 = 84, -+ pbn_ni8430_4 = 85, -+ pbn_ni8430_8 = 86, -+ pbn_ni8430_16 = 87, -+ pbn_ADDIDATA_PCIe_1_3906250 = 88, -+ pbn_ADDIDATA_PCIe_2_3906250 = 89, -+ pbn_ADDIDATA_PCIe_4_3906250 = 90, -+ pbn_ADDIDATA_PCIe_8_3906250 = 91, -+ pbn_ce4100_1_115200 = 92, -+ pbn_omegapci = 93, -+ pbn_NETMOS9900_2s_115200 = 94, -+ pbn_brcm_trumanage = 95, -+ pbn_fintek_4 = 96, -+ pbn_fintek_8 = 97, -+ pbn_fintek_12 = 98, -+ pbn_fintek_F81504A = 99, -+ pbn_fintek_F81508A = 100, -+ pbn_fintek_F81512A = 101, -+ pbn_wch382_2 = 102, -+ pbn_wch384_4 = 103, -+ pbn_wch384_8 = 104, -+ pbn_pericom_PI7C9X7951 = 105, -+ pbn_pericom_PI7C9X7952 = 106, -+ pbn_pericom_PI7C9X7954 = 107, -+ pbn_pericom_PI7C9X7958 = 108, -+ pbn_sunix_pci_1s = 109, -+ pbn_sunix_pci_2s = 110, -+ pbn_sunix_pci_4s = 111, -+ pbn_sunix_pci_8s = 112, -+ pbn_sunix_pci_16s = 113, -+ pbn_titan_1_4000000 = 114, -+ pbn_titan_2_4000000 = 115, -+ pbn_titan_4_4000000 = 116, -+ pbn_titan_8_4000000 = 117, -+ pbn_moxa8250_2p = 118, -+ pbn_moxa8250_4p = 119, -+ pbn_moxa8250_8p = 120, -+}; -+ -+struct exar8250_platform { -+ int (*rs485_config)(struct uart_port *, struct serial_rs485 *); -+ int (*register_gpio)(struct pci_dev *, 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; -+ struct exar8250_board *board; -+ void *virt; -+ int line[0]; -+}; -+ -+struct reset_control___2; -+ -+struct dw8250_data { -+ struct dw8250_port_data data; -+ u8 usr_reg; -+ 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___2 *rst; -+ unsigned int skip_autocfg: 1; -+ unsigned int uart_16550_compatible: 1; -+}; -+ -+struct lpss8250; -+ -+struct lpss8250_board { -+ long unsigned int freq; -+ unsigned int base_baud; -+ int (*setup)(struct lpss8250 *, struct uart_port *); -+ void (*exit)(struct lpss8250 *); -+}; -+ -+struct lpss8250 { -+ struct dw8250_port_data data; -+ struct lpss8250_board *board; -+ struct dw_dma_chip dma_chip; -+ struct dw_dma_slave dma_param; -+ u8 dma_maxburst; -+}; -+ -+struct hsu_dma_slave { -+ struct device *dma_dev; -+ int chan_id; -+}; -+ -+struct mid8250; -+ -+struct mid8250_board { -+ unsigned int flags; -+ long unsigned int freq; -+ unsigned int base_baud; -+ 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 gpio_array___2; -+ -+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___2 { -+ struct uart_port *port; -+ struct gpio_desc___2 *gpio[6]; -+ int irq[6]; -+ unsigned int mctrl_prev; -+ bool mctrl_on; -+}; -+ -+struct memdev { -+ const char *name; -+ umode_t mode; -+ const struct file_operations *fops; -+ fmode_t fmode; -+}; -+ -+struct timer_rand_state { -+ cycles_t last_time; -+ long int last_delta; -+ long int last_delta2; -+}; -+ -+struct trace_event_raw_add_device_randomness { -+ struct trace_entry ent; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__mix_pool_bytes { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_credit_entropy_bits { -+ struct trace_entry ent; -+ const char *pool_name; -+ int bits; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_debit_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int debit_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_input_randomness { -+ struct trace_entry ent; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_add_disk_randomness { -+ struct trace_entry ent; -+ dev_t dev; -+ int input_bits; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__get_random_bytes { -+ struct trace_entry ent; -+ int nbytes; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_random__extract_entropy { -+ struct trace_entry ent; -+ const char *pool_name; -+ int nbytes; -+ int entropy_count; -+ long unsigned int IP; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_urandom_read { -+ struct trace_entry ent; -+ int got_bits; -+ int pool_left; -+ int input_left; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_prandom_u32 { -+ struct trace_entry ent; -+ unsigned int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_add_device_randomness {}; -+ -+struct trace_event_data_offsets_random__mix_pool_bytes {}; -+ -+struct trace_event_data_offsets_credit_entropy_bits {}; -+ -+struct trace_event_data_offsets_debit_entropy {}; -+ -+struct trace_event_data_offsets_add_input_randomness {}; -+ -+struct trace_event_data_offsets_add_disk_randomness {}; -+ -+struct trace_event_data_offsets_random__get_random_bytes {}; -+ -+struct trace_event_data_offsets_random__extract_entropy {}; -+ -+struct trace_event_data_offsets_urandom_read {}; -+ -+struct trace_event_data_offsets_prandom_u32 {}; -+ -+typedef void (*btf_trace_add_device_randomness)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_mix_pool_bytes_nolock)(void *, const char *, int, long unsigned int); -+ -+typedef void (*btf_trace_credit_entropy_bits)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_debit_entropy)(void *, const char *, int); -+ -+typedef void (*btf_trace_add_input_randomness)(void *, int); -+ -+typedef void (*btf_trace_add_disk_randomness)(void *, dev_t, int); -+ -+typedef void (*btf_trace_get_random_bytes)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_get_random_bytes_arch)(void *, int, long unsigned int); -+ -+typedef void (*btf_trace_extract_entropy)(void *, const char *, int, int, long unsigned int); -+ -+typedef void (*btf_trace_urandom_read)(void *, int, int, int); -+ -+typedef void (*btf_trace_prandom_u32)(void *, unsigned int); -+ -+struct poolinfo { -+ int poolbitshift; -+ int poolwords; -+ int poolbytes; -+ int poolfracbits; -+ int tap1; -+ int tap2; -+ int tap3; -+ int tap4; -+ int tap5; -+}; -+ -+struct crng_state { -+ __u32 state[16]; -+ long unsigned int init_time; -+ spinlock_t lock; -+}; -+ -+struct entropy_store { -+ const struct poolinfo *poolinfo; -+ __u32 *pool; -+ const char *name; -+ spinlock_t lock; -+ short unsigned int add_ptr; -+ short unsigned int input_rotate; -+ int entropy_count; -+ unsigned int last_data_init: 1; -+ __u8 last_data[10]; -+}; -+ -+struct fast_pool { -+ __u32 pool[4]; -+ long unsigned int last; -+ short unsigned int reg_idx; -+ unsigned char count; -+}; -+ -+struct batched_entropy { -+ union { -+ u64 entropy_u64[8]; -+ u32 entropy_u32[16]; -+ }; -+ unsigned int position; -+ spinlock_t batch_lock; -+}; -+ -+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[1]; -+}; -+ -+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; -+ struct clocksource *hp_clocksource; -+ 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 nvram_ops { -+ ssize_t (*get_size)(); -+ unsigned char (*read_byte)(int); -+ void (*write_byte)(unsigned char, int); -+ ssize_t (*read)(char *, size_t, loff_t *); -+ ssize_t (*write)(char *, size_t, loff_t *); -+ long int (*initialize)(); -+ long int (*set_checksum)(); -+}; -+ -+struct virtrng_info { -+ struct hwrng hwrng; -+ struct virtqueue *vq; -+ struct completion have_data; -+ char name[25]; -+ unsigned int data_avail; -+ int index; -+ bool busy; -+ bool hwrng_register_done; -+ bool hwrng_removed; -+}; -+ -+enum tpm2_startup_types { -+ TPM2_SU_CLEAR = 0, -+ TPM2_SU_STATE = 1, -+}; -+ -+enum tpm_chip_flags { -+ 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, -+}; -+ -+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]; -+}; -+ -+enum TPM_OPS_FLAGS { -+ TPM_OPS_AUTO_STARTUP = 1, -+}; -+ -+enum tpm2_timeouts { -+ TPM2_TIMEOUT_A = 750, -+ TPM2_TIMEOUT_B = 2000, -+ 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 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, -+}; -+ -+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 tpm1_get_random_out { -+ __be32 rng_data_len; -+ u8 rng_data[128]; -+}; -+ -+enum tpm2_const { -+ TPM2_PLATFORM_PCR = 24, -+ TPM2_PCR_SELECT_MIN = 3, -+}; -+ -+enum tpm2_capabilities { -+ TPM2_CAP_HANDLES = 1, -+ TPM2_CAP_COMMANDS = 2, -+ TPM2_CAP_PCRS = 5, -+ TPM2_CAP_TPM_PROPERTIES = 6, -+}; -+ -+enum tpm2_properties { -+ TPM_PT_TOTAL_COMMANDS = 297, -+}; -+ -+enum tpm2_cc_attrs { -+ TPM2_CC_ATTR_CHANDLES = 25, -+ TPM2_CC_ATTR_RHANDLE = 28, -+}; -+ -+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_null_auth_area { -+ __be32 handle; -+ __be16 nonce_size; -+ u8 attributes; -+ __be16 auth_size; -+} __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 tpmrm_priv { -+ struct file_priv priv; -+ struct tpm_space space; -+}; -+ -+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 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; -+}; -+ -+struct tcpa_event { -+ u32 pcr_index; -+ u32 event_type; -+ u8 pcr_value[20]; -+ u32 event_size; -+ u8 event_data[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 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, -+}; -+ -+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 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]; -+}; -+ -+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 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; -+ }; -+} __attribute__((packed)); -+ -+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 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_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, -+}; -+ -+enum tis_defaults { -+ TIS_MEM_LEN = 20480, -+ TIS_SHORT_TIMEOUT = 750, -+ TIS_LONG_TIMEOUT = 2000, -+}; -+ -+enum tpm_tis_flags { -+ TPM_TIS_ITPM_WORKAROUND = 1, -+ TPM_TIS_INVALID_STATUS = 2, -+}; -+ -+struct tpm_tis_phy_ops; -+ -+struct tpm_tis_data { -+ u16 manufacturer_id; -+ int locality; -+ int irq; -+ bool irq_tested; -+ 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; -+}; -+ -+struct tpm_tis_phy_ops { -+ int (*read_bytes)(struct tpm_tis_data *, u32, u16, u8 *); -+ int (*write_bytes)(struct tpm_tis_data *, u32, u16, const u8 *); -+ int (*read16)(struct tpm_tis_data *, u32, u16 *); -+ int (*read32)(struct tpm_tis_data *, u32, u32 *); -+ int (*write32)(struct tpm_tis_data *, u32, u32); -+}; -+ -+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]; -+}; -+ -+struct tpm_info { -+ struct resource res; -+ int irq; -+}; -+ -+struct tpm_tis_tcg_phy { -+ struct tpm_tis_data priv; -+ void *iobase; -+}; -+ -+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; -+}; -+ -+struct tpm2_crb_smc { -+ u32 interrupt; -+ u8 interrupt_flags; -+ u8 op_flags; -+ u16 reserved2; -+ u32 smc_func_id; -+}; -+ -+struct vcpu_data; -+ -+struct amd_iommu_pi_data { -+ u32 ga_tag; -+ u32 prev_ga_tag; -+ u64 base; -+ bool is_guest_mode; -+ struct vcpu_data *vcpu_data; -+ void *ir_data; -+}; -+ -+struct vcpu_data { -+ u64 pi_desc_addr; -+ u32 vector; -+}; -+ -+struct amd_iommu_device_info { -+ int max_pasids; -+ u32 flags; -+}; -+ -+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, -+ IO_PGTABLE_NUM_FMTS = 7, -+}; -+ -+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; -+ 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 io_pgtable_ops { -+ int (*map)(struct io_pgtable_ops *, long unsigned int, phys_addr_t, size_t, int, gfp_t); -+ 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)(struct io_pgtable_ops *, long unsigned int, size_t, struct iommu_iotlb_gather *); -+ 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); -+}; -+ -+struct io_pgtable { -+ enum io_pgtable_fmt fmt; -+ void *cookie; -+ struct io_pgtable_cfg cfg; -+ struct io_pgtable_ops ops; -+}; -+ -+struct irq_remap_table { -+ raw_spinlock_t lock; -+ unsigned int min_index; -+ u32 *table; -+}; -+ -+struct amd_iommu_fault { -+ u64 address; -+ u32 pasid; -+ u16 device_id; -+ u16 tag; -+ u16 flags; -+}; -+ -+struct amd_io_pgtable { -+ struct io_pgtable_cfg pgtbl_cfg; -+ struct io_pgtable iop; -+ int mode; -+ u64 *root; -+ atomic64_t pt_root; -+}; -+ -+struct protection_domain { -+ struct list_head dev_list; -+ struct iommu_domain domain; -+ struct amd_io_pgtable iop; -+ spinlock_t lock; -+ u16 id; -+ int glx; -+ u64 *gcr3_tbl; -+ long unsigned int flags; -+ unsigned int dev_cnt; -+ unsigned int dev_iommu[32]; -+}; -+ -+struct amd_irte_ops; -+ -+struct amd_iommu___2 { -+ 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; -+ bool is_iommu_v2; -+ u16 devid; -+ u16 cap_ptr; -+ u16 pci_seg; -+ u64 exclusion_start; -+ u64 exclusion_length; -+ u8 *cmd_buf; -+ u32 cmd_buf_head; -+ u32 cmd_buf_tail; -+ u8 *evt_buf; -+ u8 *ppr_log; -+ u8 *ga_log; -+ u8 *ga_log_tail; -+ bool int_enabled; -+ bool need_sync; -+ 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 irq_domain *msi_domain; -+ struct amd_irte_ops *irte_ops; -+ u32 flags; -+ volatile u64 *cmd_sem; -+ u64 cmd_sem_val; -+ struct irq_affinity_notify intcapxt_notify; -+}; -+ -+struct amd_irte_ops { -+ void (*prepare)(void *, u32, bool, u8, u32, int); -+ void (*activate)(void *, u16, u16); -+ void (*deactivate)(void *, u16, u16); -+ void (*set_affinity)(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]; -+ u16 devid; -+ u16 root_devid; -+ bool cmd_line; -+ struct iommu_group *group; -+}; -+ -+struct devid_map { -+ struct list_head list; -+ u8 id; -+ u16 devid; -+ bool cmd_line; -+}; -+ -+struct iommu_dev_data { -+ spinlock_t lock; -+ struct list_head list; -+ struct llist_node dev_data_list; -+ struct protection_domain *domain; -+ struct pci_dev *pdev; -+ u16 devid; -+ bool iommu_v2; -+ struct { -+ bool enabled; -+ int qdep; -+ } ats; -+ bool pri_tlp; -+ bool use_vapic; -+ bool defer_attach; -+ struct ratelimit_state rs; -+}; -+ -+struct dev_table_entry { -+ u64 data[4]; -+}; -+ -+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, -+}; -+ -+union irte { -+ 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 irte_ga_lo lo; -+ union irte_ga_hi hi; -+}; -+ -+struct irq_2_irte { -+ u16 devid; -+ u16 index; -+}; -+ -+struct amd_ir_data { -+ u32 cached_ga_tag; -+ struct irq_2_irte irq_2_irte; -+ struct msi_msg msi_entry; -+ void *entry; -+ void *ref; -+ struct irq_cfg *cfg; -+ int ga_vector; -+ int ga_root_ptr; -+ int ga_tag; -+}; -+ -+struct irq_remap_ops { -+ int capability; -+ int (*prepare)(); -+ int (*enable)(); -+ void (*disable)(); -+ int (*reenable)(int); -+ int (*enable_faulting)(); -+}; -+ -+struct iommu_cmd { -+ u32 data[4]; -+}; -+ -+enum irq_remap_cap { -+ IRQ_POSTING_CAP = 0, -+}; -+ -+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 res; -+}; -+ -+struct ivhd_entry { -+ u8 type; -+ u16 devid; -+ u8 flags; -+ u32 ext; -+ u32 hidh; -+ u64 cid; -+ u8 uidf; -+ u8 uidl; -+ u8 uid; -+} __attribute__((packed)); -+ -+struct ivmd_header { -+ u8 type; -+ u8 flags; -+ u16 length; -+ u16 devid; -+ u16 aux; -+ u64 resv; -+ 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; -+ }; -+}; -+ -+struct ivrs_quirk_entry { -+ u8 id; -+ u16 devid; -+}; -+ -+enum { -+ DELL_INSPIRON_7375 = 0, -+ DELL_LATITUDE_5495 = 1, -+ LENOVO_IDEAPAD_330S_15ARR = 2, -+}; -+ -+struct io_pgtable_init_fns { -+ struct io_pgtable * (*alloc)(struct io_pgtable_cfg *, void *); -+ void (*free)(struct io_pgtable *); -+}; -+ -+struct acpi_table_dmar { -+ struct acpi_table_header header; -+ u8 width; -+ u8 flags; -+ u8 reserved[10]; -+}; -+ -+struct acpi_dmar_header { -+ u16 type; -+ u16 length; -+}; -+ -+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_RESERVED = 6, -+}; -+ -+struct acpi_dmar_device_scope { -+ u8 entry_type; -+ u8 length; -+ u16 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 reserved; -+ u16 segment; -+ u64 address; -+}; -+ -+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_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; -+ char device_name[1]; -+} __attribute__((packed)); -+ -+struct acpi_dmar_satc { -+ struct acpi_dmar_header header; -+ u8 flags; -+ u8 reserved; -+ u16 segment; -+}; -+ -+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; -+ 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); -+}; -+ -+typedef unsigned int ioasid_t; -+ -+typedef ioasid_t (*ioasid_alloc_fn_t)(ioasid_t, ioasid_t, void *); -+ -+typedef void (*ioasid_free_fn_t)(ioasid_t, void *); -+ -+struct ioasid_allocator_ops { -+ ioasid_alloc_fn_t alloc; -+ ioasid_free_fn_t free; -+ struct list_head list; -+ void *pdata; -+}; -+ -+struct iopf_queue; -+ -+struct dmar_domain; -+ -+struct root_entry; -+ -+struct page_req_dsc; -+ -+struct q_inval; -+ -+struct ir_table; -+ -+struct intel_iommu { -+ void *reg; -+ u64 reg_phys; -+ u64 reg_size; -+ u64 cap; -+ u64 ecap; -+ u64 vccap; -+ u32 gcmd; -+ raw_spinlock_t register_lock; -+ int seq_id; -+ int agaw; -+ int msagaw; -+ unsigned int irq; -+ unsigned int pr_irq; -+ u16 segment; -+ unsigned char name[13]; -+ long unsigned int *domain_ids; -+ struct dmar_domain ***domains; -+ spinlock_t lock; -+ struct root_entry *root_entry; -+ struct iommu_flush flush; -+ struct page_req_dsc *prq; -+ unsigned char prq_name[16]; -+ struct completion prq_complete; -+ struct ioasid_allocator_ops pasid_allocator; -+ struct iopf_queue *iopf_queue; -+ unsigned char iopfq_name[16]; -+ struct q_inval *qi; -+ u32 *iommu_state; -+ struct ir_table *ir_table; -+ struct irq_domain *ir_domain; -+ struct irq_domain *ir_msi_domain; -+ struct iommu_device iommu; -+ int node; -+ u32 flags; -+ struct dmar_drhd_unit *drhd; -+ void *perf_statistic; -+}; -+ -+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 irte___2 { -+ 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; -+ }; -+}; -+ -+struct iova { -+ struct rb_node node; -+ long unsigned int pfn_hi; -+ long unsigned int pfn_lo; -+}; -+ -+struct iova_magazine; -+ -+struct iova_cpu_rcache; -+ -+struct iova_rcache { -+ spinlock_t lock; -+ long unsigned int depot_size; -+ struct iova_magazine *depot[32]; -+ struct iova_cpu_rcache *cpu_rcaches; -+}; -+ -+struct iova_domain; -+ -+typedef void (*iova_flush_cb)(struct iova_domain *); -+ -+typedef void (*iova_entry_dtor)(long unsigned int); -+ -+struct iova_fq; -+ -+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_fq *fq; -+ atomic64_t fq_flush_start_cnt; -+ atomic64_t fq_flush_finish_cnt; -+ struct iova anchor; -+ struct iova_rcache rcaches[6]; -+ iova_flush_cb flush_cb; -+ iova_entry_dtor entry_dtor; -+ struct timer_list fq_timer; -+ atomic_t fq_timer_on; -+ struct hlist_node cpuhp_dead; -+}; -+ -+struct iova_fq_entry { -+ long unsigned int iova_pfn; -+ long unsigned int pages; -+ long unsigned int data; -+ u64 counter; -+}; -+ -+struct iova_fq { -+ struct iova_fq_entry entries[256]; -+ unsigned int head; -+ unsigned int tail; -+ spinlock_t lock; -+}; -+ -+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___2 *base; -+ long unsigned int *bitmap; -+}; -+ -+struct root_entry { -+ u64 lo; -+ u64 hi; -+}; -+ -+struct dma_pte; -+ -+struct dmar_domain { -+ int nid; -+ unsigned int iommu_refcnt[128]; -+ u16 iommu_did[128]; -+ u8 has_iotlb_device: 1; -+ u8 iommu_coherency: 1; -+ u8 iommu_snooping: 1; -+ struct list_head devices; -+ struct list_head subdevices; -+ struct iova_domain iovad; -+ struct dma_pte *pgd; -+ int gaw; -+ int agaw; -+ int flags; -+ int iommu_superpage; -+ u64 max_addr; -+ u32 default_pasid; -+ struct iommu_domain domain; -+}; -+ -+struct dma_pte { -+ u64 val; -+}; -+ -+enum latency_type { -+ DMAR_LATENCY_INV_IOTLB = 0, -+ DMAR_LATENCY_INV_DEVTLB = 1, -+ DMAR_LATENCY_INV_IEC = 2, -+ DMAR_LATENCY_PRQ = 3, -+ DMAR_LATENCY_NUM = 4, -+}; -+ -+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[6]; -+ void *arg[6]; -+ bool ignore_unhandled; -+ bool print_entry; -+}; -+ -+enum faulttype { -+ DMA_REMAP = 0, -+ INTR_REMAP = 1, -+ UNKNOWN = 2, -+}; -+ -+struct ioasid_set { -+ int dummy; -+}; -+ -+enum iommu_inv_granularity { -+ IOMMU_INV_GRANU_DOMAIN = 0, -+ IOMMU_INV_GRANU_PASID = 1, -+ IOMMU_INV_GRANU_ADDR = 2, -+ IOMMU_INV_GRANU_NR = 3, -+}; -+ -+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 context_entry { -+ u64 lo; -+ u64 hi; -+}; -+ -+struct subdev_domain_info { -+ struct list_head link_phys; -+ struct list_head link_domain; -+ struct device *pdev; -+ struct dmar_domain *domain; -+ int users; -+}; -+ -+struct pasid_table; -+ -+struct device_domain_info { -+ struct list_head link; -+ struct list_head global; -+ struct list_head table; -+ struct list_head subdevices; -+ 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 auxd_enabled: 1; -+ u8 ats_qdep; -+ struct device *dev; -+ struct intel_iommu *iommu; -+ struct dmar_domain *domain; -+ struct pasid_table *pasid_table; -+}; -+ -+struct pasid_table { -+ void *table; -+ int order; -+ u32 max_pasid; -+ struct list_head dev; -+}; -+ -+enum cap_audit_type { -+ CAP_AUDIT_STATIC_DMAR = 0, -+ CAP_AUDIT_STATIC_IRQR = 1, -+ CAP_AUDIT_HOTPLUG_DMAR = 2, -+ CAP_AUDIT_HOTPLUG_IRQR = 3, -+}; -+ -+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; -+}; -+ -+struct domain_context_mapping_data { -+ struct dmar_domain *domain; -+ struct intel_iommu *iommu; -+ struct pasid_table *table; -+}; -+ -+struct pasid_dir_entry { -+ u64 val; -+}; -+ -+struct pasid_entry { -+ u64 val[8]; -+}; -+ -+struct pasid_table_opaque { -+ struct pasid_table **pasid_table; -+ int segment; -+ int bus; -+ int devfn; -+}; -+ -+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_data_offsets_qi_submit { -+ u32 iommu; -+}; -+ -+struct trace_event_data_offsets_prq_report { -+ u32 iommu; -+ u32 dev; -+ u32 buff; -+}; -+ -+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); -+ -+enum iommu_fault_type { -+ IOMMU_FAULT_DMA_UNRECOV = 1, -+ IOMMU_FAULT_PAGE_REQ = 2, -+}; -+ -+struct page_req_dsc { -+ union { -+ struct { -+ u64 type: 8; -+ u64 pasid_present: 1; -+ u64 priv_data_present: 1; -+ u64 rsvd: 6; -+ 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 priv_data[2]; -+}; -+ -+struct intel_svm_dev { -+ struct list_head list; -+ struct callback_head rcu; -+ struct device *dev; -+ struct intel_iommu *iommu; -+ struct iommu_sva sva; -+ long unsigned int prq_seq_number; -+ u32 pasid; -+ int users; -+ u16 did; -+ u16 dev_iotlb: 1; -+ u16 sid; -+ u16 qdep; -+}; -+ -+struct intel_svm { -+ struct mmu_notifier notifier; -+ struct mm_struct *mm; -+ unsigned int flags; -+ u32 pasid; -+ int gpasid; -+ struct list_head devs; -+}; -+ -+enum irq_mode { -+ IRQ_REMAPPING = 0, -+ IRQ_POSTING = 1, -+}; -+ -+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; -+ enum irq_mode mode; -+}; -+ -+struct intel_ir_data { -+ struct irq_2_iommu irq_2_iommu; -+ struct irte___2 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 iommu_group { -+ struct kobject kobj; -+ struct kobject *devices_kobj; -+ struct list_head devices; -+ struct mutex mutex; -+ struct blocking_notifier_head notifier; -+ void *iommu_data; -+ void (*iommu_data_release)(void *); -+ char *name; -+ int id; -+ struct iommu_domain *default_domain; -+ struct iommu_domain *domain; -+ struct list_head entry; -+}; -+ -+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; -+ 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 { -+ struct msi_desc *msi_desc; -+ 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; -+ }; -+}; -+ -+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); -+}; -+ -+struct group_for_pci_data { -+ struct pci_dev *pdev; -+ struct iommu_group *group; -+}; -+ -+struct __group_domain_type { -+ struct device *dev; -+ unsigned int type; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_iommu_device_event { -+ u32 device; -+}; -+ -+struct trace_event_data_offsets_map {}; -+ -+struct trace_event_data_offsets_unmap {}; -+ -+struct trace_event_data_offsets_iommu_error { -+ u32 device; -+ u32 driver; -+}; -+ -+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_detach_device_from_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_dma_cookie_type { -+ IOMMU_DMA_IOVA_COOKIE = 0, -+ IOMMU_DMA_MSI_COOKIE = 1, -+}; -+ -+struct iommu_dma_cookie { -+ enum iommu_dma_cookie_type type; -+ union { -+ struct iova_domain iovad; -+ dma_addr_t msi_iova; -+ }; -+ struct list_head msi_page_list; -+ struct iommu_domain *fq_domain; -+}; -+ -+struct iommu_dma_msi_page { -+ struct list_head list; -+ dma_addr_t iova; -+ phys_addr_t phys; -+}; -+ -+struct ioasid_data { -+ ioasid_t id; -+ struct ioasid_set *set; -+ void *private; -+ struct callback_head rcu; -+ refcount_t refs; -+}; -+ -+struct ioasid_allocator_data { -+ struct ioasid_allocator_ops *ops; -+ struct list_head list; -+ struct list_head slist; -+ long unsigned int flags; -+ struct xarray xa; -+ struct callback_head rcu; -+}; -+ -+struct iova_magazine { -+ long unsigned int size; -+ long unsigned int pfns[128]; -+}; -+ -+struct iova_cpu_rcache { -+ spinlock_t lock; -+ struct iova_magazine *loaded; -+ struct iova_magazine *prev; -+}; -+ -+struct hyperv_root_ir_data { -+ u8 ioapic_id; -+ bool is_level; -+ struct hv_interrupt_entry entry; -+} __attribute__((packed)); -+ -+enum iommu_page_response_code { -+ IOMMU_PAGE_RESP_SUCCESS = 0, -+ IOMMU_PAGE_RESP_INVALID = 1, -+ IOMMU_PAGE_RESP_FAILURE = 2, -+}; -+ -+struct iopf_queue___2; -+ -+struct iopf_device_param { -+ struct device *dev; -+ struct iopf_queue___2 *queue; -+ struct list_head queue_list; -+ struct list_head partial; -+}; -+ -+struct iopf_queue___2 { -+ struct workqueue_struct *wq; -+ struct list_head devices; -+ struct mutex lock; -+}; -+ -+struct iopf_fault { -+ struct iommu_fault fault; -+ struct list_head list; -+}; -+ -+struct iopf_group { -+ struct iopf_fault last_fault; -+ struct list_head faults; -+ struct work_struct work; -+ struct device *dev; -+}; -+ -+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; -+ 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 mipi_dsi_device_info { -+ char type[20]; -+ u32 channel; -+ struct device_node *node; -+}; -+ -+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 *); -+ int (*remove)(struct mipi_dsi_device *); -+ void (*shutdown)(struct mipi_dsi_device *); -+}; -+ -+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)); -+ -+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_dmi_panel_orientation_data { -+ int width; -+ int height; -+ const char * const *bios_dates; -+ int orientation; -+}; -+ -+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; -+ void *cookie; -+ void (*irq_set_state)(void *, bool); -+ unsigned int (*set_vga_decode)(void *, 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[64]; -+ spinlock_t lock; -+}; -+ -+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)(); -+ 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; -+}; -+ -+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; -+}; -+ -+enum proc_cn_mcast_op { -+ PROC_CN_MCAST_LISTEN = 1, -+ PROC_CN_MCAST_IGNORE = 2, -+}; -+ -+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 what 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 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 master; -+ -+struct component { -+ struct list_head node; -+ struct master *master; -+ 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 master { -+ struct list_head node; -+ bool bound; -+ const struct component_master_ops *ops; -+ struct device *parent; -+ struct component_match *match; -+}; -+ -+struct fwnode_link { -+ struct fwnode_handle *supplier; -+ struct list_head s_hook; -+ struct fwnode_handle *consumer; -+ struct list_head c_hook; -+}; -+ -+struct wake_irq { -+ struct device *dev; -+ unsigned int status; -+ int irq; -+ const char *name; -+}; -+ -+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 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; -+ struct bus_type *bus; -+ struct kset glue_dirs; -+ struct class *class; -+}; -+ -+struct driver_private { -+ struct kobject kobj; -+ struct klist klist_devices; -+ struct klist_node knode_bus; -+ struct module_kobject *mkobj; -+ struct device_driver *driver; -+}; -+ -+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; -+ struct device_driver *async_driver; -+ char *deferred_probe_reason; -+ struct device *device; -+ u8 dead: 1; -+}; -+ -+union device_attr_group_devres { -+ const struct attribute_group *group; -+ const struct attribute_group **groups; -+}; -+ -+struct class_dir { -+ struct kobject kobj; -+ struct class *class; -+}; -+ -+struct root_device { -+ struct device dev; -+ struct module *owner; -+}; -+ -+struct subsys_dev_iter { -+ struct klist_iter ki; -+ const struct device_type *type; -+}; -+ -+struct device_attach_data { -+ struct device *dev; -+ bool check_async; -+ bool want_async; -+ bool have_async; -+}; -+ -+struct class_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct class *, struct class_attribute *, char *); -+ ssize_t (*store)(struct class *, struct class_attribute *, const char *, size_t); -+}; -+ -+struct class_attribute_string { -+ struct class_attribute attr; -+ char *str; -+}; -+ -+struct class_compat { -+ struct kobject *kobj; -+}; -+ -+struct irq_affinity_devres { -+ unsigned int count; -+ unsigned int irq[0]; -+}; -+ -+struct platform_object { -+ struct platform_device pdev; -+ char name[0]; -+}; -+ -+struct cpu_attr { -+ struct device_attribute attr; -+ const struct cpumask * const map; -+}; -+ -+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___2 { -+ struct probe *probes[255]; -+ struct mutex *lock; -+}; -+ -+struct devres_node { -+ struct list_head entry; -+ dr_release_t release; -+ const char *name; -+ size_t size; -+}; -+ -+struct devres___2 { -+ 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 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 internal_container { -+ struct klist_node node; -+ struct attribute_container *cont; -+ struct device classdev; -+}; -+ -+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; -+}; -+ -+typedef void * (*devcon_match_fn_t)(struct fwnode_handle *, const char *, void *); -+ -+struct mii_bus; -+ -+struct mdio_device { -+ struct device dev; -+ struct mii_bus *bus; -+ char modalias[32]; -+ int (*bus_match)(struct device *, struct device_driver *); -+ void (*device_free)(struct mdio_device *); -+ void (*device_remove)(struct mdio_device *); -+ int addr; -+ int flags; -+ struct gpio_desc___2 *reset_gpio; -+ struct reset_control___2 *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_UP = 3, -+ PHY_RUNNING = 4, -+ PHY_NOLINK = 5, -+ PHY_CABLETEST = 6, -+}; -+ -+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_QSGMII = 18, -+ PHY_INTERFACE_MODE_TRGMII = 19, -+ PHY_INTERFACE_MODE_100BASEX = 20, -+ PHY_INTERFACE_MODE_1000BASEX = 21, -+ PHY_INTERFACE_MODE_2500BASEX = 22, -+ PHY_INTERFACE_MODE_5GBASER = 23, -+ PHY_INTERFACE_MODE_RXAUI = 24, -+ PHY_INTERFACE_MODE_XAUI = 25, -+ PHY_INTERFACE_MODE_10GBASER = 26, -+ PHY_INTERFACE_MODE_25GBASER = 27, -+ PHY_INTERFACE_MODE_USXGMII = 28, -+ PHY_INTERFACE_MODE_10GKR = 29, -+ PHY_INTERFACE_MODE_MAX = 30, -+} phy_interface_t; -+ -+struct phylink; -+ -+struct phy_driver; -+ -+struct phy_led_trigger; -+ -+struct phy_package_shared; -+ -+struct mii_timestamper; -+ -+struct phy_device { -+ struct mdio_device mdio; -+ struct phy_driver *drv; -+ 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 autoneg: 1; -+ unsigned int link: 1; -+ unsigned int autoneg_complete: 1; -+ unsigned int interrupts: 1; -+ enum phy_state state; -+ u32 dev_flags; -+ phy_interface_t interface; -+ 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]; -+ u32 eee_broken_modes; -+ struct phy_led_trigger *phy_led_triggers; -+ unsigned int phy_num_led_triggers; -+ struct phy_led_trigger *last_triggered; -+ struct phy_led_trigger *led_link_trigger; -+ 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; -+ u8 mdix; -+ u8 mdix_ctrl; -+ void (*phy_link_change)(struct phy_device *, bool); -+ void (*adjust_link)(struct net_device *); -+ const struct macsec_ops *macsec_ops; -+}; -+ -+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 (*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___2 *reset_gpiod; -+ enum { -+ MDIOBUS_NO_CAP = 0, -+ MDIOBUS_C22 = 1, -+ MDIOBUS_C45 = 2, -+ MDIOBUS_C22_C45 = 3, -+ } probe_capabilities; -+ 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 ifreq *); -+ void (*link_state)(struct mii_timestamper *, struct phy_device *); -+ int (*ts_info)(struct mii_timestamper *, struct ethtool_ts_info *); -+ struct device *device; -+}; -+ -+struct phy_package_shared { -+ int addr; -+ 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 (*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 *); -+ 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 *); -+}; -+ -+struct software_node_ref_args { -+ const struct software_node *node; -+ unsigned int nargs; -+ u64 args[8]; -+}; -+ -+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 auxiliary_device_id { -+ char name[32]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct auxiliary_device { -+ struct device dev; -+ const char *name; -+ u32 id; -+}; -+ -+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 req { -+ struct req *next; -+ struct completion done; -+ int err; -+ const char *name; -+ umode_t mode; -+ kuid_t uid; -+ kgid_t gid; -+ struct device *dev; -+}; -+ -+typedef int (*pm_callback_t)(struct device *); -+ -+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, -+}; -+ -+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_power_state { -+ s64 power_off_latency_ns; -+ s64 power_on_latency_ns; -+ s64 residency_ns; -+ u64 usage; -+ u64 rejected; -+ struct fwnode_handle *fwnode; -+ ktime_t idle_time; -+ void *data; -+}; -+ -+struct opp_table; -+ -+struct dev_pm_opp; -+ -+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 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 suspended_count; -+ unsigned int prepared_count; -+ unsigned int performance_state; -+ cpumask_var_t cpus; -+ 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; -+ unsigned int (*opp_to_performance_state)(struct generic_pm_domain *, struct dev_pm_opp *); -+ int (*set_performance_state)(struct generic_pm_domain *, unsigned int); -+ struct gpd_dev_ops dev_ops; -+ s64 max_off_time_ns; -+ ktime_t next_wakeup; -+ bool max_off_time_changed; -+ bool cached_power_down_ok; -+ bool cached_power_down_state_idx; -+ 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; -+ ktime_t on_time; -+ ktime_t accounting_time; -+ const struct genpd_lock_ops *lock_ops; -+ union { -+ struct mutex mlock; -+ struct { -+ spinlock_t slock; -+ long unsigned int 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; -+ 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 rpm_pstate; -+ ktime_t next_wakeup; -+ void *data; -+}; -+ -+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; -+}; -+ -+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 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; -+}; -+ -+struct fw_sysfs { -+ bool nowait; -+ struct device dev; -+ struct fw_priv *fw_priv; -+ struct firmware *fw; -+}; -+ -+struct node_access_nodes { -+ struct device dev; -+ struct list_head list_node; -+ unsigned int access; -+ struct node_hmem_attrs hmem_attrs; -+}; -+ -+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 for_each_memory_block_cb_data { -+ walk_memory_blocks_func_t func; -+ void *arg; -+}; -+ -+enum regcache_type { -+ REGCACHE_NONE = 0, -+ REGCACHE_RBTREE = 1, -+ REGCACHE_COMPRESSED = 2, -+ REGCACHE_FLAT = 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 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); -+ bool disable_locking; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ int (*reg_read)(void *, unsigned int, unsigned int *); -+ int (*reg_write)(void *, unsigned int, unsigned int); -+ bool fast_io; -+ unsigned int max_register; -+ 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; -+ enum regmap_endian reg_format_endian; -+ enum regmap_endian val_format_endian; -+ const struct regmap_range_cfg *ranges; -+ unsigned int num_ranges; -+ bool use_hwlock; -+ unsigned int hwlock_id; -+ unsigned int hwlock_mode; -+ bool can_sleep; -+}; -+ -+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___2; -+ -+struct regmap_async { -+ struct list_head list; -+ struct regmap___2 *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_write)(void *, unsigned int, unsigned int); -+ -+typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); -+ -+typedef struct regmap_async * (*regmap_hw_async_alloc)(); -+ -+typedef void (*regmap_hw_free_context)(void *); -+ -+struct regmap_bus { -+ bool fast_io; -+ 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_update_bits reg_update_bits; -+ regmap_hw_read read; -+ regmap_hw_reg_read reg_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; -+ bool free_on_exit; -+}; -+ -+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; -+ void (*format_write)(struct regmap___2 *, 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___2 { -+ union { -+ struct mutex mutex; -+ struct { -+ spinlock_t spinlock; -+ long unsigned int spinlock_flags; -+ }; -+ }; -+ regmap_lock lock; -+ regmap_unlock unlock; -+ void *lock_arg; -+ gfp_t alloc_flags; -+ 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 (*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); -+ 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; -+ 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___2 *); -+ int (*exit)(struct regmap___2 *); -+ void (*debugfs_init)(struct regmap___2 *); -+ int (*read)(struct regmap___2 *, unsigned int, unsigned int *); -+ int (*write)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*sync)(struct regmap___2 *, unsigned int, unsigned int); -+ int (*drop)(struct regmap___2 *, unsigned int, unsigned int); -+}; -+ -+struct regmap_range_node { -+ struct rb_node node; -+ const char *name; -+ struct regmap___2 *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___2 *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_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; -+}; -+ -+struct trace_event_data_offsets_regmap_block { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_sync { -+ u32 name; -+ u32 status; -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_regmap_bool { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regmap_async { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_regcache_drop_region { -+ u32 name; -+}; -+ -+typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regcache_sync)(void *, struct regmap___2 *, const char *, const char *); -+ -+typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap___2 *, bool); -+ -+typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap___2 *, bool); -+ -+typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap___2 *, unsigned int, int); -+ -+typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap___2 *); -+ -+typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap___2 *, unsigned int, unsigned int); -+ -+struct regcache_rbtree_node { -+ void *block; -+ long 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___2 *map; -+ struct list_head link; -+}; -+ -+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 { -+ const char *name; -+ unsigned int main_status; -+ unsigned int num_main_status_bits; -+ 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; -+ unsigned int type_base; -+ unsigned int *virt_reg_base; -+ unsigned int irq_reg_stride; -+ bool mask_writeonly: 1; -+ bool init_ack_masked: 1; -+ bool mask_invert: 1; -+ bool use_ack: 1; -+ bool ack_invert: 1; -+ bool clear_ack: 1; -+ bool wake_invert: 1; -+ bool runtime_pm: 1; -+ bool type_invert: 1; -+ bool type_in_mask: 1; -+ bool clear_on_unmask: 1; -+ bool not_fixed_stride: 1; -+ bool status_invert: 1; -+ int num_regs; -+ const struct regmap_irq *irqs; -+ int num_irqs; -+ int num_type_reg; -+ int num_virt_regs; -+ unsigned int type_reg_stride; -+ int (*handle_pre_irq)(void *); -+ int (*handle_post_irq)(void *); -+ int (*set_type_virt)(unsigned int **, unsigned int, long unsigned int, int); -+ void *irq_drv_data; -+}; -+ -+struct regmap_irq_chip_data { -+ struct mutex lock; -+ struct irq_chip irq_chip; -+ struct regmap___2 *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 *mask_buf; -+ unsigned int *mask_buf_def; -+ unsigned int *wake_buf; -+ unsigned int *type_buf; -+ unsigned int *type_buf_def; -+ unsigned int **virt_buf; -+ unsigned int irq_reg_stride; -+ unsigned int type_reg_stride; -+ bool clear_status: 1; -+}; -+ -+struct devcd_entry { -+ struct device devcd_dev; -+ void *data; -+ size_t datalen; -+ 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 void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); -+ -+struct platform_msi_priv_data { -+ struct device *dev; -+ void *host_data; -+ msi_alloc_info_t arg; -+ irq_write_msi_msg_t write_msg; -+ int devid; -+}; -+ -+struct trace_event_raw_devres { -+ struct trace_entry ent; -+ u32 __data_loc_devname; -+ struct device *dev; -+ const char *op; -+ void *node; -+ const char *name; -+ size_t size; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devres { -+ u32 devname; -+}; -+ -+typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); -+ -+struct test_struct { -+ char *get; -+ char *put; -+ void (*get_handler)(char *); -+ int (*put_handler)(char *, char *); -+}; -+ -+struct test_state { -+ char *name; -+ struct test_struct *tst; -+ int idx; -+ int (*run_test)(int, int); -+ int (*validate_put)(char *); -+}; -+ -+struct mfd_cell_acpi_match; -+ -+struct mfd_cell { -+ const char *name; -+ int id; -+ int level; -+ int (*enable)(struct platform_device *); -+ int (*disable)(struct platform_device *); -+ int (*suspend)(struct platform_device *); -+ int (*resume)(struct platform_device *); -+ void *platform_data; -+ size_t pdata_size; -+ const struct software_node *swnode; -+ const char *of_compatible; -+ const u64 of_reg; -+ bool use_of_reg; -+ const struct mfd_cell_acpi_match *acpi_match; -+ int num_resources; -+ const struct resource *resources; -+ bool ignore_resource_conflicts; -+ bool pm_runtime_no_callbacks; -+ const char * const *parent_supplies; -+ int num_parent_supplies; -+}; -+ -+struct mfd_cell_acpi_match { -+ const char *pnpid; -+ const long long unsigned int adr; -+}; -+ -+struct mfd_of_node_entry { -+ struct list_head list; -+ struct device *dev; -+ struct device_node *np; -+}; -+ -+struct intel_lpss_platform_info { -+ struct resource *mem; -+ int irq; -+ long unsigned int clk_rate; -+ const char *clk_con_id; -+ const struct software_node *swnode; -+}; -+ -+enum intel_lpss_dev_type { -+ LPSS_DEV_I2C = 0, -+ LPSS_DEV_UART = 1, -+ LPSS_DEV_SPI = 2, -+}; -+ -+struct intel_lpss { -+ const struct intel_lpss_platform_info *info; -+ enum intel_lpss_dev_type type; -+ struct clk *clk; -+ struct clk_lookup *clock; -+ struct mfd_cell *cell; -+ struct device *dev; -+ void *priv; -+ u32 priv_ctx[64]; -+ int devid; -+ u32 caps; -+ u32 active_ltr; -+ u32 idle_ltr; -+ struct dentry *debugfs; -+}; -+ -+struct dax_operations { -+ long int (*direct_access)(struct dax_device *, long unsigned int, long int, void **, pfn_t *); -+ bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); -+ size_t (*copy_from_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ size_t (*copy_to_iter)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -+ int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); -+}; -+ -+struct dax_device { -+ struct hlist_node list; -+ struct inode inode; -+ struct cdev cdev; -+ const char *host; -+ void *private; -+ long unsigned int flags; -+ const struct dax_operations *ops; -+}; -+ -+enum dax_device_flags { -+ DAXDEV_ALIVE = 0, -+ DAXDEV_WRITE_CACHE = 1, -+ DAXDEV_SYNC = 2, -+}; -+ -+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; -+ int id; -+ struct ida ida; -+ struct device dev; -+ struct dev_pagemap *pgmap; -+ int nr_range; -+ struct dev_dax_range *ranges; -+}; -+ -+enum dev_dax_subsys { -+ DEV_DAX_BUS = 0, -+ DEV_DAX_CLASS = 1, -+}; -+ -+struct dev_dax_data { -+ struct dax_region *dax_region; -+ struct dev_pagemap *pgmap; -+ enum dev_dax_subsys subsys; -+ resource_size_t size; -+ int id; -+}; -+ -+struct dax_device_driver { -+ struct device_driver drv; -+ struct list_head ids; -+ int match_always; -+ 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 memregion_info { -+ int target_node; -+}; -+ -+enum { -+ NDD_ALIASING = 0, -+ NDD_UNARMED = 1, -+ NDD_LOCKED = 2, -+ NDD_SECURITY_OVERWRITE = 3, -+ NDD_WORK_PENDING = 4, -+ NDD_NOBLK = 5, -+ NDD_LABELING = 6, -+ 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, -+ DPA_RESOURCE_ADJUSTED = 1, -+}; -+ -+struct nvdimm; -+ -+struct nvdimm_bus_descriptor; -+ -+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 nvdimm_bus; -+ -+struct cxl_component_regs { -+ void *hdm_decoder; -+}; -+ -+struct cxl_device_regs { -+ void *status; -+ void *mbox; -+ void *memdev; -+}; -+ -+struct cxl_regs { -+ union { -+ struct { -+ void *hdm_decoder; -+ }; -+ struct cxl_component_regs component; -+ }; -+ union { -+ struct { -+ void *status; -+ void *mbox; -+ void *memdev; -+ }; -+ struct cxl_device_regs device_regs; -+ }; -+}; -+ -+struct cxl_reg_map { -+ bool valid; -+ long unsigned int offset; -+ long unsigned int size; -+}; -+ -+struct cxl_component_reg_map { -+ struct cxl_reg_map hdm_decoder; -+}; -+ -+struct cxl_device_reg_map { -+ struct cxl_reg_map status; -+ struct cxl_reg_map mbox; -+ struct cxl_reg_map memdev; -+}; -+ -+struct cxl_register_map { -+ struct list_head list; -+ u64 block_offset; -+ u8 reg_type; -+ u8 barno; -+ union { -+ struct cxl_component_reg_map component_map; -+ struct cxl_device_reg_map device_map; -+ }; -+}; -+ -+enum cxl_decoder_type { -+ CXL_DECODER_ACCELERATOR = 2, -+ CXL_DECODER_EXPANDER = 3, -+}; -+ -+struct cxl_dport; -+ -+struct cxl_decoder { -+ struct device dev; -+ int id; -+ struct range range; -+ int interleave_ways; -+ int interleave_granularity; -+ enum cxl_decoder_type target_type; -+ long unsigned int flags; -+ struct cxl_dport *target[0]; -+}; -+ -+struct cxl_port; -+ -+struct cxl_dport { -+ struct device *dport; -+ int port_id; -+ resource_size_t component_reg_phys; -+ struct cxl_port *port; -+ struct list_head list; -+}; -+ -+enum cxl_nvdimm_brige_state { -+ CXL_NVB_NEW = 0, -+ CXL_NVB_DEAD = 1, -+ CXL_NVB_ONLINE = 2, -+ CXL_NVB_OFFLINE = 3, -+}; -+ -+struct cxl_nvdimm_bridge { -+ struct device dev; -+ struct cxl_port *port; -+ struct nvdimm_bus *nvdimm_bus; -+ struct nvdimm_bus_descriptor nd_desc; -+ struct work_struct state_work; -+ enum cxl_nvdimm_brige_state state; -+}; -+ -+struct cxl_port { -+ struct device dev; -+ struct device *uport; -+ int id; -+ struct list_head dports; -+ struct ida decoder_ida; -+ resource_size_t component_reg_phys; -+}; -+ -+struct cxl_memdev; -+ -+struct cxl_nvdimm { -+ struct device dev; -+ struct cxl_memdev *cxlmd; -+ struct nvdimm *nvdimm; -+}; -+ -+struct cxl_mem; -+ -+struct cxl_memdev { -+ struct device dev; -+ struct cdev cdev; -+ struct cxl_mem *cxlm; -+ int id; -+}; -+ -+struct cxl_driver { -+ const char *name; -+ int (*probe)(struct device *); -+ void (*remove)(struct device *); -+ struct device_driver drv; -+ int id; -+}; -+ -+struct cxl_mem { -+ struct pci_dev *pdev; -+ struct cxl_memdev *cxlmd; -+ struct cxl_regs regs; -+ size_t payload_size; -+ size_t lsa_size; -+ struct mutex mbox_mutex; -+ char firmware_version[16]; -+ long unsigned int *enabled_cmds; -+ struct range pmem_range; -+ struct range ram_range; -+}; -+ -+struct acpi_cedt_header { -+ u8 type; -+ u8 reserved; -+ u16 length; -+}; -+ -+enum acpi_cedt_type { -+ ACPI_CEDT_TYPE_CHBS = 0, -+ ACPI_CEDT_TYPE_CFMWS = 1, -+ ACPI_CEDT_TYPE_RESERVED = 2, -+}; -+ -+struct acpi_cedt_chbs { -+ struct acpi_cedt_header header; -+ u32 uid; -+ u32 cxl_version; -+ u32 reserved; -+ u64 base; -+ u64 length; -+}; -+ -+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 cxl_walk_context { -+ struct device *dev; -+ struct pci_bus *root; -+ struct cxl_port *port; -+ int error; -+ int count; -+}; -+ -+struct seqcount_ww_mutex { -+ seqcount_t seqcount; -+}; -+ -+typedef struct seqcount_ww_mutex seqcount_ww_mutex_t; -+ -+struct dma_buf_map { -+ union { -+ void *vaddr_iomem; -+ void *vaddr; -+ }; -+ bool is_iomem; -+}; -+ -+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 { -+ 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); -+}; -+ -+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_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; -+ -+struct dma_buf_attachment; -+ -+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 dma_buf_map *); -+ void (*vunmap)(struct dma_buf *, struct dma_buf_map *); -+}; -+ -+struct dma_buf_poll_cb_t { -+ struct dma_fence_cb cb; -+ wait_queue_head_t *poll; -+ __poll_t active; -+}; -+ -+struct dma_resv; -+ -+struct dma_buf { -+ size_t size; -+ struct file *file; -+ struct list_head attachments; -+ const struct dma_buf_ops *ops; -+ struct mutex lock; -+ unsigned int vmapping_counter; -+ struct dma_buf_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_excl; -+ struct dma_buf_poll_cb_t cb_shared; -+}; -+ -+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_resv_list; -+ -+struct dma_resv { -+ struct ww_mutex lock; -+ seqcount_ww_mutex_t seq; -+ struct dma_fence *fence_excl; -+ struct dma_resv_list *fence; -+}; -+ -+struct dma_buf_attach_ops { -+ bool allow_peer2peer; -+ void (*move_notify)(struct dma_buf_attachment *); -+}; -+ -+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_list { -+ struct callback_head rcu; -+ u32 shared_count; -+ u32 shared_max; -+ struct dma_fence *shared[0]; -+}; -+ -+struct dma_buf_sync { -+ __u64 flags; -+}; -+ -+struct dma_buf_list { -+ struct list_head head; -+ struct mutex lock; -+}; -+ -+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; -+ u32 timeline; -+}; -+ -+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_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_chain { -+ struct dma_fence base; -+ spinlock_t lock; -+ struct dma_fence *prev; -+ u64 prev_seqno; -+ struct dma_fence *fence; -+ struct dma_fence_cb cb; -+ struct irq_work work; -+}; -+ -+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 seqno_fence_condition { -+ SEQNO_FENCE_WAIT_GEQUAL = 0, -+ SEQNO_FENCE_WAIT_NONZERO = 1, -+}; -+ -+struct seqno_fence { -+ struct dma_fence base; -+ const struct dma_fence_ops *ops; -+ struct dma_buf *sync_buf; -+ uint32_t seqno_ofs; -+ enum seqno_fence_condition condition; -+}; -+ -+struct dma_heap; -+ -+struct dma_heap_ops { -+ struct dma_buf * (*allocate)(struct dma_heap *, long unsigned int, long unsigned int, long unsigned int); -+}; -+ -+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_export_info { -+ const char *name; -+ const struct dma_heap_ops *ops; -+ void *priv; -+}; -+ -+struct dma_heap_allocation_data { -+ __u64 len; -+ __u32 fd; -+ __u32 fd_flags; -+ __u64 heap_flags; -+}; -+ -+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_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; -+}; -+ -+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_TARGET_FAILURE = 16, -+ DID_NEXUS_FAILURE = 17, -+ DID_ALLOC_FAILURE = 18, -+ DID_MEDIUM_ERROR = 19, -+ 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; -+ -+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; -+ unsigned char current_tag; -+ struct scsi_target *sdev_target; -+ blist_flags_t sdev_bflags; -+ unsigned int eh_timeout; -+ 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 no_report_opcodes: 1; -+ unsigned int no_write_same: 1; -+ unsigned int use_16_for_rw: 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 manage_start_stop: 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; -+ 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; -+ struct device sdev_gendev; -+ struct device sdev_dev; -+ struct execute_work ew; -+ struct work_struct requeue_work; -+ struct scsi_device_handler *handler; -+ void *handler_data; -+ size_t dma_drain_len; -+ void *dma_drain_buf; -+ 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_cmd_q; -+ struct task_struct *ehandler; -+ struct completion *eh_action; -+ wait_queue_head_t host_wait; -+ struct scsi_host_template *hostt; -+ struct scsi_transport_template *transportt; -+ 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 max_segment_size; -+ 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 short_inquiry: 1; -+ unsigned int no_scsi2_lun_in_cdb: 1; -+ char work_q_name[20]; -+ 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; -+ 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_host_cmd_pool; -+ -+struct scsi_cmnd; -+ -+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 (*slave_alloc)(struct scsi_device *); -+ 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); -+ int (*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 blk_eh_timer_return (*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; -+ struct proc_dir_entry *proc_dir; -+ 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; -+ long unsigned int dma_boundary; -+ long unsigned int virt_boundary_mask; -+ short int cmd_per_lun; -+ unsigned char present; -+ 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 max_host_blocked; -+ struct device_attribute **shost_attrs; -+ struct device_attribute **sdev_attrs; -+ const struct attribute_group **sdev_groups; -+ u64 vendor_id; -+ struct scsi_host_cmd_pool *cmd_pool; -+ int rpm_autosuspend_delay; -+}; -+ -+struct scsi_data_buffer { -+ struct sg_table table; -+ unsigned int length; -+}; -+ -+struct scsi_pointer { -+ char *ptr; -+ int this_residual; -+ struct scatterlist *buffer; -+ int buffers_residual; -+ dma_addr_t dma_handle; -+ volatile int Status; -+ volatile int Message; -+ volatile int have_data_in; -+ volatile int sent_command; -+ volatile int phase; -+}; -+ -+struct scsi_cmnd { -+ struct scsi_request req; -+ 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; -+ short unsigned int cmd_len; -+ enum dma_data_direction sc_data_direction; -+ unsigned char *cmnd; -+ struct scsi_data_buffer sdb; -+ struct scsi_data_buffer *prot_sdb; -+ unsigned int underflow; -+ unsigned int transfersize; -+ struct request *request; -+ unsigned char *sense_buffer; -+ void (*scsi_done)(struct scsi_cmnd *); -+ struct scsi_pointer SCp; -+ unsigned char *host_scribble; -+ int result; -+ int flags; -+ long unsigned int state; -+ unsigned char tag; -+ unsigned int extra_len; -+}; -+ -+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; -+ 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 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; -+ 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; -+ 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; -+ unsigned int data_sglen; -+ unsigned int prot_sglen; -+ unsigned char prot_op; -+ u32 __data_loc_cmnd; -+ 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; -+}; -+ -+struct trace_event_data_offsets_scsi_dispatch_cmd_error { -+ u32 cmnd; -+}; -+ -+struct trace_event_data_offsets_scsi_cmd_done_timeout_template { -+ u32 cmnd; -+}; -+ -+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 *); -+ -+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 scsi_host_busy_iter_data { -+ bool (*fn)(struct scsi_cmnd *, void *, bool); -+ void *priv; -+}; -+ -+struct scsi_idlun { -+ __u32 dev_id; -+ __u32 host_unique_id; -+}; -+ -+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_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; -+ struct scsi_data_buffer sdb; -+ unsigned char eh_cmnd[16]; -+ struct scatterlist sense_sgl; -+}; -+ -+struct scsi_varlen_cdb_hdr { -+ __u8 opcode; -+ __u8 control; -+ __u8 misc[5]; -+ __u8 additional_cdb_length; -+ __be16 service_action; -+}; -+ -+struct scsi_mode_data { -+ __u32 length; -+ __u16 block_descriptor_length; -+ __u8 medium_type; -+ __u8 device_specific; -+ __u8 header_length; -+ __u8 longlba: 1; -+}; -+ -+struct scsi_event { -+ enum scsi_device_event evt_type; -+ struct list_head node; -+}; -+ -+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_RETRY = 2, -+ ACTION_DELAYED_RETRY = 3, -+}; -+ -+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_lun { -+ __u8 scsi_lun[8]; -+}; -+ -+enum scsi_timeouts { -+ SCSI_DEFAULT_EH_TIMEOUT = 10000, -+}; -+ -+enum scsi_scan_mode { -+ SCSI_SCAN_INITIAL = 0, -+ SCSI_SCAN_RESCAN = 1, -+ SCSI_SCAN_MANUAL = 2, -+}; -+ -+struct async_scan_data { -+ struct list_head list; -+ struct Scsi_Host *shost; -+ struct completion prev_finished; -+}; -+ -+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_nl_hdr { -+ __u8 version; -+ __u8 transport; -+ __u16 magic; -+ __u16 msgtype; -+ __u16 msglen; -+}; -+ -+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 rdac_mode_6_hdr { -+ u8 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u8 block_desc_len; -+}; -+ -+struct rdac_mode_10_hdr { -+ u16 data_len; -+ u8 medium_type; -+ u8 device_params; -+ u16 reserved; -+ u16 block_desc_len; -+}; -+ -+struct rdac_mode_common { -+ u8 controller_serial[16]; -+ u8 alt_controller_serial[16]; -+ u8 rdac_mode[2]; -+ u8 alt_rdac_mode[2]; -+ u8 quiescence_timeout; -+ u8 rdac_options; -+}; -+ -+struct rdac_pg_legacy { -+ struct rdac_mode_6_hdr hdr; -+ u8 page_code; -+ u8 page_len; -+ struct rdac_mode_common common; -+ u8 lun_table[32]; -+ u8 reserved2[32]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct rdac_pg_expanded { -+ struct rdac_mode_10_hdr hdr; -+ u8 page_code; -+ u8 subpage_code; -+ u8 page_len[2]; -+ struct rdac_mode_common common; -+ u8 lun_table[256]; -+ u8 reserved3; -+ u8 reserved4; -+}; -+ -+struct c9_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 avte_cvp; -+ u8 path_prio; -+ u8 reserved2[38]; -+}; -+ -+struct c4_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 subsys_id[16]; -+ u8 revision[4]; -+ u8 slot_id[2]; -+ u8 reserved[2]; -+}; -+ -+struct c8_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 reserved2[3]; -+ u8 vol_uniq_id_len; -+ u8 vol_uniq_id[16]; -+ u8 vol_user_label_len; -+ u8 vol_user_label[60]; -+ u8 array_uniq_id_len; -+ u8 array_unique_id[16]; -+ u8 array_user_label_len; -+ u8 array_user_label[60]; -+ u8 lun[8]; -+}; -+ -+struct rdac_controller { -+ u8 array_id[16]; -+ int use_ms10; -+ struct kref kref; -+ struct list_head node; -+ union { -+ struct rdac_pg_legacy legacy; -+ struct rdac_pg_expanded expanded; -+ } mode_select; -+ u8 index; -+ u8 array_name[31]; -+ struct Scsi_Host *host; -+ spinlock_t ms_lock; -+ int ms_queued; -+ struct work_struct ms_work; -+ struct scsi_device *ms_sdev; -+ struct list_head ms_head; -+ struct list_head dh_list; -+}; -+ -+struct c2_inquiry { -+ u8 peripheral_info; -+ u8 page_code; -+ u8 reserved1; -+ u8 page_len; -+ u8 page_id[4]; -+ u8 sw_version[3]; -+ u8 sw_date[3]; -+ u8 features_enabled; -+ u8 max_lun_supported; -+ u8 partitions[239]; -+}; -+ -+struct rdac_dh_data { -+ struct list_head node; -+ struct rdac_controller *ctlr; -+ struct scsi_device *sdev; -+ unsigned int lun; -+ unsigned char mode; -+ unsigned char state; -+ char lun_state; -+ char preferred; -+ union { -+ struct c2_inquiry c2; -+ struct c4_inquiry c4; -+ struct c8_inquiry c8; -+ struct c9_inquiry c9; -+ } inq; -+}; -+ -+struct rdac_queue_data { -+ struct list_head entry; -+ struct rdac_dh_data *h; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+struct hp_sw_dh_data { -+ int path_state; -+ int retries; -+ int retry_cnt; -+ struct scsi_device *sdev; -+}; -+ -+struct clariion_dh_data { -+ unsigned int flags; -+ unsigned char buffer[252]; -+ int lun_state; -+ int port; -+ int default_sp; -+ int current_sp; -+}; -+ -+struct alua_port_group { -+ struct kref kref; -+ struct callback_head rcu; -+ struct list_head node; -+ struct list_head dh_list; -+ unsigned char device_id_str[256]; -+ int device_id_len; -+ int group_id; -+ int tpgs; -+ int state; -+ int pref; -+ int valid_states; -+ unsigned int flags; -+ unsigned char transition_tmo; -+ long unsigned int expiry; -+ long unsigned int interval; -+ struct delayed_work rtpg_work; -+ spinlock_t lock; -+ struct list_head rtpg_list; -+ struct scsi_device *rtpg_sdev; -+}; -+ -+struct alua_dh_data { -+ struct list_head node; -+ struct alua_port_group *pg; -+ int group_id; -+ spinlock_t pg_lock; -+ struct scsi_device *sdev; -+ int init_error; -+ struct mutex init_mutex; -+ bool disabled; -+}; -+ -+struct alua_queue_data { -+ struct list_head entry; -+ activate_complete callback_fn; -+ void *callback_data; -+}; -+ -+struct spi_device_id { -+ char name[32]; -+ kernel_ulong_t driver_data; -+}; -+ -+struct ptp_system_timestamp { -+ struct timespec64 pre_ts; -+ struct timespec64 post_ts; -+}; -+ -+struct spi_statistics { -+ spinlock_t lock; -+ long unsigned int messages; -+ long unsigned int transfers; -+ long unsigned int errors; -+ long unsigned int timedout; -+ long unsigned int spi_sync; -+ long unsigned int spi_sync_immediate; -+ long unsigned int spi_async; -+ long long unsigned int bytes; -+ long long unsigned int bytes_rx; -+ long long unsigned int bytes_tx; -+ long unsigned int transfer_bytes_histo[17]; -+ long unsigned int transfers_split_maxsize; -+}; -+ -+struct spi_delay { -+ u16 value; -+ u8 unit; -+}; -+ -+struct spi_controller; -+ -+struct spi_device { -+ struct device dev; -+ struct spi_controller *controller; -+ struct spi_controller *master; -+ u32 max_speed_hz; -+ u8 chip_select; -+ u8 bits_per_word; -+ bool rt; -+ u32 mode; -+ int irq; -+ void *controller_state; -+ void *controller_data; -+ char modalias[32]; -+ const char *driver_override; -+ int cs_gpio; -+ struct gpio_desc___2 *cs_gpiod; -+ struct spi_delay word_delay; -+ struct spi_statistics statistics; -+}; -+ -+struct spi_message; -+ -+struct spi_transfer; -+ -+struct spi_controller_mem_ops; -+ -+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; -+ bool slave; -+ size_t (*max_transfer_size)(struct spi_device *); -+ size_t (*max_message_size)(struct spi_device *); -+ struct mutex io_mutex; -+ 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 *, struct spi_delay *, struct spi_delay *, struct spi_delay *); -+ 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; -+ bool queued; -+ struct kthread_worker *kworker; -+ struct kthread_work pump_messages; -+ spinlock_t queue_lock; -+ struct list_head queue; -+ struct spi_message *cur_msg; -+ bool idling; -+ bool busy; -+ bool running; -+ bool rt; -+ bool auto_runtime_pm; -+ bool cur_msg_prepared; -+ bool cur_msg_mapped; -+ bool last_cs_enable; -+ bool last_cs_mode_high; -+ bool fallback; -+ struct completion xfer_completion; -+ size_t max_dma_len; -+ 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 (*slave_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; -+ struct spi_delay cs_setup; -+ struct spi_delay cs_hold; -+ struct spi_delay cs_inactive; -+ int *cs_gpios; -+ struct gpio_desc___2 **cs_gpiods; -+ bool use_gpio_descriptors; -+ s8 unused_native_cs; -+ s8 max_native_cs; -+ struct spi_statistics statistics; -+ struct dma_chan___2 *dma_tx; -+ struct dma_chan___2 *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; -+}; -+ -+struct spi_driver { -+ const struct spi_device_id *id_table; -+ int (*probe)(struct spi_device *); -+ int (*remove)(struct spi_device *); -+ void (*shutdown)(struct spi_device *); -+ struct device_driver driver; -+}; -+ -+struct spi_message { -+ struct list_head transfers; -+ struct spi_device *spi; -+ unsigned int is_dma_mapped: 1; -+ void (*complete)(void *); -+ void *context; -+ unsigned int frame_length; -+ unsigned int actual_length; -+ int status; -+ struct list_head queue; -+ void *state; -+ struct list_head resources; -+}; -+ -+struct spi_transfer { -+ const void *tx_buf; -+ void *rx_buf; -+ unsigned int len; -+ dma_addr_t tx_dma; -+ dma_addr_t rx_dma; -+ struct sg_table tx_sg; -+ struct sg_table rx_sg; -+ unsigned int dummy_data: 1; -+ unsigned int cs_change: 1; -+ unsigned int tx_nbits: 3; -+ unsigned int rx_nbits: 3; -+ 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 ptp_sts_word_pre; -+ unsigned int ptp_sts_word_post; -+ struct ptp_system_timestamp *ptp_sts; -+ bool timestamped; -+ struct list_head transfer_list; -+ u16 error; -+}; -+ -+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); -+}; -+ -+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; -+ u16 opcode; -+ } cmd; -+ struct { -+ u8 nbytes; -+ u8 buswidth; -+ u8 dtr: 1; -+ u64 val; -+ } addr; -+ struct { -+ u8 nbytes; -+ u8 buswidth; -+ u8 dtr: 1; -+ } dummy; -+ struct { -+ u8 buswidth; -+ u8 dtr: 1; -+ enum spi_mem_data_dir dir; -+ unsigned int nbytes; -+ union { -+ void *in; -+ const void *out; -+ } buf; -+ } data; -+}; -+ -+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; -+ u32 tx_buf; -+}; -+ -+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; -+}; -+ -+struct amd_spi { -+ void *io_remap_addr; -+ long unsigned int io_base_addr; -+ u32 rom_addr; -+ u8 chip_select; -+}; -+ -+struct devprobe2 { -+ struct net_device * (*probe)(int); -+ int status; -+}; -+ -+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, -+ NETIF_F_LLTX_BIT = 12, -+ NETIF_F_NETNS_LOCAL_BIT = 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, -+ NETIF_F_FCOE_MTU_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, -+}; -+ -+typedef struct bio_vec skb_frag_t; -+ -+struct skb_shared_hwtstamps { -+ ktime_t hwtstamp; -+}; -+ -+enum { -+ SKBTX_HW_TSTAMP = 1, -+ SKBTX_SW_TSTAMP = 2, -+ SKBTX_IN_PROGRESS = 4, -+ SKBTX_WIFI_STATUS = 16, -+ SKBTX_SCHED_TSTAMP = 64, -+}; -+ -+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; -+ struct skb_shared_hwtstamps hwtstamps; -+ unsigned int gso_type; -+ u32 tskey; -+ atomic_t dataref; -+ void *destructor_arg; -+ skb_frag_t frags[17]; -+}; -+ -+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_LIVE_RENAME_OK = 1073741824, -+ IFF_TX_SKB_NO_LINEAR = 2147483648, -+}; -+ -+struct mdio_board_info { -+ const char *bus_id; -+ char modalias[32]; -+ int mdio_addr; -+ const void *platform_data; -+}; -+ -+struct mdio_board_entry { -+ struct list_head list; -+ struct mdio_board_info board_info; -+}; -+ -+struct mdiobus_devres { -+ struct mii_bus *mii; -+}; -+ -+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 mii_ioctl_data { -+ __u16 phy_id; -+ __u16 reg_num; -+ __u16 val_in; -+ __u16 val_out; -+}; -+ -+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_KERNEL_CNT = 35, -+ ETHTOOL_MSG_KERNEL_MAX = 34, -+}; -+ -+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_CNT = 5, -+ ETHTOOL_A_STATS_MAX = 4, -+}; -+ -+struct phy_led_trigger { -+ struct led_trigger trigger; -+ char name[76]; -+ unsigned int speed; -+}; -+ -+struct phy_setting { -+ u32 speed; -+ u8 duplex; -+ u8 bit; -+}; -+ -+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 (*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 *); -+}; -+ -+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 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 mdio_driver { -+ struct mdio_driver_common mdiodrv; -+ int (*probe)(struct mdio_device *); -+ void (*remove)(struct mdio_device *); -+}; -+ -+struct fixed_phy_status { -+ int link; -+ int speed; -+ int duplex; -+ int pause; -+ int asym_pause; -+}; -+ -+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 mii_timestamping_ctrl { -+ struct mii_timestamper * (*probe_channel)(struct device *, unsigned int); -+ void (*release_channel)(struct device *, struct mii_timestamper *); -+}; -+ -+struct mii_timestamping_desc { -+ struct list_head list; -+ struct mii_timestamping_ctrl *ctrl; -+ struct device *device; -+}; -+ -+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___2 *link_gpiod; -+}; -+ -+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_MAX = 58, -+}; -+ -+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 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_MAX = 5, -+ WWAN_PORT_MAX = 4, -+ WWAN_PORT_UNKNOWN = 5, -+}; -+ -+struct wwan_port; -+ -+struct wwan_port_ops { -+ int (*start)(struct wwan_port *); -+ void (*stop)(struct wwan_port *); -+ int (*tx)(struct wwan_port *, struct sk_buff *); -+ int (*tx_blocking)(struct wwan_port *, struct sk_buff *); -+ __poll_t (*tx_poll)(struct wwan_port *, struct file *, poll_table *); -+}; -+ -+struct wwan_port { -+ enum wwan_port_type type; -+ unsigned int start_count; -+ long unsigned int flags; -+ const struct wwan_port_ops *ops; -+ struct mutex ops_lock; -+ struct device dev; -+ struct sk_buff_head rxq; -+ wait_queue_head_t waitqueue; -+ struct mutex data_lock; -+ union { -+ struct { -+ struct ktermios termios; -+ int mdmbits; -+ } at_data; -+ }; -+}; -+ -+struct wwan_netdev_priv { -+ u32 link_id; -+ int: 32; -+ u8 drv_priv[0]; -+}; -+ -+struct wwan_ops { -+ unsigned int priv_size; -+ void (*setup)(struct net_device *); -+ int (*newlink)(void *, struct net_device *, u32, struct netlink_ext_ack *); -+ void (*dellink)(void *, struct net_device *, struct list_head *); -+}; -+ -+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 { -+ IFLA_WWAN_UNSPEC = 0, -+ IFLA_WWAN_LINK_ID = 1, -+ __IFLA_WWAN_MAX = 2, -+}; -+ -+struct wwan_device { -+ unsigned int id; -+ struct device dev; -+ atomic_t port_id; -+ const struct wwan_ops *ops; -+ void *ops_ctxt; -+}; -+ -+struct ohci { -+ void *registers; -+}; -+ -+struct socket_state_t { -+ u_int flags; -+ u_int csc_mask; -+ u_char Vcc; -+ u_char Vpp; -+ u_char io_irq; -+}; -+ -+typedef struct socket_state_t socket_state_t; -+ -+struct pccard_io_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t start; -+ phys_addr_t stop; -+}; -+ -+struct pccard_mem_map { -+ u_char map; -+ u_char flags; -+ u_short speed; -+ phys_addr_t static_start; -+ u_int card_start; -+ struct resource *res; -+}; -+ -+typedef struct pccard_mem_map pccard_mem_map; -+ -+struct io_window_t { -+ u_int InUse; -+ u_int Config; -+ struct resource *res; -+}; -+ -+typedef struct io_window_t io_window_t; -+ -+struct pcmcia_socket; -+ -+struct pccard_operations { -+ int (*init)(struct pcmcia_socket *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*get_status)(struct pcmcia_socket *, u_int *); -+ int (*set_socket)(struct pcmcia_socket *, socket_state_t *); -+ int (*set_io_map)(struct pcmcia_socket *, struct pccard_io_map *); -+ int (*set_mem_map)(struct pcmcia_socket *, struct pccard_mem_map *); -+}; -+ -+struct pccard_resource_ops; -+ -+struct pcmcia_callback; -+ -+struct pcmcia_socket { -+ struct module *owner; -+ socket_state_t socket; -+ u_int state; -+ u_int suspended_state; -+ u_short functions; -+ u_short lock_count; -+ pccard_mem_map cis_mem; -+ void *cis_virt; -+ io_window_t io[2]; -+ pccard_mem_map win[4]; -+ struct list_head cis_cache; -+ size_t fake_cis_len; -+ u8 *fake_cis; -+ struct list_head socket_list; -+ struct completion socket_released; -+ unsigned int sock; -+ u_int features; -+ u_int irq_mask; -+ u_int map_size; -+ u_int io_offset; -+ u_int pci_irq; -+ struct pci_dev *cb_dev; -+ u8 resource_setup_done; -+ struct pccard_operations *ops; -+ struct pccard_resource_ops *resource_ops; -+ void *resource_data; -+ void (*zoom_video)(struct pcmcia_socket *, int); -+ int (*power_hook)(struct pcmcia_socket *, int); -+ void (*tune_bridge)(struct pcmcia_socket *, struct pci_bus *); -+ struct task_struct *thread; -+ struct completion thread_done; -+ unsigned int thread_events; -+ unsigned int sysfs_events; -+ struct mutex skt_mutex; -+ struct mutex ops_mutex; -+ spinlock_t thread_lock; -+ struct pcmcia_callback *callback; -+ struct device dev; -+ void *driver_data; -+ int resume_status; -+}; -+ -+struct pccard_resource_ops { -+ int (*validate_mem)(struct pcmcia_socket *); -+ int (*find_io)(struct pcmcia_socket *, unsigned int, unsigned int *, unsigned int, unsigned int, struct resource **); -+ struct resource * (*find_mem)(long unsigned int, long unsigned int, long unsigned int, int, struct pcmcia_socket *); -+ int (*init)(struct pcmcia_socket *); -+ void (*exit)(struct pcmcia_socket *); -+}; -+ -+struct pcmcia_callback { -+ struct module *owner; -+ int (*add)(struct pcmcia_socket *); -+ int (*remove)(struct pcmcia_socket *); -+ void (*requery)(struct pcmcia_socket *); -+ int (*validate)(struct pcmcia_socket *, unsigned int *); -+ int (*suspend)(struct pcmcia_socket *); -+ int (*early_resume)(struct pcmcia_socket *); -+ int (*resume)(struct pcmcia_socket *); -+}; -+ -+enum { -+ PCMCIA_IOPORT_0 = 0, -+ PCMCIA_IOPORT_1 = 1, -+ PCMCIA_IOMEM_0 = 2, -+ PCMCIA_IOMEM_1 = 3, -+ PCMCIA_IOMEM_2 = 4, -+ PCMCIA_IOMEM_3 = 5, -+ PCMCIA_NUM_RESOURCES = 6, -+}; -+ -+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_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_descriptor_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+}; -+ -+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_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; -+ __le32 bmSublinkSpeedAttr[1]; -+}; -+ -+struct usb_ptm_cap_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+enum usb3_link_state { -+ USB3_LPM_U0 = 0, -+ USB3_LPM_U1 = 1, -+ USB3_LPM_U2 = 2, -+ USB3_LPM_U3 = 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; -+ char: 8; -+ struct list_head urb_list; -+ void *hcpriv; -+ struct ep_device *ep_dev; -+ unsigned char *extra; -+ int extralen; -+ int enabled; -+ int streams; -+ int: 32; -+} __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, -+}; -+ -+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; -+ 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_devmap { -+ long unsigned int devicemap[2]; -+}; -+ -+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; -+ struct usb_devmap devmap; -+ 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; -+}; -+ -+struct wusb_dev; -+ -+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 have_langid: 1; -+ unsigned int authorized: 1; -+ unsigned int authenticated: 1; -+ unsigned int wusb: 1; -+ unsigned int lpm_capable: 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; -+ struct wusb_dev *wusb_dev; -+ 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; -+}; -+ -+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_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 usbdrv_wrap { -+ struct device_driver driver; -+ int for_devices; -+}; -+ -+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 *); -+ const struct usb_device_id *id_table; -+ const struct attribute_group **dev_groups; -+ struct usb_dynids dynids; -+ struct usbdrv_wrap drvwrap; -+ 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); -+ const struct attribute_group **dev_groups; -+ struct usbdrv_wrap drvwrap; -+ const struct usb_device_id *id_table; -+ unsigned int supports_autosuspend: 1; -+ unsigned int generic_subclass: 1; -+}; -+ -+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 giveback_urb_bh { -+ bool running; -+ spinlock_t lock; -+ struct list_head head; -+ struct tasklet_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 usb_phy_roothub; -+ -+struct hc_driver; -+ -+struct usb_phy; -+ -+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 wireless: 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___2 *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 *, 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 *); -+ 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); -+}; -+ -+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_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 regulator; -+ -+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_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; -+ -+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 *); -+ 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 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 *); -+}; -+ -+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 work_struct events; -+ spinlock_t irq_urb_lock; -+ struct timer_list irq_urb_retry; -+ struct usb_port **ports; -+}; -+ -+struct usb_dev_state; -+ -+struct usb_port { -+ struct usb_device *child; -+ struct device dev; -+ struct usb_dev_state *port_owner; -+ struct usb_port *peer; -+ struct dev_pm_qos_request *req; -+ enum usb_port_connect_type connect_type; -+ usb_port_location_t location; -+ struct mutex status_lock; -+ u32 over_current_count; -+ u8 portnum; -+ u32 quirks; -+ unsigned int is_superspeed: 1; -+ unsigned int usb3_lpm_u1_permit: 1; -+ unsigned int usb3_lpm_u2_permit: 1; -+}; -+ -+struct find_interface_arg { -+ int minor; -+ struct device_driver *drv; -+}; -+ -+struct each_dev_arg { -+ void *data; -+ int (*fn)(struct usb_device *, void *); -+}; -+ -+struct each_hub_arg { -+ void *data; -+ int (*fn)(struct device *, void *); -+}; -+ -+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, -+}; -+ -+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_ctrlrequest { -+ __u8 bRequestType; -+ __u8 bRequest; -+ __le16 wValue; -+ __le16 wIndex; -+ __le16 wLength; -+}; -+ -+enum usb_led_event { -+ USB_LED_EVENT_HOST = 0, -+ USB_LED_EVENT_GADGET = 1, -+}; -+ -+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); -+}; -+ -+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 usb_dynid { -+ struct list_head node; -+ struct usb_device_id id; -+}; -+ -+struct usb_dev_cap_header { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDevCapabilityType; -+}; -+ -+struct usb_class_driver { -+ char *name; -+ char * (*devnode)(struct device *, umode_t *); -+ const struct file_operations *fops; -+ int minor_base; -+}; -+ -+struct usb_class { -+ struct kref kref; -+ struct class *class; -+}; -+ -+struct ep_device { -+ struct usb_endpoint_descriptor *desc; -+ struct usb_device *udev; -+ struct device dev; -+}; -+ -+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___2 { -+ 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___2 *ps; -+}; -+ -+struct async { -+ struct list_head asynclist; -+ struct usb_dev_state___2 *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 quirk_entry { -+ u16 vid; -+ u16 pid; -+ u32 flags; -+}; -+ -+struct class_info { -+ int class; -+ char *class_name; -+}; -+ -+struct usb_phy_roothub___2 { -+ struct phy *phy; -+ struct list_head list; -+}; -+ -+typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); -+ -+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 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 snap { -+ int slen; -+ char str[80]; -+}; -+ -+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 = 10, -+}; -+ -+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_bin_get32 { -+ u32 hdr32; -+ u32 data32; -+ u32 alloc32; -+}; -+ -+struct mon_bin_mfetch32 { -+ u32 offvec32; -+ u32 nfetch32; -+ u32 nflush32; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+struct ehci_stats { -+ long unsigned int normal; -+ long unsigned int error; -+ long unsigned int iaa; -+ long unsigned int lost_iaa; -+ long unsigned int complete; -+ long unsigned int unlink; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *qtd_pool; -+ struct dma_pool___2 *itd_pool; -+ struct dma_pool___2 *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 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; -+ __le32 *ohci_hcctrl_reg; -+ unsigned int has_hostpc: 1; -+ unsigned int has_tdi_phy_lpm: 1; -+ unsigned int has_ppcd: 1; -+ u8 sbrn; -+ struct ehci_stats stats; -+ struct dentry *debug_dir; -+ 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; -+ u32 port_status[0]; -+ u32 reserved3[9]; -+ u32 usbmode; -+ u32 reserved4[6]; -+ u32 hostpc[0]; -+ u32 reserved5[17]; -+ 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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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_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_tt { -+ u16 bandwidth[8]; -+ struct list_head tt_list; -+ struct list_head ps_list; -+ struct usb_tt *usb_tt; -+ int tt_port; -+}; -+ -+struct ehci_driver_overrides { -+ size_t extra_priv_size; -+ int (*reset)(struct usb_hcd *); -+ int (*port_power)(struct usb_hcd *, int, bool); -+}; -+ -+struct debug_buffer { -+ ssize_t (*fill_func)(struct debug_buffer *); -+ struct usb_bus *bus; -+ struct mutex mutex; -+ size_t count; -+ char *output_buf; -+ size_t alloc_size; -+}; -+ -+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; -+}; -+ -+struct urb_priv { -+ struct ed *ed; -+ u16 length; -+ u16 td_cnt; -+ struct list_head pending; -+ struct td *td[0]; -+}; -+ -+typedef struct urb_priv urb_priv_t; -+ -+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___2 *td_cache; -+ struct dma_pool___2 *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 debug_buffer___2 { -+ ssize_t (*fill_func)(struct debug_buffer___2 *); -+ struct ohci_hcd *ohci; -+ struct mutex mutex; -+ size_t count; -+ char *page; -+}; -+ -+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___2 *qh_pool; -+ struct dma_pool___2 *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; -+}; -+ -+struct uhci_debug { -+ int size; -+ char *data; -+}; -+ -+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]; -+}; -+ -+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]; -+}; -+ -+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; -+}; -+ -+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 err_count; -+ unsigned int stream_id; -+ unsigned int num_segs; -+ unsigned int num_trbs_free; -+ unsigned int num_trbs_free_temp; -+ unsigned int bounce_buf_len; -+ enum xhci_ring_type type; -+ bool last_td_was_short; -+ 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 ep_state; -+ struct list_head cancelled_td_list; -+ struct timer_list stop_cmd_timer; -+ 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; -+ int next_frame_id; -+ bool use_extended_tbc; -+}; -+ -+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]; -+ u8 fake_port; -+ u8 real_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_erst_entry; -+ -+struct xhci_erst { -+ struct xhci_erst_entry *entries; -+ unsigned int num_entries; -+ dma_addr_t erst_dma_addr; -+ unsigned int erst_size; -+}; -+ -+struct s3_save { -+ u32 command; -+ u32 dev_nt; -+ u64 dcbaa_ptr; -+ u32 config_reg; -+ u32 irq_pending; -+ u32 irq_control; -+ u32 erst_size; -+ u64 erst_base; -+ u64 erst_dequeue; -+}; -+ -+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 resume_done[31]; -+ long unsigned int resuming_ports; -+ long unsigned int rexit_ports; -+ struct completion rexit_done[31]; -+ struct completion u3exit_done[31]; -+}; -+ -+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_device_context_array; -+ -+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; -+ struct xhci_intr_reg *ir_set; -+ __u32 hcs_params1; -+ __u32 hcs_params2; -+ __u32 hcs_params3; -+ __u32 hcc_params; -+ __u32 hcc_params2; -+ spinlock_t lock; -+ u8 sbrn; -+ u16 hci_version; -+ u8 max_slots; -+ u8 max_interrupters; -+ u8 max_ports; -+ u8 isoc_threshold; -+ u32 imod_interval; -+ u32 isoc_bei_interval; -+ int event_ring_max; -+ int page_size; -+ int page_shift; -+ int msix_count; -+ struct clk *clk; -+ struct clk *reg_clk; -+ struct reset_control___2 *reset; -+ struct xhci_device_context_array *dcbaa; -+ 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_ring *event_ring; -+ struct xhci_erst erst; -+ struct xhci_scratchpad *scratchpad; -+ struct list_head lpm_failed_devs; -+ struct mutex mutex; -+ struct xhci_command *lpm_command; -+ struct xhci_virt_device *devs[256]; -+ struct xhci_root_port_bw_info *rh_bw; -+ struct dma_pool___2 *device_pool; -+ struct dma_pool___2 *segment_pool; -+ struct dma_pool___2 *small_streams_pool; -+ struct dma_pool___2 *medium_streams_pool; -+ unsigned int xhc_state; -+ u32 command; -+ 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; -+ u32 *ext_caps; -+ unsigned int num_ext_caps; -+ 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; -+ 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_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_CLEARED = 3, -+}; -+ -+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; -+ unsigned int num_trbs; -+}; -+ -+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___3 { -+ 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; -+}; -+ -+struct xhci_port { -+ __le32 *addr; -+ int hw_portnum; -+ int hcd_portnum; -+ struct xhci_hub *rhub; -+ struct xhci_port_cap *port_cap; -+}; -+ -+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 *); -+}; -+ -+typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); -+ -+enum xhci_ep_reset_type { -+ EP_HARD_RESET = 0, -+ EP_SOFT_RESET = 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_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_STALLED = 5, -+}; -+ -+struct xhci_dbc; -+ -+struct dbc_ep { -+ struct xhci_dbc *dbc; -+ struct list_head list_pending; -+ struct xhci_ring *ring; -+ unsigned int direction: 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; -+ enum dbc_state state; -+ struct delayed_work event_work; -+ 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; -+ int slot_id; -+ 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; -+ u8 fake_port; -+ u8 real_port; -+ 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; -+ 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 num_trbs_free; -+ unsigned int bounce_buf_len; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_xhci_log_portsc { -+ struct trace_entry ent; -+ 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; -+}; -+ -+struct trace_event_data_offsets_xhci_log_ctx { -+ u32 ctx_data; -+}; -+ -+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 {}; -+ -+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 *, u32, u32); -+ -+typedef void (*btf_trace_xhci_get_port_status)(void *, u32, u32); -+ -+typedef void (*btf_trace_xhci_hub_status_data)(void *, u32, 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_string_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __le16 wData[1]; -+}; -+ -+struct dbc_info_context { -+ __le64 string0; -+ __le64 manufacturer; -+ __le64 product; -+ __le64 serial; -+ __le32 length; -+ __le32 __reserved_0[7]; -+}; -+ -+enum evtreturn { -+ EVT_ERR = 4294967295, -+ EVT_DONE = 0, -+ EVT_GSER = 1, -+ EVT_DISC = 2, -+}; -+ -+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 dbc_port { -+ struct tty_port port; -+ spinlock_t port_lock; -+ struct list_head read_pool; -+ struct list_head read_queue; -+ unsigned int n_read; -+ struct tasklet_struct push; -+ struct list_head write_pool; -+ struct kfifo write_fifo; -+ bool registered; -+}; -+ -+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 xhci_driver_data { -+ u64 quirks; -+ const char *firmware; -+}; -+ -+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 *, struct ktermios *); -+ void (*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]; -+}; -+ -+struct usbcons_info { -+ int magic; -+ int break_flag; -+ struct usb_serial_port *port; -+}; -+ -+struct usb_debug_descriptor { -+ __u8 bLength; -+ __u8 bDescriptorType; -+ __u8 bDebugInEndpoint; -+ __u8 bDebugOutEndpoint; -+}; -+ -+struct ehci_dev { -+ u32 bus; -+ u32 slot; -+ u32 func; -+}; -+ -+typedef void (*set_debug_port_t)(int); -+ -+struct usb_hcd___2; -+ -+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; -+}; -+ -+enum typec_port_type { -+ TYPEC_PORT_SRC = 0, -+ TYPEC_PORT_SNK = 1, -+ TYPEC_PORT_DRP = 2, -+}; -+ -+enum typec_port_data { -+ TYPEC_PORT_DFP = 0, -+ TYPEC_PORT_UFP = 1, -+ TYPEC_PORT_DRD = 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, -+}; -+ -+enum typec_orientation { -+ TYPEC_ORIENTATION_NONE = 0, -+ TYPEC_ORIENTATION_NORMAL = 1, -+ TYPEC_ORIENTATION_REVERSE = 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; -+}; -+ -+enum typec_plug_index { -+ TYPEC_PLUG_SOP_P = 0, -+ TYPEC_PLUG_SOP_PP = 1, -+}; -+ -+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_desc { -+ unsigned int usb_pd: 1; -+ enum typec_accessory accessory; -+ struct usb_pd_identity *identity; -+ u16 pd_revision; -+}; -+ -+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 typec_switch; -+ -+struct typec_mux; -+ -+struct typec_capability; -+ -+struct typec_port { -+ unsigned int id; -+ struct device dev; -+ struct ida mode_ids; -+ 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; -+ enum typec_orientation orientation; -+ struct typec_switch *sw; -+ struct typec_mux *mux; -+ const struct typec_capability *cap; -+ const struct typec_operations *ops; -+ struct list_head port_list; -+ struct mutex port_list_lock; -+ void *pld; -+}; -+ -+enum usb_pd_svdm_ver { -+ SVDM_VER_1_0 = 0, -+ SVDM_VER_2_0 = 1, -+ SVDM_VER_MAX = 1, -+}; -+ -+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; -+ const struct typec_operations *ops; -+}; -+ -+struct typec_altmode; -+ -+struct typec_mux_state { -+ struct typec_altmode *alt; -+ long unsigned int mode; -+ void *data; -+}; -+ -+struct typec_altmode_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; -+}; -+ -+struct typec_device_id { -+ __u16 svid; -+ __u8 mode; -+ kernel_ulong_t driver_data; -+}; -+ -+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); -+}; -+ -+enum { -+ TYPEC_STATE_SAFE = 0, -+ TYPEC_STATE_USB = 1, -+ TYPEC_STATE_MODAL = 2, -+}; -+ -+struct altmode { -+ unsigned int id; -+ struct typec_altmode adev; -+ struct typec_mux *mux; -+ 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_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; -+}; -+ -+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 typec_switch___2; -+ -+typedef int (*typec_switch_set_fn_t)(struct typec_switch___2 *, enum typec_orientation); -+ -+struct typec_switch___2 { -+ struct device dev; -+ typec_switch_set_fn_t set; -+}; -+ -+typedef int (*typec_mux_set_fn_t)(struct typec_mux *, struct typec_mux_state *); -+ -+struct typec_mux { -+ struct device dev; -+ typec_mux_set_fn_t set; -+}; -+ -+struct typec_switch_desc { -+ struct fwnode_handle *fwnode; -+ typec_switch_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+struct typec_mux_desc { -+ struct fwnode_handle *fwnode; -+ typec_mux_set_fn_t set; -+ const char *name; -+ void *drvdata; -+}; -+ -+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 port_node { -+ struct list_head list; -+ struct device *dev; -+ void *pld; -+}; -+ -+enum usb_role { -+ USB_ROLE_NONE = 0, -+ USB_ROLE_HOST = 1, -+ USB_ROLE_DEVICE = 2, -+}; -+ -+struct usb_role_switch; -+ -+struct ucsi; -+ -+struct ucsi_altmode; -+ -+struct ucsi_operations { -+ int (*read)(struct ucsi *, unsigned int, void *, size_t); -+ int (*sync_write)(struct ucsi *, unsigned int, const void *, size_t); -+ int (*async_write)(struct ucsi *, unsigned int, const void *, size_t); -+ bool (*update_altmodes)(struct ucsi *, struct ucsi_altmode *, struct ucsi_altmode *); -+}; -+ -+struct driver_data; -+ -+struct ucsi_capability { -+ u32 attributes; -+ u8 num_connectors; -+ u8 features; -+ u16 reserved_1; -+ u8 num_alt_modes; -+ u8 reserved_2; -+ u16 bc_version; -+ u16 pd_version; -+ u16 typec_version; -+}; -+ -+struct ucsi_connector; -+ -+struct ucsi { -+ u16 version; -+ struct device *dev; -+ struct driver_data *driver_data; -+ const struct ucsi_operations *ops; -+ struct ucsi_capability cap; -+ struct ucsi_connector *connector; -+ struct work_struct work; -+ struct mutex ppm_lock; -+ u64 ntfy; -+ long unsigned int flags; -+}; -+ -+struct ucsi_altmode { -+ u16 svid; -+ u32 mid; -+} __attribute__((packed)); -+ -+struct ucsi_connector_capability { -+ u8 op_mode; -+ u8 flags; -+}; -+ -+struct ucsi_connector_status { -+ u16 change; -+ u16 flags; -+ u32 request_data_obj; -+ u8 pwr_status; -+} __attribute__((packed)); -+ -+struct typec_partner___2; -+ -+struct ucsi_connector { -+ int num; -+ int: 32; -+ struct ucsi *ucsi; -+ struct mutex lock; -+ struct work_struct work; -+ struct completion complete; -+ struct typec_port *port; -+ struct typec_partner___2 *partner; -+ struct typec_altmode *port_altmode[30]; -+ struct typec_altmode *partner_altmode[30]; -+ struct typec_capability typec_cap; -+ u16 unprocessed_changes; -+ struct ucsi_connector_status status; -+ struct ucsi_connector_capability cap; -+ int: 24; -+ struct power_supply *psy; -+ struct power_supply_desc psy_desc; -+ u32 rdo; -+ u32 src_pdos[7]; -+ int num_pdos; -+ int: 32; -+ struct usb_role_switch *usb_role_sw; -+} __attribute__((packed)); -+ -+struct trace_event_raw_ucsi_log_command { -+ struct trace_entry ent; -+ u64 ctrl; -+ int ret; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_connector_status { -+ struct trace_entry ent; -+ int port; -+ u16 change; -+ u8 opmode; -+ u8 connected; -+ u8 pwr_dir; -+ u8 partner_flags; -+ u8 partner_type; -+ u32 request_data_obj; -+ u8 bc_status; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_ucsi_log_register_altmode { -+ struct trace_entry ent; -+ u8 recipient; -+ u16 svid; -+ u8 mode; -+ u32 vdo; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_ucsi_log_command {}; -+ -+struct trace_event_data_offsets_ucsi_log_connector_status {}; -+ -+struct trace_event_data_offsets_ucsi_log_register_altmode {}; -+ -+typedef void (*btf_trace_ucsi_run_command)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_reset_ppm)(void *, u64, int); -+ -+typedef void (*btf_trace_ucsi_connector_change)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_port)(void *, int, struct ucsi_connector_status *); -+ -+typedef void (*btf_trace_ucsi_register_altmode)(void *, u8, struct typec_altmode *); -+ -+enum ucsi_psy_online_states { -+ UCSI_PSY_OFFLINE = 0, -+ UCSI_PSY_FIXED_ONLINE = 1, -+ UCSI_PSY_PROG_ONLINE = 2, -+}; -+ -+struct typec_displayport_data { -+ u32 status; -+ u32 conf; -+}; -+ -+enum { -+ DP_PIN_ASSIGN_A = 0, -+ DP_PIN_ASSIGN_B = 1, -+ DP_PIN_ASSIGN_C = 2, -+ DP_PIN_ASSIGN_D = 3, -+ DP_PIN_ASSIGN_E = 4, -+ DP_PIN_ASSIGN_F = 5, -+}; -+ -+struct ucsi_dp { -+ struct typec_displayport_data data; -+ struct ucsi_connector *con; -+ struct typec_altmode *alt; -+ struct work_struct work; -+ int offset; -+ bool override; -+ bool initialized; -+ u32 header; -+ u32 *vdo_data; -+ u8 vdo_size; -+}; -+ -+struct ucsi_acpi { -+ struct device *dev; -+ struct ucsi *ucsi; -+ void *base; -+ struct completion complete; -+ long unsigned int flags; -+ guid_t guid; -+}; -+ -+struct usb_role_switch___2; -+ -+typedef int (*usb_role_switch_set_t)(struct usb_role_switch___2 *, enum usb_role); -+ -+typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch___2 *); -+ -+struct usb_role_switch___2 { -+ struct device dev; -+ struct mutex lock; -+ enum usb_role role; -+ 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; -+}; -+ -+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 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; -+}; -+ -+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 ps2dev { -+ struct serio *serio; -+ struct mutex cmd_mutex; -+ wait_queue_head_t wait; -+ long unsigned int flags; -+ u8 cmdbuf[8]; -+ u8 cmdcnt; -+ u8 nak; -+}; -+ -+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]; -+}; -+ -+union input_seq_state { -+ struct { -+ short unsigned int pos; -+ bool mutex_acquired; -+ }; -+ void *p; -+}; -+ -+struct input_devres { -+ struct input_dev *input; -+}; -+ -+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_mt_pos { -+ s16 x; -+ s16 y; -+}; -+ -+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 touchscreen_properties { -+ unsigned int max_x; -+ unsigned int max_y; -+ bool invert_x; -+ bool invert_y; -+ bool swap_x_y; -+}; -+ -+struct led_init_data { -+ struct fwnode_handle *fwnode; -+ const char *default_label; -+ const char *devicename; -+ bool devname_mandatory; -+}; -+ -+struct input_led { -+ struct led_classdev cdev; -+ struct input_handle *handle; -+ unsigned int code; -+}; -+ -+struct input_leds { -+ struct input_handle handle; -+ unsigned int num_leds; -+ struct input_led leds[0]; -+}; -+ -+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_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 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; -+ u32 function_row_physmap[24]; -+ int num_function_row_keys; -+}; -+ -+enum psmouse_state { -+ PSMOUSE_IGNORE = 0, -+ PSMOUSE_INITIALIZING = 1, -+ PSMOUSE_RESYNCING = 2, -+ PSMOUSE_CMD_MODE = 3, -+ PSMOUSE_ACTIVATED = 4, -+}; -+ -+typedef enum { -+ PSMOUSE_BAD_DATA = 0, -+ PSMOUSE_GOOD_DATA = 1, -+ PSMOUSE_FULL_PACKET = 2, -+} psmouse_ret_t; -+ -+enum psmouse_scale { -+ PSMOUSE_SCALE11 = 0, -+ PSMOUSE_SCALE21 = 1, -+}; -+ -+enum psmouse_type { -+ PSMOUSE_NONE = 0, -+ PSMOUSE_PS2 = 1, -+ PSMOUSE_PS2PP = 2, -+ PSMOUSE_THINKPS = 3, -+ PSMOUSE_GENPS = 4, -+ PSMOUSE_IMPS = 5, -+ PSMOUSE_IMEX = 6, -+ PSMOUSE_SYNAPTICS = 7, -+ PSMOUSE_ALPS = 8, -+ PSMOUSE_LIFEBOOK = 9, -+ PSMOUSE_TRACKPOINT = 10, -+ PSMOUSE_TOUCHKIT_PS2 = 11, -+ PSMOUSE_CORTRON = 12, -+ PSMOUSE_HGPK = 13, -+ PSMOUSE_ELANTECH = 14, -+ PSMOUSE_FSP = 15, -+ PSMOUSE_SYNAPTICS_RELATIVE = 16, -+ PSMOUSE_CYPRESS = 17, -+ PSMOUSE_FOCALTECH = 18, -+ PSMOUSE_VMMOUSE = 19, -+ PSMOUSE_BYD = 20, -+ PSMOUSE_SYNAPTICS_SMBUS = 21, -+ PSMOUSE_ELANTECH_SMBUS = 22, -+ PSMOUSE_AUTO = 23, -+}; -+ -+struct psmouse; -+ -+struct psmouse_protocol { -+ enum psmouse_type type; -+ bool maxproto; -+ bool ignore_parity; -+ bool try_passthru; -+ bool smbus_companion; -+ const char *name; -+ const char *alias; -+ int (*detect)(struct psmouse *, bool); -+ int (*init)(struct psmouse *); -+}; -+ -+struct psmouse { -+ void *private; -+ struct input_dev *dev; -+ struct ps2dev ps2dev; -+ struct delayed_work resync_work; -+ const char *vendor; -+ const char *name; -+ const struct psmouse_protocol *protocol; -+ unsigned char packet[8]; -+ unsigned char badbyte; -+ unsigned char pktcnt; -+ unsigned char pktsize; -+ unsigned char oob_data_type; -+ unsigned char extra_buttons; -+ bool acks_disable_command; -+ unsigned int model; -+ long unsigned int last; -+ long unsigned int out_of_sync_cnt; -+ long unsigned int num_resyncs; -+ enum psmouse_state state; -+ char devname[64]; -+ char phys[32]; -+ unsigned int rate; -+ unsigned int resolution; -+ unsigned int resetafter; -+ unsigned int resync_time; -+ bool smartscroll; -+ psmouse_ret_t (*protocol_handler)(struct psmouse *); -+ void (*set_rate)(struct psmouse *, unsigned int); -+ void (*set_resolution)(struct psmouse *, unsigned int); -+ void (*set_scale)(struct psmouse *, enum psmouse_scale); -+ int (*reconnect)(struct psmouse *); -+ int (*fast_reconnect)(struct psmouse *); -+ void (*disconnect)(struct psmouse *); -+ void (*cleanup)(struct psmouse *); -+ int (*poll)(struct psmouse *); -+ void (*pt_activate)(struct psmouse *); -+ void (*pt_deactivate)(struct psmouse *); -+}; -+ -+struct psmouse_attribute { -+ struct device_attribute dattr; -+ void *data; -+ ssize_t (*show)(struct psmouse *, void *, char *); -+ ssize_t (*set)(struct psmouse *, void *, const char *, size_t); -+ bool protect; -+}; -+ -+struct rmi_2d_axis_alignment { -+ bool swap_axes; -+ bool flip_x; -+ bool flip_y; -+ u16 clip_x_low; -+ u16 clip_y_low; -+ u16 clip_x_high; -+ u16 clip_y_high; -+ u16 offset_x; -+ u16 offset_y; -+ u8 delta_x_threshold; -+ u8 delta_y_threshold; -+}; -+ -+enum rmi_sensor_type { -+ rmi_sensor_default = 0, -+ rmi_sensor_touchscreen = 1, -+ rmi_sensor_touchpad = 2, -+}; -+ -+struct rmi_2d_sensor_platform_data { -+ struct rmi_2d_axis_alignment axis_align; -+ enum rmi_sensor_type sensor_type; -+ int x_mm; -+ int y_mm; -+ int disable_report_mask; -+ u16 rezero_wait; -+ bool topbuttonpad; -+ bool kernel_tracking; -+ int dmax; -+ int dribble; -+ int palm_detect; -+}; -+ -+struct rmi_gpio_data { -+ bool buttonpad; -+ bool trackstick_buttons; -+ bool disable; -+}; -+ -+enum rmi_reg_state { -+ RMI_REG_STATE_DEFAULT = 0, -+ RMI_REG_STATE_OFF = 1, -+ RMI_REG_STATE_ON = 2, -+}; -+ -+struct rmi_f01_power_management { -+ enum rmi_reg_state nosleep; -+ u8 wakeup_threshold; -+ u8 doze_holdoff; -+ u8 doze_interval; -+}; -+ -+struct rmi_device_platform_data_spi { -+ u32 block_delay_us; -+ u32 split_read_block_delay_us; -+ u32 read_delay_us; -+ u32 write_delay_us; -+ u32 split_read_byte_delay_us; -+ u32 pre_delay_us; -+ u32 post_delay_us; -+ u8 bits_per_word; -+ u16 mode; -+ void *cs_assert_data; -+ int (*cs_assert)(const void *, const bool); -+}; -+ -+struct rmi_device_platform_data { -+ int reset_delay_ms; -+ int irq; -+ struct rmi_device_platform_data_spi spi_data; -+ struct rmi_2d_sensor_platform_data sensor_pdata; -+ struct rmi_f01_power_management power_management; -+ struct rmi_gpio_data gpio_data; -+}; -+ -+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; -+}; -+ -+enum synaptics_pkt_type { -+ SYN_NEWABS = 0, -+ SYN_NEWABS_STRICT = 1, -+ SYN_NEWABS_RELAXED = 2, -+ SYN_OLDABS = 3, -+}; -+ -+struct synaptics_hw_state { -+ int x; -+ int y; -+ int z; -+ int w; -+ unsigned int left: 1; -+ unsigned int right: 1; -+ unsigned int middle: 1; -+ unsigned int up: 1; -+ unsigned int down: 1; -+ u8 ext_buttons; -+ s8 scroll; -+}; -+ -+struct synaptics_device_info { -+ u32 model_id; -+ u32 firmware_id; -+ u32 board_id; -+ u32 capabilities; -+ u32 ext_cap; -+ u32 ext_cap_0c; -+ u32 ext_cap_10; -+ u32 identity; -+ u32 x_res; -+ u32 y_res; -+ u32 x_max; -+ u32 y_max; -+ u32 x_min; -+ u32 y_min; -+}; -+ -+struct synaptics_data { -+ struct synaptics_device_info info; -+ enum synaptics_pkt_type pkt_type; -+ u8 mode; -+ int scroll; -+ bool absolute_mode; -+ bool disable_gesture; -+ struct serio *pt_port; -+ struct synaptics_hw_state agm; -+ unsigned int agm_count; -+ long unsigned int press_start; -+ bool press; -+ bool report_press; -+ bool is_forcepad; -+}; -+ -+struct min_max_quirk { -+ const char * const *pnp_ids; -+ struct { -+ u32 min; -+ u32 max; -+ } board_id; -+ u32 x_min; -+ u32 x_max; -+ u32 y_min; -+ u32 y_max; -+}; -+ -+enum { -+ SYNAPTICS_INTERTOUCH_NOT_SET = 4294967295, -+ SYNAPTICS_INTERTOUCH_OFF = 0, -+ SYNAPTICS_INTERTOUCH_ON = 1, -+}; -+ -+struct focaltech_finger_state { -+ bool active; -+ bool valid; -+ unsigned int x; -+ unsigned int y; -+}; -+ -+struct focaltech_hw_state { -+ struct focaltech_finger_state fingers[5]; -+ unsigned int width; -+ bool pressed; -+}; -+ -+struct focaltech_data { -+ unsigned int x_max; -+ unsigned int y_max; -+ struct focaltech_hw_state state; -+}; -+ -+enum SS4_PACKET_ID { -+ SS4_PACKET_ID_IDLE = 0, -+ SS4_PACKET_ID_ONE = 1, -+ SS4_PACKET_ID_TWO = 2, -+ SS4_PACKET_ID_MULTI = 3, -+ SS4_PACKET_ID_STICK = 4, -+}; -+ -+enum V7_PACKET_ID { -+ V7_PACKET_ID_IDLE = 0, -+ V7_PACKET_ID_TWO = 1, -+ V7_PACKET_ID_MULTI = 2, -+ V7_PACKET_ID_NEW = 3, -+ V7_PACKET_ID_UNKNOWN = 4, -+}; -+ -+struct alps_protocol_info { -+ u16 version; -+ u8 byte0; -+ u8 mask0; -+ unsigned int flags; -+}; -+ -+struct alps_model_info { -+ u8 signature[3]; -+ struct alps_protocol_info protocol_info; -+}; -+ -+struct alps_nibble_commands { -+ int command; -+ unsigned char data; -+}; -+ -+struct alps_bitmap_point { -+ int start_bit; -+ int num_bits; -+}; -+ -+struct alps_fields { -+ unsigned int x_map; -+ unsigned int y_map; -+ unsigned int fingers; -+ int pressure; -+ struct input_mt_pos st; -+ struct input_mt_pos mt[4]; -+ unsigned int first_mp: 1; -+ unsigned int is_mp: 1; -+ unsigned int left: 1; -+ unsigned int right: 1; -+ unsigned int middle: 1; -+ unsigned int ts_left: 1; -+ unsigned int ts_right: 1; -+ unsigned int ts_middle: 1; -+}; -+ -+struct alps_data { -+ struct psmouse *psmouse; -+ struct input_dev *dev2; -+ struct input_dev *dev3; -+ char phys2[32]; -+ char phys3[32]; -+ struct delayed_work dev3_register_work; -+ const struct alps_nibble_commands *nibble_commands; -+ int addr_command; -+ u16 proto_version; -+ u8 byte0; -+ u8 mask0; -+ u8 dev_id[3]; -+ u8 fw_ver[3]; -+ int flags; -+ int x_max; -+ int y_max; -+ int x_bits; -+ int y_bits; -+ unsigned int x_res; -+ unsigned int y_res; -+ int (*hw_init)(struct psmouse *); -+ void (*process_packet)(struct psmouse *); -+ int (*decode_fields)(struct alps_fields *, unsigned char *, struct psmouse *); -+ void (*set_abs_params)(struct alps_data *, struct input_dev *); -+ int prev_fin; -+ int multi_packet; -+ int second_touch; -+ unsigned char multi_data[6]; -+ struct alps_fields f; -+ u8 quirks; -+ struct timer_list timer; -+}; -+ -+struct byd_data { -+ struct timer_list timer; -+ struct psmouse *psmouse; -+ s32 abs_x; -+ s32 abs_y; -+ volatile long unsigned int last_touch_time; -+ bool btn_left; -+ bool btn_right; -+ bool touch; -+}; -+ -+struct finger_pos { -+ unsigned int x; -+ unsigned int y; -+}; -+ -+struct elantech_device_info { -+ unsigned char capabilities[3]; -+ unsigned char samples[3]; -+ unsigned char debug; -+ unsigned char hw_version; -+ unsigned char pattern; -+ unsigned int fw_version; -+ unsigned int ic_version; -+ unsigned int product_id; -+ unsigned int x_min; -+ unsigned int y_min; -+ unsigned int x_max; -+ unsigned int y_max; -+ unsigned int x_res; -+ unsigned int y_res; -+ unsigned int x_traces; -+ unsigned int y_traces; -+ unsigned int width; -+ unsigned int bus; -+ bool paritycheck; -+ bool jumpy_cursor; -+ bool reports_pressure; -+ bool crc_enabled; -+ bool set_hw_resolution; -+ bool has_trackpoint; -+ bool has_middle_button; -+ int (*send_cmd)(struct psmouse *, unsigned char, unsigned char *); -+}; -+ -+struct elantech_data { -+ struct input_dev *tp_dev; -+ char tp_phys[32]; -+ unsigned char reg_07; -+ unsigned char reg_10; -+ unsigned char reg_11; -+ unsigned char reg_20; -+ unsigned char reg_21; -+ unsigned char reg_22; -+ unsigned char reg_23; -+ unsigned char reg_24; -+ unsigned char reg_25; -+ unsigned char reg_26; -+ unsigned int single_finger_reports; -+ unsigned int y_max; -+ unsigned int width; -+ struct finger_pos mt[5]; -+ unsigned char parity[256]; -+ struct elantech_device_info info; -+ void (*original_set_rate)(struct psmouse *, unsigned int); -+}; -+ -+struct elantech_attr_data { -+ size_t field_offset; -+ unsigned char reg; -+}; -+ -+enum { -+ ELANTECH_SMBUS_NOT_SET = 4294967295, -+ ELANTECH_SMBUS_OFF = 0, -+ ELANTECH_SMBUS_ON = 1, -+}; -+ -+struct ps2pp_info { -+ u8 model; -+ u8 kind; -+ u16 features; -+}; -+ -+struct lifebook_data { -+ struct input_dev *dev2; -+ char phys[32]; -+}; -+ -+struct fsp_data { -+ unsigned char ver; -+ unsigned char rev; -+ unsigned int buttons; -+ unsigned int flags; -+ bool vscroll; -+ bool hscroll; -+ unsigned char last_reg; -+ unsigned char last_val; -+ unsigned int last_mt_fgr; -+}; -+ -+struct trackpoint_data { -+ u8 variant_id; -+ u8 firmware_id; -+ u8 sensitivity; -+ u8 speed; -+ u8 inertia; -+ u8 reach; -+ u8 draghys; -+ u8 mindrag; -+ u8 thresh; -+ u8 upthresh; -+ u8 ztime; -+ u8 jenks; -+ u8 drift_time; -+ bool press_to_select; -+ bool skipback; -+ bool ext_dev; -+}; -+ -+struct trackpoint_attr_data { -+ size_t field_offset; -+ u8 command; -+ u8 mask; -+ bool inverted; -+ u8 power_on_default; -+}; -+ -+struct cytp_contact { -+ int x; -+ int y; -+ int z; -+}; -+ -+struct cytp_report_data { -+ int contact_cnt; -+ struct cytp_contact contacts[2]; -+ unsigned int left: 1; -+ unsigned int right: 1; -+ unsigned int middle: 1; -+ unsigned int tap: 1; -+}; -+ -+struct cytp_data { -+ int fw_version; -+ int pkt_size; -+ int mode; -+ int tp_min_pressure; -+ int tp_max_pressure; -+ int tp_width; -+ int tp_high; -+ int tp_max_abs_x; -+ int tp_max_abs_y; -+ int tp_res_x; -+ int tp_res_y; -+ int tp_metrics_supported; -+}; -+ -+struct vmmouse_data { -+ struct input_dev *abs_dev; -+ char phys[32]; -+ char dev_name[128]; -+}; -+ -+struct i2c_msg { -+ __u16 addr; -+ __u16 flags; -+ __u16 len; -+ __u8 *buf; -+}; -+ -+union i2c_smbus_data { -+ __u8 byte; -+ __u16 word; -+ __u8 block[34]; -+}; -+ -+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; -+ void *devres_group_id; -+}; -+ -+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 i2c_algorithm { -+ int (*master_xfer)(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 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___2 *scl_gpiod; -+ struct gpio_desc___2 *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 psmouse_smbus_dev { -+ struct i2c_board_info board; -+ struct psmouse *psmouse; -+ struct i2c_client *client; -+ struct list_head node; -+ bool dead; -+ bool need_deactivate; -+}; -+ -+struct psmouse_smbus_removal_work { -+ struct work_struct work; -+ struct i2c_client *client; -+}; -+ -+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 nvmem_cell_info { -+ const char *name; -+ unsigned int offset; -+ unsigned int bytes; -+ unsigned int bit_offset; -+ unsigned int nbits; -+}; -+ -+typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); -+ -+typedef int (*nvmem_reg_write_t)(void *, 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_config { -+ struct device *dev; -+ const char *name; -+ int id; -+ struct module *owner; -+ struct gpio_desc___2 *wp_gpio; -+ const struct nvmem_cell_info *cells; -+ int ncells; -+ const struct nvmem_keepout *keepout; -+ unsigned int nkeepout; -+ enum nvmem_type type; -+ bool read_only; -+ bool root_only; -+ struct device_node *of_node; -+ bool no_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_device; -+ -+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 i2c_devinfo { -+ struct list_head list; -+ int busnum; -+ struct i2c_board_info board_info; -+}; -+ -+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 *, const struct i2c_device_id *); -+ int (*remove)(struct i2c_client *); -+ int (*probe_new)(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; -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_i2c_read {}; -+ -+struct trace_event_data_offsets_i2c_reply { -+ u32 buf; -+}; -+ -+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 class_compat___2; -+ -+struct i2c_cmd_arg { -+ unsigned int cmd; -+ void *arg; -+}; -+ -+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 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; -+ 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 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; -+ wait_queue_head_t queue; -+ unsigned int id; -+ const void *lookup_cookie; -+ struct cdev cdev; -+ struct device *dev; -+ struct fasync_struct *async_queue; -+ spinlock_t lock; -+}; -+ -+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 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; -+ struct ptp_pin_desc *pin_config; -+ int (*adjfine)(struct ptp_clock_info *, long int); -+ int (*adjfreq)(struct ptp_clock_info *, s32); -+ int (*adjphase)(struct ptp_clock_info *, s32); -+ 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 (*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_PPS = 2, -+ PTP_CLOCK_PPSUSR = 3, -+}; -+ -+struct ptp_clock_event { -+ int type; -+ int index; -+ union { -+ u64 timestamp; -+ struct pps_event_time pps_times; -+ }; -+}; -+ -+struct timestamp_event_queue { -+ struct ptp_extts_event buf[128]; -+ int head; -+ int tail; -+ spinlock_t lock; -+}; -+ -+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 timestamp_event_queue tsevq; -+ struct mutex tsevq_mux; -+ 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; -+}; -+ -+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 rsv[12]; -+}; -+ -+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; -+ unsigned int rsv[3]; -+ 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 ptp_vclock { -+ struct ptp_clock *pclock; -+ struct ptp_clock_info info; -+ struct ptp_clock *clock; -+ struct cyclecounter cc; -+ struct timecounter tc; -+ spinlock_t lock; -+}; -+ -+enum power_supply_notifier_events { -+ PSY_EVENT_PROP_CHANGED = 0, -+}; -+ -+struct power_supply_battery_ocv_table { -+ int ocv; -+ int capacity; -+}; -+ -+struct power_supply_resistance_temp_table { -+ int temp; -+ int resistance; -+}; -+ -+struct power_supply_battery_info { -+ 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; -+ int factory_internal_resistance_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; -+}; -+ -+struct psy_am_i_supplied_data { -+ struct power_supply *psy; -+ unsigned int count; -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ POWER_SUPPLY_SCOPE_UNKNOWN = 0, -+ POWER_SUPPLY_SCOPE_SYSTEM = 1, -+ POWER_SUPPLY_SCOPE_DEVICE = 2, -+}; -+ -+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_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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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 **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 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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum hwmon_pwm_attributes { -+ hwmon_pwm_input = 0, -+ hwmon_pwm_enable = 1, -+ hwmon_pwm_mode = 2, -+ hwmon_pwm_freq = 3, -+}; -+ -+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; -+}; -+ -+struct trace_event_data_offsets_hwmon_attr_show_string { -+ u32 attr_name; -+ u32 label; -+}; -+ -+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; -+ 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 thermal_attr { -+ struct device_attribute attr; -+ char name[20]; -+}; -+ -+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_data_offsets_thermal_temperature { -+ u32 thermal_zone; -+}; -+ -+struct trace_event_data_offsets_cdev_update { -+ u32 type; -+}; -+ -+struct trace_event_data_offsets_thermal_zone_trip { -+ u32 thermal_zone; -+}; -+ -+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); -+ -+struct thermal_instance { -+ int id; -+ char name[20]; -+ struct thermal_zone_device *tz; -+ struct thermal_cooling_device *cdev; -+ int 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 tz_node; -+ struct list_head cdev_node; -+ unsigned int weight; -+}; -+ -+struct genl_dumpit_info { -+ const struct genl_family *family; -+ struct genl_ops op; -+ struct nlattr **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_MAX = 20, -+}; -+ -+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_MAX = 14, -+}; -+ -+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_MAX = 7, -+}; -+ -+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 cdev_state; -+ int cdev_max_state; -+}; -+ -+typedef int (*cb_t)(struct param *); -+ -+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 _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; -+}; -+ -+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; -+ 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 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; -+ -+struct mddev; -+ -+struct md_rdev; -+ -+struct md_cluster_operations { -+ int (*join)(struct mddev *, int); -+ int (*leave)(struct mddev *); -+ int (*slot_number)(struct mddev *); -+ int (*resync_info_update)(struct mddev *, sector_t, sector_t); -+ 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); -+}; -+ -+struct md_cluster_info; -+ -+struct md_personality; -+ -+struct md_thread; -+ -+struct bitmap; -+ -+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; -+ atomic_t active_io; -+ int ro; -+ int sysfs_active; -+ struct gendisk *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; -+ char *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 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; -+ atomic_t recovery_active; -+ wait_queue_head_t recovery_wait; -+ sector_t recovery_cp; -+ 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; -+ 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; -+ struct request_queue *queue; -+ struct bitmap *bitmap; -+ 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_acct_set; -+ struct bio *flush_bio; -+ atomic_t flush_pending; -+ ktime_t start_flush; -+ ktime_t prev_flush_start; -+ struct work_struct flush_work; -+ struct work_struct event_work; -+ mempool_t *serial_info_pool; -+ void (*sync_super)(struct mddev *, struct md_rdev *); -+ struct md_cluster_info *cluster_info; -+ unsigned int good_device_nr; -+ unsigned int noio_flag; -+ bool has_superblocks: 1; -+ bool fail_last_dev: 1; -+ bool serialize_policy: 1; -+}; -+ -+struct serial_in_rdev; -+ -+struct md_rdev { -+ struct list_head same_set; -+ sector_t sectors; -+ struct mddev *mddev; -+ int last_events; -+ struct block_device *meta_bdev; -+ struct block_device *bdev; -+ 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 work_struct del_work; -+ 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 serial_in_rdev { -+ struct rb_root_cached serial_rb; -+ spinlock_t serial_lock; -+ wait_queue_head_t serial_io_wait; -+}; -+ -+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, -+ RemoveSynchronized = 14, -+ ExternalBbl = 15, -+ FailFast = 16, -+ LastDev = 17, -+ CollisionCheck = 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_ALLOW_SB_UPDATE = 8, -+ MD_UPDATING_SB = 9, -+ MD_NOT_READY = 10, -+ MD_BROKEN = 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, -+}; -+ -+struct md_personality { -+ char *name; -+ int level; -+ struct list_head list; -+ struct module *owner; -+ 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, 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 (*quiesce)(struct mddev *, int); -+ void * (*takeover)(struct mddev *); -+ int (*change_consistency_policy)(struct mddev *, const char *); -+}; -+ -+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 bitmap_page; -+ -+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; -+ 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 recovery_flags { -+ MD_RECOVERY_RUNNING = 0, -+ MD_RECOVERY_SYNC = 1, -+ MD_RECOVERY_RECOVER = 2, -+ MD_RECOVERY_INTR = 3, -+ MD_RECOVERY_DONE = 4, -+ MD_RECOVERY_NEEDED = 5, -+ MD_RECOVERY_REQUESTED = 6, -+ MD_RECOVERY_CHECK = 7, -+ MD_RECOVERY_RESHAPE = 8, -+ MD_RECOVERY_FROZEN = 9, -+ MD_RECOVERY_ERROR = 10, -+ MD_RECOVERY_WAIT = 11, -+ MD_RESYNCING_REMOTE = 12, -+}; -+ -+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_acct { -+ struct bio *orig_bio; -+ long unsigned int start_time; -+ struct bio bio_clone; -+}; -+ -+struct bitmap_page { -+ char *map; -+ unsigned int hijacked: 1; -+ unsigned int pending: 1; -+ unsigned int count: 30; -+}; -+ -+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 *); -+ 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 bitmap_counter_t; -+ -+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; -+ -+enum bitmap_page_attr { -+ BITMAP_PAGE_DIRTY = 0, -+ BITMAP_PAGE_PENDING = 1, -+ BITMAP_PAGE_NEEDWRITE = 2, -+}; -+ -+struct md_setup_args { -+ int minor; -+ int partitioned; -+ int level; -+ int chunk; -+ char *device_names; -+}; -+ -+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_MAX = 4, -+}; -+ -+struct dm_kobject_holder { -+ struct kobject kobj; -+ struct completion completion; -+}; -+ -+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_NVDIMM = 24, -+ MEM_WIO2 = 25, -+}; -+ -+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; -+ 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; -+}; -+ -+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_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; -+ 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; -+ struct completion removal_complete; -+ char name[32]; -+ u32 nr_instances; -+ struct edac_device_instance *instances; -+ struct edac_device_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_device_block; -+ -+struct edac_dev_sysfs_block_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct kobject *, struct attribute *, char *); -+ ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -+ struct edac_device_block *block; -+ unsigned int value; -+}; -+ -+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 dev_ch_attribute { -+ struct device_attribute attr; -+ unsigned int channel; -+}; -+ -+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); -+}; -+ -+struct edac_pci_counter { -+ atomic_t pe_count; -+ atomic_t npe_count; -+}; -+ -+struct edac_pci_ctl_info { -+ struct list_head link; -+ int pci_idx; -+ struct bus_type *edac_subsys; -+ 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; -+ struct completion complete; -+ char name[32]; -+ struct edac_pci_counter counters; -+ struct kobject kobj; -+}; -+ -+struct edac_pci_gen_data { -+ int edac_idx; -+}; -+ -+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 ghes_pvt { -+ struct mem_ctl_info *mci; -+ char other_detail[400]; -+ char msg[80]; -+}; -+ -+struct ghes_hw_desc { -+ int num_dimms; -+ struct dimm_info *dimms; -+}; -+ -+struct memdev_dmi_entry { -+ u8 type; -+ u8 length; -+ u16 handle; -+ u16 phys_mem_array_handle; -+ u16 mem_err_info_handle; -+ u16 total_width; -+ u16 data_width; -+ u16 size; -+ u8 form_factor; -+ u8 device_set; -+ u8 device_locator; -+ u8 bank_locator; -+ u8 memory_type; -+ u16 type_detail; -+ u16 speed; -+ u8 manufacturer; -+ u8 serial_number; -+ u8 asset_tag; -+ u8 part_number; -+ u8 attributes; -+ u32 extended_size; -+ u16 conf_mem_clk_speed; -+} __attribute__((packed)); -+ -+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)(unsigned int); -+ int (*bios_limit)(int, unsigned int *); -+ int (*online)(struct cpufreq_policy *); -+ int (*offline)(struct cpufreq_policy *); -+ int (*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); -+}; -+ -+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; -+}; -+ -+enum { -+ OD_NORMAL_SAMPLE = 0, -+ OD_SUB_SAMPLE = 1, -+}; -+ -+struct dbs_data { -+ struct gov_attr_set attr_set; -+ 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 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 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 (*free)(struct policy_dbs_info *); -+ int (*init)(struct dbs_data *); -+ void (*exit)(struct dbs_data *); -+ void (*start)(struct cpufreq_policy *); -+}; -+ -+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 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; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ bool turbo_disabled_mf; -+ 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; -+ u64 prev_cummulative_iowait; -+ 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 sched_flags; -+ u32 hwp_boost_min; -+ bool suspended; -+}; -+ -+struct pstate_funcs { -+ int (*get_max)(); -+ int (*get_max_physical)(); -+ int (*get_min)(); -+ int (*get_turbo)(); -+ int (*get_scaling)(); -+ int (*get_aperf_mperf_shift)(); -+ u64 (*get_val)(struct cpudata *, int); -+ void (*get_vid)(struct cpudata *); -+}; -+ -+enum { -+ PSS = 0, -+ PPC = 1, -+}; -+ -+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); -+}; -+ -+struct menu_device { -+ int needs_update; -+ int tick_wakeup; -+ u64 next_timer_ns; -+ unsigned int bucket; -+ unsigned int correction_factor[12]; -+ unsigned int intervals[8]; -+ int interval_ptr; -+}; -+ -+struct pci_dev___2; -+ -+struct sdhci_pci_data { -+ struct pci_dev___2 *pdev; -+ int slotno; -+ int rst_n_gpio; -+ int cd_gpio; -+ int (*setup)(struct sdhci_pci_data *); -+ void (*cleanup)(struct sdhci_pci_data *); -+}; -+ -+struct led_properties { -+ u32 color; -+ bool color_present; -+ const char *function; -+ u32 func_enum; -+ bool func_enum_present; -+ const char *label; -+}; -+ -+struct dmi_memdev_info { -+ const char *device; -+ const char *bank; -+ u64 size; -+ u16 handle; -+ u8 type; -+}; -+ -+struct dmi_sysfs_entry { -+ struct dmi_header dh; -+ struct kobject kobj; -+ int instance; -+ int position; -+ struct list_head list; -+ struct kobject *child; -+}; -+ -+struct dmi_sysfs_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct dmi_sysfs_entry *, char *); -+}; -+ -+struct dmi_sysfs_mapped_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct dmi_sysfs_entry *, const struct dmi_header *, char *); -+}; -+ -+typedef ssize_t (*dmi_callback)(struct dmi_sysfs_entry *, const struct dmi_header *, void *); -+ -+struct find_dmi_data { -+ struct dmi_sysfs_entry *entry; -+ dmi_callback callback; -+ void *private; -+ int instance_countdown; -+ ssize_t ret; -+}; -+ -+struct dmi_read_state { -+ char *buf; -+ loff_t pos; -+ size_t count; -+}; -+ -+struct dmi_entry_attr_show_data { -+ struct attribute *attr; -+ char *buf; -+}; -+ -+struct dmi_system_event_log { -+ struct dmi_header header; -+ u16 area_length; -+ u16 header_start_offset; -+ u16 data_start_offset; -+ u8 access_method; -+ u8 status; -+ u32 change_token; -+ union { -+ struct { -+ u16 index_addr; -+ u16 data_addr; -+ } io; -+ u32 phys_addr32; -+ u16 gpnv_handle; -+ u32 access_method_address; -+ }; -+ u8 header_format; -+ u8 type_descriptors_supported_count; -+ u8 per_log_type_descriptor_length; -+ u8 supported_log_type_descriptos[0]; -+} __attribute__((packed)); -+ -+typedef u8 (*sel_io_reader)(const struct dmi_system_event_log *, loff_t); -+ -+struct dmi_device_attribute { -+ struct device_attribute dev_attr; -+ int field; -+}; -+ -+struct mafield { -+ const char *prefix; -+ int field; -+}; -+ -+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 *); -+}; -+ -+struct fw_cfg_file { -+ __be32 size; -+ __be16 select; -+ __u16 reserved; -+ char name[56]; -+}; -+ -+struct fw_cfg_dma_access { -+ __be32 control; -+ __be32 length; -+ __be64 address; -+}; -+ -+struct fw_cfg_vmcoreinfo { -+ __le16 host_format; -+ __le16 guest_format; -+ __le32 size; -+ __le64 paddr; -+}; -+ -+struct fw_cfg_sysfs_entry { -+ struct kobject kobj; -+ u32 size; -+ u16 select; -+ char name[56]; -+ struct list_head list; -+}; -+ -+struct fw_cfg_sysfs_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct fw_cfg_sysfs_entry *, char *); -+}; -+ -+struct bmp_header { -+ u16 id; -+ u32 size; -+} __attribute__((packed)); -+ -+typedef efi_status_t efi_query_variable_store_t(u32, long unsigned int, bool); -+ -+typedef struct { -+ u16 version; -+ u16 length; -+ u32 runtime_services_supported; -+} efi_rt_properties_table_t; -+ -+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; -+}; -+ -+struct efivars { -+ struct kset *kset; -+ struct kobject *kobject; -+ const struct efivar_operations *ops; -+}; -+ -+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 efi_error_code { -+ efi_status_t status; -+ int errno; -+ const char *description; -+}; -+ -+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); -+}; -+ -+typedef struct { -+ u32 version; -+ u32 num_entries; -+ u32 desc_size; -+ u32 reserved; -+ efi_memory_desc_t entry[0]; -+} efi_memory_attributes_table_t; -+ -+struct compat_efi_variable { -+ efi_char16_t VariableName[512]; -+ efi_guid_t VendorGuid; -+ __u32 DataSize; -+ __u8 Data[1024]; -+ __u32 Status; -+ __u32 Attributes; -+}; -+ -+struct efivar_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct efivar_entry *, char *); -+ ssize_t (*store)(struct efivar_entry *, const char *, size_t); -+}; -+ -+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 *); -+ ssize_t (*store)(struct esre_entry *, const char *, size_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_proc_ia { -+ u64 validation_bits; -+ u64 lapic_id; -+ u8 cpuid[48]; -+}; -+ -+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 cper_sec_fw_err_rec_ref { -+ u8 record_type; -+ u8 revision; -+ u8 reserved[6]; -+ u64 record_identifier; -+ guid_t record_identifier_guid; -+}; -+ -+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 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_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 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]; -+}; -+ -+struct efi_mokvar_sysfs_attr { -+ struct bin_attribute bin_attr; -+ struct list_head node; -+}; -+ -+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; -+}; -+ -+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; -+ __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_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; -+ __s8 hat_min; -+ __s8 hat_max; -+ __s8 hat_dir; -+ __s16 wheel_accumulated; -+}; -+ -+struct hid_report; -+ -+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 logical_minimum; -+ __s32 logical_maximum; -+ __s32 physical_minimum; -+ __s32 physical_maximum; -+ __s32 unit_exponent; -+ unsigned int unit; -+ struct hid_report *report; -+ unsigned int index; -+ struct hid_input *hidinput; -+ __u16 dpad; -+}; -+ -+struct hid_device; -+ -+struct hid_report { -+ struct list_head list; -+ struct list_head hidinput_list; -+ unsigned int id; -+ unsigned int type; -+ unsigned int application; -+ struct hid_field *field[256]; -+ unsigned int maxfield; -+ unsigned int size; -+ struct hid_device *device; -+}; -+ -+struct hid_input { -+ struct list_head list; -+ struct hid_report *report; -+ struct input_dev *input; -+ const char *name; -+ bool registered; -+ struct list_head reports; -+ unsigned int application; -+}; -+ -+enum hid_type { -+ HID_TYPE_OTHER = 0, -+ HID_TYPE_USBMOUSE = 1, -+ HID_TYPE_USBNONE = 2, -+}; -+ -+struct hid_report_enum { -+ unsigned int numbered; -+ struct list_head report_list; -+ struct hid_report *report_id_hash[256]; -+}; -+ -+enum hid_battery_status { -+ HID_BATTERY_UNKNOWN = 0, -+ HID_BATTERY_QUERIED = 1, -+ HID_BATTERY_REPORTED = 2, -+}; -+ -+struct hid_driver; -+ -+struct hid_ll_driver; -+ -+struct hid_device { -+ __u8 *dev_rdesc; -+ unsigned int dev_rsize; -+ __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; -+ struct hid_ll_driver *ll_driver; -+ struct mutex ll_open_lock; -+ unsigned int ll_open_count; -+ struct power_supply *battery; -+ __s32 battery_capacity; -+ __s32 battery_min; -+ __s32 battery_max; -+ __s32 battery_report_type; -+ __s32 battery_report_id; -+ enum hid_battery_status battery_status; -+ bool battery_avoid_query; -+ ktime_t battery_ratelimit_time; -+ long unsigned int status; -+ unsigned int claimed; -+ unsigned int 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 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 *); -+ __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 *); -+}; -+ -+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 hid_report_id { -+ __u32 report_type; -+}; -+ -+struct hid_usage_id { -+ __u32 usage_hid; -+ __u32 usage_type; -+ __u32 usage_code; -+}; -+ -+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 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; -+}; -+ -+typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); -+ -+struct quirks_list_struct { -+ struct hid_device_id hid_bl_item; -+ struct list_head node; -+}; -+ -+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 hidraw_devinfo { -+ __u32 bustype; -+ __s16 vendor; -+ __s16 product; -+}; -+ -+struct hidraw_report { -+ __u8 *value; -+ int len; -+}; -+ -+struct hidraw_list { -+ struct hidraw_report buffer[64]; -+ int head; -+ int tail; -+ struct fasync_struct *fasync; -+ struct hidraw *hidraw; -+ struct list_head node; -+ struct mutex read_mutex; -+}; -+ -+struct magicmouse_sc { -+ struct input_dev *input; -+ long unsigned int quirks; -+ int ntouches; -+ int scroll_accel; -+ long unsigned int scroll_jiffies; -+ struct { -+ short int x; -+ short int y; -+ short int scroll_x; -+ short int scroll_y; -+ u8 size; -+ } touches[16]; -+ int tracking_ids[16]; -+ struct hid_device *hdev; -+ struct delayed_work work; -+}; -+ -+struct ntrig_data { -+ __u16 x; -+ __u16 y; -+ __u16 w; -+ __u16 h; -+ __u16 id; -+ bool tipswitch; -+ bool confidence; -+ bool first_contact_touch; -+ bool reading_mt; -+ __u8 mt_footer[4]; -+ __u8 mt_foot_count; -+ __s8 act_state; -+ __s8 deactivate_slack; -+ __s8 activate_slack; -+ __u16 min_width; -+ __u16 min_height; -+ __u16 activation_width; -+ __u16 activation_height; -+ __u16 sensor_logical_width; -+ __u16 sensor_logical_height; -+ __u16 sensor_physical_width; -+ __u16 sensor_physical_height; -+}; -+ -+struct hid_sensor_hub_attribute_info { -+ u32 usage_id; -+ u32 attrib_id; -+ s32 report_id; -+ s32 index; -+ s32 units; -+ s32 unit_expo; -+ s32 size; -+ s32 logical_minimum; -+ s32 logical_maximum; -+}; -+ -+struct sensor_hub_pending { -+ bool status; -+ struct completion ready; -+ u32 usage_id; -+ u32 attr_usage_id; -+ int raw_size; -+ u8 *raw_data; -+}; -+ -+struct hid_sensor_hub_device { -+ struct hid_device *hdev; -+ u32 vendor_id; -+ u32 product_id; -+ u32 usage; -+ int start_collection_index; -+ int end_collection_index; -+ struct mutex *mutex_ptr; -+ struct sensor_hub_pending pending; -+}; -+ -+struct hid_sensor_hub_callbacks { -+ struct platform_device *pdev; -+ int (*suspend)(struct hid_sensor_hub_device *, void *); -+ int (*resume)(struct hid_sensor_hub_device *, void *); -+ int (*capture_sample)(struct hid_sensor_hub_device *, u32, size_t, char *, void *); -+ int (*send_event)(struct hid_sensor_hub_device *, u32, void *); -+}; -+ -+enum sensor_hub_read_flags { -+ SENSOR_HUB_SYNC = 0, -+ SENSOR_HUB_ASYNC = 1, -+}; -+ -+struct sensor_hub_data { -+ struct mutex mutex; -+ spinlock_t lock; -+ struct list_head dyn_callback_list; -+ spinlock_t dyn_callback_lock; -+ struct mfd_cell *hid_sensor_hub_client_devs; -+ int hid_sensor_client_cnt; -+ int ref_cnt; -+}; -+ -+struct hid_sensor_hub_callbacks_list { -+ struct list_head list; -+ u32 usage_id; -+ struct hid_sensor_hub_device *hsdev; -+ struct hid_sensor_hub_callbacks *usage_callback; -+ void *priv; -+}; -+ -+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 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 desc[1]; -+} __attribute__((packed)); -+ -+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_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_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 pidff_usage { -+ struct hid_field *field; -+ s32 *value; -+}; -+ -+struct pidff_device { -+ struct hid_device *hid; -+ struct hid_report *reports[13]; -+ struct pidff_usage set_effect[7]; -+ struct pidff_usage set_envelope[5]; -+ struct pidff_usage set_condition[8]; -+ struct pidff_usage set_periodic[5]; -+ struct pidff_usage set_constant[2]; -+ struct pidff_usage set_ramp[3]; -+ struct pidff_usage device_gain[1]; -+ struct pidff_usage block_load[2]; -+ struct pidff_usage pool[3]; -+ struct pidff_usage effect_operation[2]; -+ struct pidff_usage block_free[1]; -+ struct hid_field *create_new_effect_type; -+ struct hid_field *set_effect_type; -+ struct hid_field *effect_direction; -+ struct hid_field *device_control; -+ struct hid_field *block_load_status; -+ struct hid_field *effect_operation_status; -+ int control_id[2]; -+ int type_id[11]; -+ int status_id[2]; -+ int operation_id[2]; -+ int pid_id[64]; -+}; -+ -+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 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_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 hwspinlock___2; -+ -+struct hwspinlock_ops { -+ int (*trylock)(struct hwspinlock___2 *); -+ void (*unlock)(struct hwspinlock___2 *); -+ void (*relax)(struct hwspinlock___2 *); -+}; -+ -+struct hwspinlock_device; -+ -+struct hwspinlock___2 { -+ 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___2 lock[0]; -+}; -+ -+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 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; -+ 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[4]; -+ 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; -+}; -+ -+struct trace_event_data_offsets_mc_event { -+ u32 msg; -+ u32 label; -+ u32 driver_detail; -+}; -+ -+struct trace_event_data_offsets_arm_event {}; -+ -+struct trace_event_data_offsets_non_standard_event { -+ u32 fru_text; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_aer_event { -+ u32 dev_name; -+}; -+ -+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 *); -+ -+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 aer_header_log_regs *); -+ -+typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); -+ -+enum tb_cfg_pkg_type { -+ TB_CFG_PKG_READ = 1, -+ TB_CFG_PKG_WRITE = 2, -+ TB_CFG_PKG_ERROR = 3, -+ TB_CFG_PKG_NOTIFY_ACK = 4, -+ TB_CFG_PKG_EVENT = 5, -+ TB_CFG_PKG_XDOMAIN_REQ = 6, -+ TB_CFG_PKG_XDOMAIN_RESP = 7, -+ TB_CFG_PKG_OVERRIDE = 8, -+ TB_CFG_PKG_RESET = 9, -+ TB_CFG_PKG_ICM_EVENT = 10, -+ TB_CFG_PKG_ICM_CMD = 11, -+ TB_CFG_PKG_ICM_RESP = 12, -+ TB_CFG_PKG_PREPARE_TO_SLEEP = 13, -+}; -+ -+enum tb_security_level { -+ TB_SECURITY_NONE = 0, -+ TB_SECURITY_USER = 1, -+ TB_SECURITY_SECURE = 2, -+ TB_SECURITY_DPONLY = 3, -+ TB_SECURITY_USBONLY = 4, -+ TB_SECURITY_NOPCIE = 5, -+}; -+ -+struct tb_nhi; -+ -+struct tb_ctl; -+ -+struct tb_switch; -+ -+struct tb_cm_ops; -+ -+struct tb { -+ struct device dev; -+ struct mutex lock; -+ struct tb_nhi *nhi; -+ struct tb_ctl *ctl; -+ struct workqueue_struct *wq; -+ struct tb_switch *root_switch; -+ const struct tb_cm_ops *cm_ops; -+ int index; -+ enum tb_security_level security_level; -+ size_t nboot_acl; -+ long unsigned int privdata[0]; -+}; -+ -+struct tb_nhi_ops; -+ -+struct tb_ring; -+ -+struct tb_nhi { -+ spinlock_t lock; -+ struct pci_dev *pdev; -+ const struct tb_nhi_ops *ops; -+ void *iobase; -+ struct tb_ring **tx_rings; -+ struct tb_ring **rx_rings; -+ struct ida msix_ida; -+ bool going_away; -+ struct work_struct interrupt_work; -+ u32 hop_count; -+}; -+ -+struct tb_regs_switch_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 upstream_port_number: 6; -+ u32 max_port_number: 6; -+ u32 depth: 3; -+ u32 __unknown1: 1; -+ u32 revision: 8; -+ u32 route_lo; -+ u32 route_hi: 31; -+ bool enabled: 1; -+ u32 plug_events_delay: 8; -+ u32 cmuv: 8; -+ u32 __unknown4: 8; -+ u32 thunderbolt_version: 8; -+}; -+ -+enum tb_switch_tmu_rate { -+ TB_SWITCH_TMU_RATE_OFF = 0, -+ TB_SWITCH_TMU_RATE_HIFI = 16, -+ TB_SWITCH_TMU_RATE_NORMAL = 1000, -+}; -+ -+struct tb_switch_tmu { -+ int cap; -+ bool has_ucap; -+ enum tb_switch_tmu_rate rate; -+ bool unidirectional; -+}; -+ -+struct tb_port; -+ -+struct tb_dma_port; -+ -+struct tb_nvm; -+ -+struct tb_switch { -+ struct device dev; -+ struct tb_regs_switch_header config; -+ struct tb_port *ports; -+ struct tb_dma_port *dma_port; -+ struct tb_switch_tmu tmu; -+ struct tb *tb; -+ u64 uid; -+ uuid_t *uuid; -+ u16 vendor; -+ u16 device; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool link_usb4; -+ unsigned int generation; -+ int cap_plug_events; -+ int cap_lc; -+ bool is_unplugged; -+ u8 *drom; -+ struct tb_nvm *nvm; -+ bool no_nvm_upgrade; -+ bool safe_mode; -+ bool boot; -+ bool rpm; -+ unsigned int authorized; -+ enum tb_security_level security_level; -+ struct dentry *debugfs_dir; -+ u8 *key; -+ u8 connection_id; -+ u8 connection_key; -+ u8 link; -+ u8 depth; -+ struct completion rpm_complete; -+ long unsigned int quirks; -+ bool credit_allocation; -+ unsigned int max_usb3_credits; -+ unsigned int min_dp_aux_credits; -+ unsigned int min_dp_main_credits; -+ unsigned int max_pcie_credits; -+ unsigned int max_dma_credits; -+}; -+ -+struct tb_xdomain; -+ -+struct tb_cm_ops { -+ int (*driver_ready)(struct tb *); -+ int (*start)(struct tb *); -+ void (*stop)(struct tb *); -+ int (*suspend_noirq)(struct tb *); -+ int (*resume_noirq)(struct tb *); -+ int (*suspend)(struct tb *); -+ int (*freeze_noirq)(struct tb *); -+ int (*thaw_noirq)(struct tb *); -+ void (*complete)(struct tb *); -+ int (*runtime_suspend)(struct tb *); -+ int (*runtime_resume)(struct tb *); -+ int (*runtime_suspend_switch)(struct tb_switch *); -+ int (*runtime_resume_switch)(struct tb_switch *); -+ void (*handle_event)(struct tb *, enum tb_cfg_pkg_type, const void *, size_t); -+ int (*get_boot_acl)(struct tb *, uuid_t *, size_t); -+ int (*set_boot_acl)(struct tb *, const uuid_t *, size_t); -+ int (*disapprove_switch)(struct tb *, struct tb_switch *); -+ int (*approve_switch)(struct tb *, struct tb_switch *); -+ int (*add_switch_key)(struct tb *, struct tb_switch *); -+ int (*challenge_switch_key)(struct tb *, struct tb_switch *, const u8 *, u8 *); -+ int (*disconnect_pcie_paths)(struct tb *); -+ int (*approve_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*disconnect_xdomain_paths)(struct tb *, struct tb_xdomain *, int, int, int, int); -+ int (*usb4_switch_op)(struct tb_switch *, u16, u32 *, u8 *, const void *, size_t, void *, size_t); -+ int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *, u32 *); -+}; -+ -+struct tb_property_dir { -+ const uuid_t *uuid; -+ struct list_head properties; -+}; -+ -+struct tb_xdomain { -+ struct device dev; -+ struct tb *tb; -+ uuid_t *remote_uuid; -+ const uuid_t *local_uuid; -+ u64 route; -+ u16 vendor; -+ u16 device; -+ unsigned int local_max_hopid; -+ unsigned int remote_max_hopid; -+ struct mutex lock; -+ const char *vendor_name; -+ const char *device_name; -+ unsigned int link_speed; -+ unsigned int link_width; -+ bool is_unplugged; -+ bool needs_uuid; -+ struct ida service_ids; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ u32 *local_property_block; -+ u32 local_property_block_gen; -+ u32 local_property_block_len; -+ struct tb_property_dir *remote_properties; -+ u32 remote_property_block_gen; -+ struct delayed_work get_uuid_work; -+ int uuid_retries; -+ struct delayed_work get_properties_work; -+ int properties_retries; -+ struct delayed_work properties_changed_work; -+ int properties_changed_retries; -+ u8 link; -+ u8 depth; -+}; -+ -+struct tb_nhi_ops { -+ int (*init)(struct tb_nhi *); -+ int (*suspend_noirq)(struct tb_nhi *, bool); -+ int (*resume_noirq)(struct tb_nhi *); -+ int (*runtime_suspend)(struct tb_nhi *); -+ int (*runtime_resume)(struct tb_nhi *); -+ void (*shutdown)(struct tb_nhi *); -+}; -+ -+struct ring_desc; -+ -+struct tb_ring { -+ spinlock_t lock; -+ struct tb_nhi *nhi; -+ int size; -+ int hop; -+ int head; -+ int tail; -+ struct ring_desc *descriptors; -+ dma_addr_t descriptors_dma; -+ struct list_head queue; -+ struct list_head in_flight; -+ struct work_struct work; -+ bool is_tx: 1; -+ bool running: 1; -+ int irq; -+ u8 vector; -+ unsigned int flags; -+ int e2e_tx_hop; -+ u16 sof_mask; -+ u16 eof_mask; -+ void (*start_poll)(void *); -+ void *poll_data; -+}; -+ -+enum ring_desc_flags { -+ RING_DESC_ISOCH = 1, -+ RING_DESC_CRC_ERROR = 1, -+ RING_DESC_COMPLETED = 2, -+ RING_DESC_POSTED = 4, -+ RING_DESC_BUFFER_OVERRUN = 4, -+ RING_DESC_INTERRUPT = 8, -+}; -+ -+struct ring_desc { -+ u64 phys; -+ u32 length: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+ enum ring_desc_flags flags: 12; -+ u32 time; -+}; -+ -+struct ring_frame; -+ -+typedef void (*ring_cb)(struct tb_ring *, struct ring_frame *, bool); -+ -+struct ring_frame { -+ dma_addr_t buffer_phy; -+ ring_cb callback; -+ struct list_head list; -+ u32 size: 12; -+ u32 flags: 12; -+ u32 eof: 4; -+ u32 sof: 4; -+}; -+ -+enum nhi_fw_mode { -+ NHI_FW_SAFE_MODE = 0, -+ NHI_FW_AUTH_MODE = 1, -+ NHI_FW_EP_MODE = 2, -+ NHI_FW_CM_MODE = 3, -+}; -+ -+enum nhi_mailbox_cmd { -+ NHI_MAILBOX_SAVE_DEVS = 5, -+ NHI_MAILBOX_DISCONNECT_PCIE_PATHS = 6, -+ NHI_MAILBOX_DRV_UNLOADS = 7, -+ NHI_MAILBOX_DISCONNECT_PA = 16, -+ NHI_MAILBOX_DISCONNECT_PB = 17, -+ NHI_MAILBOX_ALLOW_ALL_DEVS = 35, -+}; -+ -+enum ring_flags { -+ RING_FLAG_ISOCH_ENABLE = 134217728, -+ RING_FLAG_E2E_FLOW_CONTROL = 268435456, -+ RING_FLAG_PCI_NO_SNOOP = 536870912, -+ RING_FLAG_RAW = 1073741824, -+ RING_FLAG_ENABLE = 2147483648, -+}; -+ -+enum tb_port_type { -+ TB_TYPE_INACTIVE = 0, -+ TB_TYPE_PORT = 1, -+ TB_TYPE_NHI = 2, -+ TB_TYPE_DP_HDMI_IN = 917761, -+ TB_TYPE_DP_HDMI_OUT = 917762, -+ TB_TYPE_PCIE_DOWN = 1048833, -+ TB_TYPE_PCIE_UP = 1048834, -+ TB_TYPE_USB3_DOWN = 2097409, -+ TB_TYPE_USB3_UP = 2097410, -+}; -+ -+struct tb_regs_port_header { -+ u16 vendor_id; -+ u16 device_id; -+ u32 first_cap_offset: 8; -+ u32 max_counters: 11; -+ u32 counters_support: 1; -+ u32 __unknown1: 4; -+ u32 revision: 8; -+ enum tb_port_type type: 24; -+ u32 thunderbolt_version: 8; -+ u32 __unknown2: 20; -+ u32 port_number: 6; -+ u32 __unknown3: 6; -+ u32 nfc_credits; -+ u32 max_in_hop_id: 11; -+ u32 max_out_hop_id: 11; -+ u32 __unknown4: 10; -+ u32 __unknown5; -+ u32 __unknown6; -+}; -+ -+struct tb_nvm { -+ struct device *dev; -+ u8 major; -+ u8 minor; -+ int id; -+ struct nvmem_device *active; -+ struct nvmem_device *non_active; -+ void *buf; -+ size_t buf_data_size; -+ bool authenticating; -+ bool flushed; -+}; -+ -+struct usb4_port; -+ -+struct tb_port { -+ struct tb_regs_port_header config; -+ struct tb_switch *sw; -+ struct tb_port *remote; -+ struct tb_xdomain *xdomain; -+ int cap_phy; -+ int cap_tmu; -+ int cap_adap; -+ int cap_usb4; -+ struct usb4_port *usb4; -+ u8 port; -+ bool disabled; -+ bool bonded; -+ struct tb_port *dual_link_port; -+ u8 link_nr: 1; -+ struct ida in_hopids; -+ struct ida out_hopids; -+ struct list_head list; -+ unsigned int total_credits; -+ unsigned int ctl_credits; -+ unsigned int dma_credits; -+}; -+ -+struct usb4_port { -+ struct device dev; -+ struct tb_port *port; -+ bool can_offline; -+ bool offline; -+}; -+ -+enum icl_lc_mailbox_cmd { -+ ICL_LC_GO2SX = 2, -+ ICL_LC_GO2SX_NO_WAKE = 3, -+ ICL_LC_PREPARE_FOR_RESET = 33, -+}; -+ -+typedef bool (*event_cb)(void *, enum tb_cfg_pkg_type, const void *, size_t); -+ -+struct ctl_pkg; -+ -+struct tb_ctl { -+ struct tb_nhi *nhi; -+ struct tb_ring *tx; -+ struct tb_ring *rx; -+ struct dma_pool___2 *frame_pool; -+ struct ctl_pkg *rx_packets[10]; -+ struct mutex request_queue_lock; -+ struct list_head request_queue; -+ bool running; -+ int timeout_msec; -+ event_cb callback; -+ void *callback_data; -+}; -+ -+enum tb_cfg_space { -+ TB_CFG_HOPS = 0, -+ TB_CFG_PORT = 1, -+ TB_CFG_SWITCH = 2, -+ TB_CFG_COUNTERS = 3, -+}; -+ -+enum tb_cfg_error { -+ TB_CFG_ERROR_PORT_NOT_CONNECTED = 0, -+ TB_CFG_ERROR_LINK_ERROR = 1, -+ TB_CFG_ERROR_INVALID_CONFIG_SPACE = 2, -+ TB_CFG_ERROR_NO_SUCH_PORT = 4, -+ TB_CFG_ERROR_ACK_PLUG_EVENT = 7, -+ TB_CFG_ERROR_LOOP = 8, -+ TB_CFG_ERROR_HEC_ERROR_DETECTED = 12, -+ TB_CFG_ERROR_FLOW_CONTROL_ERROR = 13, -+ TB_CFG_ERROR_LOCK = 15, -+}; -+ -+struct tb_cfg_header { -+ u32 route_hi: 22; -+ u32 unknown: 10; -+ u32 route_lo; -+}; -+ -+struct tb_cfg_address { -+ u32 offset: 13; -+ u32 length: 6; -+ u32 port: 6; -+ enum tb_cfg_space space: 2; -+ u32 seq: 2; -+ u32 zero: 3; -+}; -+ -+struct cfg_read_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+}; -+ -+struct cfg_write_pkg { -+ struct tb_cfg_header header; -+ struct tb_cfg_address addr; -+ u32 data[64]; -+}; -+ -+struct cfg_error_pkg { -+ struct tb_cfg_header header; -+ enum tb_cfg_error error: 4; -+ u32 zero1: 4; -+ u32 port: 6; -+ u32 zero2: 2; -+ u32 zero3: 14; -+ u32 pg: 2; -+}; -+ -+struct cfg_reset_pkg { -+ struct tb_cfg_header header; -+}; -+ -+struct tb_cfg_result { -+ u64 response_route; -+ u32 response_port; -+ int err; -+ enum tb_cfg_error tb_error; -+}; -+ -+struct ctl_pkg { -+ struct tb_ctl *ctl; -+ void *buffer; -+ struct ring_frame frame; -+}; -+ -+struct tb_cfg_request { -+ struct kref kref; -+ struct tb_ctl *ctl; -+ const void *request; -+ size_t request_size; -+ enum tb_cfg_pkg_type request_type; -+ void *response; -+ size_t response_size; -+ enum tb_cfg_pkg_type response_type; -+ size_t npackets; -+ bool (*match)(const struct tb_cfg_request *, const struct ctl_pkg *); -+ bool (*copy)(struct tb_cfg_request *, const struct ctl_pkg *); -+ void (*callback)(void *); -+ void *callback_data; -+ long unsigned int flags; -+ struct work_struct work; -+ struct tb_cfg_result result; -+ struct list_head list; -+}; -+ -+struct cfg_event_pkg { -+ struct tb_cfg_header header; -+ u32 port: 6; -+ u32 zero: 25; -+ bool unplug: 1; -+}; -+ -+struct tb_path_hop { -+ struct tb_port *in_port; -+ struct tb_port *out_port; -+ int in_hop_index; -+ int in_counter_index; -+ int next_hop_index; -+ unsigned int initial_credits; -+ unsigned int nfc_credits; -+}; -+ -+enum tb_path_port { -+ TB_PATH_NONE = 0, -+ TB_PATH_SOURCE = 1, -+ TB_PATH_INTERNAL = 2, -+ TB_PATH_DESTINATION = 4, -+ TB_PATH_ALL = 7, -+}; -+ -+struct tb_path { -+ struct tb *tb; -+ const char *name; -+ enum tb_path_port ingress_shared_buffer; -+ enum tb_path_port egress_shared_buffer; -+ enum tb_path_port ingress_fc_enable; -+ enum tb_path_port egress_fc_enable; -+ unsigned int priority: 3; -+ int weight: 4; -+ bool drop_packages; -+ bool activated; -+ bool clear_fc; -+ struct tb_path_hop *hops; -+ int path_length; -+}; -+ -+enum tb_tunnel_type { -+ TB_TUNNEL_PCI = 0, -+ TB_TUNNEL_DP = 1, -+ TB_TUNNEL_DMA = 2, -+ TB_TUNNEL_USB3 = 3, -+}; -+ -+struct tb_tunnel { -+ struct tb *tb; -+ struct tb_port *src_port; -+ struct tb_port *dst_port; -+ struct tb_path **paths; -+ size_t npaths; -+ int (*init)(struct tb_tunnel *); -+ void (*deinit)(struct tb_tunnel *); -+ int (*activate)(struct tb_tunnel *, bool); -+ int (*consumed_bandwidth)(struct tb_tunnel *, int *, int *); -+ int (*release_unused_bandwidth)(struct tb_tunnel *); -+ void (*reclaim_available_bandwidth)(struct tb_tunnel *, int *, int *); -+ struct list_head list; -+ enum tb_tunnel_type type; -+ int max_up; -+ int max_down; -+ int allocated_up; -+ int allocated_down; -+}; -+ -+struct tb_cm { -+ struct list_head tunnel_list; -+ struct list_head dp_resources; -+ bool hotplug_active; -+ struct delayed_work remove_work; -+}; -+ -+struct tb_hotplug_event { -+ struct work_struct work; -+ struct tb *tb; -+ u64 route; -+ u8 port; -+ bool unplug; -+}; -+ -+enum tb_switch_vse_cap { -+ TB_VSE_CAP_PLUG_EVENTS = 1, -+ TB_VSE_CAP_TIME2 = 3, -+ TB_VSE_CAP_IECS = 4, -+ TB_VSE_CAP_LINK_CONTROLLER = 6, -+}; -+ -+enum tb_port_cap { -+ TB_PORT_CAP_PHY = 1, -+ TB_PORT_CAP_POWER = 2, -+ TB_PORT_CAP_TIME1 = 3, -+ TB_PORT_CAP_ADAP = 4, -+ TB_PORT_CAP_VSE = 5, -+ TB_PORT_CAP_USB4 = 6, -+}; -+ -+enum tb_port_state { -+ TB_PORT_DISABLED = 0, -+ TB_PORT_CONNECTING = 1, -+ TB_PORT_UP = 2, -+ TB_PORT_UNPLUGGED = 7, -+}; -+ -+struct tb_cap_basic { -+ u8 next; -+ u8 cap; -+}; -+ -+struct tb_cap_phy { -+ struct tb_cap_basic cap_header; -+ u32 unknown1: 16; -+ u32 unknown2: 14; -+ bool disable: 1; -+ u32 unknown3: 11; -+ enum tb_port_state state: 4; -+ u32 unknown4: 2; -+}; -+ -+struct tb_regs_hop { -+ u32 next_hop: 11; -+ u32 out_port: 6; -+ u32 initial_credits: 8; -+ u32 unknown1: 6; -+ bool enable: 1; -+ u32 weight: 4; -+ u32 unknown2: 4; -+ u32 priority: 3; -+ bool drop_packages: 1; -+ u32 counter: 11; -+ bool counter_enable: 1; -+ bool ingress_fc: 1; -+ bool egress_fc: 1; -+ bool ingress_shared_buffer: 1; -+ bool egress_shared_buffer: 1; -+ bool pending: 1; -+ u32 unknown3: 3; -+}; -+ -+enum tb_nvm_write_ops { -+ WRITE_AND_AUTHENTICATE = 1, -+ WRITE_ONLY = 2, -+ AUTHENTICATE_ONLY = 3, -+}; -+ -+struct nvm_auth_status { -+ struct list_head list; -+ uuid_t uuid; -+ u32 status; -+}; -+ -+struct tb_sw_lookup { -+ struct tb *tb; -+ u8 link; -+ u8 depth; -+ const uuid_t *uuid; -+ u64 route; -+}; -+ -+enum tb_switch_cap { -+ TB_SWITCH_CAP_TMU = 3, -+ TB_SWITCH_CAP_VSE = 5, -+}; -+ -+struct tb_cap_extended_short { -+ u8 next; -+ u8 cap; -+ u8 vsec_id; -+ u8 length; -+}; -+ -+struct tb_cap_extended_long { -+ u8 zero1; -+ u8 cap; -+ u8 vsec_id; -+ u8 zero2; -+ u16 next; -+ u16 length; -+}; -+ -+struct tb_cap_any { -+ union { -+ struct tb_cap_basic basic; -+ struct tb_cap_extended_short extended_short; -+ struct tb_cap_extended_long extended_long; -+ }; -+}; -+ -+struct tb_eeprom_ctl { -+ bool clock: 1; -+ bool access_low: 1; -+ bool data_out: 1; -+ bool data_in: 1; -+ bool access_high: 1; -+ bool not_present: 1; -+ bool unknown1: 1; -+ bool present: 1; -+ u32 unknown2: 24; -+}; -+ -+struct tb_cap_plug_events { -+ struct tb_cap_extended_short cap_header; -+ u32 __unknown1: 2; -+ u32 plug_events: 5; -+ u32 __unknown2: 25; -+ u32 __unknown3; -+ u32 __unknown4; -+ struct tb_eeprom_ctl eeprom_ctl; -+ u32 __unknown5[7]; -+ u32 drom_offset; -+}; -+ -+enum tb_eeprom_transfer { -+ TB_EEPROM_IN = 0, -+ TB_EEPROM_OUT = 1, -+}; -+ -+struct tb_drom_header { -+ u8 uid_crc8; -+ u64 uid; -+ u32 data_crc32; -+ u8 device_rom_revision; -+ u16 data_len: 12; -+ u8 reserved: 4; -+ u16 vendor_id; -+ u16 model_id; -+ u8 model_rev; -+ u8 eeprom_rev; -+} __attribute__((packed)); -+ -+enum tb_drom_entry_type { -+ TB_DROM_ENTRY_GENERIC = 0, -+ TB_DROM_ENTRY_PORT = 1, -+}; -+ -+struct tb_drom_entry_header { -+ u8 len; -+ u8 index: 6; -+ bool port_disabled: 1; -+ enum tb_drom_entry_type type: 1; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_generic { -+ struct tb_drom_entry_header header; -+ u8 data[0]; -+} __attribute__((packed)); -+ -+struct tb_drom_entry_port { -+ struct tb_drom_entry_header header; -+ u8 dual_link_port_rid: 4; -+ u8 link_nr: 1; -+ u8 unknown1: 2; -+ bool has_dual_link_port: 1; -+ u8 dual_link_port_nr: 6; -+ u8 unknown2: 2; -+ u8 micro2: 4; -+ u8 micro1: 4; -+ u8 micro3; -+ u8 peer_port_rid: 4; -+ u8 unknown3: 3; -+ bool has_peer_port: 1; -+ u8 peer_port_nr: 6; -+ u8 unknown4: 2; -+}; -+ -+struct tb_drom_entry_desc { -+ struct tb_drom_entry_header header; -+ u16 bcdUSBSpec; -+ u16 idVendor; -+ u16 idProduct; -+ u16 bcdProductFWRevision; -+ u32 TID; -+ u8 productHWRevision; -+}; -+ -+struct tb_service_id { -+ __u32 match_flags; -+ char protocol_key[9]; -+ __u32 protocol_id; -+ __u32 protocol_version; -+ __u32 protocol_revision; -+ kernel_ulong_t driver_data; -+}; -+ -+struct tb_service { -+ struct device dev; -+ int id; -+ const char *key; -+ u32 prtcid; -+ u32 prtcvers; -+ u32 prtcrevs; -+ u32 prtcstns; -+ struct dentry *debugfs_dir; -+}; -+ -+struct tb_service_driver { -+ struct device_driver driver; -+ int (*probe)(struct tb_service *, const struct tb_service_id *); -+ void (*remove)(struct tb_service *); -+ void (*shutdown)(struct tb_service *); -+ const struct tb_service_id *id_table; -+}; -+ -+struct tb_dma_port { -+ struct tb_switch *sw; -+ u8 port; -+ u32 base; -+ u8 *buf; -+}; -+ -+typedef int (*read_block_fn)(void *, unsigned int, void *, size_t); -+ -+typedef int (*write_block_fn)(void *, unsigned int, const void *, size_t); -+ -+enum icm_pkg_code { -+ ICM_GET_TOPOLOGY = 1, -+ ICM_DRIVER_READY = 3, -+ ICM_APPROVE_DEVICE = 4, -+ ICM_CHALLENGE_DEVICE = 5, -+ ICM_ADD_DEVICE_KEY = 6, -+ ICM_GET_ROUTE = 10, -+ ICM_APPROVE_XDOMAIN = 16, -+ ICM_DISCONNECT_XDOMAIN = 17, -+ ICM_PREBOOT_ACL = 24, -+ ICM_USB4_SWITCH_OP = 32, -+}; -+ -+enum icm_event_code { -+ ICM_EVENT_DEVICE_CONNECTED = 3, -+ ICM_EVENT_DEVICE_DISCONNECTED = 4, -+ ICM_EVENT_XDOMAIN_CONNECTED = 6, -+ ICM_EVENT_XDOMAIN_DISCONNECTED = 7, -+ ICM_EVENT_RTD3_VETO = 10, -+}; -+ -+struct icm_pkg_header { -+ u8 code; -+ u8 flags; -+ u8 packet_id; -+ u8 total_packets; -+}; -+ -+struct icm_pkg_driver_ready { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 security_level; -+}; -+ -+struct icm_fr_pkg_get_topology { -+ struct icm_pkg_header hdr; -+}; -+ -+struct icm_fr_pkg_get_topology_response { -+ struct icm_pkg_header hdr; -+ u32 route_lo; -+ u32 route_hi; -+ u8 first_data; -+ u8 second_data; -+ u8 drom_i2c_address_index; -+ u8 switch_index; -+ u32 reserved[2]; -+ u32 ports[16]; -+ u32 port_hop_info[16]; -+}; -+ -+struct icm_fr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_fr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_fr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_fr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_fr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 key[8]; -+}; -+ -+struct icm_fr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+}; -+ -+struct icm_fr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+}; -+ -+struct icm_fr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u8 connection_key; -+ u8 connection_id; -+ u16 reserved; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_fr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_fr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_ar_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u8 romver; -+ u8 ramver; -+ u16 info; -+}; -+ -+struct icm_ar_pkg_get_route { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+}; -+ -+struct icm_ar_pkg_get_route_response { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_ar_boot_acl_entry { -+ u32 uuid_lo; -+ u32 uuid_hi; -+}; -+ -+struct icm_ar_pkg_preboot_acl { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_ar_pkg_preboot_acl_response { -+ struct icm_pkg_header hdr; -+ struct icm_ar_boot_acl_entry acl[16]; -+}; -+ -+struct icm_tr_pkg_driver_ready_response { -+ struct icm_pkg_header hdr; -+ u16 reserved1; -+ u16 info; -+ u32 nvm_version; -+ u16 device_id; -+ u16 reserved2; -+}; -+ -+struct icm_tr_event_device_connected { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved; -+ u16 link_info; -+ u32 ep_name[55]; -+}; -+ -+struct icm_tr_event_device_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+}; -+ -+struct icm_tr_event_xdomain_connected { -+ struct icm_pkg_header hdr; -+ u16 reserved; -+ u16 link_info; -+ uuid_t remote_uuid; -+ uuid_t local_uuid; -+ u32 local_route_hi; -+ u32 local_route_lo; -+ u32 remote_route_hi; -+ u32 remote_route_lo; -+}; -+ -+struct icm_tr_event_xdomain_disconnected { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_approve_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved1[3]; -+}; -+ -+struct icm_tr_pkg_add_device_key { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 key[8]; -+}; -+ -+struct icm_tr_pkg_challenge_device { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_tr_pkg_challenge_device_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+ u32 challenge[8]; -+ u32 response[8]; -+}; -+ -+struct icm_tr_pkg_add_device_key_response { -+ struct icm_pkg_header hdr; -+ uuid_t ep_uuid; -+ u32 route_hi; -+ u32 route_lo; -+ u8 connection_id; -+ u8 reserved[3]; -+}; -+ -+struct icm_tr_pkg_approve_xdomain_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+ u16 transmit_path; -+ u16 transmit_ring; -+ u16 receive_path; -+ u16 receive_ring; -+}; -+ -+struct icm_tr_pkg_disconnect_xdomain_response { -+ struct icm_pkg_header hdr; -+ u8 stage; -+ u8 reserved[3]; -+ u32 route_hi; -+ u32 route_lo; -+ uuid_t remote_uuid; -+}; -+ -+struct icm_icl_event_rtd3_veto { -+ struct icm_pkg_header hdr; -+ u32 veto_reason; -+}; -+ -+struct icm_usb4_switch_op { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 data_len_valid; -+ u32 data[16]; -+}; -+ -+struct icm_usb4_switch_op_response { -+ struct icm_pkg_header hdr; -+ u32 route_hi; -+ u32 route_lo; -+ u32 metadata; -+ u16 opcode; -+ u16 status; -+ u32 data[16]; -+}; -+ -+enum usb4_switch_op { -+ USB4_SWITCH_OP_QUERY_DP_RESOURCE = 16, -+ USB4_SWITCH_OP_ALLOC_DP_RESOURCE = 17, -+ USB4_SWITCH_OP_DEALLOC_DP_RESOURCE = 18, -+ USB4_SWITCH_OP_NVM_WRITE = 32, -+ USB4_SWITCH_OP_NVM_AUTH = 33, -+ USB4_SWITCH_OP_NVM_READ = 34, -+ USB4_SWITCH_OP_NVM_SET_OFFSET = 35, -+ USB4_SWITCH_OP_DROM_READ = 36, -+ USB4_SWITCH_OP_NVM_SECTOR_SIZE = 37, -+ USB4_SWITCH_OP_BUFFER_ALLOC = 51, -+}; -+ -+struct icm; -+ -+struct usb4_switch_nvm_auth { -+ struct icm_usb4_switch_op_response reply; -+ struct icm_usb4_switch_op request; -+ struct icm *icm; -+}; -+ -+struct icm { -+ struct mutex request_lock; -+ struct delayed_work rescan_work; -+ struct pci_dev *upstream_port; -+ int vnd_cap; -+ bool safe_mode; -+ size_t max_boot_acl; -+ bool rpm; -+ bool can_upgrade_nvm; -+ u8 proto_version; -+ struct usb4_switch_nvm_auth *last_nvm_auth; -+ bool veto; -+ bool (*is_supported)(struct tb *); -+ int (*cio_reset)(struct tb *); -+ int (*get_mode)(struct tb *); -+ int (*get_route)(struct tb *, u8, u8, u64 *); -+ void (*save_devices)(struct tb *); -+ int (*driver_ready)(struct tb *, enum tb_security_level *, u8 *, size_t *, bool *); -+ void (*set_uuid)(struct tb *); -+ void (*device_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*device_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_connected)(struct tb *, const struct icm_pkg_header *); -+ void (*xdomain_disconnected)(struct tb *, const struct icm_pkg_header *); -+ void (*rtd3_veto)(struct tb *, const struct icm_pkg_header *); -+}; -+ -+struct icm_notification { -+ struct work_struct work; -+ struct icm_pkg_header *pkg; -+ struct tb *tb; -+}; -+ -+struct ep_name_entry { -+ u8 len; -+ u8 type; -+ u8 data[0]; -+}; -+ -+struct intel_vss { -+ u16 vendor; -+ u16 model; -+ u8 mc; -+ u8 flags; -+ u16 pci_devid; -+ u32 nvm_version; -+}; -+ -+enum tb_property_type { -+ TB_PROPERTY_TYPE_UNKNOWN = 0, -+ TB_PROPERTY_TYPE_DIRECTORY = 68, -+ TB_PROPERTY_TYPE_DATA = 100, -+ TB_PROPERTY_TYPE_TEXT = 116, -+ TB_PROPERTY_TYPE_VALUE = 118, -+}; -+ -+struct tb_property { -+ struct list_head list; -+ char key[9]; -+ enum tb_property_type type; -+ size_t length; -+ union { -+ struct tb_property_dir *dir; -+ u8 *data; -+ char *text; -+ u32 immediate; -+ } value; -+}; -+ -+struct tb_property_entry { -+ u32 key_hi; -+ u32 key_lo; -+ u16 length; -+ u8 reserved; -+ u8 type; -+ u32 value; -+}; -+ -+struct tb_property_rootdir_entry { -+ u32 magic; -+ u32 length; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_property_dir_entry { -+ u32 uuid[4]; -+ struct tb_property_entry entries[0]; -+}; -+ -+struct tb_protocol_handler { -+ const uuid_t *uuid; -+ int (*callback)(const void *, size_t, void *); -+ void *data; -+ struct list_head list; -+}; -+ -+struct tb_xdomain_header { -+ u32 route_hi; -+ u32 route_lo; -+ u32 length_sn; -+}; -+ -+enum tb_xdp_type { -+ UUID_REQUEST_OLD = 1, -+ UUID_RESPONSE = 2, -+ PROPERTIES_REQUEST = 3, -+ PROPERTIES_RESPONSE = 4, -+ PROPERTIES_CHANGED_REQUEST = 5, -+ PROPERTIES_CHANGED_RESPONSE = 6, -+ ERROR_RESPONSE = 7, -+ UUID_REQUEST = 12, -+}; -+ -+struct tb_xdp_header { -+ struct tb_xdomain_header xd_hdr; -+ uuid_t uuid; -+ u32 type; -+}; -+ -+struct tb_xdp_uuid { -+ struct tb_xdp_header hdr; -+}; -+ -+struct tb_xdp_uuid_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ u32 src_route_hi; -+ u32 src_route_lo; -+}; -+ -+struct tb_xdp_properties { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 reserved; -+}; -+ -+struct tb_xdp_properties_response { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+ uuid_t dst_uuid; -+ u16 offset; -+ u16 data_length; -+ u32 generation; -+ u32 data[0]; -+}; -+ -+struct tb_xdp_properties_changed { -+ struct tb_xdp_header hdr; -+ uuid_t src_uuid; -+}; -+ -+struct tb_xdp_properties_changed_response { -+ struct tb_xdp_header hdr; -+}; -+ -+enum tb_xdp_error { -+ ERROR_SUCCESS = 0, -+ ERROR_UNKNOWN_PACKET = 1, -+ ERROR_UNKNOWN_DOMAIN = 2, -+ ERROR_NOT_SUPPORTED = 3, -+ ERROR_NOT_READY = 4, -+}; -+ -+struct tb_xdp_error_response { -+ struct tb_xdp_header hdr; -+ u32 error; -+}; -+ -+struct xdomain_request_work { -+ struct work_struct work; -+ struct tb_xdp_header *pkg; -+ struct tb *tb; -+}; -+ -+struct tb_xdomain_lookup { -+ const uuid_t *uuid; -+ u8 link; -+ u8 depth; -+ u64 route; -+}; -+ -+enum usb4_sb_opcode { -+ USB4_SB_OPCODE_ERR = 542265925, -+ USB4_SB_OPCODE_ONS = 1145914145, -+ USB4_SB_OPCODE_ROUTER_OFFLINE = 1313166156, -+ USB4_SB_OPCODE_ENUMERATE_RETIMERS = 1297436229, -+ USB4_SB_OPCODE_SET_INBOUND_SBTX = 1347769164, -+ USB4_SB_OPCODE_QUERY_LAST_RETIMER = 1414742348, -+ USB4_SB_OPCODE_GET_NVM_SECTOR_SIZE = 1397968455, -+ USB4_SB_OPCODE_NVM_SET_OFFSET = 1397772098, -+ USB4_SB_OPCODE_NVM_BLOCK_WRITE = 1464552514, -+ USB4_SB_OPCODE_NVM_AUTH_WRITE = 1213486401, -+ USB4_SB_OPCODE_NVM_READ = 1381123649, -+}; -+ -+enum usb4_sb_target { -+ USB4_SB_TARGET_ROUTER = 0, -+ USB4_SB_TARGET_PARTNER = 1, -+ USB4_SB_TARGET_RETIMER = 2, -+}; -+ -+enum usb4_ba_index { -+ USB4_BA_MAX_USB3 = 1, -+ USB4_BA_MIN_DP_AUX = 2, -+ USB4_BA_MIN_DP_MAIN = 3, -+ USB4_BA_MAX_PCIE = 4, -+ USB4_BA_MAX_HI = 5, -+}; -+ -+struct retimer_info { -+ struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_retimer { -+ struct device dev; -+ struct tb *tb; -+ u8 index; -+ u32 vendor; -+ u32 device; -+ struct tb_port *port; -+ struct tb_nvm *nvm; -+ u32 auth_status; -+}; -+ -+struct tb_retimer_lookup { -+ const struct tb_port *port; -+ u8 index; -+}; -+ -+struct tb_quirk { -+ u16 hw_vendor_id; -+ u16 hw_device_id; -+ u16 vendor; -+ u16 device; -+ void (*hook)(struct tb_switch *); -+}; -+ -+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, -+}; -+ -+struct nvmem_cell_table { -+ const char *nvmem_name; -+ const struct nvmem_cell_info *cells; -+ size_t ncells; -+ struct list_head node; -+}; -+ -+struct nvmem_device___2 { -+ struct module *owner; -+ struct device dev; -+ 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; -+ const struct nvmem_keepout *keepout; -+ unsigned int nkeepout; -+ nvmem_reg_read_t reg_read; -+ nvmem_reg_write_t reg_write; -+ struct gpio_desc___2 *wp_gpio; -+ void *priv; -+}; -+ -+struct nvmem_cell { -+ const char *name; -+ int offset; -+ int bytes; -+ int bit_offset; -+ int nbits; -+ struct device_node *np; -+ struct nvmem_device___2 *nvmem; -+ struct list_head node; -+}; -+ -+struct net_device_devres { -+ struct net_device *ndev; -+}; -+ -+struct __kernel_old_timespec { -+ __kernel_old_time_t tv_sec; -+ long int tv_nsec; -+}; -+ -+struct __kernel_sock_timeval { -+ __s64 tv_sec; -+ __s64 tv_usec; -+}; -+ -+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 scm_timestamping_internal { -+ struct timespec64 ts[3]; -+}; -+ -+struct ifconf { -+ int ifc_len; -+ union { -+ char *ifcu_buf; -+ struct ifreq *ifcu_req; -+ } ifc_ifcu; -+}; -+ -+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; -+}; -+ -+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_LAST = 32768, -+ SOF_TIMESTAMPING_MASK = 65535, -+}; -+ -+struct scm_ts_pktinfo { -+ __u32 if_index; -+ __u32 pkt_length; -+ __u32 reserved[2]; -+}; -+ -+struct sock_skb_cb { -+ u32 dropcount; -+}; -+ -+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 net_bridge; -+ -+struct used_address { -+ struct __kernel_sockaddr_storage name; -+ unsigned int name_len; -+}; -+ -+struct linger { -+ int l_onoff; -+ int l_linger; -+}; -+ -+struct ucred { -+ __u32 pid; -+ __u32 uid; -+ __u32 gid; -+}; -+ -+struct mmpin { -+ struct user_struct *user; -+ unsigned int num_pg; -+}; -+ -+struct ubuf_info { -+ void (*callback)(struct sk_buff *, struct ubuf_info *, bool); -+ union { -+ struct { -+ long unsigned int desc; -+ void *ctx; -+ }; -+ struct { -+ u32 id; -+ u16 len; -+ u16 zerocopy: 1; -+ u32 bytelen; -+ }; -+ }; -+ refcount_t refcnt; -+ u8 flags; -+ struct mmpin mmp; -+}; -+ -+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 prot_inuse { -+ int val[64]; -+}; -+ -+struct gro_list { -+ struct list_head list; -+ int count; -+}; -+ -+struct napi_struct { -+ struct list_head poll_list; -+ long unsigned int state; -+ int weight; -+ int defer_hard_irqs_count; -+ long unsigned int gro_bitmask; -+ int (*poll)(struct napi_struct *, int); -+ int poll_owner; -+ struct net_device *dev; -+ struct gro_list gro_hash[8]; -+ struct sk_buff *skb; -+ struct list_head rx_list; -+ int rx_count; -+ struct hrtimer timer; -+ struct list_head dev_list; -+ struct hlist_node napi_hash_node; -+ unsigned int napi_id; -+ struct task_struct *thread; -+}; -+ -+struct sd_flow_limit { -+ u64 count; -+ unsigned int num_buckets; -+ unsigned int history_head; -+ u16 history[128]; -+ u8 buckets[0]; -+}; -+ -+struct softnet_data { -+ struct list_head poll_list; -+ struct sk_buff_head process_queue; -+ unsigned int processed; -+ unsigned int time_squeeze; -+ unsigned int received_rps; -+ struct softnet_data *rps_ipi_list; -+ 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 { -+ u16 recursion; -+ u8 more; -+ } xmit; -+ int: 32; -+ unsigned int input_queue_head; -+ long: 32; -+ 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; -+ unsigned int dropped; -+ struct sk_buff_head input_pkt_queue; -+ struct napi_struct backlog; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 sockcm_cookie { -+ u64 transmit_time; -+ u32 mark; -+ u16 tsflags; -+}; -+ -+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 net_frag_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 inet_bind_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; -+ 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); -+ struct hlist_node icsk_listen_portaddr_node; -+ 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; -+ 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 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 owners; -+}; -+ -+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)(const 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_sock_af_ops; -+ -+struct tcp_md5sig_info; -+ -+struct tcp_fastopen_request; -+ -+struct tcp_sock { -+ struct inet_connection_sock inet_conn; -+ u16 tcp_header_len; -+ u16 gso_segs; -+ __be32 pred_flags; -+ u64 bytes_received; -+ u32 segs_in; -+ u32 data_segs_in; -+ u32 rcv_nxt; -+ u32 copied_seq; -+ u32 rcv_wup; -+ u32 snd_nxt; -+ u32 segs_out; -+ u32 data_segs_out; -+ u64 bytes_sent; -+ u64 bytes_acked; -+ u32 dsack_dups; -+ u32 snd_una; -+ u32 snd_sml; -+ u32 rcv_tstamp; -+ u32 lsndtime; -+ u32 last_oow_ack_time; -+ u32 compressed_ack_rcv_nxt; -+ u32 tsoffset; -+ struct list_head tsq_node; -+ struct list_head tsorted_sent_queue; -+ u32 snd_wl1; -+ u32 snd_wnd; -+ u32 max_window; -+ u32 mss_cache; -+ u32 window_clamp; -+ u32 rcv_ssthresh; -+ struct tcp_rack rack; -+ u16 advmss; -+ u8 compressed_ack; -+ u8 dup_ack_counter: 2; -+ u8 tlp_retrans: 1; -+ u8 unused: 5; -+ u32 chrono_start; -+ u32 chrono_stat[3]; -+ u8 chrono_type: 2; -+ u8 rate_app_limited: 1; -+ u8 fastopen_connect: 1; -+ u8 fastopen_no_cookie: 1; -+ u8 is_sack_reneg: 1; -+ u8 fastopen_client_fail: 2; -+ u8 nonagle: 4; -+ u8 thin_lto: 1; -+ u8 recvmsg_inq: 1; -+ u8 repair: 1; -+ 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 is_cwnd_limited: 1; -+ u32 tlp_high_seq; -+ u32 tcp_tx_delay; -+ u64 tcp_wstamp_ns; -+ u64 tcp_clock_cache; -+ u64 tcp_mstamp; -+ u32 srtt_us; -+ u32 mdev_us; -+ u32 mdev_max_us; -+ u32 rttvar_us; -+ u32 rtt_seq; -+ struct minmax rtt_min; -+ u32 packets_out; -+ u32 retrans_out; -+ u32 max_packets_out; -+ u32 max_packets_seq; -+ u16 urg_data; -+ u8 ecn_flags; -+ u8 keepalive_probes; -+ u32 reordering; -+ u32 reord_seen; -+ u32 snd_up; -+ struct tcp_options_received rx_opt; -+ u32 snd_ssthresh; -+ u32 snd_cwnd; -+ u32 snd_cwnd_cnt; -+ u32 snd_cwnd_clamp; -+ u32 snd_cwnd_used; -+ u32 snd_cwnd_stamp; -+ u32 prior_cwnd; -+ u32 prr_delivered; -+ u32 prr_out; -+ u32 delivered; -+ u32 delivered_ce; -+ u32 lost; -+ u32 app_limited; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ u32 rate_delivered; -+ u32 rate_interval_us; -+ u32 rcv_wnd; -+ u32 write_seq; -+ u32 notsent_lowat; -+ u32 pushed_seq; -+ u32 lost_out; -+ u32 sacked_out; -+ struct hrtimer pacing_timer; -+ struct hrtimer compressed_ack_timer; -+ struct sk_buff *lost_skb_hint; -+ struct sk_buff *retransmit_skb_hint; -+ struct rb_root out_of_order_queue; -+ 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]; -+ struct sk_buff *highest_sack; -+ 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 urg_seq; -+ unsigned int keepalive_time; -+ unsigned int keepalive_intvl; -+ int linger2; -+ u8 bpf_sock_ops_cb_flags; -+ u16 timeout_rehash; -+ u32 rcv_ooopack; -+ u32 rcv_rtt_last_tsecr; -+ struct { -+ u32 rtt_us; -+ u32 seq; -+ u64 time; -+ } rcv_rtt_est; -+ struct { -+ u32 space; -+ u32 seq; -+ u64 time; -+ } rcvq_space; -+ struct { -+ u32 probe_seq_start; -+ u32 probe_seq_end; -+ } mtu_probe; -+ u32 mtu_info; -+ bool is_mptcp; -+ const struct tcp_sock_af_ops *af_specific; -+ struct tcp_md5sig_info *md5sig_info; -+ struct tcp_fastopen_request *fastopen_req; -+ struct request_sock *fastopen_rsk; -+ struct saved_syn *saved_syn; -+}; -+ -+struct tcp_md5sig_key; -+ -+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); -+}; -+ -+struct tcp_md5sig_info { -+ struct hlist_head head; -+ 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_md5_addr { -+ struct in_addr a4; -+ struct in6_addr a6; -+}; -+ -+struct tcp_md5sig_key { -+ struct hlist_node node; -+ u8 keylen; -+ u8 family; -+ u8 prefixlen; -+ union tcp_md5_addr addr; -+ int l3index; -+ u8 key[80]; -+ struct callback_head rcu; -+}; -+ -+struct net_protocol { -+ int (*early_demux)(struct sk_buff *); -+ int (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, u32); -+ unsigned int no_policy: 1; -+ unsigned int icmp_strict_tag_validation: 1; -+}; -+ -+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 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 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 drop_req; -+ 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; -+ 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 *); -+ __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 (*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 nf_conntrack { -+ atomic_t use; -+}; -+ -+enum { -+ SKBFL_ZEROCOPY_ENABLE = 1, -+ SKBFL_SHARED_FRAG = 2, -+}; -+ -+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 skb_checksum_ops { -+ __wsum (*update)(const void *, int, __wsum); -+ __wsum (*combine)(__wsum, __wsum, int, int); -+}; -+ -+struct skb_gso_cb { -+ union { -+ int mac_offset; -+ int data_offset; -+ }; -+ int encap_level; -+ __wsum csum; -+ __u16 csum_start; -+}; -+ -+struct napi_gro_cb { -+ void *frag0; -+ unsigned int frag0_len; -+ int data_offset; -+ u16 flush; -+ u16 flush_id; -+ u16 count; -+ u16 gro_remcsum_start; -+ long unsigned int age; -+ u16 proto; -+ 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 is_atomic: 1; -+ u8 recursion_counter: 4; -+ u8 is_flist: 1; -+ __wsum csum; -+ struct sk_buff *last; -+}; -+ -+enum skb_free_reason { -+ SKB_REASON_CONSUMED = 0, -+ SKB_REASON_DROPPED = 1, -+}; -+ -+struct vlan_hdr { -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct vlan_ethhdr { -+ unsigned char h_dest[6]; -+ unsigned char h_source[6]; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __be16 h_vlan_encapsulated_proto; -+}; -+ -+struct qdisc_walker { -+ int stop; -+ int skip; -+ int count; -+ int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); -+}; -+ -+struct ip_auth_hdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __be16 reserved; -+ __be32 spi; -+ __be32 seq_no; -+ __u8 auth_data[0]; -+}; -+ -+struct frag_hdr { -+ __u8 nexthdr; -+ __u8 reserved; -+ __be16 frag_off; -+ __be32 identification; -+}; -+ -+enum { -+ SCM_TSTAMP_SND = 0, -+ SCM_TSTAMP_SCHED = 1, -+ SCM_TSTAMP_ACK = 2, -+}; -+ -+struct mpls_shim_hdr { -+ __be32 label_stack_entry; -+}; -+ -+struct napi_alloc_cache { -+ struct page_frag_cache page; -+ unsigned int skb_count; -+ void *skb_cache[64]; -+}; -+ -+typedef int (*sendmsg_func)(struct sock *, struct msghdr *, struct kvec *, size_t, size_t); -+ -+typedef int (*sendpage_func)(struct sock *, struct page *, int, size_t, int); -+ -+struct ahash_request___2; -+ -+struct scm_fp_list { -+ short int count; -+ short int max; -+ 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 { -+ 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 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_packed *bstats; -+ spinlock_t *stats_lock; -+ seqcount_t *running; -+ struct gnet_stats_basic_cpu *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 rtgenmsg { -+ unsigned char rtgen_family; -+}; -+ -+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_MAX = 34, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+ -+typedef u32 u_int32_t; -+ -+typedef u64 u_int64_t; -+ -+struct flow_dissector_key_control { -+ u16 thoff; -+ u16 addr_type; -+ u32 flags; -+}; -+ -+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_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; -+}; -+ -+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; -+ __be16 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_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_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_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; -+}; -+ -+struct flow_dissector_key_ct { -+ u16 ct_state; -+ u16 ct_zone; -+ u32 ct_mark; -+ u32 ct_labels[4]; -+}; -+ -+struct flow_dissector_key_hash { -+ u32 hash; -+}; -+ -+struct flow_dissector_key { -+ enum flow_dissector_key_id key_id; -+ size_t offset; -+}; -+ -+struct flow_dissector { -+ unsigned int used_keys; -+ short unsigned int offset[28]; -+}; -+ -+struct flow_keys_basic { -+ struct flow_dissector_key_control control; -+ struct flow_dissector_key_basic basic; -+}; -+ -+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; -+ int: 32; -+}; -+ -+struct flow_keys_digest { -+ u8 data[16]; -+}; -+ -+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, -+}; -+ -+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 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; -+}; -+ -+struct ip_ct_sctp { -+ enum sctp_conntrack state; -+ __be32 vtag[2]; -+ u8 last_dir; -+ u8 flags; -+}; -+ -+struct nf_ct_event; -+ -+struct nf_ct_event_notifier { -+ int (*fcn)(unsigned int, struct nf_ct_event *); -+}; -+ -+struct nf_exp_event; -+ -+struct nf_exp_event_notifier { -+ int (*fcn)(unsigned int, struct nf_exp_event *); -+}; -+ -+enum bpf_ret_code { -+ BPF_OK = 0, -+ BPF_DROP = 2, -+ BPF_REDIRECT = 7, -+ BPF_LWT_REROUTE = 128, -+}; -+ -+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, -+}; -+ -+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 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; -+ 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; -+ -+struct devlink_rate; -+ -+struct devlink_port { -+ struct list_head list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct devlink *devlink; -+ unsigned int index; -+ bool registered; -+ spinlock_t type_lock; -+ enum devlink_port_type type; -+ enum devlink_port_type desired_type; -+ void *type_dev; -+ struct devlink_port_attrs attrs; -+ u8 attrs_set: 1; -+ u8 switch_port: 1; -+ struct delayed_work type_warn_dw; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_rate *devlink_rate; -+}; -+ -+struct ip_tunnel_parm { -+ char name[16]; -+ int link; -+ __be16 i_flags; -+ __be16 o_flags; -+ __be32 i_key; -+ __be32 o_key; -+ struct iphdr iph; -+}; -+ -+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; -+ __be16 tun_flags; -+ u8 tos; -+ u8 ttl; -+ __be32 label; -+ __be16 tp_src; -+ __be16 tp_dst; -+}; -+ -+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 dst_cache dst_cache; -+ u8 options_len; -+ u8 mode; -+}; -+ -+union tcp_word_hdr { -+ struct tcphdr hdr; -+ __be32 words[5]; -+}; -+ -+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_eswitch_encap_mode { -+ DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, -+ DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, -+}; -+ -+enum devlink_rate_type { -+ DEVLINK_RATE_TYPE_LEAF = 0, -+ DEVLINK_RATE_TYPE_NODE = 1, -+}; -+ -+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, -+}; -+ -+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_dev_stats { -+ u32 reload_stats[6]; -+ u32 remote_reload_stats[6]; -+}; -+ -+struct devlink_dpipe_headers; -+ -+struct devlink_ops; -+ -+struct devlink { -+ struct list_head list; -+ struct list_head port_list; -+ struct list_head rate_list; -+ struct list_head sb_list; -+ struct list_head dpipe_table_list; -+ struct list_head resource_list; -+ struct list_head param_list; -+ struct list_head region_list; -+ struct list_head reporter_list; -+ struct mutex reporters_lock; -+ struct devlink_dpipe_headers *dpipe_headers; -+ struct list_head trap_list; -+ struct list_head trap_group_list; -+ struct list_head trap_policer_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; -+ u8 reload_failed: 1; -+ u8 reload_enabled: 1; -+ u8 registered: 1; -+ long: 61; -+ long: 64; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct devlink_dpipe_header; -+ -+struct devlink_dpipe_headers { -+ struct devlink_dpipe_header **headers; -+ unsigned int headers_count; -+}; -+ -+struct devlink_sb_pool_info; -+ -+struct devlink_info_req; -+ -+struct devlink_flash_update_params; -+ -+struct devlink_trap; -+ -+struct devlink_trap_group; -+ -+struct devlink_trap_policer; -+ -+struct devlink_port_new_attrs; -+ -+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 (*port_type_set)(struct devlink_port *, enum devlink_port_type); -+ int (*port_split)(struct devlink *, unsigned int, unsigned int, struct netlink_ext_ack *); -+ int (*port_unsplit)(struct devlink *, unsigned int, 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_function_hw_addr_get)(struct devlink *, struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); -+ int (*port_function_hw_addr_set)(struct devlink *, struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); -+ int (*port_new)(struct devlink *, const struct devlink_port_new_attrs *, struct netlink_ext_ack *, unsigned int *); -+ int (*port_del)(struct devlink *, unsigned int, struct netlink_ext_ack *); -+ int (*port_fn_state_get)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); -+ int (*port_fn_state_set)(struct devlink *, struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); -+ 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_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_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 *); -+}; -+ -+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; -+ }; -+ }; -+}; -+ -+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_sb_pool_info { -+ enum devlink_sb_pool_type pool_type; -+ u32 size; -+ enum devlink_sb_threshold_type threshold_type; -+ u32 cell_size; -+}; -+ -+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_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 arphdr { -+ __be16 ar_hrd; -+ __be16 ar_pro; -+ unsigned char ar_hln; -+ unsigned char ar_pln; -+ __be16 ar_op; -+}; -+ -+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; -+ int 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; -+ 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; -+ }; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 { -+ struct nexthop *nh; -+ u8 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; -+}; -+ -+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_group { -+ struct nh_group *spare; -+ u16 num_nh; -+ bool is_multipath; -+ bool hash_threshold; -+ bool resilient; -+ bool fdb_nh; -+ bool has_v4; -+ struct nh_res_table *res_table; -+ struct nh_grp_entry nh_entries[0]; -+}; -+ -+enum metadata_type { -+ METADATA_IP_TUNNEL = 0, -+ METADATA_HW_PORT_MUX = 1, -+}; -+ -+struct hw_port_info { -+ struct net_device *lower_dev; -+ u32 port_id; -+}; -+ -+struct metadata_dst { -+ struct dst_entry dst; -+ enum metadata_type type; -+ union { -+ struct ip_tunnel_info tun_info; -+ struct hw_port_info port_info; -+ } u; -+}; -+ -+struct gre_base_hdr { -+ __be16 flags; -+ __be16 protocol; -+}; -+ -+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 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 l2tp_debug_flags { -+ L2TP_MSG_DEBUG = 1, -+ L2TP_MSG_CONTROL = 2, -+ L2TP_MSG_SEQ = 4, -+ L2TP_MSG_DATA = 8, -+}; -+ -+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 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_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_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; -+ 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; -+ u16 cpu; -+ 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_conntrack_tuple_mask { -+ struct { -+ union nf_inet_addr u3; -+ union nf_conntrack_man_proto u; -+ } src; -+}; -+ -+struct nf_ct_ext { -+ u8 offset[9]; -+ u8 len; -+ 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; -+ void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); -+ struct nf_conntrack_helper *helper; -+ struct nf_conn *master; -+ struct timer_list timeout; -+ refcount_t use; -+ unsigned int flags; -+ unsigned int class; -+ 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_NUM = 9, -+}; -+ -+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 rps_sock_flow_table { -+ u32 mask; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 ents[0]; -+}; -+ -+struct tc_skb_ext { -+ __u32 chain; -+ __u16 mru; -+ bool post_ct; -+}; -+ -+struct ipv4_devconf { -+ void *sysctl; -+ int data[32]; -+ long unsigned int state[1]; -+}; -+ -+enum nf_dev_hooks { -+ NF_NETDEV_INGRESS = 0, -+ NF_NETDEV_NUMHOOKS = 1, -+}; -+ -+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 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 netdev_boot_setup { -+ char name[16]; -+ struct ifmap map; -+}; -+ -+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; -+ -+enum netdev_queue_state_t { -+ __QUEUE_STATE_DRV_XOFF = 0, -+ __QUEUE_STATE_STACK_XOFF = 1, -+ __QUEUE_STATE_FROZEN = 2, -+}; -+ -+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 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; -+}; -+ -+struct in_ifaddr; -+ -+struct ip_mc_list; -+ -+struct in_device { -+ struct net_device *dev; -+ 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 packet_type { -+ __be16 type; -+ bool ignore_outgoing; -+ struct net_device *dev; -+ 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 *); -+ void *af_packet_priv; -+ struct list_head list; -+}; -+ -+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 netdev_notifier_info_ext { -+ struct netdev_notifier_info info; -+ union { -+ u32 mtu; -+ } ext; -+}; -+ -+struct netdev_notifier_change_info { -+ struct netdev_notifier_info info; -+ unsigned int flags_changed; -+}; -+ -+struct netdev_notifier_changeupper_info { -+ struct netdev_notifier_info info; -+ struct net_device *upper_dev; -+ bool master; -+ bool linking; -+ void *upper_info; -+}; -+ -+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; -+}; -+ -+typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); -+ -+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; -+}; -+ -+union inet_addr { -+ __u32 all[4]; -+ __be32 ip; -+ __be32 ip6[4]; -+ struct in_addr in; -+ struct in6_addr in6; -+}; -+ -+struct netpoll { -+ struct net_device *dev; -+ char dev_name[16]; -+ 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]; -+}; -+ -+enum qdisc_state_t { -+ __QDISC_STATE_SCHED = 0, -+ __QDISC_STATE_DEACTIVATED = 1, -+ __QDISC_STATE_MISSED = 2, -+ __QDISC_STATE_DRAINING = 3, -+}; -+ -+struct tcf_walker { -+ int stop; -+ int skip; -+ int count; -+ bool nonempty; -+ long unsigned int cookie; -+ int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); -+}; -+ -+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_MAX = 33, -+}; -+ -+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; -+ __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 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 dev_kfree_skb_cb { -+ enum skb_free_reason reason; -+}; -+ -+struct netdev_adjacent { -+ struct net_device *dev; -+ bool master; -+ bool ignore; -+ u16 ref_nr; -+ void *private; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netdev_hw_addr { -+ struct list_head list; -+ unsigned char addr[32]; -+ unsigned char type; -+ bool global_use; -+ int sync_cnt; -+ int refcount; -+ int synced; -+ struct callback_head callback_head; -+}; -+ -+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_MAX = 15, -+}; -+ -+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_MAX = 19, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+enum { -+ NEIGH_ARP_TABLE = 0, -+ NEIGH_ND_TABLE = 1, -+ NEIGH_DN_TABLE = 2, -+ NEIGH_NR_TABLES = 3, -+ NEIGH_LINK_TABLE = 3, -+}; -+ -+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; -+}; -+ -+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 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]; -+}; -+ -+struct netlink_dump_control { -+ int (*start)(struct netlink_callback *); -+ int (*dump)(struct sk_buff *, struct netlink_callback *); -+ int (*done)(struct netlink_callback *); -+ void *data; -+ struct module *module; -+ u32 min_dump_alloc; -+}; -+ -+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_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_MAX = 39, -+}; -+ -+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_OFFLOAD_XSTATS_UNSPEC = 0, -+ IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, -+ __IFLA_OFFLOAD_XSTATS_MAX = 2, -+}; -+ -+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, -+}; -+ -+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_MAX = 6, -+}; -+ -+enum { -+ BR_MCAST_DIR_RX = 0, -+ BR_MCAST_DIR_TX = 1, -+ BR_MCAST_DIR_SIZE = 2, -+}; -+ -+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 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 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 *); -+ 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 rtnl_link { -+ rtnl_doit_func doit; -+ rtnl_dumpit_func dumpit; -+ struct module *owner; -+ unsigned int flags; -+ struct callback_head rcu; -+}; -+ -+enum { -+ IF_LINK_MODE_DEFAULT = 0, -+ IF_LINK_MODE_DORMANT = 1, -+ IF_LINK_MODE_TESTING = 2, -+}; -+ -+enum lw_bits { -+ LW_URGENT = 0, -+}; -+ -+struct seg6_pernet_data { -+ struct mutex lock; -+ struct in6_addr *tun_src; -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_F_INGRESS = 1, -+}; -+ -+enum { -+ BPF_F_TUNINFO_IPV6 = 1, -+}; -+ -+enum { -+ BPF_F_ZERO_CSUM_TX = 2, -+ BPF_F_DONT_FRAGMENT = 4, -+ BPF_F_SEQ_NUMBER = 8, -+}; -+ -+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, -+}; -+ -+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, -+}; -+ -+struct bpf_tunnel_key { -+ __u32 tunnel_id; -+ union { -+ __u32 remote_ipv4; -+ __u32 remote_ipv6[4]; -+ }; -+ __u8 tunnel_tos; -+ __u8 tunnel_ttl; -+ __u16 tunnel_ext; -+ __u32 tunnel_label; -+}; -+ -+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 { -+ 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, -+}; -+ -+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, -+}; -+ -+enum { -+ BPF_LOAD_HDR_OPT_TCP_SYN = 1, -+}; -+ -+enum { -+ BPF_FIB_LOOKUP_DIRECT = 1, -+ BPF_FIB_LOOKUP_OUTPUT = 2, -+}; -+ -+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, -+}; -+ -+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]; -+ }; -+ __be16 h_vlan_proto; -+ __be16 h_vlan_TCI; -+ __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, -+}; -+ -+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 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 nl_info { -+ struct nlmsghdr *nlh; -+ struct net *nl_net; -+ u32 portid; -+ u8 skip_notify: 1; -+ u8 skip_notify_kernel: 1; -+}; -+ -+struct inet_timewait_sock { -+ struct sock_common __tw_common; -+ __u32 tw_mark; -+ volatile unsigned char tw_substate; -+ unsigned char tw_rcv_wscale; -+ __be16 tw_sport; -+ unsigned int tw_kill: 1; -+ unsigned int tw_transparent: 1; -+ unsigned int tw_flowlabel: 20; -+ 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 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 udp_sock { -+ struct inet_sock inet; -+ int pending; -+ unsigned int corkflag; -+ __u8 encap_type; -+ unsigned char no_check6_tx: 1; -+ unsigned char no_check6_rx: 1; -+ unsigned char encap_enabled: 1; -+ unsigned char gro_enabled: 1; -+ unsigned char accept_udp_l4: 1; -+ unsigned char accept_udp_fraglist: 1; -+ __u16 len; -+ __u16 gso_size; -+ __u16 pcslen; -+ __u16 pcrlen; -+ __u8 pcflag; -+ __u8 unused[3]; -+ int (*encap_rcv)(struct sock *, struct sk_buff *); -+ 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; -+ struct sk_buff_head reader_queue; -+ int forward_deficit; -+ long: 32; -+ long: 64; -+ 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; -+ long: 64; -+}; -+ -+struct tcp6_sock { -+ struct tcp_sock tcp; -+ struct ipv6_pinfo inet6; -+}; -+ -+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_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 (*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 *); -+ 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 *); -+}; -+ -+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 ipv6_bpf_stub { -+ int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); -+ struct sock * (*udp6_lib_lookup)(struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); -+}; -+ -+struct fib_result { -+ __be32 prefix; -+ unsigned char prefixlen; -+ unsigned char nh_sel; -+ unsigned char type; -+ unsigned char scope; -+ u32 tclassid; -+ struct fib_nh_common *nhc; -+ struct fib_info *fi; -+ struct fib_table *table; -+ struct hlist_head *fa_head; -+}; -+ -+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 tcp_skb_cb { -+ __u32 seq; -+ __u32 end_seq; -+ union { -+ __u32 tcp_tw_isn; -+ 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 in_flight: 30; -+ __u32 is_app_limited: 1; -+ __u32 unused: 1; -+ __u32 delivered; -+ u64 first_tx_mstamp; -+ u64 delivered_mstamp; -+ } tx; -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ } header; -+ }; -+}; -+ -+struct strp_msg { -+ int full_len; -+ int offset; -+}; -+ -+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; -+ bool zc; -+ struct page **pgs; -+ int id; -+ struct list_head xsk_dma_list; -+ struct work_struct work; -+}; -+ -+struct xsk_queue; -+ -+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; -+ enum { -+ XSK_READY = 0, -+ XSK_BOUND = 1, -+ XSK_UNBOUND = 2, -+ } state; -+ long: 64; -+ struct xsk_queue *tx; -+ struct list_head tx_list; -+ spinlock_t rx_lock; -+ u64 rx_dropped; -+ u64 rx_queue_full; -+ struct list_head map_list; -+ spinlock_t map_list_lock; -+ struct mutex mutex; -+ struct xsk_queue *fq_tmp; -+ struct xsk_queue *cq_tmp; -+ long: 64; -+}; -+ -+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 tls_sw_context_rx { -+ struct crypto_aead *aead_recv; -+ struct crypto_wait async_wait; -+ struct strparser strp; -+ struct sk_buff_head rx_list; -+ void (*saved_data_ready)(struct sock *); -+ struct sk_buff *recv_pkt; -+ u8 control; -+ u8 async_capable: 1; -+ u8 decrypted: 1; -+ atomic_t decrypt_pending; -+ spinlock_t decrypt_compl_lock; -+ bool async_notify; -+}; -+ -+struct cipher_context { -+ char *iv; -+ char *rec_seq; -+}; -+ -+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 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 tls_context { -+ struct tls_prot_info prot_info; -+ u8 tx_conf: 3; -+ u8 rx_conf: 3; -+ 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 in_tcp_sendpages; -+ 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]; -+ }; -+}; -+ -+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 = 2, -+ BPF_F_PEER = 4, -+ BPF_F_NEXTHOP = 8, -+}; -+ -+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)(); -+ -+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_adjust_head)(struct xdp_buff *, int); -+ -+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 *, u32, 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_socket_uid)(struct sk_buff *); -+ -+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_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_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_sock_from_file)(struct file *); -+ -+struct bpf_dtab_netdev___2; -+ -+struct bpf_cpu_map_entry___2; -+ -+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; -+}; -+ -+struct sock_diag_handler { -+ __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 broadcast_sk { -+ struct sock *sk; -+ struct work_struct work; -+}; -+ -+struct hwtstamp_config { -+ int flags; -+ int tx_type; -+ int rx_filter; -+}; -+ -+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 compat_ifconf { -+ compat_int_t ifc_len; -+ compat_caddr_t ifcbuf; -+}; -+ -+struct tso_t { -+ int next_frag_idx; -+ int size; -+ void *data; -+ u16 ip_id; -+ u8 tlen; -+ bool ipv6; -+ u32 tcp_seq; -+}; -+ -+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 xdp_frame_bulk { -+ int count; -+ void *xa; -+ void *q[16]; -+}; -+ -+struct xdp_attachment_info { -+ struct bpf_prog *prog; -+ u32 flags; -+}; -+ -+struct xdp_buff_xsk; -+ -+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; -+ struct list_head free_list; -+ u32 heads_cnt; -+ u16 queue_id; -+ long: 16; -+ long: 64; -+ long: 64; -+ long: 64; -+ struct xsk_queue *fq; -+ struct xsk_queue *cq; -+ dma_addr_t *dma_pages; -+ struct xdp_buff_xsk *heads; -+ u64 chunk_mask; -+ u64 addrs_cnt; -+ u32 free_list_cnt; -+ u32 dma_pages_cnt; -+ u32 free_heads_cnt; -+ u32 headroom; -+ u32 chunk_size; -+ u32 frame_len; -+ u8 cached_need_wakeup; -+ bool uses_need_wakeup; -+ bool dma_need_sync; -+ bool unaligned; -+ void *addrs; -+ spinlock_t cq_lock; -+ struct xdp_buff_xsk *free_heads[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+struct xdp_buff_xsk { -+ struct xdp_buff xdp; -+ dma_addr_t dma; -+ dma_addr_t frame_dma; -+ struct xsk_buff_pool *pool; -+ bool unaligned; -+ u64 orig_addr; -+ struct list_head free_list_node; -+}; -+ -+struct flow_match { -+ struct flow_dissector *dissector; -+ void *mask; -+ void *key; -+}; -+ -+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_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_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_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; -+}; -+ -+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_WAKE = 19, -+ FLOW_ACTION_QUEUE = 20, -+ FLOW_ACTION_SAMPLE = 21, -+ FLOW_ACTION_POLICE = 22, -+ FLOW_ACTION_CT = 23, -+ FLOW_ACTION_CT_METADATA = 24, -+ FLOW_ACTION_MPLS_PUSH = 25, -+ FLOW_ACTION_MPLS_POP = 26, -+ FLOW_ACTION_MPLS_MANGLE = 27, -+ FLOW_ACTION_GATE = 28, -+ FLOW_ACTION_PPPOE_PUSH = 29, -+ NUM_FLOW_ACTIONS = 30, -+}; -+ -+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 nf_flowtable; -+ -+struct psample_group; -+ -+struct action_gate_entry; -+ -+struct flow_action_entry { -+ enum flow_action_id id; -+ 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 { -+ 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; -+ 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 index; -+ u32 burst; -+ u64 rate_bytes_ps; -+ u64 burst_pkt; -+ u64 rate_pkt_ps; -+ u32 mtu; -+ } 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 { -+ u32 index; -+ 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 *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; -+}; -+ -+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 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 flow_indr_dev { -+ struct list_head list; -+ flow_indr_block_bind_cb_t *cb; -+ void *cb_priv; -+ refcount_t refcnt; -+ struct callback_head rcu; -+}; -+ -+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_attribute { -+ struct attribute attr; -+ ssize_t (*show)(struct netdev_queue *, char *); -+ ssize_t (*store)(struct netdev_queue *, const char *, size_t); -+}; -+ -+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 tmp_list; -+ struct inet6_ifaddr *ifpub; -+ int regen_count; -+ bool tokenized; -+ struct callback_head rcu; -+ struct in6_addr peer_addr; -+}; -+ -+struct fib_rule_uid_range { -+ __u32 start; -+ __u32 end; -+}; -+ -+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_MAX = 25, -+}; -+ -+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 fib_rule_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_rule *rule; -+}; -+ -+struct trace_event_raw_kfree_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ void *location; -+ short unsigned int protocol; -+ char __data[0]; -+}; -+ -+struct trace_event_raw_consume_skb { -+ struct trace_entry ent; -+ void *skbaddr; -+ 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 *); -+ -+typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *); -+ -+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; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_xmit_timeout { -+ u32 name; -+ u32 driver; -+}; -+ -+struct trace_event_data_offsets_net_dev_template { -+ u32 name; -+}; -+ -+struct trace_event_data_offsets_net_dev_rx_verbose_template { -+ u32 name; -+}; -+ -+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_netif_rx_ni_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_rx_ni_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_data_offsets_napi_poll { -+ u32 dev_name; -+}; -+ -+typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); -+ -+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 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; -+ 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_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 {}; -+ -+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 *); -+ -+struct trace_event_raw_udp_fail_queue_rcv_skb { -+ struct trace_entry ent; -+ int rc; -+ __u16 lport; -+ 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 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_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; -+ 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_data_offsets_tcp_event_sk_skb {}; -+ -+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 {}; -+ -+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 *); -+ -+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 *); -+ -+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; -+ u32 __data_loc_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib_table_lookup { -+ u32 name; -+}; -+ -+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; -+ 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; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_destroy { -+ u32 dev; -+ u32 kind; -+}; -+ -+struct trace_event_data_offsets_qdisc_create { -+ u32 dev; -+ u32 kind; -+}; -+ -+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; -+ long unsigned int delay_time; -+}; -+ -+struct net_bridge_port; -+ -+struct bridge_mcast_querier { -+ struct br_ip addr; -+ struct net_bridge_port *port; -+}; -+ -+struct net_bridge___2; -+ -+struct net_bridge_vlan_group; -+ -+struct bridge_mcast_stats; -+ -+struct net_bridge_port { -+ struct net_bridge___2 *br; -+ struct net_device *dev; -+ struct list_head list; -+ long unsigned int flags; -+ struct net_bridge_vlan_group *vlgrp; -+ struct net_bridge_port *backup_port; -+ 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 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; -+ u32 multicast_eht_hosts_limit; -+ u32 multicast_eht_hosts_cnt; -+ unsigned char multicast_router; -+ struct bridge_mcast_stats *mcast_stats; -+ struct hlist_head mglist; -+ char sysfs_name[16]; -+ struct netpoll *np; -+ int offload_fwd_mark; -+ u16 group_fwd_mask; -+ u16 backup_redirected_cnt; -+ struct bridge_stp_xstats stp_xstats; -+}; -+ -+struct bridge_mcast_stats { -+ struct br_mcast_stats mstats; -+ struct u64_stats_sync syncp; -+}; -+ -+struct net_bridge___2 { -+ 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; -+ }; -+ 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; -+ u32 hash_max; -+ u32 multicast_last_member_count; -+ u32 multicast_startup_query_count; -+ u8 multicast_igmp_version; -+ u8 multicast_router; -+ u8 multicast_mld_version; -+ spinlock_t multicast_lock; -+ 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 rhashtable mdb_hash_tbl; -+ struct rhashtable sg_port_tbl; -+ struct hlist_head mcast_gc_list; -+ struct hlist_head mdb_list; -+ 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 bridge_mcast_stats *mcast_stats; -+ 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 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; -+ int offload_fwd_mark; -+ struct hlist_head fdb_list; -+}; -+ -+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_data_offsets_br_fdb_add { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_external_learn_add { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_fdb_delete { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_br_fdb_update { -+ u32 br_dev; -+ u32 dev; -+}; -+ -+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___2 *, struct net_bridge_port *, const unsigned char *, u16); -+ -+typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge___2 *, struct net_bridge_fdb_entry *); -+ -+typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge___2 *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); -+ -+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; -+ const struct page *page; -+ 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; -+ const struct page *page; -+ 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 *, const struct page *, u32); -+ -+typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, const struct page *, 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; -+}; -+ -+struct trace_event_data_offsets_neigh_update { -+ u32 dev; -+}; -+ -+struct trace_event_data_offsets_neigh__update { -+ u32 dev; -+}; -+ -+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 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_MAX = 23, -+ NET_DM_ATTR_MAX = 22, -+}; -+ -+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, -+}; -+ -+struct devlink_trap_metadata { -+ const char *trap_name; -+ const char *trap_group_name; -+ struct net_device *input_dev; -+ const struct flow_action_cookie *fa_cookie; -+ enum devlink_trap_type trap_type; -+}; -+ -+struct net_dm_stats { -+ u64 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 { -+ 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 dm_hw_stat_delta { -+ struct net_device *dev; -+ long unsigned int last_rx; -+ struct list_head list; -+ struct callback_head rcu; -+ long unsigned int last_drop_val; -+}; -+ -+struct net_dm_alert_ops { -+ void (*kfree_skb_probe)(void *, struct sk_buff *, void *); -+ 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 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 { -+ unsigned char *src; -+ 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 update_classid_context { -+ u32 classid; -+ unsigned int batch; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+enum { -+ LWTUNNEL_XMIT_DONE = 0, -+ LWTUNNEL_XMIT_CONTINUE = 1, -+}; -+ -+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 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 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_MAX = 78, -+ DEVLINK_CMD_MAX = 77, -+}; -+ -+enum devlink_eswitch_mode { -+ DEVLINK_ESWITCH_MODE_LEGACY = 0, -+ DEVLINK_ESWITCH_MODE_SWITCHDEV = 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, -+}; -+ -+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_FLASH_OVERWRITE_SETTINGS_BIT = 0, -+ DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT = 1, -+ __DEVLINK_FLASH_OVERWRITE_MAX_BIT = 2, -+ DEVLINK_FLASH_OVERWRITE_MAX_BIT = 1, -+}; -+ -+enum { -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, -+ DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, -+}; -+ -+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_MAX = 170, -+ DEVLINK_ATTR_MAX = 169, -+}; -+ -+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, -+}; -+ -+enum devlink_resource_unit { -+ DEVLINK_RESOURCE_UNIT_ENTRY = 0, -+}; -+ -+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_FUNCTION_ATTR_MAX = 4, -+ DEVLINK_PORT_FUNCTION_ATTR_MAX = 3, -+}; -+ -+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; -+ 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_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_param_type { -+ DEVLINK_PARAM_TYPE_U8 = 0, -+ DEVLINK_PARAM_TYPE_U16 = 1, -+ DEVLINK_PARAM_TYPE_U32 = 2, -+ DEVLINK_PARAM_TYPE_STRING = 3, -+ DEVLINK_PARAM_TYPE_BOOL = 4, -+}; -+ -+union devlink_param_value { -+ u8 vu8; -+ u16 vu16; -+ u32 vu32; -+ char vstr[32]; -+ bool vbool; -+}; -+ -+struct devlink_param_gset_ctx { -+ union devlink_param_value val; -+ enum devlink_param_cmode cmode; -+}; -+ -+struct devlink_flash_notify { -+ const char *status_msg; -+ const char *component; -+ long unsigned int done; -+ long unsigned int total; -+ long unsigned int timeout; -+}; -+ -+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 *); -+ 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; -+ bool published; -+}; -+ -+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_MAX = 11, -+ DEVLINK_PARAM_GENERIC_ID_MAX = 10, -+}; -+ -+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 **); -+ 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 **); -+ void *priv; -+}; -+ -+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; -+ struct mutex dump_lock; -+ 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; -+ refcount_t refcount; -+}; -+ -+struct devlink_fmsg { -+ struct list_head item_list; -+ bool putting_binary; -+}; -+ -+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_MAX = 92, -+ DEVLINK_TRAP_GENERIC_ID_MAX = 91, -+}; -+ -+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_MAX = 26, -+ DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 25, -+}; -+ -+struct devlink_info_req { -+ struct sk_buff *msg; -+}; -+ -+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; -+ u32 __data_loc_input_dev_name; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_devlink_hwmsg { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 buf; -+}; -+ -+struct trace_event_data_offsets_devlink_hwerr { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+ u32 msg; -+}; -+ -+struct trace_event_data_offsets_devlink_health_recover_aborted { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_health_reporter_state_update { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 reporter_name; -+}; -+ -+struct trace_event_data_offsets_devlink_trap_report { -+ u32 bus_name; -+ u32 dev_name; -+ u32 driver_name; -+ u32 trap_name; -+ u32 trap_group_name; -+ u32 input_dev_name; -+}; -+ -+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 *); -+ -+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; -+}; -+ -+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 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; -+}; -+ -+enum devlink_multicast_groups { -+ DEVLINK_MCGRP_CONFIG = 0, -+}; -+ -+struct devlink_reload_combination { -+ enum devlink_reload_action action; -+ enum devlink_reload_limit limit; -+}; -+ -+struct devlink_fmsg_item { -+ struct list_head list; -+ int attrtype; -+ u8 nla_type; -+ u16 len; -+ int value[0]; -+}; -+ -+struct devlink_stats { -+ u64 rx_bytes; -+ u64 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; -+}; -+ -+struct gro_cell; -+ -+struct gro_cells { -+ struct gro_cell *cells; -+}; -+ -+struct gro_cell { -+ struct sk_buff_head napi_skbs; -+ struct napi_struct napi; -+}; -+ -+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, -+}; -+ -+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; -+ raw_spinlock_t lock; -+ long: 32; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+ raw_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; -+ long: 32; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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); -+ -+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); -+ -+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; -+ }; -+}; -+ -+struct compat_cmsghdr { -+ compat_size_t cmsg_len; -+ compat_int_t cmsg_level; -+ compat_int_t cmsg_type; -+}; -+ -+struct nvmem_cell___2; -+ -+struct fch_hdr { -+ __u8 daddr[6]; -+ __u8 saddr[6]; -+}; -+ -+struct fcllc { -+ __u8 dsap; -+ __u8 ssap; -+ __u8 llc; -+ __u8 protid[3]; -+ __be16 ethertype; -+}; -+ -+enum macvlan_mode { -+ MACVLAN_MODE_PRIVATE = 1, -+ MACVLAN_MODE_VEPA = 2, -+ MACVLAN_MODE_BRIDGE = 4, -+ MACVLAN_MODE_PASSTHRU = 8, -+ MACVLAN_MODE_SOURCE = 16, -+}; -+ -+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]; -+}; -+ -+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_MAX = 16, -+}; -+ -+struct vlan_pcpu_stats { -+ u64 rx_packets; -+ u64 rx_bytes; -+ u64 rx_multicast; -+ u64 tx_packets; -+ u64 tx_bytes; -+ struct u64_stats_sync syncp; -+ u32 rx_errors; -+ u32 tx_dropped; -+}; -+ -+struct netpoll___2; -+ -+struct skb_array { -+ struct ptr_ring ring; -+}; -+ -+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; -+ 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 netpoll___2 *netpoll; -+}; -+ -+struct psched_ratecfg { -+ u64 rate_bytes_ps; -+ u32 mult; -+ u16 overhead; -+ u8 linklayer; -+ u8 shift; -+}; -+ -+struct psched_pktrate { -+ u64 rate_pkts_ps; -+ u32 mult; -+ u8 shift; -+}; -+ -+struct mini_Qdisc_pair { -+ struct mini_Qdisc miniq1; -+ struct mini_Qdisc miniq2; -+ struct mini_Qdisc **p_miniq; -+}; -+ -+struct pfifo_fast_priv { -+ struct skb_array q[3]; -+}; -+ -+struct tc_qopt_offload_stats { -+ struct gnet_stats_basic_packed *bstats; -+ struct gnet_stats_queue *qstats; -+}; -+ -+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 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 *); -+}; -+ -+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; -+ struct hlist_node hnode; -+}; -+ -+struct Qdisc_class_hash { -+ struct hlist_head *hash; -+ unsigned int hashsize; -+ unsigned int hashmask; -+ unsigned int hashelems; -+}; -+ -+struct qdisc_watchdog { -+ u64 last_expires; -+ struct hrtimer timer; -+ struct Qdisc *qdisc; -+}; -+ -+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 net_xmit_qdisc_t { -+ __NET_XMIT_STOLEN = 65536, -+ __NET_XMIT_BYPASS = 131072, -+}; -+ -+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_MAX = 10, -+}; -+ -+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 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_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; -+ struct gnet_stats_basic_packed tcfa_bstats; -+ struct gnet_stats_basic_packed tcfa_bstats_hw; -+ struct gnet_stats_queue tcfa_qstats; -+ struct net_rate_estimator *tcfa_rate_est; -+ spinlock_t tcfa_lock; -+ struct gnet_stats_basic_cpu *cpu_bstats; -+ struct gnet_stats_basic_cpu *cpu_bstats_hw; -+ struct gnet_stats_queue *cpu_qstats; -+ struct tc_cookie *act_cookie; -+ struct tcf_chain *goto_chain; -+ u32 tcfa_flags; -+ u8 hw_stats; -+ u8 used_hw_stats; -+ bool used_hw_stats_valid; -+}; -+ -+typedef void (*tc_action_priv_destructor)(void *); -+ -+struct tc_action_ops { -+ struct list_head head; -+ char kind[16]; -+ enum tca_id 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 **, int, int, bool, 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 *); -+}; -+ -+struct tc_cookie { -+ u8 *data; -+ u32 len; -+ struct callback_head rcu; -+}; -+ -+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 { -+ __u32 type; -+ int nr_actions; -+ struct tc_action **actions; -+ struct net *net; -+ int action; -+ int police; -+}; -+ -+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 { -+ struct tc_action common; -+ unsigned char tcfp_nkeys; -+ unsigned char tcfp_flags; -+ struct tc_pedit_key *tcfp_keys; -+ struct tcf_pedit_key_ex *tcfp_keys_ex; -+}; -+ -+struct tcf_mirred { -+ struct tc_action common; -+ int tcfm_eaction; -+ bool tcfm_mac_header_xmit; -+ struct net_device *tcfm_dev; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_vlan_params { -+ int tcfv_action; -+ unsigned char tcfv_push_dst[6]; -+ unsigned char tcfv_push_src[6]; -+ u16 tcfv_push_vid; -+ __be16 tcfv_push_proto; -+ u8 tcfv_push_prio; -+ bool tcfv_push_prio_exists; -+ struct callback_head rcu; -+}; -+ -+struct tcf_vlan { -+ struct tc_action common; -+ struct tcf_vlan_params *vlan_p; -+}; -+ -+struct tcf_tunnel_key_params { -+ struct callback_head rcu; -+ int tcft_action; -+ struct metadata_dst *tcft_enc_metadata; -+}; -+ -+struct tcf_tunnel_key { -+ struct tc_action common; -+ struct tcf_tunnel_key_params *params; -+}; -+ -+struct tcf_csum_params { -+ u32 update_flags; -+ struct callback_head rcu; -+}; -+ -+struct tcf_csum { -+ struct tc_action common; -+ struct tcf_csum_params *params; -+}; -+ -+struct tcf_gact { -+ struct tc_action common; -+ u16 tcfg_ptype; -+ u16 tcfg_pval; -+ int tcfg_paction; -+ atomic_t packets; -+}; -+ -+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; -+ 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; -+}; -+ -+struct tcf_sample { -+ struct tc_action common; -+ u32 rate; -+ bool truncate; -+ u32 trunc_size; -+ struct psample_group *psample_group; -+ u32 psample_group_num; -+ struct list_head tcfm_list; -+}; -+ -+struct tcf_skbedit_params { -+ u32 flags; -+ u32 priority; -+ u32 mark; -+ u32 mask; -+ u16 queue_mapping; -+ u16 ptype; -+ struct callback_head rcu; -+}; -+ -+struct tcf_skbedit { -+ struct tc_action common; -+ struct tcf_skbedit_params *params; -+}; -+ -+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; -+}; -+ -+struct tcf_ct_flow_table; -+ -+struct tcf_ct_params { -+ struct nf_conn *tmpl; -+ u16 zone; -+ u32 mark; -+ u32 mark_mask; -+ u32 labels[4]; -+ u32 labels_mask[4]; -+ struct nf_nat_range2 range; -+ bool ipv4_range; -+ u16 ct_action; -+ struct callback_head rcu; -+ struct tcf_ct_flow_table *ct_ft; -+ struct nf_flowtable *nf_ft; -+}; -+ -+struct tcf_ct { -+ struct tc_action common; -+ struct tcf_ct_params *params; -+}; -+ -+struct tcf_mpls_params { -+ int tcfm_action; -+ u32 tcfm_label; -+ u8 tcfm_tc; -+ u8 tcfm_ttl; -+ u8 tcfm_bos; -+ __be16 tcfm_proto; -+ struct callback_head rcu; -+}; -+ -+struct tcf_mpls { -+ struct tc_action common; -+ struct tcf_mpls_params *mpls_p; -+}; -+ -+struct tcfg_gate_entry { -+ int index; -+ u8 gate_state; -+ u32 interval; -+ s32 ipv; -+ s32 maxoctets; -+ struct list_head list; -+}; -+ -+struct tcf_gate_params { -+ s32 tcfg_priority; -+ u64 tcfg_basetime; -+ u64 tcfg_cycletime; -+ u64 tcfg_cycletime_ext; -+ u32 tcfg_flags; -+ s32 tcfg_clockid; -+ size_t num_entries; -+ struct list_head entries; -+}; -+ -+struct tcf_gate { -+ struct tc_action common; -+ struct tcf_gate_params param; -+ u8 current_gate_status; -+ ktime_t current_close_time; -+ u32 current_entry_octets; -+ s32 current_max_octets; -+ struct tcfg_gate_entry *next_entry; -+ struct hrtimer hitimer; -+ enum tk_offsets tk_offset; -+}; -+ -+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 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_MAX = 5, -+}; -+ -+struct tc_action_net { -+ struct tcf_idrinfo *idrinfo; -+ const struct tc_action_ops *ops; -+}; -+ -+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_FQ_CODEL_UNSPEC = 0, -+ TCA_FQ_CODEL_TARGET = 1, -+ TCA_FQ_CODEL_LIMIT = 2, -+ TCA_FQ_CODEL_INTERVAL = 3, -+ TCA_FQ_CODEL_ECN = 4, -+ TCA_FQ_CODEL_FLOWS = 5, -+ TCA_FQ_CODEL_QUANTUM = 6, -+ TCA_FQ_CODEL_CE_THRESHOLD = 7, -+ TCA_FQ_CODEL_DROP_BATCH_SIZE = 8, -+ TCA_FQ_CODEL_MEMORY_LIMIT = 9, -+ __TCA_FQ_CODEL_MAX = 10, -+}; -+ -+enum { -+ TCA_FQ_CODEL_XSTATS_QDISC = 0, -+ TCA_FQ_CODEL_XSTATS_CLASS = 1, -+}; -+ -+struct tc_fq_codel_qd_stats { -+ __u32 maxpacket; -+ __u32 drop_overlimit; -+ __u32 ecn_mark; -+ __u32 new_flow_count; -+ __u32 new_flows_len; -+ __u32 old_flows_len; -+ __u32 ce_mark; -+ __u32 memory_usage; -+ __u32 drop_overmemory; -+}; -+ -+struct tc_fq_codel_cl_stats { -+ __s32 deficit; -+ __u32 ldelay; -+ __u32 count; -+ __u32 lastcount; -+ __u32 dropping; -+ __s32 drop_next; -+}; -+ -+struct tc_fq_codel_xstats { -+ __u32 type; -+ union { -+ struct tc_fq_codel_qd_stats qdisc_stats; -+ struct tc_fq_codel_cl_stats class_stats; -+ }; -+}; -+ -+typedef u32 codel_time_t; -+ -+typedef s32 codel_tdiff_t; -+ -+struct codel_params { -+ codel_time_t target; -+ codel_time_t ce_threshold; -+ codel_time_t interval; -+ u32 mtu; -+ bool ecn; -+}; -+ -+struct codel_vars { -+ u32 count; -+ u32 lastcount; -+ bool dropping; -+ u16 rec_inv_sqrt; -+ codel_time_t first_above_time; -+ codel_time_t drop_next; -+ codel_time_t ldelay; -+}; -+ -+struct codel_stats { -+ u32 maxpacket; -+ u32 drop_count; -+ u32 drop_len; -+ u32 ecn_mark; -+ u32 ce_mark; -+}; -+ -+typedef u32 (*codel_skb_len_t)(const struct sk_buff *); -+ -+typedef codel_time_t (*codel_skb_time_t)(const struct sk_buff *); -+ -+typedef void (*codel_skb_drop_t)(struct sk_buff *, void *); -+ -+typedef struct sk_buff * (*codel_skb_dequeue_t)(struct codel_vars *, void *); -+ -+struct codel_skb_cb { -+ codel_time_t enqueue_time; -+ unsigned int mem_usage; -+}; -+ -+struct fq_codel_flow { -+ struct sk_buff *head; -+ struct sk_buff *tail; -+ struct list_head flowchain; -+ int deficit; -+ struct codel_vars cvars; -+}; -+ -+struct fq_codel_sched_data { -+ struct tcf_proto *filter_list; -+ struct tcf_block *block; -+ struct fq_codel_flow *flows; -+ u32 *backlogs; -+ u32 flows_cnt; -+ u32 quantum; -+ u32 drop_batch_size; -+ u32 memory_limit; -+ struct codel_params cparams; -+ struct codel_stats cstats; -+ u32 memory_usage; -+ u32 drop_overmemory; -+ u32 drop_overlimit; -+ u32 new_flow_count; -+ struct list_head new_flows; -+ struct list_head old_flows; -+}; -+ -+enum { -+ TCA_CGROUP_UNSPEC = 0, -+ TCA_CGROUP_ACT = 1, -+ TCA_CGROUP_POLICE = 2, -+ TCA_CGROUP_EMATCHES = 3, -+ __TCA_CGROUP_MAX = 4, -+}; -+ -+struct tcf_ematch_tree {}; -+ -+struct cls_cgroup_head { -+ u32 handle; -+ struct tcf_exts exts; -+ struct tcf_ematch_tree ematches; -+ struct tcf_proto *tp; -+ struct rcu_work rwork; -+}; -+ -+struct sockaddr_nl { -+ __kernel_sa_family_t nl_family; -+ short unsigned int nl_pad; -+ __u32 nl_pid; -+ __u32 nl_groups; -+}; -+ -+struct nlmsgerr { -+ int error; -+ struct nlmsghdr msg; -+}; -+ -+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_MAX = 5, -+ NLMSGERR_ATTR_MAX = 4, -+}; -+ -+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; -+}; -+ -+typedef void (*btf_trace_netlink_extack)(void *, const char *); -+ -+struct netlink_sock { -+ struct sock sk; -+ u32 portid; -+ u32 dst_portid; -+ u32 dst_group; -+ u32 flags; -+ 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 *cb_mutex; -+ struct mutex cb_def_mutex; -+ void (*netlink_rcv)(struct sk_buff *); -+ int (*netlink_bind)(struct net *, int); -+ void (*netlink_unbind)(struct net *, int); -+ struct module *module; -+ struct rhash_head node; -+ struct callback_head rcu; -+ struct work_struct work; -+}; -+ -+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); -+ bool (*compare)(struct net *, struct sock *); -+ 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 { -+ 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_start_context { -+ const struct genl_family *family; -+ struct nlmsghdr *nlh; -+ struct netlink_ext_ack *extack; -+ const struct genl_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; -+ unsigned int opidx; -+ u32 op; -+ u16 fam_id; -+ u8 policies: 1; -+ u8 single_op: 1; -+}; -+ -+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, -+}; -+ -+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___2 { -+ unsigned int policy_idx; -+ unsigned int attr_idx; -+ unsigned int n_alloc; -+ struct { -+ const struct nla_policy *policy; -+ unsigned int maxtype; -+ } policies[0]; -+}; -+ -+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, -+}; -+ -+struct trace_event_raw_bpf_test_finish { -+ struct trace_entry ent; -+ int err; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_bpf_test_finish {}; -+ -+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 bpf_fentry_test_t { -+ struct bpf_fentry_test_t *a; -+}; -+ -+struct bpf_raw_tp_test_run_info { -+ struct bpf_prog *prog; -+ void *ctx; -+ u32 retval; -+}; -+ -+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_id { -+ ETHTOOL_ID_UNSPEC = 0, -+ ETHTOOL_RX_COPYBREAK = 1, -+ ETHTOOL_TX_COPYBREAK = 2, -+ ETHTOOL_PFC_PREVENTION_TOUT = 3, -+ __ETHTOOL_TUNABLE_COUNT = 4, -+}; -+ -+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, -+}; -+ -+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 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 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 rsvd8[3]; -+ __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]; -+}; -+ -+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]; -+}; -+ -+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, -+}; -+ -+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)); -+ -+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, -+}; -+ -+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_link_usettings { -+ struct ethtool_link_settings base; -+ struct { -+ __u32 supported[3]; -+ __u32 advertising[3]; -+ __u32 lp_advertising[3]; -+ } 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; -+ long: 48; -+}; -+ -+struct ethtool_rx_flow_match { -+ struct flow_dissector dissector; -+ int: 32; -+ struct ethtool_rx_flow_key key; -+ struct ethtool_rx_flow_key mask; -+}; -+ -+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 link_mode_info { -+ int speed; -+ u8 lanes; -+ u8 duplex; -+}; -+ -+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_USER_CNT = 34, -+ ETHTOOL_MSG_USER_MAX = 33, -+}; -+ -+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_CNT = 4, -+ ETHTOOL_A_HEADER_MAX = 3, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_LINKMODES_MAX = 9, -+}; -+ -+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_CNT = 7, -+ ETHTOOL_A_LINKSTATE_MAX = 6, -+}; -+ -+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_CNT = 10, -+ ETHTOOL_A_RINGS_MAX = 9, -+}; -+ -+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_CNT = 24, -+ ETHTOOL_A_COALESCE_MAX = 23, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_PAUSE_MAX = 5, -+}; -+ -+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_CNT = 6, -+ ETHTOOL_A_TSINFO_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_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_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_multicast_groups { -+ ETHNL_MCGRP_MONITOR = 0, -+}; -+ -+struct ethnl_req_info { -+ struct net_device *dev; -+ u32 flags; -+}; -+ -+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; -+ 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 *, 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 *); -+}; -+ -+struct ethnl_dump_ctx { -+ const struct ethnl_request_ops *ops; -+ struct ethnl_req_info *req_info; -+ struct ethnl_reply_data *reply_data; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); -+ -+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, -+}; -+ -+typedef const char (* const ethnl_string_array_t)[32]; -+ -+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[21]; -+}; -+ -+struct linkinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+}; -+ -+struct linkmodes_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_link_ksettings ksettings; -+ struct ethtool_link_settings *lsettings; -+ bool peer_empty; -+}; -+ -+struct linkstate_reply_data { -+ struct ethnl_reply_data base; -+ int link; -+ int sqi; -+ int sqi_max; -+ bool link_ext_state_provided; -+ struct ethtool_link_ext_state_info ethtool_link_ext_state_info; -+}; -+ -+struct debug_reply_data { -+ struct ethnl_reply_data base; -+ u32 msg_mask; -+}; -+ -+struct wol_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_wolinfo wol; -+ bool show_sopass; -+}; -+ -+struct features_reply_data { -+ struct ethnl_reply_data base; -+ u32 hw[2]; -+ u32 wanted[2]; -+ u32 active[2]; -+ u32 nochange[2]; -+ u32 all[2]; -+}; -+ -+struct privflags_reply_data { -+ struct ethnl_reply_data base; -+ const char (*priv_flag_names)[32]; -+ unsigned int n_priv_flags; -+ u32 priv_flags; -+}; -+ -+struct rings_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ringparam ringparam; -+}; -+ -+struct channels_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_channels channels; -+}; -+ -+struct coalesce_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_coalesce coalesce; -+ u32 supported_params; -+}; -+ -+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_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_pauseparam pauseparam; -+ struct ethtool_pause_stats pausestat; -+}; -+ -+struct eee_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_eee eee; -+}; -+ -+struct tsinfo_reply_data { -+ struct ethnl_reply_data base; -+ struct ethtool_ts_info ts_info; -+}; -+ -+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_RESULT_UNSPEC = 0, -+ ETHTOOL_A_CABLE_RESULT_PAIR = 1, -+ ETHTOOL_A_CABLE_RESULT_CODE = 2, -+ __ETHTOOL_A_CABLE_RESULT_CNT = 3, -+ ETHTOOL_A_CABLE_RESULT_MAX = 2, -+}; -+ -+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_CNT = 3, -+ ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 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_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 { -+ 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, -+}; -+ -+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, -+}; -+ -+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_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 *); -+}; -+ -+struct ethnl_tunnel_info_dump_ctx { -+ struct ethnl_req_info req_info; -+ int pos_hash; -+ int pos_idx; -+}; -+ -+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; -+}; -+ -+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_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 = 4, -+}; -+ -+struct stats_req_info { -+ struct ethnl_req_info base; -+ long unsigned int stat_mask[1]; -+}; -+ -+struct stats_reply_data { -+ struct ethnl_reply_data base; -+ 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; -+ const struct ethtool_rmon_hist_range *rmon_ranges; -+}; -+ -+struct phc_vclocks_reply_data { -+ struct ethnl_reply_data base; -+ int num; -+ int *index; -+}; -+ -+struct nf_hook_entries_rcu_head { -+ struct callback_head head; -+ void *allocation; -+}; -+ -+struct nf_conn___2; -+ -+enum nf_nat_manip_type; -+ -+struct nf_nat_hook { -+ int (*parse_nat_setup)(struct nf_conn___2 *, enum nf_nat_manip_type, const struct nlattr *); -+ void (*decode_session)(struct sk_buff *, struct flowi *); -+ unsigned int (*manip_pkt)(struct sk_buff *, struct nf_conn___2 *, enum nf_nat_manip_type, enum ip_conntrack_dir); -+}; -+ -+struct nf_conntrack_tuple___2; -+ -+struct nf_ct_hook { -+ int (*update)(struct net *, struct sk_buff *); -+ void (*destroy)(struct nf_conntrack *); -+ bool (*get_tuple_skb)(struct nf_conntrack_tuple___2 *, const struct sk_buff *); -+}; -+ -+struct nfnl_ct_hook { -+ size_t (*build_size)(const struct nf_conn___2 *); -+ int (*build)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, u_int16_t, u_int16_t); -+ int (*parse)(const struct nlattr *, struct nf_conn___2 *); -+ int (*attach_expect)(const struct nlattr *, struct nf_conn___2 *, u32, u32); -+ void (*seq_adjust)(struct sk_buff *, struct nf_conn___2 *, enum ip_conntrack_info, s32); -+}; -+ -+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_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; -+}; -+ -+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 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; -+ __u16 frag_max_size; -+ struct net_device *physindev; -+ 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; -+}; -+ -+struct ip6_rt_info { -+ struct in6_addr daddr; -+ struct in6_addr saddr; -+ u_int32_t mark; -+}; -+ -+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 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_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_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_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 xt_error_target { -+ struct xt_entry_target target; -+ char errorname[30]; -+}; -+ -+struct xt_counters { -+ __u64 pcnt; -+ __u64 bcnt; -+}; -+ -+struct xt_counters_info { -+ char name[32]; -+ unsigned int num_counters; -+ struct xt_counters counters[0]; -+}; -+ -+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 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; -+ int (*table_init)(struct net *); -+ 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 xt_percpu_counter_alloc_state { -+ unsigned int off; -+ const char *mem; -+}; -+ -+struct xt_pernet { -+ struct list_head tables[13]; -+}; -+ -+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, -+}; -+ -+struct xt_tcp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 option; -+ __u8 flg_mask; -+ __u8 flg_cmp; -+ __u8 invflags; -+}; -+ -+struct xt_udp { -+ __u16 spts[2]; -+ __u16 dpts[2]; -+ __u8 invflags; -+}; -+ -+struct ip_mreqn { -+ struct in_addr imr_multiaddr; -+ struct in_addr imr_address; -+ int imr_ifindex; -+}; -+ -+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 rtvia { -+ __kernel_sa_family_t rtvia_family; -+ __u8 rtvia_addr[0]; -+}; -+ -+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; -+}; -+ -+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 fib_rt_info { -+ struct fib_info *fi; -+ u32 tb_id; -+ __be32 dst; -+ int dst_len; -+ u8 tos; -+ u8 type; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+}; -+ -+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 fib_alias { -+ struct hlist_node fa_list; -+ struct fib_info *fa_info; -+ u8 fa_tos; -+ u8 fa_type; -+ u8 fa_state; -+ u8 fa_slen; -+ u32 tb_id; -+ s16 fa_default; -+ u8 offload: 1; -+ u8 trap: 1; -+ u8 offload_failed: 1; -+ u8 unused: 5; -+ struct callback_head rcu; -+}; -+ -+struct fib_prop { -+ int error; -+ u8 scope; -+}; -+ -+struct net_offload { -+ struct offload_callbacks callbacks; -+ unsigned int flags; -+}; -+ -+struct raw_hashinfo { -+ rwlock_t lock; -+ struct hlist_head ht[256]; -+}; -+ -+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_FRAG_FIRST_IN = 1, -+ INET_FRAG_LAST_IN = 2, -+ INET_FRAG_COMPLETE = 4, -+ INET_FRAG_HASH_DEAD = 8, -+}; -+ -+struct ipq { -+ struct inet_frag_queue q; -+ u8 ecn; -+ u16 max_df_size; -+ int iif; -+ unsigned int rid; -+ struct inet_peer *peer; -+}; -+ -+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 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; -+}; -+ -+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; -+ __be32 imsf_slist[1]; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+}; -+ -+struct in_pktinfo { -+ int ipi_ifindex; -+ struct in_addr ipi_spec_dst; -+ struct in_addr ipi_addr; -+}; -+ -+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 { -+ __u32 gf_interface; -+ struct __kernel_sockaddr_storage gf_group; -+ __u32 gf_fmode; -+ __u32 gf_numsrc; -+ struct __kernel_sockaddr_storage gf_slist[1]; -+} __attribute__((packed)); -+ -+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 { -+ 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_MAX_STATES = 13, -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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; -+}; -+ -+struct tcp_md5sig_pool { -+ struct ahash_request *md5_req; -+ void *scratch; -+}; -+ -+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 { -+ TCP_CMSG_INQ = 1, -+ TCP_CMSG_TS = 2, -+}; -+ -+struct tcp_splice_state { -+ struct pipe_inode_info *pipe; -+ size_t len; -+ unsigned int flags; -+}; -+ -+enum tcp_fastopen_client_fail { -+ TFO_STATUS_UNSPEC = 0, -+ TFO_COOKIE_UNAVAILABLE = 1, -+ TFO_DATA_NOT_ACKED = 2, -+ TFO_SYN_RETRANSMITTED = 3, -+}; -+ -+struct tcp_sack_block_wire { -+ __be32 start_seq; -+ __be32 end_seq; -+}; -+ -+struct static_key_false_deferred { -+ struct static_key_false key; -+ long unsigned int timeout; -+ struct delayed_work work; -+}; -+ -+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; -+}; -+ -+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, -+}; -+ -+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 pkt_hash_types { -+ PKT_HASH_TYPE_NONE = 0, -+ PKT_HASH_TYPE_L2 = 1, -+ PKT_HASH_TYPE_L3 = 2, -+ PKT_HASH_TYPE_L4 = 3, -+}; -+ -+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, -+}; -+ -+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_out_options { -+ u16 suboptions; -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 ahmac; -+ struct mptcp_addr_info addr; -+ 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; -+ u32 nonce; -+ u64 thmac; -+ u32 token; -+ u8 hmac[20]; -+ struct mptcp_ext ext_copy; -+}; -+ -+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 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 icmp_err { -+ int errno; -+ unsigned int fatal: 1; -+}; -+ -+enum tcp_tw_status { -+ TCP_TW_SUCCESS = 0, -+ TCP_TW_RST = 1, -+ TCP_TW_ACK = 2, -+ TCP_TW_SYN = 3, -+}; -+ -+struct tcp4_pseudohdr { -+ __be32 saddr; -+ __be32 daddr; -+ __u8 pad; -+ __u8 protocol; -+ __be16 len; -+}; -+ -+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; -+ struct tcp_seq_afinfo *bpf_seq_afinfo; -+ int bucket; -+ int offset; -+ int sbucket; -+ int num; -+ loff_t last_pos; -+}; -+ -+struct bpf_iter__tcp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct sock_common *sk_common; -+ }; -+ uid_t uid; -+}; -+ -+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; -+ possible_net_t 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 icmp_filter { -+ __u32 data; -+}; -+ -+struct raw_iter_state { -+ struct seq_net_private p; -+ int bucket; -+}; -+ -+struct raw_sock { -+ struct inet_sock inet; -+ struct icmp_filter filter; -+ u32 ipmr_table; -+}; -+ -+struct raw_frag_vec { -+ struct msghdr *msg; -+ union { -+ struct icmphdr icmph; -+ char c[1]; -+ } hdr; -+ int hlen; -+}; -+ -+struct ip_tunnel_encap { -+ u16 type; -+ u16 flags; -+ __be16 sport; -+ __be16 dport; -+}; -+ -+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 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; -+ struct udp_seq_afinfo *bpf_seq_afinfo; -+}; -+ -+struct bpf_iter__udp { -+ union { -+ struct bpf_iter_meta *meta; -+ }; -+ union { -+ struct udp_sock *udp_sk; -+ }; -+ uid_t uid; -+ int: 32; -+ int bucket; -+}; -+ -+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; -+}; -+ -+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 *); -+ -+typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); -+ -+struct arpreq { -+ struct sockaddr arp_pa; -+ struct sockaddr arp_ha; -+ int arp_flags; -+ struct sockaddr arp_netmask; -+ char arp_dev[16]; -+}; -+ -+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, -+}; -+ -+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 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 { -+ bool (*handler)(struct sk_buff *); -+ short int error; -+}; -+ -+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_MAX = 11, -+}; -+ -+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 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 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 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 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 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; -+}; -+ -+struct fib_config { -+ u8 fc_dst_len; -+ u8 fc_tos; -+ 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_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 fib_dump_filter { -+ u32 table_id; -+ bool filter_set; -+ bool dump_routes; -+ bool dump_exceptions; -+ unsigned char protocol; -+ unsigned char rt_type; -+ unsigned int flags; -+ struct net_device *dev; -+}; -+ -+struct fib_nh_notifier_info { -+ struct fib_notifier_info info; -+ struct fib_nh *fib_nh; -+}; -+ -+struct fib_entry_notifier_info { -+ struct fib_notifier_info info; -+ u32 dst; -+ int dst_len; -+ struct fib_info *fi; -+ u8 tos; -+ 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 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 ipfrag_skb_cb { -+ union { -+ struct inet_skb_parm h4; -+ struct inet6_skb_parm h6; -+ }; -+ struct sk_buff *next_frag; -+ int frag_run_len; -+}; -+ -+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 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_nulls_head hash[64]; -+ rwlock_t lock; -+}; -+ -+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 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 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 resvd1; -+ __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_MAX = 14, -+}; -+ -+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, -+}; -+ -+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; -+ 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, -+}; -+ -+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, -+}; -+ -+struct nh_notifier_single_info { -+ struct net_device *dev; -+ u8 gw_family; -+ union { -+ __be32 ipv4; -+ struct in6_addr ipv6; -+ }; -+ u8 is_reject: 1; -+ u8 is_fdb: 1; -+ u8 has_encap: 1; -+}; -+ -+struct nh_notifier_grp_entry_info { -+ u8 weight; -+ u32 id; -+ struct nh_notifier_single_info nh; -+}; -+ -+struct nh_notifier_grp_info { -+ u16 num_nh; -+ bool is_fdb; -+ 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; -+ struct nh_notifier_single_info nhs[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_dump_filter { -+ u32 nh_id; -+ int dev_idx; -+ int master_idx; -+ bool group_filter; -+ bool fdb_filter; -+ u32 res_bucket_nh_id; -+}; -+ -+struct rtm_dump_nh_ctx { -+ u32 idx; -+}; -+ -+struct rtm_dump_res_bucket_ctx { -+ struct rtm_dump_nh_ctx nh; -+ u16 bucket_index; -+ u32 done_nh_idx; -+}; -+ -+struct rtm_dump_nexthop_bucket_data { -+ struct rtm_dump_res_bucket_ctx *ctx; -+ struct nh_dump_filter filter; -+}; -+ -+struct inet6_protocol { -+ void (*early_demux)(struct sk_buff *); -+ void (*early_demux_handler)(struct sk_buff *); -+ int (*handler)(struct sk_buff *); -+ int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -+ unsigned int flags; -+}; -+ -+struct snmp_mib { -+ const char *name; -+ int entry; -+}; -+ -+struct fib4_rule { -+ struct fib_rule common; -+ u8 dst_len; -+ u8 src_len; -+ u8 tos; -+ __be32 src; -+ __be32 srcmask; -+ __be32 dst; -+ __be32 dstmask; -+ u32 tclassid; -+}; -+ -+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_device { -+ struct net_device *dev; -+ 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; -+ long unsigned int bytes; -+ long unsigned int pkt; -+ long unsigned int 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 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 ipmr_result { -+ struct mr_table *mrt; -+}; -+ -+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 rta_mfc_stats { -+ __u64 mfcs_packets; -+ __u64 mfcs_bytes; -+ __u64 mfcs_wrong_if; -+}; -+ -+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 { -+ __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_req_v2 { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 pad; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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; -+}; -+ -+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; -+}; -+ -+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_handler { -+ 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 bpf_sk_storage_diag___2; -+ -+struct inet_diag_dump_data { -+ struct nlattr *req_nlas[4]; -+ struct bpf_sk_storage_diag___2 *bpf_stg_diag; -+}; -+ -+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; -+}; -+ -+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 tcp_diag_md5sig { -+ __u8 tcpm_family; -+ __u8 tcpm_prefixlen; -+ __u16 tcpm_keylen; -+ __be32 tcpm_addr[4]; -+ __u8 tcpm_key[80]; -+}; -+ -+struct inet_diag_req_raw { -+ __u8 sdiag_family; -+ __u8 sdiag_protocol; -+ __u8 idiag_ext; -+ __u8 sdiag_raw_protocol; -+ __u32 idiag_states; -+ struct inet_diag_sockid id; -+}; -+ -+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 tls_rec { -+ struct list_head list; -+ int tx_ready; -+ int tx_flags; -+ struct sk_msg msg_plaintext; -+ struct sk_msg msg_encrypted; -+ struct scatterlist sg_aead_in[2]; -+ struct scatterlist sg_aead_out[2]; -+ char content_type; -+ struct scatterlist sg_content_type; -+ char aad_space[13]; -+ u8 iv_data[16]; -+ struct aead_request aead_req; -+ u8 aead_req_ctx[0]; -+}; -+ -+struct tx_work { -+ struct delayed_work work; -+ struct sock *sk; -+}; -+ -+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; -+ spinlock_t encrypt_compl_lock; -+ int async_notify; -+ 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_NUM_CFGS = 2, -+}; -+ -+enum { -+ UDP_BPF_IPV4 = 0, -+ UDP_BPF_IPV6 = 1, -+ UDP_BPF_NUM_PROTS = 2, -+}; -+ -+struct netlbl_audit { -+ u32 secid; -+ kuid_t loginuid; -+ unsigned int sessionid; -+}; -+ -+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 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; -+}; -+ -+struct xfrm_policy_afinfo { -+ struct dst_ops *dst_ops; -+ struct dst_entry * (*dst_lookup)(struct net *, int, int, const xfrm_address_t *, const xfrm_address_t *, u32); -+ int (*get_saddr)(struct net *, int, xfrm_address_t *, xfrm_address_t *, u32); -+ int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); -+ struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); -+}; -+ -+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 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_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 xfrm_input_afinfo { -+ u8 family; -+ bool is_ipip; -+ int (*callback)(struct sk_buff *, u8, int); -+}; -+ -+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; -+}; -+ -+typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); -+ -+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 xfrm_if; -+ -+struct xfrm_if_cb { -+ struct xfrm_if * (*decode_session)(struct sk_buff *, short unsigned int); -+}; -+ -+struct xfrm_if_parms { -+ int link; -+ u32 if_id; -+}; -+ -+struct xfrm_if { -+ struct xfrm_if *next; -+ struct net_device *dev; -+ struct net *net; -+ struct xfrm_if_parms p; -+ struct gro_cells gro_cells; -+}; -+ -+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 xfrmk_spdinfo { -+ u32 incnt; -+ u32 outcnt; -+ u32 fwdcnt; -+ u32 inscnt; -+ u32 outscnt; -+ u32 fwdscnt; -+ u32 spdhcnt; -+ u32 spdhmcnt; -+}; -+ -+struct ip6_mh { -+ __u8 ip6mh_proto; -+ __u8 ip6mh_hdrlen; -+ __u8 ip6mh_type; -+ __u8 ip6mh_reserved; -+ __u16 ip6mh_cksum; -+ __u8 data[0]; -+}; -+ -+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]; -+}; -+ -+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_MODE_FLAG_TUNNEL = 1, -+}; -+ -+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_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 ip_beet_phdr { -+ __u8 nexthdr; -+ __u8 hdrlen; -+ __u8 padlen; -+ __u8 reserved; -+}; -+ -+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 { -+ struct ip_tunnel *next; -+ struct hlist_node hash_node; -+ struct net_device *dev; -+ struct net *net; -+ long unsigned int err_time; -+ int err_count; -+ u32 i_seqno; -+ u32 o_seqno; -+ int tun_hlen; -+ u32 index; -+ u8 erspan_ver; -+ u8 dir; -+ u16 hwid; -+ struct dst_cache dst_cache; -+ struct ip_tunnel_parm 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 __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; -+ __be16 i_flags; -+ __be16 o_flags; -+ __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; -+ 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; -+ __u32 o_seqno; -+ int hlen; -+ int tun_hlen; -+ int encap_hlen; -+ struct ip_tunnel_encap encap; -+ int mlink; -+}; -+ -+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 ip_tunnel_prl_entry { -+ struct ip_tunnel_prl_entry *next; -+ __be32 addr; -+ u16 flags; -+ struct callback_head callback_head; -+}; -+ -+struct xfrm_trans_tasklet { -+ struct tasklet_struct tasklet; -+ 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 xfrm_user_offload { -+ int ifindex; -+ __u8 flags; -+}; -+ -+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_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 xfrm_algo_list { -+ struct xfrm_algo_desc *algs; -+ int entries; -+ u32 type; -+ u32 mask; -+}; -+ -+struct xfrm_aead_name { -+ const char *name; -+ int icvbits; -+}; -+ -+enum { -+ XFRM_SHARE_ANY = 0, -+ XFRM_SHARE_SESSION = 1, -+ XFRM_SHARE_USER = 2, -+ XFRM_SHARE_UNIQUE = 3, -+}; -+ -+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; -+}; -+ -+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_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 **); -+ 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; -+}; -+ -+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 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 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 ipv6_params { -+ __s32 disable_ipv6; -+ __s32 autoconf; -+}; -+ -+enum flowlabel_reflect { -+ FLOWLABEL_REFLECT_ESTABLISHED = 1, -+ FLOWLABEL_REFLECT_TCP_RESET = 2, -+ FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, -+}; -+ -+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 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; -+}; -+ -+struct ac6_iter_state { -+ struct seq_net_private p; -+ struct net_device *dev; -+ struct inet6_dev *idev; -+}; -+ -+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; -+ __s8 dontfrag; -+ struct ipv6_txoptions *opt; -+ __u16 gso_size; -+}; -+ -+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_MAX = 9, -+}; -+ -+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 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 promiscuous_mode; -+ bool ackreq; -+}; -+ -+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_MAX = 53, -+}; -+ -+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, -+}; -+ -+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; -+ u32 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; -+ u8 symbol_duration; -+ u16 lifs_period; -+ u16 sifs_period; -+ struct device dev; -+ possible_net_t _net; -+ long: 64; -+ long: 64; -+ long: 64; -+ char priv[0]; -+}; -+ -+struct ieee802154_addr { -+ u8 mode; -+ __le16 pan_id; -+ union { -+ __le16 short_addr; -+ __le64 extended_addr; -+ }; -+}; -+ -+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; -+ __be16 fifo_hi; -+ __be32 fifo_lo; -+ } uc; -+}; -+ -+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; -+ const struct in6_addr *peer_pfx; -+ u32 rt_priority; -+ u32 ifa_flags; -+ u32 preferred_lft; -+ u32 valid_lft; -+ u16 scope; -+}; -+ -+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 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 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 rd_msg { -+ struct icmp6hdr icmph; -+ struct in6_addr target; -+ struct in6_addr dest; -+ __u8 opt[0]; -+}; -+ -+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 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; -+}; -+ -+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; -+ u32 __data_loc_name; -+ __u8 gw[16]; -+ char __data[0]; -+}; -+ -+struct trace_event_data_offsets_fib6_table_lookup { -+ u32 name; -+}; -+ -+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 = 4294967293, -+ RT6_NUD_FAIL_PROBE = 4294967294, -+ RT6_NUD_FAIL_DO_RR = 4294967295, -+ 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; -+}; -+ -+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_device *dev; -+ 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; -+}; -+ -+enum fib6_walk_state { -+ FWS_L = 0, -+ FWS_R = 1, -+ FWS_C = 2, -+ FWS_U = 3, -+}; -+ -+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 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 ip6_mtuinfo { -+ struct sockaddr_in6 ip6m_addr; -+ __u32 ip6m_mtu; -+}; -+ -+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 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 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 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; -+}; -+ -+typedef int mh_filter_t(struct sock *, struct sk_buff *); -+ -+struct raw6_frag_vec { -+ struct msghdr *msg; -+ int hlen; -+ char c[4]; -+}; -+ -+struct ipv6_destopt_hao { -+ __u8 type; -+ __u8 length; -+ struct in6_addr addr; -+} __attribute__((packed)); -+ -+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 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 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 tcp6_pseudohdr { -+ struct in6_addr saddr; -+ struct in6_addr daddr; -+ __be32 len; -+ __be32 protocol; -+}; -+ -+struct rt0_hdr { -+ struct ipv6_rt_hdr rt_hdr; -+ __u32 reserved; -+ struct in6_addr addr[0]; -+}; -+ -+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 in6_addr addr[0]; -+ __u8 data[0]; -+ } segments; -+}; -+ -+struct tlvtype_proc { -+ int type; -+ bool (*func)(struct sk_buff *, int); -+}; -+ -+struct ip6fl_iter_state { -+ struct seq_net_private p; -+ struct pid_namespace *pid_ns; -+ int bucket; -+}; -+ -+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, -+}; -+ -+typedef short unsigned int mifi_t; -+ -+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 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 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 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 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; -+ int offload_fwd_mark; -+}; -+ -+struct nf_bridge_frag_data; -+ -+struct fib6_rule { -+ struct fib_rule common; -+ struct rt6key src; -+ struct rt6key dst; -+ u8 tclass; -+}; -+ -+struct calipso_doi; -+ -+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)(); -+ int (*cache_add)(const unsigned char *, const struct netlbl_lsm_secattr *); -+}; -+ -+struct calipso_doi { -+ u32 doi; -+ u32 type; -+ refcount_t refcount; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+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 { -+ IP6_FH_F_FRAG = 1, -+ IP6_FH_F_AUTH = 2, -+ IP6_FH_F_SKIP_RH = 4, -+}; -+ -+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 virtio_net_hdr { -+ __u8 flags; -+ __u8 gso_type; -+ __virtio16 hdr_len; -+ __virtio16 gso_size; -+ __virtio16 csum_start; -+ __virtio16 csum_offset; -+}; -+ -+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]; -+}; -+ -+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; -+ unsigned int running; -+ unsigned int auxdata: 1; -+ unsigned int origdev: 1; -+ unsigned int has_vnet_hdr: 1; -+ unsigned int tp_loss: 1; -+ unsigned int tp_tx_has_off: 1; -+ int pressure; -+ int ifindex; -+ __be16 num; -+ struct packet_rollover *rollover; -+ struct packet_mclist *mclist; -+ atomic_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; -+ int (*xmit)(struct sk_buff *); -+ struct packet_type prot_hook; -+ atomic_t tp_drops; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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 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 _strp_msg { -+ struct strp_msg strp; -+ int accum_len; -+}; -+ -+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; -+ 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_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; -+ 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; -+}; -+ -+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; -+ u16 family; -+ struct netlbl_dommap_def def; -+ u32 valid; -+ struct list_head list; -+ struct callback_head rcu; -+}; -+ -+struct netlbl_domhsh_tbl { -+ struct list_head *tbl; -+ u32 size; -+}; -+ -+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 { -+ struct netlink_callback *nl_cb; -+ struct sk_buff *skb; -+ u32 seq; -+}; -+ -+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 { -+ 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; -+}; -+ -+struct netlbl_domhsh_walk_arg___2 { -+ struct netlbl_audit *audit_info; -+ u32 doi; -+}; -+ -+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 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_IEEE_MAX = 11, -+}; -+ -+enum ieee_attrs_app { -+ DCB_ATTR_IEEE_APP_UNSPEC = 0, -+ DCB_ATTR_IEEE_APP = 1, -+ __DCB_ATTR_IEEE_APP_MAX = 2, -+}; -+ -+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_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 *); -+}; -+ -+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 switchdev_attr_id { -+ SWITCHDEV_ATTR_ID_UNDEFINED = 0, -+ SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, -+ SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 2, -+ SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 3, -+ SWITCHDEV_ATTR_ID_PORT_MROUTER = 4, -+ SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 5, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 6, -+ SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 7, -+ SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 8, -+ SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 9, -+ SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 10, -+}; -+ -+struct switchdev_brport_flags { -+ long unsigned int val; -+ long unsigned int mask; -+}; -+ -+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_brport_flags brport_flags; -+ bool mrouter; -+ clock_t ageing_time; -+ bool vlan_filtering; -+ u16 vlan_protocol; -+ bool mc_disabled; -+ u8 mrp_port_role; -+ } u; -+}; -+ -+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 *); -+}; -+ -+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, -+}; -+ -+struct switchdev_notifier_info { -+ struct net_device *dev; -+ struct netlink_ext_ack *extack; -+ const void *ctx; -+}; -+ -+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; -+}; -+ -+typedef void switchdev_deferred_func_t(struct net_device *, const void *); -+ -+struct switchdev_deferred_item { -+ struct list_head list; -+ struct net_device *dev; -+ switchdev_deferred_func_t *func; -+ long unsigned int data[0]; -+}; -+ -+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 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; -+}; -+ -+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_desc { -+ __u64 addr; -+ __u32 len; -+ __u32 options; -+}; -+ -+struct xsk_map { -+ struct bpf_map map; -+ spinlock_t lock; -+ struct xdp_sock *xsk_map[0]; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+}; -+ -+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; -+}; -+ -+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: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 pad1; -+ long: 32; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ long: 64; -+ u32 consumer; -+ long: 32; -+ 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: 32; -+ 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 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; -+ bool dma_need_sync; -+}; -+ -+struct mptcp_mib { -+ long unsigned int mibs[37]; -+}; -+ -+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, -+}; -+ -+struct mptcp_options_received { -+ u64 sndr_key; -+ u64 rcvr_key; -+ u64 data_ack; -+ u64 data_seq; -+ u32 subflow_seq; -+ u16 data_len; -+ __sum16 csum; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 fastclose: 1; -+ u16 reset: 1; -+ u16 dss: 1; -+ u16 add_addr: 1; -+ u16 rm_addr: 1; -+ u16 mp_prio: 1; -+ u16 echo: 1; -+ u16 csum_reqd: 1; -+ u16 backup: 1; -+ u16 deny_join_id0: 1; -+ u32 token; -+ u32 nonce; -+ u64 thmac; -+ u8 hmac[20]; -+ u8 join_id; -+ u8 use_map: 1; -+ u8 dsn64: 1; -+ u8 data_fin: 1; -+ u8 use_ack: 1; -+ u8 ack64: 1; -+ u8 mpc_map: 1; -+ u8 __unused: 2; -+ struct mptcp_addr_info addr; -+ struct mptcp_rm_list rm_list; -+ u64 ahmac; -+ u8 reset_reason: 4; -+ u8 reset_transient: 1; -+}; -+ -+struct mptcp_pm_data { -+ struct mptcp_addr_info local; -+ struct mptcp_addr_info remote; -+ struct list_head anno_list; -+ spinlock_t lock; -+ 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 subflows; -+ u8 status; -+ struct mptcp_rm_list rm_list_tx; -+ struct mptcp_rm_list rm_list_rx; -+}; -+ -+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_sock { -+ struct inet_connection_sock sk; -+ u64 local_key; -+ u64 remote_key; -+ u64 write_seq; -+ u64 snd_nxt; -+ u64 ack_seq; -+ u64 rcv_wnd_sent; -+ u64 rcv_data_fin_seq; -+ int wmem_reserved; -+ struct sock *last_snd; -+ int snd_burst; -+ int old_wspace; -+ u64 snd_una; -+ u64 wnd_end; -+ long unsigned int timer_ival; -+ u32 token; -+ int rmem_released; -+ long unsigned int flags; -+ 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; -+ spinlock_t join_list_lock; -+ struct work_struct work; -+ struct sk_buff *ooo_last_skb; -+ struct rb_root out_of_order_queue; -+ struct sk_buff_head receive_queue; -+ int tx_pending_data; -+ struct list_head conn_list; -+ struct list_head rtx_queue; -+ struct mptcp_data_frag *first_pending; -+ struct list_head join_list; -+ struct socket *subflow; -+ struct sock *first; -+ struct mptcp_pm_data pm; -+ struct { -+ u32 space; -+ u32 copied; -+ u64 time; -+ u64 rtt_us; -+ } rcvq_space; -+ u32 setsockopt_seq; -+ char ca_name[16]; -+}; -+ -+struct mptcp_subflow_request_sock { -+ struct tcp_request_sock sk; -+ u16 mp_capable: 1; -+ u16 mp_join: 1; -+ u16 backup: 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; -+}; -+ -+enum mptcp_data_avail { -+ MPTCP_SUBFLOW_NODATA = 0, -+ MPTCP_SUBFLOW_DATA_AVAIL = 1, -+}; -+ -+struct mptcp_delegated_action { -+ struct napi_struct napi; -+ struct list_head head; -+}; -+ -+struct mptcp_subflow_context { -+ struct list_head node; -+ u64 local_key; -+ u64 remote_key; -+ u64 idsn; -+ u64 map_seq; -+ 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 fully_established: 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 rx_eof: 1; -+ u32 can_ack: 1; -+ u32 disposable: 1; -+ enum mptcp_data_avail data_avail; -+ u32 remote_nonce; -+ u64 thmac; -+ u32 local_nonce; -+ u32 remote_token; -+ u8 hmac[20]; -+ u8 local_id; -+ u8 remote_id; -+ u8 reset_seen: 1; -+ u8 reset_transient: 1; -+ u8 reset_reason: 4; -+ long int delegated_status; -+ struct list_head delegated_node; -+ u32 setsockopt_seq; -+ struct sock *tcp_sock; -+ struct sock *conn; -+ const struct inet_connection_sock_af_ops *icsk_af_ops; -+ void (*tcp_data_ready)(struct sock *); -+ void (*tcp_state_change)(struct sock *); -+ void (*tcp_write_space)(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_TOKENFALLBACKINIT = 7, -+ MPTCP_MIB_RETRANSSEGS = 8, -+ MPTCP_MIB_JOINNOTOKEN = 9, -+ MPTCP_MIB_JOINSYNRX = 10, -+ MPTCP_MIB_JOINSYNACKRX = 11, -+ MPTCP_MIB_JOINSYNACKMAC = 12, -+ MPTCP_MIB_JOINACKRX = 13, -+ MPTCP_MIB_JOINACKMAC = 14, -+ MPTCP_MIB_DSSNOMATCH = 15, -+ MPTCP_MIB_INFINITEMAPRX = 16, -+ MPTCP_MIB_DSSTCPMISMATCH = 17, -+ MPTCP_MIB_DATACSUMERR = 18, -+ MPTCP_MIB_OFOQUEUETAIL = 19, -+ MPTCP_MIB_OFOQUEUE = 20, -+ MPTCP_MIB_OFOMERGE = 21, -+ MPTCP_MIB_NODSSWINDOW = 22, -+ MPTCP_MIB_DUPDATA = 23, -+ MPTCP_MIB_ADDADDR = 24, -+ MPTCP_MIB_ECHOADD = 25, -+ MPTCP_MIB_PORTADD = 26, -+ MPTCP_MIB_JOINPORTSYNRX = 27, -+ MPTCP_MIB_JOINPORTSYNACKRX = 28, -+ MPTCP_MIB_JOINPORTACKRX = 29, -+ MPTCP_MIB_MISMATCHPORTSYNRX = 30, -+ MPTCP_MIB_MISMATCHPORTACKRX = 31, -+ MPTCP_MIB_RMADDR = 32, -+ MPTCP_MIB_RMSUBFLOW = 33, -+ MPTCP_MIB_MPPRIOTX = 34, -+ MPTCP_MIB_MPPRIORX = 35, -+ MPTCP_MIB_RCVPRUNED = 36, -+ __MPTCP_MIB_MAX = 37, -+}; -+ -+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; -+ 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_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 mptcp_skb_cb { -+ u64 map_seq; -+ u64 end_seq; -+ u32 offset; -+ u8 has_rxtstamp: 1; -+}; -+ -+enum { -+ MPTCP_CMSG_TS = 1, -+}; -+ -+struct mptcp_sendmsg_info { -+ int mss_now; -+ int size_goal; -+ u16 limit; -+ u16 sent; -+ unsigned int flags; -+}; -+ -+struct subflow_send_info { -+ struct sock *ssk; -+ u64 ratio; -+}; -+ -+struct csum_pseudo_header { -+ __be64 data_seq; -+ __be32 subflow_seq; -+ __be16 data_len; -+ __sum16 csum; -+}; -+ -+enum mapping_status { -+ MAPPING_OK = 0, -+ MAPPING_INVALID = 1, -+ MAPPING_EMPTY = 2, -+ MAPPING_DATA_FIN = 3, -+ MAPPING_DUMMY = 4, -+}; -+ -+enum mptcp_addr_signal_status { -+ MPTCP_ADD_ADDR_SIGNAL = 0, -+ MPTCP_ADD_ADDR_ECHO = 1, -+ MPTCP_ADD_ADDR_IPV6 = 2, -+ MPTCP_ADD_ADDR_PORT = 3, -+ MPTCP_RM_ADDR_SIGNAL = 4, -+}; -+ -+struct mptcp_pm_add_entry; -+ -+struct token_bucket { -+ spinlock_t lock; -+ int chain_len; -+ struct hlist_nulls_head req_chain; -+ struct hlist_nulls_head msk_chain; -+}; -+ -+struct mptcp_pernet { -+ struct ctl_table_header *ctl_table_hdr; -+ u8 mptcp_enabled; -+ unsigned int add_addr_timeout; -+ u8 checksum_enabled; -+ u8 allow_join_initial_addr_port; -+}; -+ -+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_ALREADY_ESTABLISHED = 4, -+ MPTCP_PM_SUBFLOW_ESTABLISHED = 5, -+}; -+ -+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, -+}; -+ -+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_MAX = 4, -+}; -+ -+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_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_AFTER_LAST = 8, -+}; -+ -+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_AFTER_LAST = 18, -+}; -+ -+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___2 { -+ struct list_head list; -+ struct mptcp_addr_info addr; -+ struct timer_list add_timer; -+ struct mptcp_sock *sock; -+ u8 retrans_times; -+}; -+ -+struct pm_nl_pernet { -+ spinlock_t lock; -+ struct list_head local_addr_list; -+ unsigned int addrs; -+ 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]; -+}; -+ -+struct join_entry { -+ u32 token; -+ u32 remote_nonce; -+ u32 local_nonce; -+ u8 join_id; -+ u8 local_id; -+ u8 backup; -+ u8 valid; -+}; -+ -+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; -+}; -+ -+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_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 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 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)(); -+}; -+ -+typedef bool (*check_reserved_t)(u64, u64, enum e820_type); -+ -+struct xen_pci_frontend_ops { -+ int (*enable_msi)(struct pci_dev *, int *); -+ void (*disable_msi)(struct pci_dev *); -+ int (*enable_msix)(struct pci_dev *, int *, int); -+ void (*disable_msix)(struct pci_dev *); -+}; -+ -+struct xen_msi_ops { -+ int (*setup_msi_irqs)(struct pci_dev *, int, int); -+ void (*teardown_msi_irqs)(struct pci_dev *); -+}; -+ -+struct pci_root_info { -+ struct acpi_pci_root_info common; -+ struct pci_sysdata sd; -+ bool mcfg_added; -+ u8 start_bus; -+ u8 end_bus; -+}; -+ -+struct irq_info___3 { -+ 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___3 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); -+}; -+ -+struct irq_router_handler { -+ u16 vendor; -+ int (*probe)(struct irq_router *, struct pci_dev *, u16); -+}; -+ -+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]; -+}; -+ -+enum pci_bf_sort_state { -+ pci_bf_sort_default = 0, -+ pci_force_nobf = 1, -+ pci_force_bf = 2, -+ pci_dmi_bf = 3, -+}; -+ -+struct pci_root_res { -+ struct list_head list; -+ struct resource res; -+}; -+ -+struct pci_root_info___2 { -+ struct list_head list; -+ char name[12]; -+ struct list_head resources; -+ struct resource busn; -+ int node; -+ int link; -+}; -+ -+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; -+ bool misc_enable_saved; -+ 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; -+} __attribute__((packed)); -+ -+typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); -+ -+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; -+}; -+ -+#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -+#pragma clang attribute pop -+#endif -+ -+#endif /* __VMLINUX_H__ */ -commit b6150ec5d04a879476eab197c44a3be4ae195e8e -Author: Andreas Gerstmayr -Date: Fri Nov 19 15:57:27 2021 +0100 - - pmdabpf: runqlat: workaround for task->state field renaming - -diff --git a/src/pmdas/bpf/modules/core_fixes.bpf.h b/src/pmdas/bpf/modules/core_fixes.bpf.h -new file mode 100644 -index 000000000..aba06545e ---- /dev/null -+++ b/src/pmdas/bpf/modules/core_fixes.bpf.h -@@ -0,0 +1,31 @@ -+/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ -+/* Copyright (c) 2021 Hengqi Chen */ -+/* Copyright (c) 2021 Red Hat */ -+/* source: https://github.com/iovisor/bcc/blob/adf3a7970ce8ff66bf97d4841d2c178bfce541be/libbpf-tools/core_fixes.bpf.h */ -+ -+#ifndef CORE_FIXES_BPF_H -+#define CORE_FIXES_BPF_H -+ -+#include -+ -+/** -+ * commit 2f064a59a1 ("sched: Change task_struct::state") changes -+ * the name of task_struct::state to task_struct::__state -+ * see: -+ * https://github.com/torvalds/linux/commit/2f064a59a1 -+ */ -+struct task_struct__5_14 { -+ unsigned int __state; -+}; -+struct task_struct__prev { -+ unsigned int state; -+}; -+ -+static __s64 get_task_state(void *task) -+{ -+ if (bpf_core_field_exists(((struct task_struct__5_14 *)task)->__state)) -+ return ((struct task_struct__5_14 *)task)->__state; -+ return ((struct task_struct__prev *)task)->state; -+} -+ -+#endif /* CORE_FIXES_BPF_H */ -diff --git a/src/pmdas/bpf/modules/runqlat.bpf.c b/src/pmdas/bpf/modules/runqlat.bpf.c -index 57ee41b93..541b82c1b 100644 ---- a/src/pmdas/bpf/modules/runqlat.bpf.c -+++ b/src/pmdas/bpf/modules/runqlat.bpf.c -@@ -5,6 +5,7 @@ - // most of the branching configurable elements removed for the initial implementation - - #include "common.h" -+#include "core_fixes.bpf.h" - - #define MAX_ENTRIES 10240 - #define TASK_RUNNING 0 -@@ -57,7 +58,7 @@ int BPF_PROG(sched_swith, bool preempt, struct task_struct *prev, - u32 pid; - s64 delta; - -- if (prev->state == TASK_RUNNING) -+ if (get_task_state(prev) == TASK_RUNNING) - trace_enqueue(prev->tgid, prev->pid); - - pid = next->pid; diff --git a/SOURCES/redhat-bugzilla-2024982.patch b/SOURCES/redhat-bugzilla-2024982.patch deleted file mode 100644 index a027740..0000000 --- a/SOURCES/redhat-bugzilla-2024982.patch +++ /dev/null @@ -1,1433 +0,0 @@ -commit 14ffcd934e1c5099b471f4e73da32d1b32bac7e6 -Author: Andreas Gerstmayr -Date: Mon Dec 13 20:10:40 2021 +0100 - - pmdabcc: sync bcc PMDA modules with upstream bcc tools - -diff --git a/src/pmdas/bcc/modules/execsnoop.bpf b/src/pmdas/bcc/modules/execsnoop.bpf -index f69200773..aa755b3a1 100644 ---- a/src/pmdas/bcc/modules/execsnoop.bpf -+++ b/src/pmdas/bcc/modules/execsnoop.bpf -@@ -4,40 +4,57 @@ - #include - #include - #include -+ - #define ARGSIZE 128 -+ - enum event_type { - EVENT_ARG, - EVENT_RET, - }; -+ - struct data_t { - u32 pid; // PID as in the userspace term (i.e. task->tgid in kernel) - u32 ppid; // Parent PID as in the userspace term (i.e task->real_parent->tgid in kernel) -+ u32 uid; - char comm[TASK_COMM_LEN]; - enum event_type type; - char argv[ARGSIZE]; - int retval; - }; -+ - BPF_PERF_OUTPUT(events); -+ - static int __submit_arg(struct pt_regs *ctx, void *ptr, struct data_t *data) - { -- bpf_probe_read(data->argv, sizeof(data->argv), ptr); -+ bpf_probe_read_user(data->argv, sizeof(data->argv), ptr); - events.perf_submit(ctx, data, sizeof(struct data_t)); - return 1; - } -+ - static int submit_arg(struct pt_regs *ctx, void *ptr, struct data_t *data) - { - const char *argp = NULL; -- bpf_probe_read(&argp, sizeof(argp), ptr); -+ bpf_probe_read_user(&argp, sizeof(argp), ptr); - if (argp) { - return __submit_arg(ctx, (void *)(argp), data); - } - return 0; - } -+ - int syscall__execve(struct pt_regs *ctx, - const char __user *filename, - const char __user *const __user *__argv, - const char __user *const __user *__envp) - { -+ -+ u32 uid = bpf_get_current_uid_gid() & 0xffffffff; -+ -+ UID_FILTER -+ -+ if (container_should_be_filtered()) { -+ return 0; -+ } -+ - // create data here and pass to submit_arg to save stack space (#555) - struct data_t data = {}; - struct task_struct *task; -@@ -52,25 +69,37 @@ int syscall__execve(struct pt_regs *ctx, - - bpf_get_current_comm(&data.comm, sizeof(data.comm)); - data.type = EVENT_ARG; -+ - __submit_arg(ctx, (void *)filename, &data); -+ - // skip first arg, as we submitted filename - #pragma unroll - for (int i = 1; i < MAXARG; i++) { - if (submit_arg(ctx, (void *)&__argv[i], &data) == 0) - goto out; - } -+ - // handle truncated argument list - char ellipsis[] = "..."; - __submit_arg(ctx, (void *)ellipsis, &data); - out: - return 0; - } -+ - int do_ret_sys_execve(struct pt_regs *ctx) - { -+ if (container_should_be_filtered()) { -+ return 0; -+ } -+ - struct data_t data = {}; - struct task_struct *task; - -+ u32 uid = bpf_get_current_uid_gid() & 0xffffffff; -+ UID_FILTER -+ - data.pid = bpf_get_current_pid_tgid() >> 32; -+ data.uid = uid; - - task = (struct task_struct *)bpf_get_current_task(); - // Some kernels, like Ubuntu 4.13.0-generic, return 0 -@@ -82,5 +111,6 @@ int do_ret_sys_execve(struct pt_regs *ctx) - data.type = EVENT_RET; - data.retval = PT_REGS_RC(ctx); - events.perf_submit(ctx, &data, sizeof(data)); -+ - return 0; - } -diff --git a/src/pmdas/bcc/modules/execsnoop.python b/src/pmdas/bcc/modules/execsnoop.python -index 54382fa9b..1127cc471 100644 ---- a/src/pmdas/bcc/modules/execsnoop.python -+++ b/src/pmdas/bcc/modules/execsnoop.python -@@ -44,20 +44,6 @@ MODULE = 'execsnoop' - BASENS = 'proc.exec.' - units_none = pmUnits(0, 0, 0, 0, 0, 0) - --TASK_COMM_LEN = 16 # linux/sched.h --ARGSIZE = 128 # should match #define in execsnoop.bpf -- --class Data(ct.Structure): -- """ execsnoop data struct """ -- _fields_ = [ -- ("pid", ct.c_uint), -- ("ppid", ct.c_uint), -- ("comm", ct.c_char * TASK_COMM_LEN), -- ("type", ct.c_int), -- ("argv", ct.c_char * ARGSIZE), -- ("retval", ct.c_int), -- ] -- - class EventType(object): - """ Event type """ - EVENT_ARG = 0 -@@ -137,7 +123,7 @@ class PCPBCCModule(PCPBCCBase): - - def handle_event(self, _cpu, data, _size): - """ Event handler """ -- event = ct.cast(data, ct.POINTER(Data)).contents -+ event = self.bpf["events"].event(data) - skip = False - - if event.type == EventType.EVENT_ARG: -@@ -145,9 +131,9 @@ class PCPBCCModule(PCPBCCBase): - elif event.type == EventType.EVENT_RET: - if event.retval != 0 and not self.include_failed: - skip = True -- if self.command and not re.search(self.command, event.comm): -+ if self.command and not re.search(bytes(self.command), event.comm): - skip = True -- if self.args and not re.search(self.args, b" ".join(self.argv_cache[event.pid])): -+ if self.args and not re.search(bytes(self.args), b" ".join(self.argv_cache[event.pid])): - skip = True - - if not skip: -@@ -177,10 +163,14 @@ class PCPBCCModule(PCPBCCBase): - - self.bpf_text = self.bpf_text.replace("MAXARG", str(self.max_args)) - -+ bpf_text = self.bpf_text -+ bpf_text = bpf_text.replace('UID_FILTER', '') -+ bpf_text = bpf_text.replace('container_should_be_filtered()', '0') -+ - if self.debug: -- self.log("BPF to be compiled:\n" + self.bpf_text.strip()) -+ self.log("BPF to be compiled:\n" + bpf_text.strip()) - -- self.bpf = BPF(text=self.bpf_text) -+ self.bpf = BPF(text=bpf_text) - execve_fnname = self.get_syscall_fnname("execve") - self.bpf.attach_kprobe(event=execve_fnname, fn_name="syscall__execve") - self.bpf.attach_kretprobe(event=execve_fnname, fn_name="do_ret_sys_execve") -diff --git a/src/pmdas/bcc/modules/pcpbcc.python b/src/pmdas/bcc/modules/pcpbcc.python -index 0555dc33f..62783b7fc 100644 ---- a/src/pmdas/bcc/modules/pcpbcc.python -+++ b/src/pmdas/bcc/modules/pcpbcc.python -@@ -14,6 +14,7 @@ - """ PCP BCC PMDA module base class """ - - import re -+import platform - import ctypes as ct - from os import kill, listdir, path - from collections import OrderedDict -@@ -348,6 +349,16 @@ class PCPBCCBase(object): - """ Returns BCC version as an int tuple (for comparisons) """ - return tuple(map(int, PCPBCCBase.bcc_version().split('.'))) - -+ @staticmethod -+ def kernel_version(): -+ """Returns the kernel version""" -+ version_str = platform.release() -+ m = re.match(r'^(\d+)\.(\d+)\.(\d+)', version_str) -+ if m: -+ return tuple(map(int, m.groups())) -+ else: -+ return (0, 0, 0) -+ - def perf_buffer_poller(self): - """ BPF poller """ - try: -diff --git a/src/pmdas/bcc/modules/runqlat.python b/src/pmdas/bcc/modules/runqlat.python -index 27007c7e5..1c6c6b4b0 100644 ---- a/src/pmdas/bcc/modules/runqlat.python -+++ b/src/pmdas/bcc/modules/runqlat.python -@@ -30,7 +30,11 @@ from modules.pcpbcc import PCPBCCBase - # - # BPF program - # --bpf_src = "modules/runqlat.bpf" -+is_support_raw_tp = BPF.support_raw_tracepoint() -+if is_support_raw_tp: -+ bpf_src = "modules/runqlat_tp.bpf" -+else: -+ bpf_src = "modules/runqlat_kp.bpf" - - # - # PCP BCC PMDA constants -@@ -59,6 +63,7 @@ class PCPBCCModule(PCPBCCBase): - self.proc_filter = self.config.get(MODULE, opt) - self.update_pids(self.get_proc_info(self.proc_filter)) - -+ self.log("Using BPF source file %s." % bpf_src) - self.log("Initialized.") - - def metrics(self): -@@ -89,7 +94,23 @@ class PCPBCCModule(PCPBCCBase): - with open(path.dirname(__file__) + '/../' + bpf_src) as src: - self.bpf_text = src.read() - -+ # BPF.kernel_struct_has_field requires BCC v0.23.0 -+ # use kernel version check as alternative -+ # pylint: disable=no-member -+ if ( -+ hasattr(BPF, "kernel_struct_has_field") -+ and BPF.kernel_struct_has_field(b"task_struct", b"__state") == 1 -+ ) or self.kernel_version() >= (5, 14, 0): -+ self.bpf_text = self.bpf_text.replace('STATE_FIELD', '__state') -+ else: -+ self.bpf_text = self.bpf_text.replace('STATE_FIELD', 'state') -+ - self.bpf_text = self.bpf_text.replace("FILTER", "PID_CHECK") -+ self.bpf_text = self.bpf_text.replace('FACTOR', 'delta /= 1000;') -+ -+ self.bpf_text = self.bpf_text.replace('STORAGE', 'BPF_HISTOGRAM(dist);') -+ self.bpf_text = self.bpf_text.replace('STORE', -+ 'dist.increment(bpf_log2l(delta));') - - if not self.pids and self.proc_filter and self.proc_refresh: - self.log("No process to attach found, activation postponed.") -@@ -102,9 +123,11 @@ class PCPBCCModule(PCPBCCBase): - - self.reset_cache() - self.bpf = BPF(text=bpf_text) -- self.bpf.attach_kprobe(event="ttwu_do_wakeup", fn_name="trace_ttwu_do_wakeup") -- self.bpf.attach_kprobe(event="wake_up_new_task", fn_name="trace_wake_up_new_task") -- self.bpf.attach_kprobe(event_re=r"^finish_task_switch$|^finish_task_switch\.isra\.\d$", fn_name="trace_run") -+ if not is_support_raw_tp: -+ self.bpf.attach_kprobe(event="ttwu_do_wakeup", fn_name="trace_ttwu_do_wakeup") -+ self.bpf.attach_kprobe(event="wake_up_new_task", fn_name="trace_wake_up_new_task") -+ self.bpf.attach_kprobe(event_re=r"^finish_task_switch$|^finish_task_switch\.isra\.\d$", -+ fn_name="trace_run") - self.log("Compiled.") - except Exception as error: # pylint: disable=broad-except - self.bpf = None -diff --git a/src/pmdas/bcc/modules/runqlat.bpf b/src/pmdas/bcc/modules/runqlat_kp.bpf -similarity index 54% -rename from src/pmdas/bcc/modules/runqlat.bpf -rename to src/pmdas/bcc/modules/runqlat_kp.bpf -index a3664a035..dd643d600 100644 ---- a/src/pmdas/bcc/modules/runqlat.bpf -+++ b/src/pmdas/bcc/modules/runqlat_kp.bpf -@@ -5,6 +5,7 @@ - #include - #include - #include -+#include - - typedef struct pid_key { - u64 id; // work around -@@ -17,7 +18,7 @@ typedef struct pidns_key { - } pidns_key_t; - - BPF_HASH(start, u32); --BPF_HISTOGRAM(dist); -+STORAGE - - struct rq; - -@@ -31,6 +32,45 @@ static int trace_enqueue(u32 tgid, u32 pid) - return 0; - } - -+static __always_inline unsigned int pid_namespace(struct task_struct *task) -+{ -+ -+/* pids[] was removed from task_struct since commit 2c4704756cab7cfa031ada4dab361562f0e357c0 -+ * Using the macro INIT_PID_LINK as a conditional judgment. -+ */ -+#ifdef INIT_PID_LINK -+ struct pid_link pids; -+ unsigned int level; -+ struct upid upid; -+ struct ns_common ns; -+ -+ /* get the pid namespace by following task_active_pid_ns(), -+ * pid->numbers[pid->level].ns -+ */ -+ bpf_probe_read_kernel(&pids, sizeof(pids), &task->pids[PIDTYPE_PID]); -+ bpf_probe_read_kernel(&level, sizeof(level), &pids.pid->level); -+ bpf_probe_read_kernel(&upid, sizeof(upid), &pids.pid->numbers[level]); -+ bpf_probe_read_kernel(&ns, sizeof(ns), &upid.ns->ns); -+ -+ return ns.inum; -+#else -+ struct pid *pid; -+ unsigned int level; -+ struct upid upid; -+ struct ns_common ns; -+ -+ /* get the pid namespace by following task_active_pid_ns(), -+ * pid->numbers[pid->level].ns -+ */ -+ bpf_probe_read_kernel(&pid, sizeof(pid), &task->thread_pid); -+ bpf_probe_read_kernel(&level, sizeof(level), &pid->level); -+ bpf_probe_read_kernel(&upid, sizeof(upid), &pid->numbers[level]); -+ bpf_probe_read_kernel(&ns, sizeof(ns), &upid.ns->ns); -+ -+ return ns.inum; -+#endif -+} -+ - int trace_wake_up_new_task(struct pt_regs *ctx, struct task_struct *p) - { - return trace_enqueue(p->tgid, p->pid); -@@ -48,7 +88,7 @@ int trace_run(struct pt_regs *ctx, struct task_struct *prev) - u32 pid, tgid; - - // ivcsw: treat like an enqueue event and store timestamp -- if (prev->state == TASK_RUNNING) { -+ if (prev->STATE_FIELD == TASK_RUNNING) { - tgid = prev->tgid; - pid = prev->pid; - if (!(FILTER || pid == 0)) { -@@ -69,10 +109,10 @@ int trace_run(struct pt_regs *ctx, struct task_struct *prev) - return 0; // missed enqueue - } - delta = bpf_ktime_get_ns() - *tsp; -- delta /= 1000; -+ FACTOR - - // store as histogram -- dist.increment(bpf_log2l(delta)); -+ STORE - - start.delete(&pid); - return 0; -diff --git a/src/pmdas/bcc/modules/runqlat_tp.bpf b/src/pmdas/bcc/modules/runqlat_tp.bpf -new file mode 100644 -index 000000000..f0e9ce69b ---- /dev/null -+++ b/src/pmdas/bcc/modules/runqlat_tp.bpf -@@ -0,0 +1,124 @@ -+// Copyright 2016 Netflix, Inc. -+// Licensed under the Apache License, Version 2.0 (the "License") -+ -+#include -+#include -+#include -+#include -+#include -+ -+typedef struct pid_key { -+ u64 id; // work around -+ u64 slot; -+} pid_key_t; -+ -+typedef struct pidns_key { -+ u64 id; // work around -+ u64 slot; -+} pidns_key_t; -+ -+BPF_HASH(start, u32); -+STORAGE -+ -+struct rq; -+ -+// record enqueue timestamp -+static int trace_enqueue(u32 tgid, u32 pid) -+{ -+ if (FILTER || pid == 0) -+ return 0; -+ u64 ts = bpf_ktime_get_ns(); -+ start.update(&pid, &ts); -+ return 0; -+} -+ -+static __always_inline unsigned int pid_namespace(struct task_struct *task) -+{ -+ -+/* pids[] was removed from task_struct since commit 2c4704756cab7cfa031ada4dab361562f0e357c0 -+ * Using the macro INIT_PID_LINK as a conditional judgment. -+ */ -+#ifdef INIT_PID_LINK -+ struct pid_link pids; -+ unsigned int level; -+ struct upid upid; -+ struct ns_common ns; -+ -+ /* get the pid namespace by following task_active_pid_ns(), -+ * pid->numbers[pid->level].ns -+ */ -+ bpf_probe_read_kernel(&pids, sizeof(pids), &task->pids[PIDTYPE_PID]); -+ bpf_probe_read_kernel(&level, sizeof(level), &pids.pid->level); -+ bpf_probe_read_kernel(&upid, sizeof(upid), &pids.pid->numbers[level]); -+ bpf_probe_read_kernel(&ns, sizeof(ns), &upid.ns->ns); -+ -+ return ns.inum; -+#else -+ struct pid *pid; -+ unsigned int level; -+ struct upid upid; -+ struct ns_common ns; -+ -+ /* get the pid namespace by following task_active_pid_ns(), -+ * pid->numbers[pid->level].ns -+ */ -+ bpf_probe_read_kernel(&pid, sizeof(pid), &task->thread_pid); -+ bpf_probe_read_kernel(&level, sizeof(level), &pid->level); -+ bpf_probe_read_kernel(&upid, sizeof(upid), &pid->numbers[level]); -+ bpf_probe_read_kernel(&ns, sizeof(ns), &upid.ns->ns); -+ -+ return ns.inum; -+#endif -+} -+ -+RAW_TRACEPOINT_PROBE(sched_wakeup) -+{ -+ // TP_PROTO(struct task_struct *p) -+ struct task_struct *p = (struct task_struct *)ctx->args[0]; -+ return trace_enqueue(p->tgid, p->pid); -+} -+ -+RAW_TRACEPOINT_PROBE(sched_wakeup_new) -+{ -+ // TP_PROTO(struct task_struct *p) -+ struct task_struct *p = (struct task_struct *)ctx->args[0]; -+ return trace_enqueue(p->tgid, p->pid); -+} -+ -+RAW_TRACEPOINT_PROBE(sched_switch) -+{ -+ // TP_PROTO(bool preempt, struct task_struct *prev, struct task_struct *next) -+ struct task_struct *prev = (struct task_struct *)ctx->args[1]; -+ struct task_struct *next = (struct task_struct *)ctx->args[2]; -+ u32 pid, tgid; -+ -+ // ivcsw: treat like an enqueue event and store timestamp -+ if (prev->STATE_FIELD == TASK_RUNNING) { -+ tgid = prev->tgid; -+ pid = prev->pid; -+ if (!(FILTER || pid == 0)) { -+ u64 ts = bpf_ktime_get_ns(); -+ start.update(&pid, &ts); -+ } -+ } -+ -+ tgid = next->tgid; -+ pid = next->pid; -+ if (FILTER || pid == 0) -+ return 0; -+ u64 *tsp, delta; -+ -+ // fetch timestamp and calculate delta -+ tsp = start.lookup(&pid); -+ if (tsp == 0) { -+ return 0; // missed enqueue -+ } -+ delta = bpf_ktime_get_ns() - *tsp; -+ FACTOR -+ -+ // store as histogram -+ STORE -+ -+ start.delete(&pid); -+ return 0; -+} -diff --git a/src/pmdas/bcc/modules/tcplife.python b/src/pmdas/bcc/modules/tcplife.python -index 0c6f17c36..02c693a6a 100644 ---- a/src/pmdas/bcc/modules/tcplife.python -+++ b/src/pmdas/bcc/modules/tcplife.python -@@ -37,16 +37,11 @@ from modules.pcpbcc import PCPBCCBase - # - # BPF program - # --bpf_src = "modules/tcplife.bpf" --# Compat with kernel < 4.16, bcc < 0.6 --TRACEFS = "/sys/kernel/debug/tracing" --bpf_src_old_tp = "modules/tcplife_old_tp.bpf" --bpf_src_old_kb = "modules/tcplife_old_kb.bpf" --if not path.exists(TRACEFS + "/events/sock/inet_sock_set_state"): -- if path.exists(TRACEFS + "/events/tcp/tcp_set_state"): -- bpf_src = bpf_src_old_tp -- else: -- bpf_src = bpf_src_old_kb -+if BPF.tracepoint_exists("sock", "inet_sock_set_state"): -+ bpf_src = "modules/tcplife_tp.bpf" -+else: -+ bpf_src = "modules/tcplife_kp.bpf" -+ - - # - # PCP BCC PMDA constants -@@ -57,35 +52,6 @@ units_bytes = pmUnits(1, 0, 0, PM_SPACE_BYTE, 0, 0) - units_usecs = pmUnits(0, 1, 0, 0, PM_TIME_USEC, 0) - units_none = pmUnits(0, 0, 0, 0, 0, 0) - --TASK_COMM_LEN = 16 # linux/sched.h -- --class Data_ipv4(ct.Structure): -- """ IPv4 data struct """ -- _fields_ = [ -- ("ts_us", ct.c_ulonglong), -- ("pid", ct.c_ulonglong), -- ("saddr", ct.c_ulonglong), -- ("daddr", ct.c_ulonglong), -- ("ports", ct.c_ulonglong), -- ("rx_b", ct.c_ulonglong), -- ("tx_b", ct.c_ulonglong), -- ("span_us", ct.c_ulonglong), -- ("task", ct.c_char * TASK_COMM_LEN) -- ] -- --class Data_ipv6(ct.Structure): -- """ IPv6 data struct """ -- _fields_ = [ -- ("ts_us", ct.c_ulonglong), -- ("pid", ct.c_ulonglong), -- ("saddr", (ct.c_ulonglong * 2)), -- ("daddr", (ct.c_ulonglong * 2)), -- ("ports", ct.c_ulonglong), -- ("rx_b", ct.c_ulonglong), -- ("tx_b", ct.c_ulonglong), -- ("span_us", ct.c_ulonglong), -- ("task", ct.c_char * TASK_COMM_LEN) -- ] - - # - # PCP BCC Module -@@ -129,24 +95,22 @@ class PCPBCCModule(PCPBCCBase): - self.lock = Lock() - self.thread = None - -- # Compat with kernel < 4.16 - self.log("Using BPF source file %s." % bpf_src) - - # Exit hard if impossible to continue -- if self.bcc_version() == "0.6.1" and bpf_src == bpf_src_old_kb: -- raise RuntimeError("BCC 0.6.1 bug makes it incompatible with this module " -- "on kernel < 4.15.") -+ if self.bcc_version_tuple() < (0, 6, 1): -+ raise RuntimeError("BCC 0.6.1+ is required for this module.") - - self.log("Initialized.") - - def handle_ip_event(self, data, version): - """ IP event handler """ - if version == 4: -- event = ct.cast(data, ct.POINTER(Data_ipv4)).contents -+ event = self.bpf["ipv4_events"].event(data) - laddr = inet_ntop(AF_INET, pack("I", event.saddr)) - daddr = inet_ntop(AF_INET, pack("I", event.daddr)) - else: -- event = ct.cast(data, ct.POINTER(Data_ipv6)).contents -+ event = self.bpf["ipv6_events"].event(data) - laddr = inet_ntop(AF_INET6, event.saddr) - daddr = inet_ntop(AF_INET6, event.daddr) - -@@ -205,31 +169,25 @@ class PCPBCCModule(PCPBCCBase): - if not self.bpf_text: - with open(path.dirname(__file__) + '/../' + bpf_src) as src: - self.bpf_text = src.read() -- # Compat with bcc < 0.6 -- self.log("Testing BCC compatilibility, possible errors below are safe to ignore.") -- try: -- test_txt = self.bpf_text.replace("// NEW: ", "").replace("FILTER_PID", "") -- test_bpf = BPF(text=test_txt) -- test_bpf.cleanup() -- self.bpf_text = self.bpf_text.replace("// NEW: ", "") -- except Exception: # pylint: disable=broad-except -- self.bpf_text = self.bpf_text.replace("// OLD: ", "") -- self.log("Tested BCC compatilibility, possible errors above are safe to ignore.") - - if self.dports: - filterp = " && ".join(["dport != %d" % port for port in self.dports]) - filter_txt = "if (%s) { birth.delete(&sk); return 0; }" % filterp -- self.bpf_text = self.bpf_text.replace("//FILTER_DPORT", filter_txt) -+ self.bpf_text = self.bpf_text.replace("FILTER_DPORT", filter_txt) - if self.lports: - filterp = " && ".join(["lport != %d" % port for port in self.lports]) - filter_txt = "if (%s) { birth.delete(&sk); return 0; }" % filterp -- self.bpf_text = self.bpf_text.replace("//FILTER_LPORT", filter_txt) -+ self.bpf_text = self.bpf_text.replace("FILTER_LPORT", filter_txt) - - if not self.pids and self.proc_filter and self.proc_refresh: - self.log("No process to attach found, activation postponed.") - return - - bpf_text = self.apply_pid_filter(self.bpf_text, self.pids, False) -+ bpf_text = bpf_text.replace('FILTER_PID', '') -+ bpf_text = bpf_text.replace('FILTER_DPORT', '') -+ bpf_text = bpf_text.replace('FILTER_LPORT', '') -+ bpf_text = bpf_text.replace('FILTER_FAMILY', '') - - if self.debug: - self.log("BPF to be compiled:\n" + bpf_text.strip()) -diff --git a/src/pmdas/bcc/modules/tcplife_old_kb.bpf b/src/pmdas/bcc/modules/tcplife_kp.bpf -similarity index 81% -rename from src/pmdas/bcc/modules/tcplife_old_kb.bpf -rename to src/pmdas/bcc/modules/tcplife_kp.bpf -index eed01941a..5486c6a37 100644 ---- a/src/pmdas/bcc/modules/tcplife_old_kb.bpf -+++ b/src/pmdas/bcc/modules/tcplife_kp.bpf -@@ -2,7 +2,6 @@ - // Licensed under the Apache License, Version 2.0 (the "License") - - #include --#define KBUILD_MODNAME "pcpbcctcplife" - #include - #include - #include -@@ -11,11 +10,10 @@ BPF_HASH(birth, struct sock *, u64); - - // separate data structs for ipv4 and ipv6 - struct ipv4_data_t { -- // XXX: switch some to u32's when supported - u64 ts_us; -- u64 pid; -- u64 saddr; -- u64 daddr; -+ u32 pid; -+ u32 saddr; -+ u32 daddr; - u64 ports; - u64 rx_b; - u64 tx_b; -@@ -26,7 +24,7 @@ BPF_PERF_OUTPUT(ipv4_events); - - struct ipv6_data_t { - u64 ts_us; -- u64 pid; -+ u32 pid; - unsigned __int128 saddr; - unsigned __int128 daddr; - u64 ports; -@@ -49,12 +47,12 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - - // lport is either used in a filter here, or later - u16 lport = sk->__sk_common.skc_num; -- //FILTER_LPORT -+ FILTER_LPORT - - // dport is either used in a filter here, or later - u16 dport = sk->__sk_common.skc_dport; - dport = ntohs(dport); -- //FILTER_DPORT -+ FILTER_DPORT - - /* - * This tool includes PID and comm context. It's best effort, and may -@@ -74,6 +72,9 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - * sets ESTABLISHED without a tcp_set_state() call. Until we know - * that for sure, match all early states to increase chances a - * timestamp is set. -+ * Note that this needs to be set before the PID filter later on, -+ * since the PID isn't reliable for these early stages, so we must -+ * save all timestamps and do the PID filter later when we can. - */ - u64 ts = bpf_ktime_get_ns(); - birth.update(&sk, &ts); -@@ -101,7 +102,7 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - delta_us = (bpf_ktime_get_ns() - *tsp) / 1000; - birth.delete(&sk); - -- // fetch possible cached data -+ // fetch possible cached data, and filter - struct id_t *mep; - mep = whoami.lookup(&sk); - if (mep != 0) -@@ -116,9 +117,13 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - - u16 family = sk->__sk_common.skc_family; - -+ FILTER_FAMILY -+ - if (family == AF_INET) { -- struct ipv4_data_t data4 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -+ struct ipv4_data_t data4 = {}; -+ data4.span_us = delta_us; -+ data4.rx_b = rx_b; -+ data4.tx_b = tx_b; - data4.ts_us = bpf_ktime_get_ns() / 1000; - data4.saddr = sk->__sk_common.skc_rcv_saddr; - data4.daddr = sk->__sk_common.skc_daddr; -@@ -128,17 +133,19 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - if (mep == 0) { - bpf_get_current_comm(&data4.task, sizeof(data4.task)); - } else { -- bpf_probe_read(&data4.task, sizeof(data4.task), (void *)mep->task); -+ bpf_probe_read_kernel(&data4.task, sizeof(data4.task), (void *)mep->task); - } - ipv4_events.perf_submit(ctx, &data4, sizeof(data4)); - - } else /* 6 */ { -- struct ipv6_data_t data6 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -+ struct ipv6_data_t data6 = {}; -+ data6.span_us = delta_us; -+ data6.rx_b = rx_b; -+ data6.tx_b = tx_b; - data6.ts_us = bpf_ktime_get_ns() / 1000; -- bpf_probe_read(&data6.saddr, sizeof(data6.saddr), -+ bpf_probe_read_kernel(&data6.saddr, sizeof(data6.saddr), - sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32); -- bpf_probe_read(&data6.daddr, sizeof(data6.daddr), -+ bpf_probe_read_kernel(&data6.daddr, sizeof(data6.daddr), - sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32); - // a workaround until data6 compiles with separate lport/dport - data6.ports = dport + ((0ULL + lport) << 32); -@@ -146,7 +153,7 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int state) - if (mep == 0) { - bpf_get_current_comm(&data6.task, sizeof(data6.task)); - } else { -- bpf_probe_read(&data6.task, sizeof(data6.task), (void *)mep->task); -+ bpf_probe_read_kernel(&data6.task, sizeof(data6.task), (void *)mep->task); - } - ipv6_events.perf_submit(ctx, &data6, sizeof(data6)); - } -diff --git a/src/pmdas/bcc/modules/tcplife_old_tp.bpf b/src/pmdas/bcc/modules/tcplife_old_tp.bpf -deleted file mode 100644 -index a7c9c625c..000000000 ---- a/src/pmdas/bcc/modules/tcplife_old_tp.bpf -+++ /dev/null -@@ -1,166 +0,0 @@ --// Copyright 2016 Netflix, Inc. --// Licensed under the Apache License, Version 2.0 (the "License") -- --#include --#define KBUILD_MODNAME "pcpbcctcplife" --#include --#include --#include -- --BPF_HASH(birth, struct sock *, u64); -- --// separate data structs for ipv4 and ipv6 --struct ipv4_data_t { -- // XXX: switch some to u32's when supported -- u64 ts_us; -- u64 pid; -- u64 saddr; -- u64 daddr; -- u64 ports; -- u64 rx_b; -- u64 tx_b; -- u64 span_us; -- char task[TASK_COMM_LEN]; --}; --BPF_PERF_OUTPUT(ipv4_events); -- --struct ipv6_data_t { -- u64 ts_us; -- u64 pid; -- unsigned __int128 saddr; -- unsigned __int128 daddr; -- u64 ports; -- u64 rx_b; -- u64 tx_b; -- u64 span_us; -- char task[TASK_COMM_LEN]; --}; --BPF_PERF_OUTPUT(ipv6_events); -- --struct id_t { -- u32 pid; -- char task[TASK_COMM_LEN]; --}; --BPF_HASH(whoami, struct sock *, struct id_t); -- --TRACEPOINT_PROBE(tcp, tcp_set_state) --{ -- u32 pid = bpf_get_current_pid_tgid() >> 32; -- // sk is mostly used as a UUID, once for skc_family, and two tcp stats: -- struct sock *sk = (struct sock *)args->skaddr; -- -- // lport is either used in a filter here, or later -- u16 lport = args->sport; -- //FILTER_LPORT -- -- // dport is either used in a filter here, or later -- u16 dport = args->dport; -- //FILTER_DPORT -- -- /* -- * This tool includes PID and comm context. It's best effort, and may -- * be wrong in some situations. It currently works like this: -- * - record timestamp on any state < TCP_FIN_WAIT1 -- * - cache task context on: -- * TCP_SYN_SENT: tracing from client -- * TCP_LAST_ACK: client-closed from server -- * - do output on TCP_CLOSE: -- * fetch task context if cached, or use current task -- */ -- -- // capture birth time -- if (args->newstate < TCP_FIN_WAIT1) { -- /* -- * Matching just ESTABLISHED may be sufficient, provided no code-path -- * sets ESTABLISHED without a tcp_set_state() call. Until we know -- * that for sure, match all early states to increase chances a -- * timestamp is set. -- * Note that this needs to be set before the PID filter later on, -- * since the PID isn't reliable for these early stages, so we must -- * save all timestamps and do the PID filter later when we can. -- */ -- u64 ts = bpf_ktime_get_ns(); -- birth.update(&sk, &ts); -- } -- -- // record PID & comm on SYN_SENT -- if (args->newstate == TCP_SYN_SENT || args->newstate == TCP_LAST_ACK) { -- // now we can PID filter, both here and a little later on for CLOSE -- FILTER_PID -- struct id_t me = {.pid = pid}; -- bpf_get_current_comm(&me.task, sizeof(me.task)); -- whoami.update(&sk, &me); -- } -- -- if (args->newstate != TCP_CLOSE) -- return 0; -- -- // calculate lifespan -- u64 *tsp, delta_us; -- tsp = birth.lookup(&sk); -- if (tsp == 0) { -- whoami.delete(&sk); // may not exist -- return 0; // missed create -- } -- delta_us = (bpf_ktime_get_ns() - *tsp) / 1000; -- birth.delete(&sk); -- -- // fetch possible cached data, and filter -- struct id_t *mep; -- mep = whoami.lookup(&sk); -- if (mep != 0) -- pid = mep->pid; -- FILTER_PID -- -- // get throughput stats. see tcp_get_info(). -- u64 rx_b = 0, tx_b = 0, sport = 0; -- struct tcp_sock *tp = (struct tcp_sock *)sk; -- // OLD: bpf_probe_read(&rx_b, sizeof(rx_b), &tp->bytes_received); -- // OLD: bpf_probe_read(&tx_b, sizeof(tx_b), &tp->bytes_acked); -- // NEW: rx_b = tp->bytes_received; -- // NEW: tx_b = tp->bytes_acked; -- -- u16 family = 0; -- // OLD: bpf_probe_read(&family, sizeof(family), &sk->__sk_common.skc_family); -- // NEW: family = sk->__sk_common.skc_family; -- -- if (family == AF_INET) { -- -- struct ipv4_data_t data4 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -- data4.ts_us = bpf_ktime_get_ns() / 1000; -- bpf_probe_read(&data4.saddr, sizeof(u32), args->saddr); -- bpf_probe_read(&data4.daddr, sizeof(u32), args->daddr); -- // a workaround until data4 compiles with separate lport/dport -- data4.ports = dport + ((0ULL + lport) << 32); -- data4.pid = pid; -- -- if (mep == 0) { -- bpf_get_current_comm(&data4.task, sizeof(data4.task)); -- } else { -- bpf_probe_read(&data4.task, sizeof(data4.task), (void *)mep->task); -- } -- ipv4_events.perf_submit(args, &data4, sizeof(data4)); -- -- } else /* 6 */ { -- struct ipv6_data_t data6 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -- data6.ts_us = bpf_ktime_get_ns() / 1000; -- bpf_probe_read(&data6.saddr, sizeof(data6.saddr), args->saddr_v6); -- bpf_probe_read(&data6.daddr, sizeof(data6.daddr), args->saddr_v6); -- // a workaround until data6 compiles with separate lport/dport -- data6.ports = dport + ((0ULL + lport) << 32); -- data6.pid = pid; -- if (mep == 0) { -- bpf_get_current_comm(&data6.task, sizeof(data6.task)); -- } else { -- bpf_probe_read(&data6.task, sizeof(data6.task), (void *)mep->task); -- } -- ipv6_events.perf_submit(args, &data6, sizeof(data6)); -- } -- -- if (mep != 0) -- whoami.delete(&sk); -- -- return 0; --} -diff --git a/src/pmdas/bcc/modules/tcplife.bpf b/src/pmdas/bcc/modules/tcplife_tp.bpf -similarity index 80% -rename from src/pmdas/bcc/modules/tcplife.bpf -rename to src/pmdas/bcc/modules/tcplife_tp.bpf -index 19ca8d740..2b16b98e7 100644 ---- a/src/pmdas/bcc/modules/tcplife.bpf -+++ b/src/pmdas/bcc/modules/tcplife_tp.bpf -@@ -2,7 +2,6 @@ - // Licensed under the Apache License, Version 2.0 (the "License") - - #include --#define KBUILD_MODNAME "pcpbcctcplife" - #include - #include - #include -@@ -11,11 +10,10 @@ BPF_HASH(birth, struct sock *, u64); - - // separate data structs for ipv4 and ipv6 - struct ipv4_data_t { -- // XXX: switch some to u32's when supported - u64 ts_us; -- u64 pid; -- u64 saddr; -- u64 daddr; -+ u32 pid; -+ u32 saddr; -+ u32 daddr; - u64 ports; - u64 rx_b; - u64 tx_b; -@@ -26,7 +24,7 @@ BPF_PERF_OUTPUT(ipv4_events); - - struct ipv6_data_t { - u64 ts_us; -- u64 pid; -+ u32 pid; - unsigned __int128 saddr; - unsigned __int128 daddr; - u64 ports; -@@ -54,11 +52,11 @@ TRACEPOINT_PROBE(sock, inet_sock_set_state) - - // lport is either used in a filter here, or later - u16 lport = args->sport; -- //FILTER_LPORT -+ FILTER_LPORT - - // dport is either used in a filter here, or later - u16 dport = args->dport; -- //FILTER_DPORT -+ FILTER_DPORT - - /* - * This tool includes PID and comm context. It's best effort, and may -@@ -115,20 +113,23 @@ TRACEPOINT_PROBE(sock, inet_sock_set_state) - pid = mep->pid; - FILTER_PID - -+ u16 family = args->family; -+ FILTER_FAMILY -+ - // get throughput stats. see tcp_get_info(). - u64 rx_b = 0, tx_b = 0, sport = 0; - struct tcp_sock *tp = (struct tcp_sock *)sk; -- // OLD: bpf_probe_read(&rx_b, sizeof(rx_b), &tp->bytes_received); -- // OLD: bpf_probe_read(&tx_b, sizeof(tx_b), &tp->bytes_acked); -- // NEW: rx_b = tp->bytes_received; -- // NEW: tx_b = tp->bytes_acked; -+ rx_b = tp->bytes_received; -+ tx_b = tp->bytes_acked; - - if (args->family == AF_INET) { -- struct ipv4_data_t data4 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -+ struct ipv4_data_t data4 = {}; -+ data4.span_us = delta_us; -+ data4.rx_b = rx_b; -+ data4.tx_b = tx_b; - data4.ts_us = bpf_ktime_get_ns() / 1000; -- bpf_probe_read(&data4.saddr, sizeof(u32), args->saddr); -- bpf_probe_read(&data4.daddr, sizeof(u32), args->daddr); -+ __builtin_memcpy(&data4.saddr, args->saddr, sizeof(data4.saddr)); -+ __builtin_memcpy(&data4.daddr, args->daddr, sizeof(data4.daddr)); - // a workaround until data4 compiles with separate lport/dport - data4.ports = dport + ((0ULL + lport) << 32); - data4.pid = pid; -@@ -136,23 +137,25 @@ TRACEPOINT_PROBE(sock, inet_sock_set_state) - if (mep == 0) { - bpf_get_current_comm(&data4.task, sizeof(data4.task)); - } else { -- bpf_probe_read(&data4.task, sizeof(data4.task), (void *)mep->task); -+ bpf_probe_read_kernel(&data4.task, sizeof(data4.task), (void *)mep->task); - } - ipv4_events.perf_submit(args, &data4, sizeof(data4)); - - } else /* 6 */ { -- struct ipv6_data_t data6 = {.span_us = delta_us, -- .rx_b = rx_b, .tx_b = tx_b}; -+ struct ipv6_data_t data6 = {}; -+ data6.span_us = delta_us; -+ data6.rx_b = rx_b; -+ data6.tx_b = tx_b; - data6.ts_us = bpf_ktime_get_ns() / 1000; -- bpf_probe_read(&data6.saddr, sizeof(data6.saddr), args->saddr_v6); -- bpf_probe_read(&data6.daddr, sizeof(data6.daddr), args->saddr_v6); -+ __builtin_memcpy(&data6.saddr, args->saddr_v6, sizeof(data6.saddr)); -+ __builtin_memcpy(&data6.daddr, args->daddr_v6, sizeof(data6.daddr)); - // a workaround until data6 compiles with separate lport/dport - data6.ports = dport + ((0ULL + lport) << 32); - data6.pid = pid; - if (mep == 0) { - bpf_get_current_comm(&data6.task, sizeof(data6.task)); - } else { -- bpf_probe_read(&data6.task, sizeof(data6.task), (void *)mep->task); -+ bpf_probe_read_kernel(&data6.task, sizeof(data6.task), (void *)mep->task); - } - ipv6_events.perf_submit(args, &data6, sizeof(data6)); - } -diff --git a/src/pmdas/bcc/modules/tcpperpid.python b/src/pmdas/bcc/modules/tcpperpid.python -index 3cb2cfcfd..0096929a6 100644 ---- a/src/pmdas/bcc/modules/tcpperpid.python -+++ b/src/pmdas/bcc/modules/tcpperpid.python -@@ -32,16 +32,10 @@ from modules.pcpbcc import PCPBCCBase - # - # BPF program - # --bpf_src = "modules/tcplife.bpf" --# Compat with kernel < 4.16, bcc < 0.6 --TRACEFS = "/sys/kernel/debug/tracing" --bpf_src_old_tp = "modules/tcplife_old_tp.bpf" --bpf_src_old_kb = "modules/tcplife_old_kb.bpf" --if not path.exists(TRACEFS + "/events/sock/inet_sock_set_state"): -- if path.exists(TRACEFS + "/events/tcp/tcp_set_state"): -- bpf_src = bpf_src_old_tp -- else: -- bpf_src = bpf_src_old_kb -+if BPF.tracepoint_exists("sock", "inet_sock_set_state"): -+ bpf_src = "modules/tcplife_tp.bpf" -+else: -+ bpf_src = "modules/tcplife_kp.bpf" - - # Alternative, "high resolution" BPF - bpf_highres = "modules/tcptop.bpf" -@@ -53,36 +47,6 @@ MODULE = 'tcpperpid' - BASENS = 'proc.io.net.total.' - units_bytes = pmUnits(1, 0, 0, PM_SPACE_BYTE, 0, 0) - --TASK_COMM_LEN = 16 # linux/sched.h -- --class Data_ipv4(ct.Structure): -- """ IPv4 data struct """ -- _fields_ = [ -- ("ts_us", ct.c_ulonglong), -- ("pid", ct.c_ulonglong), -- ("saddr", ct.c_ulonglong), -- ("daddr", ct.c_ulonglong), -- ("ports", ct.c_ulonglong), -- ("rx_b", ct.c_ulonglong), -- ("tx_b", ct.c_ulonglong), -- ("span_us", ct.c_ulonglong), -- ("task", ct.c_char * TASK_COMM_LEN) -- ] -- --class Data_ipv6(ct.Structure): -- """ IPv6 data struct """ -- _fields_ = [ -- ("ts_us", ct.c_ulonglong), -- ("pid", ct.c_ulonglong), -- ("saddr", (ct.c_ulonglong * 2)), -- ("daddr", (ct.c_ulonglong * 2)), -- ("ports", ct.c_ulonglong), -- ("rx_b", ct.c_ulonglong), -- ("tx_b", ct.c_ulonglong), -- ("span_us", ct.c_ulonglong), -- ("task", ct.c_char * TASK_COMM_LEN) -- ] -- - # - # PCP BCC Module - # -@@ -133,15 +97,14 @@ class PCPBCCModule(PCPBCCBase): - self.log("Using BPF source file %s." % src) - - # Exit hard if impossible to continue -- if self.bcc_version() == "0.6.1" and src == bpf_src_old_kb and not self.highres: -- raise RuntimeError("BCC 0.6.1 bug makes it incompatible with this module " -- "on kernel < 4.15 in non-highres mode.") -+ if self.bcc_version_tuple() < (0, 6, 1) and not self.highres: -+ raise RuntimeError("BCC 0.6.1+ is required for this module in non-highres mode.") - - self.log("Initialized.") - - def handle_ipv4_event(self, _cpu, data, _size): - """ IPv4 event handler """ -- event = ct.cast(data, ct.POINTER(Data_ipv4)).contents -+ event = self.bpf["ipv4_events"].event(data) - pid = str(event.pid).zfill(6) - self.lock.acquire() - if pid not in self.ipv4_stats: -@@ -153,7 +116,7 @@ class PCPBCCModule(PCPBCCBase): - - def handle_ipv6_event(self, _cpu, data, _size): - """ IPv6 event handler """ -- event = ct.cast(data, ct.POINTER(Data_ipv6)).contents -+ event = self.bpf["ipv6_events"].event(data) - pid = str(event.pid).zfill(6) - self.lock.acquire() - if pid not in self.ipv6_stats: -@@ -199,31 +162,25 @@ class PCPBCCModule(PCPBCCBase): - self.bpf_text = src.read() - if self.highres: - self.bpf_text = self.bpf_text.replace("FILTER", "FILTER_PID") -- # Compat with bcc < 0.6 -- self.log("Testing BCC compatilibility, possible errors below are safe to ignore.") -- try: -- test_txt = self.bpf_text.replace("// NEW: ", "").replace("FILTER_PID", "") -- test_bpf = BPF(text=test_txt) -- test_bpf.cleanup() -- self.bpf_text = self.bpf_text.replace("// NEW: ", "") -- except Exception: # pylint: disable=broad-except -- self.bpf_text = self.bpf_text.replace("// OLD: ", "") -- self.log("Tested BCC compatilibility, possible errors above are safe to ignore.") - - if self.dports: - filterp = " && ".join(["dport != %d" % port for port in self.dports]) - filter_txt = "if (%s) { birth.delete(&sk); return 0; }" % filterp -- self.bpf_text = self.bpf_text.replace("//FILTER_DPORT", filter_txt) -+ self.bpf_text = self.bpf_text.replace("FILTER_DPORT", filter_txt) - if self.lports: - filterp = " && ".join(["lport != %d" % port for port in self.lports]) - filter_txt = "if (%s) { birth.delete(&sk); return 0; }" % filterp -- self.bpf_text = self.bpf_text.replace("//FILTER_LPORT", filter_txt) -+ self.bpf_text = self.bpf_text.replace("FILTER_LPORT", filter_txt) - - if not self.pids and self.proc_filter and self.proc_refresh: - self.log("No process to attach found, activation postponed.") - return - - bpf_text = self.apply_pid_filter(self.bpf_text, self.pids, False) -+ bpf_text = bpf_text.replace('FILTER_PID', '') -+ bpf_text = bpf_text.replace('FILTER_DPORT', '') -+ bpf_text = bpf_text.replace('FILTER_LPORT', '') -+ bpf_text = bpf_text.replace('FILTER_FAMILY', '') - - if self.debug: - self.log("BPF to be compiled:\n" + bpf_text.strip()) -diff --git a/src/pmdas/bcc/modules/tcptop.bpf b/src/pmdas/bcc/modules/tcptop.bpf -index 349ee1529..c1fed7aef 100644 ---- a/src/pmdas/bcc/modules/tcptop.bpf -+++ b/src/pmdas/bcc/modules/tcptop.bpf -@@ -4,6 +4,7 @@ - #include - #include - #include -+ - struct ipv4_key_t { - u32 pid; - u32 saddr; -@@ -13,25 +14,32 @@ struct ipv4_key_t { - }; - BPF_HASH(ipv4_send_bytes, struct ipv4_key_t); - BPF_HASH(ipv4_recv_bytes, struct ipv4_key_t); -+ - struct ipv6_key_t { -+ unsigned __int128 saddr; -+ unsigned __int128 daddr; - u32 pid; -- // workaround until unsigned __int128 support: -- u64 saddr0; -- u64 saddr1; -- u64 daddr0; -- u64 daddr1; - u16 lport; - u16 dport; -+ u64 __pad__; - }; - BPF_HASH(ipv6_send_bytes, struct ipv6_key_t); - BPF_HASH(ipv6_recv_bytes, struct ipv6_key_t); -+ - int kprobe__tcp_sendmsg(struct pt_regs *ctx, struct sock *sk, - struct msghdr *msg, size_t size) - { -- u32 pid = bpf_get_current_pid_tgid(); -- FILTER -+ if (container_should_be_filtered()) { -+ return 0; -+ } -+ -+ u32 pid = bpf_get_current_pid_tgid() >> 32; -+ FILTER_PID -+ - u16 dport = 0, family = sk->__sk_common.skc_family; -- u64 *val, zero = 0; -+ -+ FILTER_FAMILY -+ - if (family == AF_INET) { - struct ipv4_key_t ipv4_key = {.pid = pid}; - ipv4_key.saddr = sk->__sk_common.skc_rcv_saddr; -@@ -39,31 +47,24 @@ int kprobe__tcp_sendmsg(struct pt_regs *ctx, struct sock *sk, - ipv4_key.lport = sk->__sk_common.skc_num; - dport = sk->__sk_common.skc_dport; - ipv4_key.dport = ntohs(dport); -- val = ipv4_send_bytes.lookup_or_init(&ipv4_key, &zero); -- if (val) { -- (*val) += size; -- } -+ ipv4_send_bytes.increment(ipv4_key, size); -+ - } else if (family == AF_INET6) { - struct ipv6_key_t ipv6_key = {.pid = pid}; -- bpf_probe_read(&ipv6_key.saddr0, sizeof(ipv6_key.saddr0), -- &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32[0]); -- bpf_probe_read(&ipv6_key.saddr1, sizeof(ipv6_key.saddr1), -- &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32[2]); -- bpf_probe_read(&ipv6_key.daddr0, sizeof(ipv6_key.daddr0), -- &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32[0]); -- bpf_probe_read(&ipv6_key.daddr1, sizeof(ipv6_key.daddr1), -- &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32[2]); -+ bpf_probe_read_kernel(&ipv6_key.saddr, sizeof(ipv6_key.saddr), -+ &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32); -+ bpf_probe_read_kernel(&ipv6_key.daddr, sizeof(ipv6_key.daddr), -+ &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32); - ipv6_key.lport = sk->__sk_common.skc_num; - dport = sk->__sk_common.skc_dport; - ipv6_key.dport = ntohs(dport); -- val = ipv6_send_bytes.lookup_or_init(&ipv6_key, &zero); -- if (val) { -- (*val) += size; -- } -+ ipv6_send_bytes.increment(ipv6_key, size); - } - // else drop -+ - return 0; - } -+ - /* - * tcp_recvmsg() would be obvious to trace, but is less suitable because: - * - we'd need to trace both entry and return, to have both sock and size -@@ -72,12 +73,21 @@ int kprobe__tcp_sendmsg(struct pt_regs *ctx, struct sock *sk, - */ - int kprobe__tcp_cleanup_rbuf(struct pt_regs *ctx, struct sock *sk, int copied) - { -- u32 pid = bpf_get_current_pid_tgid(); -- FILTER -+ if (container_should_be_filtered()) { -+ return 0; -+ } -+ -+ u32 pid = bpf_get_current_pid_tgid() >> 32; -+ FILTER_PID -+ - u16 dport = 0, family = sk->__sk_common.skc_family; - u64 *val, zero = 0; -+ - if (copied <= 0) - return 0; -+ -+ FILTER_FAMILY -+ - if (family == AF_INET) { - struct ipv4_key_t ipv4_key = {.pid = pid}; - ipv4_key.saddr = sk->__sk_common.skc_rcv_saddr; -@@ -85,28 +95,20 @@ int kprobe__tcp_cleanup_rbuf(struct pt_regs *ctx, struct sock *sk, int copied) - ipv4_key.lport = sk->__sk_common.skc_num; - dport = sk->__sk_common.skc_dport; - ipv4_key.dport = ntohs(dport); -- val = ipv4_recv_bytes.lookup_or_init(&ipv4_key, &zero); -- if (val) { -- (*val) += copied; -- } -+ ipv4_recv_bytes.increment(ipv4_key, copied); -+ - } else if (family == AF_INET6) { - struct ipv6_key_t ipv6_key = {.pid = pid}; -- bpf_probe_read(&ipv6_key.saddr0, sizeof(ipv6_key.saddr0), -- &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32[0]); -- bpf_probe_read(&ipv6_key.saddr1, sizeof(ipv6_key.saddr1), -- &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32[2]); -- bpf_probe_read(&ipv6_key.daddr0, sizeof(ipv6_key.daddr0), -- &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32[0]); -- bpf_probe_read(&ipv6_key.daddr1, sizeof(ipv6_key.daddr1), -- &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32[2]); -+ bpf_probe_read_kernel(&ipv6_key.saddr, sizeof(ipv6_key.saddr), -+ &sk->__sk_common.skc_v6_rcv_saddr.in6_u.u6_addr32); -+ bpf_probe_read_kernel(&ipv6_key.daddr, sizeof(ipv6_key.daddr), -+ &sk->__sk_common.skc_v6_daddr.in6_u.u6_addr32); - ipv6_key.lport = sk->__sk_common.skc_num; - dport = sk->__sk_common.skc_dport; - ipv6_key.dport = ntohs(dport); -- val = ipv6_recv_bytes.lookup_or_init(&ipv6_key, &zero); -- if (val) { -- (*val) += copied; -- } -+ ipv6_recv_bytes.increment(ipv6_key, copied); - } - // else drop -+ - return 0; - } -diff --git a/src/pmdas/bcc/modules/tcptop.python b/src/pmdas/bcc/modules/tcptop.python -index 45063dff3..db1c1da15 100644 ---- a/src/pmdas/bcc/modules/tcptop.python -+++ b/src/pmdas/bcc/modules/tcptop.python -@@ -120,13 +120,14 @@ class PCPBCCModule(PCPBCCBase): - with open(path.dirname(__file__) + '/../' + bpf_src) as src: - self.bpf_text = src.read() - -- self.bpf_text = self.bpf_text.replace("FILTER", "FILTER_PID") -- - if not self.pids and self.proc_filter and self.proc_refresh: - self.log("No process to attach found, activation postponed.") - return - - bpf_text = self.apply_pid_filter(self.bpf_text, self.pids, False) -+ bpf_text = bpf_text.replace('FILTER_PID', '') -+ bpf_text = bpf_text.replace('FILTER_FAMILY', '') -+ bpf_text = bpf_text.replace('container_should_be_filtered()', '0') - - if self.debug: - self.log("BPF to be compiled:\n" + bpf_text.strip()) -@@ -155,21 +156,31 @@ class PCPBCCModule(PCPBCCBase): - - @staticmethod - def ipv4_table_to_dict(table): -- """ Build hashable dict from IPv4 BPF table """ -- return {TCPSessionKey(pid=k.pid, -- laddr=inet_ntop(AF_INET, pack("I", k.saddr)), -- lport=k.lport, -- daddr=inet_ntop(AF_INET, pack("I", k.daddr)), -- dport=k.dport):v.value for k, v in table.items()} -+ """Build hashable dict from IPv4 BPF table""" -+ return { -+ TCPSessionKey( -+ pid=k.pid, -+ laddr=inet_ntop(AF_INET, pack("I", k.saddr)), -+ lport=k.lport, -+ daddr=inet_ntop(AF_INET, pack("I", k.daddr)), -+ dport=k.dport, -+ ): v.value -+ for k, v in table.items() -+ } - - @staticmethod - def ipv6_table_to_dict(table): -- """ Build hashable dict from IPv6 BPF table """ -- return {TCPSessionKey(pid=k.pid, -- laddr=inet_ntop(AF_INET6, pack("QQ", k.saddr0, k.saddr1)), -- lport=k.lport, -- daddr=inet_ntop(AF_INET6, pack("QQ", k.daddr0, k.daddr1)), -- dport=k.dport):v.value for k, v in table.items()} -+ """Build hashable dict from IPv6 BPF table""" -+ return { -+ TCPSessionKey( -+ pid=k.pid, -+ laddr=inet_ntop(AF_INET6, k.saddr), -+ lport=k.lport, -+ daddr=inet_ntop(AF_INET6, k.daddr), -+ dport=k.dport, -+ ): v.value -+ for k, v in table.items() -+ } - - def refresh_stats(self): - """ Refresh statistics from BPF table """ -commit d45ce8e85035cc95ba897cd19967fad6d5d741be (cherry-picked) -Author: Andreas Gerstmayr -Date: Wed Dec 15 08:03:40 2021 +0100 - - qa: update qa/1118 to add new log output of runqlat bcc module - -diff --git a/qa/1118 b/qa/1118 -index 4123495b5..bcaec0a0d 100755 ---- a/qa/1118 -+++ b/qa/1118 -@@ -21,12 +21,19 @@ _label_filter() - grep '"0-1"' | grep '"statistic":"histogram"' | grep '"lower_bound":0' | grep 'upper_bound":1' > /dev/null && echo 'OK' - } - -+_install_filter() -+{ -+ sed \ -+ -e "s/Using BPF source file .\+/Using BPF source file X/g" \ -+ #end -+} -+ - _prepare_pmda bcc - trap "_pmdabcc_cleanup; exit \$status" 0 1 2 3 15 - _stop_auto_restart pmcd - - # real QA test starts here --cat <&1 | _filter_pcp_start - _wait_for_pmcd - _service pmlogger start 2>&1 | _filter_pcp_start --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # real QA test starts here - _echo "expect this to be off" -diff -Naurp pcp-5.3.5.orig/qa/041 pcp-5.3.5/qa/041 ---- pcp-5.3.5.orig/qa/041 2021-09-01 08:58:41.000000000 +1000 -+++ pcp-5.3.5/qa/041 2022-01-21 10:55:30.286602172 +1100 -@@ -40,12 +40,11 @@ _expect() - echo "" | tee -a $seq.full - } - -+status=1 - _needclean=true - TAG=000666000magic --status=1 --[ -z "$PCP_PMLOGGERCONTROL_PATH" ] && \ -- PCP_PMLOGGERCONTROL_PATH="$PCP_SYSCONF_DIR/pmlogger/control" -- -+LOGGING_DIR="$PCP_ARCHIVE_DIR" -+rm -f $seq.full - trap "_cleanup" 0 1 2 3 15 - - _stop_auto_restart pmcd -@@ -68,15 +67,6 @@ _cleanup() - exit $status - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- --rm -f $seq.full -- - # real QA test starts here - - # disable all pmloggers ... -diff -Naurp pcp-5.3.5.orig/qa/066 pcp-5.3.5/qa/066 ---- pcp-5.3.5.orig/qa/066 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/066 2022-01-21 10:55:30.286602172 +1100 -@@ -42,6 +42,7 @@ signal=$PCP_BINADM_DIR/pmsignal - log=$PCP_PMCDLOG_PATH - _needclean=true - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _filter_log() - { -@@ -80,13 +81,6 @@ interrupt() - exit - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - cleanup() - { - if [ $_needclean ] -diff -Naurp pcp-5.3.5.orig/qa/067 pcp-5.3.5/qa/067 ---- pcp-5.3.5.orig/qa/067 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/067 2022-01-21 10:55:30.287602155 +1100 -@@ -31,6 +31,7 @@ trap "rm -f $tmp.*; exit" 0 1 2 3 15 - signal=$PCP_BINADM_DIR/pmsignal - log=$PCP_PMCDLOG_PATH - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _filter_log() - { -@@ -69,13 +70,6 @@ interrupt() - exit - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - cleanup() - { - _restore_config $PCP_PMCDCONF_PATH -diff -Naurp pcp-5.3.5.orig/qa/068 pcp-5.3.5/qa/068 ---- pcp-5.3.5.orig/qa/068 2019-01-13 14:14:12.000000000 +1100 -+++ pcp-5.3.5/qa/068 2022-01-21 10:55:30.287602155 +1100 -@@ -19,22 +19,11 @@ echo "QA output created by $seq" - - _needclean=true - LOCALHOST=`hostname` -- -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - trap "_cleanup" 0 1 2 3 15 - --# don't need to regenerate config.default with pmlogconf --# --export PMLOGGER_CHECK_SKIP_LOGCONF=yes -- - _stop_auto_restart pmcd - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _cleanup() - { - echo >>$seq.full -diff -Naurp pcp-5.3.5.orig/qa/069 pcp-5.3.5/qa/069 ---- pcp-5.3.5.orig/qa/069 2021-11-08 09:45:56.000000000 +1100 -+++ pcp-5.3.5/qa/069 2022-01-21 10:55:30.287602155 +1100 -@@ -45,6 +45,7 @@ nconfig=$tmp.pmcd.conf.new - log=$PCP_PMCDLOG_PATH - LOCALHOST=`hostname` - LOCALHOST_FULL=`pmhostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - _needclean=true - - rm -f $seq.full -@@ -104,13 +105,6 @@ skip > 0 { skip--; next } - - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - cleanup() - { - if $_needclean -diff -Naurp pcp-5.3.5.orig/qa/1055 pcp-5.3.5/qa/1055 ---- pcp-5.3.5.orig/qa/1055 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/1055 2022-01-21 10:55:30.287602155 +1100 -@@ -17,6 +17,7 @@ signal=$PCP_BINADM_DIR/pmsignal - status=1 - done_clean=false - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -@@ -66,13 +67,7 @@ $sudo cp $tmp.tmp $PCP_PMCDCONF_PATH - _writable_primary_logger - _service pcp restart 2>&1 | _filter_pcp_start - _wait_for_pmcd --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # Reset pmlogger - echo "log sample.dynamic.meta.metric" -diff -Naurp pcp-5.3.5.orig/qa/172 pcp-5.3.5/qa/172 ---- pcp-5.3.5.orig/qa/172 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/172 2022-01-21 10:55:30.287602155 +1100 -@@ -39,6 +39,7 @@ else - esac - fi - -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - LOCALHOST=`hostname` - _needclean=true - status=0 -@@ -48,13 +49,6 @@ _interrupt() - status=1 - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _cleanup() - { - if $_needclean -diff -Naurp pcp-5.3.5.orig/qa/192 pcp-5.3.5/qa/192 ---- pcp-5.3.5.orig/qa/192 2019-01-13 14:14:12.000000000 +1100 -+++ pcp-5.3.5/qa/192 2022-01-21 10:55:30.287602155 +1100 -@@ -13,6 +13,7 @@ echo "QA output created by $seq" - . ./common.filter - . ./common.check - -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - LOCALHOST=`hostname` - _needclean=true - status=0 -@@ -22,13 +23,6 @@ _interrupt() - status=1 - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _cleanup() - { - if $_needclean -diff -Naurp pcp-5.3.5.orig/qa/220 pcp-5.3.5/qa/220 ---- pcp-5.3.5.orig/qa/220 2021-07-13 09:34:38.000000000 +1000 -+++ pcp-5.3.5/qa/220 2022-01-21 10:55:30.287602155 +1100 -@@ -18,13 +18,7 @@ which netstat >/dev/null 2>&1 || _notrun - status=0 - clean=false - LOCALHOST=`hostname` -- --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -diff -Naurp pcp-5.3.5.orig/qa/258 pcp-5.3.5/qa/258 ---- pcp-5.3.5.orig/qa/258 2019-01-30 14:22:38.000000000 +1100 -+++ pcp-5.3.5/qa/258 2022-01-21 10:55:30.287602155 +1100 -@@ -19,6 +19,7 @@ echo "QA output created by $seq" - signal=$PCP_BINADM_DIR/pmsignal - status=1 - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - _needclean=true - - _interrupt() -@@ -26,13 +27,6 @@ _interrupt() - status=1 - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _cleanup() - { - cd $here -diff -Naurp pcp-5.3.5.orig/qa/279 pcp-5.3.5/qa/279 ---- pcp-5.3.5.orig/qa/279 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/279 2022-01-21 10:55:30.287602155 +1100 -@@ -17,6 +17,7 @@ echo "QA output created by $seq" - status=1 # failure is the default! - killer=`pwd`/src/killparent - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - _needclean=true - - rm -f $seq.full -@@ -76,13 +77,6 @@ _filter_pmcd() - # end - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _save_config $PCP_PMCDCONF_PATH - _disable_loggers - pmafm $LOGGING_DIR/$LOCALHOST/Latest remove >$tmp.cmd 2>&1 \ -diff -Naurp pcp-5.3.5.orig/qa/280 pcp-5.3.5/qa/280 ---- pcp-5.3.5.orig/qa/280 2021-08-16 14:12:25.000000000 +1000 -+++ pcp-5.3.5/qa/280 2022-01-21 10:55:30.287602155 +1100 -@@ -13,16 +13,6 @@ echo "QA output created by $seq" - . ./common.filter - . ./common.check - --if [ -d "$PCP_ARCHIVE_DIR" ] --then -- LOGGING_DIR=$PCP_ARCHIVE_DIR --elif [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _filter() - { - [ -z "$PCP_PMLOGGERCONTROL_PATH" ] && \ -@@ -52,6 +42,7 @@ _filter() - status=1 # failure is the default! - signal=$PCP_BINADM_DIR/pmsignal - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - trap "_cleanup; $sudo rm -f $tmp.* $LOGGING_DIR/$LOCALHOST/lock; exit \$status" 0 1 2 3 15 - - _stop_auto_restart pmcd -diff -Naurp pcp-5.3.5.orig/qa/282 pcp-5.3.5/qa/282 ---- pcp-5.3.5.orig/qa/282 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/282 2022-01-21 10:55:30.287602155 +1100 -@@ -32,7 +32,7 @@ _needclean=true - sleepy=false - - LOCALHOST=`hostname` --LOGGING_DIR=$PCP_LOG_DIR/pmlogger -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - CHECK=`which pmlogger_check` - [ -z "$CHECK" -o ! -x "$CHECK" ] && \ - _notrun "Cannot find an executable pmlogger_check: \"$CHECK\"" -diff -Naurp pcp-5.3.5.orig/qa/336 pcp-5.3.5/qa/336 ---- pcp-5.3.5.orig/qa/336 2018-10-23 07:37:45.000000000 +1100 -+++ pcp-5.3.5/qa/336 2022-01-21 10:55:30.288602138 +1100 -@@ -19,6 +19,7 @@ echo "QA output created by $seq" - signal=$PCP_BINADM_DIR/pmsignal - status=1 # failure is the default! - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - _needclean=true - - if [ -n "$PCP_TRACE_HOST" ] -@@ -31,13 +32,6 @@ _interrupt() - status=1 - } - --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi -- - _cleanup() - { - cd $here -diff -Naurp pcp-5.3.5.orig/qa/854 pcp-5.3.5/qa/854 ---- pcp-5.3.5.orig/qa/854 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/854 2022-01-21 10:55:30.288602138 +1100 -@@ -17,6 +17,7 @@ signal=$PCP_BINADM_DIR/pmsignal - status=1 - done_clean=false - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -@@ -59,20 +60,14 @@ cat <$tmp.tmp - # Installed by PCP QA test $seq on `date` - pmcd 2 dso pmcd_init $PMDA_PMCD_PATH - sample 29 pipe binary $PCP_PMDAS_DIR/sample/pmdasample -d 29 --simple 253 pipe binary /var/lib/pcp/pmdas/simple/pmdasimple -d 253 -+simple 253 pipe binary $PCP_PMDAS_DIR/simple/pmdasimple -d 253 - End-of-File - $sudo cp $tmp.tmp $PCP_PMCDCONF_PATH - - _writable_primary_logger - _service pcp restart 2>&1 | _filter_pcp_start - _wait_for_pmcd --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # Reset pmlogger - echo "log sample.dynamic.meta.metric" -diff -Naurp pcp-5.3.5.orig/qa/856 pcp-5.3.5/qa/856 ---- pcp-5.3.5.orig/qa/856 2019-01-13 14:14:12.000000000 +1100 -+++ pcp-5.3.5/qa/856 2022-01-21 10:55:30.288602138 +1100 -@@ -17,6 +17,7 @@ signal=$PCP_BINADM_DIR/pmsignal - status=1 - done_clean=false - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -@@ -69,13 +70,7 @@ $sudo cp $tmp.tmp $PCP_PMCDCONF_PATH - _writable_primary_logger - _service pcp restart 2>&1 | _filter_pcp_start - _wait_for_pmcd --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # Reset pmlogger - echo "log sample.dynamic.meta.metric" -diff -Naurp pcp-5.3.5.orig/qa/882 pcp-5.3.5/qa/882 ---- pcp-5.3.5.orig/qa/882 2019-01-13 14:14:12.000000000 +1100 -+++ pcp-5.3.5/qa/882 2022-01-21 10:55:30.288602138 +1100 -@@ -17,6 +17,7 @@ signal=$PCP_BINADM_DIR/pmsignal - status=1 - done_clean=false - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -@@ -69,13 +70,7 @@ $sudo cp $tmp.tmp $PCP_PMCDCONF_PATH - _writable_primary_logger - _service pcp restart 2>&1 | _filter_pcp_start - _wait_for_pmcd --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # Reset pmlogger - echo "log sample.dynamic.meta.metric" -diff -Naurp pcp-5.3.5.orig/qa/932 pcp-5.3.5/qa/932 ---- pcp-5.3.5.orig/qa/932 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/qa/932 2022-01-21 10:55:30.288602138 +1100 -@@ -17,6 +17,7 @@ signal=$PCP_BINADM_DIR/pmsignal - status=1 - done_clean=false - LOCALHOST=`hostname` -+LOGGING_DIR="$PCP_ARCHIVE_DIR" - - _cleanup() - { -@@ -67,13 +68,7 @@ $sudo cp $tmp.tmp $PCP_PMCDCONF_PATH - _writable_primary_logger - _service pcp restart 2>&1 | _filter_pcp_start - _wait_for_pmcd --if [ -d $PCP_LOG_DIR/pmlogger ] --then -- LOGGING_DIR=$PCP_LOG_DIR/pmlogger --else -- LOGGING_DIR=$PCP_LOG_DIR --fi --_wait_for_pmlogger -P $LOGGING_DIR/$LOCALHOST/pmlogger.log -+_wait_for_pmlogger - - # Reset pmlogger - echo "log sample.dynamic.meta.metric" -diff -Naurp pcp-5.3.5.orig/qa/common.check pcp-5.3.5/qa/common.check ---- pcp-5.3.5.orig/qa/common.check 2021-11-05 09:54:05.000000000 +1100 -+++ pcp-5.3.5/qa/common.check 2022-01-21 10:55:30.288602138 +1100 -@@ -262,7 +262,7 @@ _service() - # good reason for this) - # ditto for pmlogger_daily and pmlogger_daily-poll - # -- for svc in pmlogger_check pmlogger_daily pmlogger_daily-poll -+ for svc in pmlogger_check pmlogger_daily pmlogger_farm_check pmlogger_daily-poll - do - if systemctl show --property=ActiveState $svc.timer 2>&1 \ - | grep '=active$' >/dev/null -@@ -1940,9 +1940,11 @@ _remove_job_scheduler() - $rc_sudo rm -f $rc_cron_backup $rc_systemd_state - - if systemctl cat pmie_daily.timer >/dev/null 2>&1; then -- for i in pmie.service pmie_daily.timer pmie_check.timer pmlogger_daily.timer \ -+ for i in pmie.service pmie_daily.timer \ -+ pmie_check.timer pmie_farm_check.timer \ - pmlogger_daily_report.timer pmlogger_daily_report-poll.timer \ -- pmlogger_daily-poll.timer pmlogger_check.timer ; do -+ pmlogger_daily-poll.timer pmlogger_daily.timer \ -+ pmlogger_check.timer pmlogger_farm_check.timer ; do - $rc_sudo systemctl is-active "$i" > /dev/null || continue - $rc_sudo systemctl stop $i >/dev/null - echo "$i" >> $rc_systemd_state -diff -Naurp pcp-5.3.5.orig/src/pmie/GNUmakefile pcp-5.3.5/src/pmie/GNUmakefile ---- pcp-5.3.5.orig/src/pmie/GNUmakefile 2021-11-09 10:50:58.000000000 +1100 -+++ pcp-5.3.5/src/pmie/GNUmakefile 2022-01-21 10:55:54.918186303 +1100 -@@ -1,5 +1,5 @@ - # --# Copyright (c) 2013-2015,2020-2021 Red Hat. -+# Copyright (c) 2013-2015,2020-2022 Red Hat. - # Copyright (c) 2000,2004 Silicon Graphics, Inc. All Rights Reserved. - # - # This program is free software; you can redistribute it and/or modify it -@@ -84,7 +84,6 @@ pmie.service : pmie.service.in - - pmie_farm.service : pmie_farm.service.in - $(SED) <$< >$@ \ -- -e 's;@CRONTAB_PATH@;'$(CRONTAB_PATH)';' \ - -e 's;@PCP_SYSCONFIG_DIR@;'$(PCP_SYSCONFIG_DIR)';' \ - -e 's;@PCP_BINADM_DIR@;'$(PCP_BINADM_DIR)';' \ - -e 's;@PCP_VAR_DIR@;'$(PCP_VAR_DIR)';' \ -@@ -95,7 +94,10 @@ pmie_farm.service : pmie_farm.service.in - - pmie_farm_check.service : pmie_farm_check.service.in - $(SED) <$< >$@ \ -+ -e 's;@CRONTAB_PATH@;'$(CRONTAB_PATH)';' \ - -e 's;@PCP_BIN_DIR@;'$(PCP_BIN_DIR)';' \ -+ -e 's;@PCP_VAR_DIR@;'$(PCP_VAR_DIR)';' \ -+ -e 's;@SD_SERVICE_TYPE@;'$(SD_SERVICE_TYPE)';' \ - # END - - pmie_check.service : pmie_check.service.in -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_check.service.in pcp-5.3.5/src/pmie/pmie_check.service.in ---- pcp-5.3.5.orig/src/pmie/pmie_check.service.in 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_check.service.in 2022-01-21 10:55:30.288602138 +1100 -@@ -2,7 +2,6 @@ - Description=Check PMIE instances are running - Documentation=man:pmie_check(1) - ConditionPathExists=!@CRONTAB_PATH@ --PartOf=pmie.service - - [Service] - Type=@SD_SERVICE_TYPE@ -@@ -15,6 +14,3 @@ ExecStart=@PCP_BINADM_DIR@/pmie_check $P - WorkingDirectory=@PCP_VAR_DIR@ - Group=@PCP_GROUP@ - User=@PCP_USER@ -- --[Install] --RequiredBy=pmie.service -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_check.timer pcp-5.3.5/src/pmie/pmie_check.timer ---- pcp-5.3.5.orig/src/pmie/pmie_check.timer 2021-02-17 15:27:41.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_check.timer 2022-01-21 10:55:30.288602138 +1100 -@@ -1,6 +1,5 @@ - [Unit] - Description=Half-hourly check of PMIE instances --PartOf=pmie.service - - [Timer] - # if enabled, runs 1m after boot and every half hour -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_daily.service.in pcp-5.3.5/src/pmie/pmie_daily.service.in ---- pcp-5.3.5.orig/src/pmie/pmie_daily.service.in 2021-10-07 14:28:56.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_daily.service.in 2022-01-21 10:55:30.288602138 +1100 -@@ -6,6 +6,7 @@ ConditionPathExists=!@CRONTAB_PATH@ - [Service] - Type=@SD_SERVICE_TYPE@ - Restart=no -+TimeoutStartSec=1h - Environment="PMIE_DAILY_PARAMS=-X xz -x 3" - EnvironmentFile=-@PCP_SYSCONFIG_DIR@/pmie_timers - ExecStart=@PCP_BINADM_DIR@/pmie_daily $PMIE_DAILY_PARAMS -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_daily.timer pcp-5.3.5/src/pmie/pmie_daily.timer ---- pcp-5.3.5.orig/src/pmie/pmie_daily.timer 2019-02-20 18:03:00.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_daily.timer 2022-01-21 10:55:30.288602138 +1100 -@@ -2,6 +2,7 @@ - Description=Daily processing of PMIE logs - - [Timer] -+Persistent=true - OnCalendar=*-*-* 00:08:00 - - [Install] -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_farm_check.service.in pcp-5.3.5/src/pmie/pmie_farm_check.service.in ---- pcp-5.3.5.orig/src/pmie/pmie_farm_check.service.in 2021-11-09 10:50:58.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_farm_check.service.in 2022-01-21 10:55:54.918186303 +1100 -@@ -1,19 +1,15 @@ - [Unit] --Description=Check and migrate non-primary pmie instances to pmie_farm --Documentation=man:pmie_check(1) --# TODO non-systemd ConditionPathExists=!/etc/cron.d/pcp-pmie -+Description=Check and migrate non-primary pmie farm instances -+Documentation=man:pmiectl(1) -+ConditionPathExists=!@CRONTAB_PATH@ - - [Service] --Type=exec -+Type=@SD_SERVICE_TYPE@ - Restart=no - TimeoutStartSec=4h - TimeoutStopSec=120 - ExecStart=@PCP_BIN_DIR@/pmiectl -m check --WorkingDirectory=/var/lib/pcp -- -+WorkingDirectory=@PCP_VAR_DIR@ - # root so pmiectl can migrate pmie processes to the pmie_farm service - Group=root - User=root -- --[Install] --RequiredBy=pmie_farm.service -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_farm_check.timer pcp-5.3.5/src/pmie/pmie_farm_check.timer ---- pcp-5.3.5.orig/src/pmie/pmie_farm_check.timer 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_farm_check.timer 2022-01-21 10:49:07.985980678 +1100 -@@ -1,10 +1,11 @@ - [Unit] --Description=5 minute check of pmie farm instances -+Description=Half-hourly check of pmie farm instances - - [Timer] --# if enabled, runs 1m after boot and every 5 mins -+# if enabled, runs 1m after boot and every half hour - OnBootSec=1min --OnCalendar=*:00/5 -+OnCalendar=*-*-* *:28:10 -+OnCalendar=*-*-* *:58:10 - - [Install] - WantedBy=timers.target -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_farm.service.in pcp-5.3.5/src/pmie/pmie_farm.service.in ---- pcp-5.3.5.orig/src/pmie/pmie_farm.service.in 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_farm.service.in 2022-01-21 10:49:07.986980661 +1100 -@@ -1,9 +1,9 @@ - [Unit] - Description=pmie farm service --Documentation=man:pmie(1) --After=network-online.target pmcd.service --Before=pmie_check.timer pmie_daily.timer --BindsTo=pmie_farm_check.timer pmie_check.timer pmie_daily.timer -+Documentation=man:pmie_check(1) -+Before=pmie_farm_check.timer -+BindsTo=pmie_farm_check.timer -+PartOf=pmie.service - - [Service] - Type=@SD_SERVICE_TYPE@ -@@ -15,13 +15,9 @@ TimeoutStopSec=120 - Environment="PMIE_CHECK_PARAMS=--skip-primary" - EnvironmentFile=-@PCP_SYSCONFIG_DIR@/pmie_timers - ExecStart=@PCP_BINADM_DIR@/pmie_farm $PMIE_CHECK_PARAMS -- - WorkingDirectory=@PCP_VAR_DIR@ - Group=@PCP_GROUP@ - User=@PCP_USER@ - - [Install] --WantedBy=multi-user.target -- --# This dependency will be removed in PCPv6. --WantedBy=pmie.service -+RequiredBy=pmie.service -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie_farm.sh pcp-5.3.5/src/pmie/pmie_farm.sh ---- pcp-5.3.5.orig/src/pmie/pmie_farm.sh 2021-11-05 17:02:47.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie_farm.sh 2022-01-21 10:49:07.986980661 +1100 -@@ -12,8 +12,8 @@ - # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - # for more details. - # --# Administrative script to start the pmlogger_farm service. --# All arguments to pmlogger_check are passed from pmlogger_farm.service. -+# Administrative script to start the pmie_farm service. -+# All arguments to pmie_check are passed from pmie_farm.service. - # - . $PCP_DIR/etc/pcp.env - -diff -Naurp pcp-5.3.5.orig/src/pmie/pmie.service.in pcp-5.3.5/src/pmie/pmie.service.in ---- pcp-5.3.5.orig/src/pmie/pmie.service.in 2021-02-22 11:32:05.000000000 +1100 -+++ pcp-5.3.5/src/pmie/pmie.service.in 2022-01-21 10:49:07.986980661 +1100 -@@ -2,8 +2,8 @@ - Description=Performance Metrics Inference Engine - Documentation=man:pmie(1) - After=network-online.target pmcd.service --Before=pmie_check.timer pmie_daily.timer --BindsTo=pmie_check.timer pmie_daily.timer -+Before=pmie_farm.service pmie_check.timer pmie_daily.timer -+BindsTo=pmie_farm.service pmie_check.timer pmie_daily.timer - Wants=pmcd.service - - [Service] -diff -Naurp pcp-5.3.5.orig/src/pmlogger/GNUmakefile pcp-5.3.5/src/pmlogger/GNUmakefile ---- pcp-5.3.5.orig/src/pmlogger/GNUmakefile 2021-11-09 09:08:40.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/GNUmakefile 2022-01-21 10:55:54.918186303 +1100 -@@ -1,5 +1,5 @@ - # --# Copyright (c) 2013-2021 Red Hat. -+# Copyright (c) 2013-2022 Red Hat. - # Copyright (c) 2000,2004 Silicon Graphics, Inc. All Rights Reserved. - # - # This program is free software; you can redistribute it and/or modify it -@@ -99,7 +99,6 @@ pmlogger.service : pmlogger.service.in - - pmlogger_farm.service : pmlogger_farm.service.in - $(SED) <$< >$@ \ -- -e 's;@CRONTAB_PATH@;'$(CRONTAB_PATH)';' \ - -e 's;@PCP_SYSCONFIG_DIR@;'$(PCP_SYSCONFIG_DIR)';' \ - -e 's;@PCP_BINADM_DIR@;'$(PCP_BINADM_DIR)';' \ - -e 's;@PCP_VAR_DIR@;'$(PCP_VAR_DIR)';' \ -@@ -110,7 +109,10 @@ pmlogger_farm.service : pmlogger_farm.se - - pmlogger_farm_check.service : pmlogger_farm_check.service.in - $(SED) <$< >$@ \ -+ -e 's;@CRONTAB_PATH@;'$(CRONTAB_PATH)';' \ - -e 's;@PCP_BIN_DIR@;'$(PCP_BIN_DIR)';' \ -+ -e 's;@PCP_VAR_DIR@;'$(PCP_VAR_DIR)';' \ -+ -e 's;@SD_SERVICE_TYPE@;'$(SD_SERVICE_TYPE)';' \ - # END - - pmlogger_daily.service : pmlogger_daily.service.in -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger_check.service.in pcp-5.3.5/src/pmlogger/pmlogger_check.service.in ---- pcp-5.3.5.orig/src/pmlogger/pmlogger_check.service.in 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger_check.service.in 2022-01-21 10:55:30.289602121 +1100 -@@ -15,6 +15,3 @@ ExecStart=@PCP_BINADM_DIR@/pmlogger_chec - WorkingDirectory=@PCP_VAR_DIR@ - Group=@PCP_GROUP@ - User=@PCP_USER@ -- --[Install] --RequiredBy=pmlogger.service -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger_daily_report.service.in pcp-5.3.5/src/pmlogger/pmlogger_daily_report.service.in ---- pcp-5.3.5.orig/src/pmlogger/pmlogger_daily_report.service.in 2021-10-07 14:28:56.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger_daily_report.service.in 2022-01-21 10:55:30.289602121 +1100 -@@ -13,6 +13,3 @@ ExecStart=@PCP_BINADM_DIR@/pmlogger_dail - WorkingDirectory=@PCP_VAR_DIR@ - Group=@PCP_GROUP@ - User=@PCP_USER@ -- --[Install] --WantedBy=pmlogger.service -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger_farm_check.service.in pcp-5.3.5/src/pmlogger/pmlogger_farm_check.service.in ---- pcp-5.3.5.orig/src/pmlogger/pmlogger_farm_check.service.in 2021-11-09 09:08:40.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger_farm_check.service.in 2022-01-21 10:55:54.918186303 +1100 -@@ -1,19 +1,15 @@ - [Unit] --Description=Check and migrate non-primary pmlogger instances to pmlogger_farm --Documentation=man:pmlogger_check(1) --# TODO non-systemd ConditionPathExists=!/etc/cron.d/pcp-pmlogger -+Description=Check and migrate non-primary pmlogger farm instances -+Documentation=man:pmlogctl(1) -+ConditionPathExists=!@CRONTAB_PATH@ - - [Service] --Type=exec -+Type=@SD_SERVICE_TYPE@ - Restart=no - TimeoutStartSec=4h - TimeoutStopSec=120 - ExecStart=@PCP_BIN_DIR@/pmlogctl -m check --WorkingDirectory=/var/lib/pcp -- --# root so pmlogctl can migrate pmloggers to the pmlogger_farm service -+WorkingDirectory=@PCP_VAR_DIR@ -+# root so pmlogctl can migrate pmlogger processes to the pmlogger_farm service - Group=root - User=root -- --[Install] --RequiredBy=pmlogger_farm.service -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger_farm_check.timer pcp-5.3.5/src/pmlogger/pmlogger_farm_check.timer ---- pcp-5.3.5.orig/src/pmlogger/pmlogger_farm_check.timer 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger_farm_check.timer 2022-01-21 10:49:07.986980661 +1100 -@@ -1,10 +1,11 @@ - [Unit] --Description=5 minute check of pmlogger farm instances -+Description=Half-hourly check of pmlogger farm instances - - [Timer] --# if enabled, runs 1m after boot and every 5 mins -+# if enabled, runs 1m after boot and every half hour - OnBootSec=1min --OnCalendar=*:00/5 -+OnCalendar=*-*-* *:25:10 -+OnCalendar=*-*-* *:55:10 - - [Install] - WantedBy=timers.target -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger_farm.service.in pcp-5.3.5/src/pmlogger/pmlogger_farm.service.in ---- pcp-5.3.5.orig/src/pmlogger/pmlogger_farm.service.in 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger_farm.service.in 2022-01-21 10:55:30.289602121 +1100 -@@ -1,9 +1,9 @@ - [Unit] - Description=pmlogger farm service --Documentation=man:pmlogger(1) --After=network-online.target pmcd.service --Before=pmlogger_check.timer pmlogger_daily.timer --BindsTo=pmlogger_farm_check.timer pmlogger_check.timer pmlogger_daily.timer -+Documentation=man:pmlogger_check(1) -+Before=pmlogger_farm_check.timer -+BindsTo=pmlogger_farm_check.timer -+PartOf=pmlogger.service - - [Service] - Type=@SD_SERVICE_TYPE@ -@@ -12,16 +12,12 @@ Restart=always - TimeoutStartSec=4h - TimeoutStopSec=120 - # the pmlogger_farm service manages all pmloggers except the primary --Environment="PMLOGGER_CHECK_PARAMS=--skip-primary" -+Environment="PMLOGGER_CHECK_PARAMS=--skip-primary --quick" - EnvironmentFile=-@PCP_SYSCONFIG_DIR@/pmlogger_timers - ExecStart=@PCP_BINADM_DIR@/pmlogger_farm $PMLOGGER_CHECK_PARAMS -- - WorkingDirectory=@PCP_VAR_DIR@ - Group=@PCP_GROUP@ - User=@PCP_USER@ - - [Install] --WantedBy=multi-user.target -- --# This dependency will be removed in PCPv6. --WantedBy=pmlogger.service -+RequiredBy=pmlogger.service -diff -Naurp pcp-5.3.5.orig/src/pmlogger/pmlogger.service.in pcp-5.3.5/src/pmlogger/pmlogger.service.in ---- pcp-5.3.5.orig/src/pmlogger/pmlogger.service.in 2021-11-04 08:26:15.000000000 +1100 -+++ pcp-5.3.5/src/pmlogger/pmlogger.service.in 2022-01-21 10:49:07.986980661 +1100 -@@ -2,8 +2,8 @@ - Description=Performance Metrics Archive Logger - Documentation=man:pmlogger(1) - After=network-online.target pmcd.service --Before=pmlogger_check.timer pmlogger_daily.timer --BindsTo=pmlogger_check.timer pmlogger_daily.timer -+Before=pmlogger_farm.service pmlogger_check.timer pmlogger_daily.timer -+BindsTo=pmlogger_farm.service pmlogger_check.timer pmlogger_daily.timer - Wants=pmcd.service - - [Service] diff --git a/SOURCES/redhat-bugzilla-2029301.patch b/SOURCES/redhat-bugzilla-2029301.patch deleted file mode 100644 index 47b515d..0000000 --- a/SOURCES/redhat-bugzilla-2029301.patch +++ /dev/null @@ -1,38 +0,0 @@ -commit 9d9adc9d6c8eb24a6884da81c18b927ea706a68e -Author: Nathan Scott -Date: Tue Dec 7 11:18:11 2021 +1100 - - pmdanvidia: fix mishandling of zero-byte size passed to realloc - - Picked up during QA of recent nvidia changes - some hardware lacks - support for per-process metrics, or the hardware (GPU) has not yet - been accessed by a process using its resources, which had the side - effect that a zero-byte size argument was passed into realloc. In - turn, this passes back something that can be freed and an issue in - the logic meant this would happen on subsequent calls also. - - Resolves the QA failure and Red Hat BZ #2029301 - -diff --git a/src/pmdas/nvidia/nvidia.c b/src/pmdas/nvidia/nvidia.c -index f1c12f2275..dc5bb93a0d 100644 ---- a/src/pmdas/nvidia/nvidia.c -+++ b/src/pmdas/nvidia/nvidia.c -@@ -617,11 +617,16 @@ refresh(pcp_nvinfo_t *nvinfo, int need_processes) - /* update indoms, cull old entries that remain inactive */ - if (need_processes) { - pmdaIndom *proc_indomp = &indomtab[PROC_INDOM]; -- pmdaInstid *it_set = proc_indomp->it_set; -+ pmdaInstid *it_set = NULL; - size_t bytes = nproc * sizeof(pmdaInstid); - -- if ((it_set = (pmdaInstid *)realloc(it_set, bytes)) == NULL) -+ if (bytes > 0) { -+ it_set = (pmdaInstid *)realloc(proc_indomp->it_set, bytes); -+ if (it_set == NULL) -+ free(proc_indomp->it_set); -+ } else if (proc_indomp->it_set != NULL) { - free(proc_indomp->it_set); -+ } - - if ((proc_indomp->it_set = it_set) != NULL) { - for (i = j = 0; i < processes.hsize && j < nproc; i++) { diff --git a/SOURCES/redhat-bugzilla-2030121.patch b/SOURCES/redhat-bugzilla-2030121.patch deleted file mode 100644 index 9a24ef0..0000000 --- a/SOURCES/redhat-bugzilla-2030121.patch +++ /dev/null @@ -1,50 +0,0 @@ -commit df7b7bf64eb354114e6c519e3e03ffc446afa8ba -Author: Nathan Scott -Date: Fri Nov 26 09:17:23 2021 +1100 - - libpcp_pmda: add indom cache fast-paths for inst lookup beyond max - - We encountered a situation where indom cache loading consumed vast - CPU resources for an indom of size ~150k instances. Profiling was - used to identify the insert loop that ensures the inst linked list - within the cache hash tables is sorted - this loop is O(N*2) as we - potentially walk this list from the start on every insert during a - cache load. Because cache loading happens from a sorted file, the - worst-case scenario happened every time - each new instance insert - occurs beyond the current maximum. Fortunately we maintain a last - entry pointer, so the new fast path uses that first and falls back - to the original behaviour for an out-of-order insertion. - - A second opportunity for the same optimization was identified when - auditing the rest of cache.c - in the find_inst() routine for inst - identifier lookups beyond the current maximum observed instance. - - Resolves Red Hat BZ #2024648 - -diff --git a/src/libpcp_pmda/src/cache.c b/src/libpcp_pmda/src/cache.c -index 0e66506d74..196ffc1da9 100644 ---- a/src/libpcp_pmda/src/cache.c -+++ b/src/libpcp_pmda/src/cache.c -@@ -328,6 +328,9 @@ find_inst(hdr_t *h, int inst) - { - entry_t *e; - -+ if ((e = h->last) != NULL && e->inst < inst) -+ return NULL; -+ - for (e = h->first; e != NULL; e = e->next) { - if (e->inst == inst && e->state != PMDA_CACHE_EMPTY) - break; -@@ -621,7 +624,11 @@ insert_cache(hdr_t *h, const char *name, int inst, int *sts) - *sts = PM_ERR_INST; - return e; - } -- for (e = h->first; e != NULL; e = e->next) { -+ /* if this entry is beyond the (sorted) list end, avoid linear scan */ -+ if ((e = h->last) == NULL || e->inst > inst) -+ e = h->first; -+ /* linear search over linked list, starting at either first or last */ -+ for (; e != NULL; e = e->next) { - if (e->inst < inst) - last_e = e; - else if (e->inst > inst) diff --git a/SOURCES/redhat-bugzilla-2030140.patch b/SOURCES/redhat-bugzilla-2030140.patch deleted file mode 100644 index 3a9687f..0000000 --- a/SOURCES/redhat-bugzilla-2030140.patch +++ /dev/null @@ -1,742 +0,0 @@ -diff -Naurp pcp-5.3.5.orig/qa/1458 pcp-5.3.5/qa/1458 ---- pcp-5.3.5.orig/qa/1458 1970-01-01 10:00:00.000000000 +1000 -+++ pcp-5.3.5/qa/1458 2021-12-09 11:25:01.973327231 +1100 -@@ -0,0 +1,219 @@ -+#!/bin/sh -+# PCP QA Test No. 1458 -+# Exercise access pmproxy with secure.enabled = false -+# -+# The main purpose of this is to test that the component works correctly -+# when secure.enabled = false; we can expect the https URLs to fail. -+# -+# See https://github.com/performancecopilot/pcp/issues/1490 -+ -+# Copyright (c) 2019,2021 Red Hat -+# Modified by Netflix, Inc. -+# -+ -+seq=`basename $0` -+echo "QA output created by $seq" -+ -+# get standard environment, filters and checks -+. ./common.product -+. ./common.filter -+. ./common.check -+ -+_check_series # pmseries availability means libuv is in use -+_check_valgrind -+openssl help 2>/dev/null || _notrun "No openssl binary found" -+ -+if [ -f /etc/lsb-release ] -+then -+ . /etc/lsb-release -+ if [ "$DISTRIB_ID" = Ubuntu ] -+ then -+ # This test fails for Ubuntu 19.10 with a myriad of errors involving -+ # the use of uninitialized values. The code paths very but typically -+ # involve libuv -> libssl -> libcrypto -+ # -+ case "$DISTRIB_RELEASE" -+ in -+ 19.10) -+ _notrun "problems with libuv, libssl, libcrypto and valgrind on Ubuntu $DISTRIB_RELEASE" -+ ;; -+ esac -+ fi -+fi -+ -+_cleanup() -+{ -+ cd $here -+ if $need_restore -+ then -+ need_restore=false -+ _restore_config $PCP_SYSCONF_DIR/labels -+ _sighup_pmcd -+ fi -+ $sudo rm -rf $tmp $tmp.* -+} -+ -+status=1 # failure is the default! -+need_restore=false -+username=`id -u -n` -+$sudo rm -rf $tmp $tmp.* $seq.full -+trap "_cleanup; exit \$status" 0 1 2 3 15 -+ -+_check_empty() -+{ -+ tee -a $seq.full > $tmp.unfiltered -+ if [ -s $tmp.unfiltered ] -+ then -+ echo "Botch: got output from curl" -+ else -+ echo "Good!, empty output from curl" -+ fi -+} -+ -+_filter_json() -+{ -+ tee -a $seq.full > $tmp.unfiltered -+ if [ -s $tmp.unfiltered ] -+ then -+ pmjson < $tmp.unfiltered > $tmp.filtered -+ status=$? -+ if [ $status -eq 0 ]; then -+ cat $tmp.filtered | \ -+ sed \ -+ -e '/"machineid": .*/d' \ -+ -e 's,"series": .*,"series": "SERIES",g' \ -+ -e 's,"context": .*,"context": "CONTEXT",g' \ -+ -e 's,"hostname": .*,"hostname": "HOSTNAME",g' \ -+ -e 's,"domainname": .*,"domainname": "DOMAINNAME",g' \ -+ #end -+ else -+ echo "Invalid JSON: $status" -+ cat $tmp.unfiltered -+ rm -f $tmp.context -+ fi -+ else -+ echo "Botch: no output from curl" -+ fi -+} -+ -+_filter_port() -+{ -+ sed \ -+ -e '/ ipv6 /d' \ -+ -e "s/ $port / PORT /g" \ -+ #end -+} -+ -+# real QA test starts here -+_save_config $PCP_SYSCONF_DIR/labels -+need_restore=true -+ -+$sudo rm -rf $PCP_SYSCONF_DIR/labels/* -+_sighup_pmcd -+ -+openssl req \ -+ -new -newkey rsa:4096 -days 365 -nodes -x509 \ -+ -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.pcpqa.com" \ -+ -keyout $tmp.key -out $tmp.cert >$seq.full 2>&1 -+# creates a self-signed (insecure) certificate, so for testing only -+ -+echo "[pmproxy]" >> $tmp.conf -+echo "pcp.enabled = true" >> $tmp.conf -+echo "http.enabled = true" >> $tmp.conf -+echo "redis.enabled = false" >> $tmp.conf -+echo "secure.enabled = false" >> $tmp.conf -+ -+port=`_find_free_port` -+mkdir -p $tmp.pmproxy/pmproxy -+export PCP_RUN_DIR=$tmp.pmproxy -+export PCP_TMP_DIR=$tmp.pmproxy -+ -+$_valgrind_clean_assert pmproxy -f -l- --timeseries \ -+ -c $tmp.conf -p $port -U $username \ -+ >$tmp.valout 2>$tmp.valerr & -+pid=$! -+ -+echo "valgrind pid: $pid" >>$seq.full -+echo "pmproxy port: $port" >>$seq.full -+ -+# valgrind takes awhile to fire up -+i=0 -+while [ $i -lt 40 ] -+do -+ $PCP_BINADM_DIR/telnet-probe -c localhost $port && break -+ sleep 1 -+ i=`expr $i + 1` -+done -+if $PCP_BINADM_DIR/telnet-probe -c localhost $port -+then -+ echo "Startup took $i secs" >>$seq.full -+else -+ echo "Arrgh: valgrind failed start pmproxy and get port $port ready after 30 secs" -+ exit -+fi -+ -+date >>$seq.full -+echo "=== checking serial http operation ===" | tee -a $seq.full -+for i in 1 2 3 4; do -+ curl -Gs "http://localhost:$port/pmapi/metric?name=sample.long.ten" 2>$tmp.err$i >$tmp.out$i -+done -+for i in 1 2 3 4; do -+echo === out$i === | tee -a $seq.full -+_filter_json < $tmp.out$i -+done -+ -+date >>$seq.full -+echo "=== checking parallel http operation ===" | tee -a $seq.full -+for i in 1 2 3 4; do -+ curl -Gs "http://localhost:$port/pmapi/metric?name=sample.long.ten" 2>$tmp.err$i >$tmp.out$i & 2>/dev/null eval pid$i=$! -+done -+wait $pid1 $pid2 $pid3 $pid4 -+for i in 1 2 3 4; do -+echo === out$i === | tee -a $seq.full -+_filter_json < $tmp.out$i -+done -+ -+date >>$seq.full -+echo "=== checking serial https/TLS operation ===" | tee -a $seq.full -+for i in 1 2 3 4; do -+ curl -k -Gs "https://localhost:$port/pmapi/metric?name=sample.long.ten" 2>$tmp.err$i >$tmp.out$i -+done -+for i in 1 2 3 4; do -+echo === out$i === | tee -a $seq.full -+_check_empty < $tmp.out$i -+done -+ -+date >>$seq.full -+echo "=== checking parallel https/TLS operation ===" | tee -a $seq.full -+for i in 1 2 3 4; do -+ curl -k -Gs "https://localhost:$port/pmapi/metric?name=sample.long.ten" 2>$tmp.err$i >$tmp.out$i & 2>/dev/null eval pid$i=$! -+done -+wait $pid1 $pid2 $pid3 $pid4 -+for i in 1 2 3 4; do -+echo === out$i === | tee -a $seq.full -+_check_empty < $tmp.out$i -+done -+ -+echo "=== check pmproxy is running ===" -+pminfo -v -h localhost@localhost:$port hinv.ncpu -+if [ $? -eq 0 ]; then -+ echo "pmproxy check passed" -+else -+ echo "pmproxy check failed" -+fi -+ -+# valgrind takes awhile to shutdown too -+pmsignal $pid >/dev/null 2>&1 -+pmsleep 3.5 -+echo "=== valgrind stdout ===" | tee -a $seq.full -+cat $tmp.valout | _filter_valgrind -+ -+echo "=== valgrind stderr ===" | tee -a $seq.full -+cat $tmp.valerr | _filter_pmproxy_log | _filter_port -+ -+# final kill if it's spinning -+$sudo kill -9 $pid >/dev/null 2>&1 -+ -+# success, all done -+status=0 -+exit -diff -Naurp pcp-5.3.5.orig/qa/1458.out pcp-5.3.5/qa/1458.out ---- pcp-5.3.5.orig/qa/1458.out 1970-01-01 10:00:00.000000000 +1000 -+++ pcp-5.3.5/qa/1458.out 2021-12-09 11:25:01.973327231 +1100 -@@ -0,0 +1,221 @@ -+QA output created by 1458 -+=== checking serial http operation === -+=== out1 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out2 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out3 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out4 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== checking parallel http operation === -+=== out1 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out2 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out3 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== out4 === -+{ -+ "context": "CONTEXT" -+ "metrics": [ -+ { -+ "name": "sample.long.ten", -+ "series": "SERIES" -+ "pmid": "29.0.11", -+ "type": "32", -+ "sem": "instant", -+ "units": "none", -+ "labels": { -+ "agent": "sample", -+ "cluster": "zero", -+ "domainname": "DOMAINNAME" -+ "hostname": "HOSTNAME" -+ "role": "testing" -+ }, -+ "text-oneline": "10 as a 32-bit integer", -+ "text-help": "10 as a 32-bit integer" -+ } -+ ] -+} -+=== checking serial https/TLS operation === -+=== out1 === -+Good!, empty output from curl -+=== out2 === -+Good!, empty output from curl -+=== out3 === -+Good!, empty output from curl -+=== out4 === -+Good!, empty output from curl -+=== checking parallel https/TLS operation === -+=== out1 === -+Good!, empty output from curl -+=== out2 === -+Good!, empty output from curl -+=== out3 === -+Good!, empty output from curl -+=== out4 === -+Good!, empty output from curl -+=== check pmproxy is running === -+pmproxy check passed -+=== valgrind stdout === -+=== valgrind stderr === -+Log for pmproxy on HOST started DATE -+ -+pmproxy: PID = PID -+pmproxy request port(s): -+ sts fd port family address -+ === ==== ===== ====== ======= -+ok FD unix UNIX_DOMAIN_SOCKET -+ok FD PORT inet INADDR_ANY -+[DATE] pmproxy(PID) Info: pmproxy caught SIGTERM -+[DATE] pmproxy(PID) Info: pmproxy Shutdown -+ -+Log finished DATE -diff -Naurp pcp-5.3.5.orig/src/pmproxy/src/pcp.c pcp-5.3.5/src/pmproxy/src/pcp.c ---- pcp-5.3.5.orig/src/pmproxy/src/pcp.c 2021-09-24 09:33:06.000000000 +1000 -+++ pcp-5.3.5/src/pmproxy/src/pcp.c 2021-12-09 11:22:09.829321418 +1100 -@@ -1,6 +1,6 @@ - /* -- * Copyright (c) 2018-2019 Red Hat. -- * -+ * Copyright (c) 2018-2019,2021 Red Hat. -+ * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2.1 of the License, or -@@ -19,22 +19,13 @@ - #define PDU_MAXLENGTH (MAXHOSTNAMELEN + HEADER_LENGTH + sizeof("65536")-1) - - static void --client_free(struct client *client) --{ -- if (client->u.pcp.hostname) -- sdsfree(client->u.pcp.hostname); -- if (client->buffer) -- sdsfree(client->buffer); --} -- --static void - on_server_close(uv_handle_t *handle) - { - struct client *client = (struct client *)handle; - - if (pmDebugOptions.pdu) - fprintf(stderr, "client %p pmcd connection closed\n", client); -- client_free(client); -+ client_put(client); - } - - static void -@@ -92,12 +83,11 @@ on_server_read(uv_stream_t *stream, ssiz - void - on_pcp_client_close(struct client *client) - { -- if (client->u.pcp.connected) { -+ if (client->u.pcp.connected) - uv_close((uv_handle_t *)&client->u.pcp.socket, on_server_close); -- memset(&client->u.pcp, 0, sizeof(client->u.pcp)); -- } else { -- client_free(client); -- } -+ if (client->u.pcp.hostname) -+ sdsfree(client->u.pcp.hostname); -+ memset(&client->u.pcp, 0, sizeof(client->u.pcp)); - } - - static void -@@ -118,6 +108,8 @@ on_pcp_client_connect(uv_connect_t *conn - - /* socket connection to pmcd successfully established */ - client->u.pcp.state = PCP_PROXY_SETUP; -+ client->u.pcp.connected = 1; -+ client_get(client); - - /* if we have already received PDUs, send them on now */ - if ((buffer = client->buffer) != NULL) { -diff -Naurp pcp-5.3.5.orig/src/pmproxy/src/secure.c pcp-5.3.5/src/pmproxy/src/secure.c ---- pcp-5.3.5.orig/src/pmproxy/src/secure.c 2021-11-01 13:02:26.000000000 +1100 -+++ pcp-5.3.5/src/pmproxy/src/secure.c 2021-12-09 11:22:09.831321384 +1100 -@@ -1,5 +1,5 @@ - /* -- * Copyright (c) 2019 Red Hat. -+ * Copyright (c) 2019,2021 Red Hat. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published -@@ -16,7 +16,7 @@ - #include - #include - --/* called with proxy->mutex locked */ -+/* called with proxy->write_mutex locked */ - static void - remove_connection_from_queue(struct client *client) - { -@@ -44,9 +44,9 @@ on_secure_client_close(struct client *cl - if (pmDebugOptions.auth || pmDebugOptions.http) - fprintf(stderr, "%s: client %p\n", "on_secure_client_close", client); - -- uv_mutex_lock(&client->proxy->mutex); -+ uv_mutex_lock(&client->proxy->write_mutex); - remove_connection_from_queue(client); -- uv_mutex_unlock(&client->proxy->mutex); -+ uv_mutex_unlock(&client->proxy->write_mutex); - /* client->read and client->write freed by SSL_free */ - SSL_free(client->secure.ssl); - } -@@ -63,7 +63,7 @@ maybe_flush_ssl(struct proxy *proxy, str - client->secure.pending.writes_count > 0) - return; - -- uv_mutex_lock(&proxy->mutex); -+ uv_mutex_lock(&proxy->write_mutex); - if (proxy->pending_writes == NULL) { - proxy->pending_writes = client; - client->secure.pending.prev = client->secure.pending.next = NULL; -@@ -75,7 +75,7 @@ maybe_flush_ssl(struct proxy *proxy, str - client->secure.pending.prev = c; - } - client->secure.pending.queued = 1; -- uv_mutex_unlock(&proxy->mutex); -+ uv_mutex_unlock(&proxy->write_mutex); - } - - static void -@@ -161,7 +161,7 @@ flush_secure_module(struct proxy *proxy) - size_t i, used; - int sts; - -- uv_mutex_lock(&proxy->mutex); -+ uv_mutex_lock(&proxy->write_mutex); - head = &proxy->pending_writes; - while ((client = *head) != NULL) { - flush_ssl_buffer(client); -@@ -212,7 +212,7 @@ flush_secure_module(struct proxy *proxy) - sizeof(uv_buf_t) * client->secure.pending.writes_count); - } - } -- uv_mutex_unlock(&proxy->mutex); -+ uv_mutex_unlock(&proxy->write_mutex); - } - - void -@@ -221,7 +221,8 @@ secure_client_write(struct client *clien - struct proxy *proxy = client->proxy; - uv_buf_t *dup; - size_t count, bytes; -- int i, sts, defer = 0, maybe = 0; -+ unsigned int i; -+ int sts, defer = 0, maybe = 0; - - for (i = 0; i < request->nbuffers; i++) { - if (defer == 0) { -diff -Naurp pcp-5.3.5.orig/src/pmproxy/src/server.c pcp-5.3.5/src/pmproxy/src/server.c ---- pcp-5.3.5.orig/src/pmproxy/src/server.c 2021-11-01 13:02:26.000000000 +1100 -+++ pcp-5.3.5/src/pmproxy/src/server.c 2021-12-09 11:22:09.831321384 +1100 -@@ -1,5 +1,5 @@ - /* -- * Copyright (c) 2018-2019 Red Hat. -+ * Copyright (c) 2018-2019,2021 Red Hat. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published -@@ -125,7 +125,7 @@ server_init(int portcount, const char *l - pmGetProgname()); - return NULL; - } -- uv_mutex_init(&proxy->mutex); -+ uv_mutex_init(&proxy->write_mutex); - - count = portcount + (*localpath ? 1 : 0); - if (count) { -@@ -229,7 +229,6 @@ void - client_put(struct client *client) - { - unsigned int refcount; -- struct proxy *proxy = client->proxy; - - uv_mutex_lock(&client->mutex); - assert(client->refcount); -@@ -237,22 +236,16 @@ client_put(struct client *client) - uv_mutex_unlock(&client->mutex); - - if (refcount == 0) { -- /* remove client from the doubly-linked list */ -- uv_mutex_lock(&proxy->mutex); -- if (client->next != NULL) -- client->next->prev = client->prev; -- *client->prev = client->next; -- uv_mutex_unlock(&proxy->mutex); -- - if (client->protocol & STREAM_PCP) - on_pcp_client_close(client); - if (client->protocol & STREAM_HTTP) - on_http_client_close(client); - if (client->protocol & STREAM_REDIS) - on_redis_client_close(client); -- if (client->protocol & STREAM_SECURE) -+ if ((client->protocol & STREAM_SECURE) && client->stream.secure) - on_secure_client_close(client); -- -+ if (client->buffer) -+ sdsfree(client->buffer); - memset(client, 0, sizeof(*client)); - free(client); - } -@@ -284,7 +277,7 @@ on_client_write(uv_write_t *writer, int - "on_client_write", status, client); - - if (status == 0) { -- if (client->protocol & STREAM_SECURE) -+ if ((client->protocol & STREAM_SECURE) && client->stream.secure) - on_secure_client_write(client); - if (client->protocol & STREAM_PCP) - on_pcp_client_write(client); -@@ -434,10 +427,16 @@ on_client_read(uv_stream_t *stream, ssiz - if (nread > 0) { - if (client->protocol == STREAM_UNKNOWN) - client->protocol |= client_protocol(*buf->base); -- if (client->protocol & STREAM_SECURE) -+ -+#ifdef HAVE_OPENSSL -+ if ((client->protocol & STREAM_SECURE) && (proxy->ssl != NULL)) - on_secure_client_read(proxy, client, nread, buf); - else - on_protocol_read(stream, nread, buf); -+#else -+ on_protocol_read(stream, nread, buf); -+#endif -+ - } else if (nread < 0) { - if (pmDebugOptions.af) - fprintf(stderr, "%s: read error %ld " -@@ -494,14 +493,6 @@ on_client_connection(uv_stream_t *stream - handle->data = (void *)proxy; - client->proxy = proxy; - -- /* insert client into doubly-linked list at the head */ -- uv_mutex_lock(&proxy->mutex); -- if ((client->next = proxy->first) != NULL) -- proxy->first->prev = &client->next; -- proxy->first = client; -- client->prev = &proxy->first; -- uv_mutex_unlock(&proxy->mutex); -- - status = uv_read_start((uv_stream_t *)&client->stream.u.tcp, - on_buffer_alloc, on_client_read); - if (status != 0) { -@@ -719,7 +710,7 @@ shutdown_ports(void *arg) - struct proxy *proxy = (struct proxy *)arg; - struct server *server; - struct stream *stream; -- int i; -+ unsigned int i; - - for (i = 0; i < proxy->nservers; i++) { - server = &proxy->servers[i]; -@@ -756,7 +747,8 @@ dump_request_ports(FILE *output, void *a - struct proxy *proxy = (struct proxy *)arg; - struct stream *stream; - uv_os_fd_t uv_fd; -- int i, fd; -+ unsigned int i; -+ int fd; - - fprintf(output, "%s request port(s):\n" - " sts fd port family address\n" -diff -Naurp pcp-5.3.5.orig/src/pmproxy/src/server.h pcp-5.3.5/src/pmproxy/src/server.h ---- pcp-5.3.5.orig/src/pmproxy/src/server.h 2021-09-24 09:33:06.000000000 +1000 -+++ pcp-5.3.5/src/pmproxy/src/server.h 2021-12-09 11:22:09.830321401 +1100 -@@ -1,5 +1,5 @@ - /* -- * Copyright (c) 2018-2019 Red Hat. -+ * Copyright (c) 2018-2019,2021 Red Hat. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published -@@ -97,11 +97,11 @@ typedef struct http_client { - - typedef struct pcp_client { - pcp_proxy_state_t state; -- sds hostname; - unsigned int port : 16; - unsigned int certreq : 1; - unsigned int connected : 1; - unsigned int pad : 14; -+ sds hostname; - uv_connect_t pmcd; - uv_tcp_t socket; - } pcp_client_t; -@@ -136,8 +136,6 @@ typedef struct client { - pcp_client_t pcp; - } u; - struct proxy *proxy; -- struct client *next; -- struct client **prev; - sds buffer; - } client_t; - -@@ -161,7 +159,7 @@ typedef struct proxy { - struct dict *config; /* configuration dictionary */ - uv_loop_t *events; /* global, async event loop */ - uv_callback_t write_callbacks; -- uv_mutex_t mutex; /* protects client lists and pending writes */ -+ uv_mutex_t write_mutex; /* protects pending writes */ - } proxy_t; - - extern void proxylog(pmLogLevel, sds, void *); diff --git a/SOURCES/redhat-bugzilla-2059461-pmie-systemd-fixup.patch b/SOURCES/redhat-bugzilla-2059461-pmie-systemd-fixup.patch new file mode 100644 index 0000000..b3190a7 --- /dev/null +++ b/SOURCES/redhat-bugzilla-2059461-pmie-systemd-fixup.patch @@ -0,0 +1,11 @@ +diff -Naurp pcp-5.3.7.orig/src/pmie/GNUmakefile pcp-5.3.7/src/pmie/GNUmakefile +--- pcp-5.3.7.orig/src/pmie/GNUmakefile 2022-02-02 11:53:05.000000000 +1100 ++++ pcp-5.3.7/src/pmie/GNUmakefile 2022-05-03 11:45:12.108743480 +1000 +@@ -80,6 +80,7 @@ pmie.service : pmie.service.in + $(SED) <$< >$@ \ + -e 's;@PCP_RC_DIR@;'$(PCP_RC_DIR)';' \ + -e 's;@PCP_RUN_DIR@;'$(PCP_RUN_DIR)';' \ ++ -e 's;@PCP_SYSCONFIG_DIR@;'$(PCP_SYSCONFIG_DIR)';' \ + # END + + pmie_farm.service : pmie_farm.service.in diff --git a/SOURCES/redhat-bugzilla-2059463-pmdapostfix-harden.patch b/SOURCES/redhat-bugzilla-2059463-pmdapostfix-harden.patch new file mode 100644 index 0000000..73236d6 --- /dev/null +++ b/SOURCES/redhat-bugzilla-2059463-pmdapostfix-harden.patch @@ -0,0 +1,146 @@ +commit f54eddf494e474531e5af609bcc376037a918977 +Author: Nathan Scott +Date: Tue Apr 26 14:32:59 2022 +1000 + + pmdapostfix: harden against a not-yet-running postfix + + Ensure the postfix PMDA can start and service requests even + if postfix is not yet started. + +diff --git a/src/perl/PMDA/local.c b/src/perl/PMDA/local.c +index e223bde7a..33130bc5d 100644 +--- a/src/perl/PMDA/local.c ++++ b/src/perl/PMDA/local.c +@@ -1,5 +1,5 @@ + /* +- * Copyright (c) 2012-2017 Red Hat. ++ * Copyright (c) 2012-2017,2022 Red Hat. + * Copyright (c) 2008-2011 Aconex. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it +@@ -139,18 +139,15 @@ int + local_tail(char *file, scalar_t *callback, int cookie) + { + int fd = open(file, O_RDONLY | O_NDELAY); +- struct stat stats; ++ struct stat stats = {0}; + int me; + +- if (fd < 0) { +- pmNotifyErr(LOG_ERR, "open failed (%s): %s", file, osstrerror()); +- exit(1); +- } +- if (fstat(fd, &stats) < 0) { +- pmNotifyErr(LOG_ERR, "fstat failed (%s): %s", file, osstrerror()); +- exit(1); +- } +- lseek(fd, 0L, SEEK_END); ++ if (fd < 0) ++ pmNotifyErr(LOG_INFO, "open failed (%s): %s", file, osstrerror()); ++ else if (fstat(fd, &stats) < 0) ++ pmNotifyErr(LOG_INFO, "fstat failed (%s): %s", file, osstrerror()); ++ else ++ lseek(fd, 0L, SEEK_END); + me = local_file(FILE_TAIL, fd, callback, cookie); + files[me].me.tail.path = strdup(file); + files[me].me.tail.dev = stats.st_dev; +@@ -416,10 +413,11 @@ local_pmdaMain(pmdaInterface *self) + } + + for (i = 0; i < nfiles; i++) { +- fd = files[i].fd; + /* check for log rotation or host reconnection needed */ + if ((count % 10) == 0) /* but only once every 10 */ + local_connection(&files[i]); ++ if ((fd = files[i].fd) < 0) ++ continue; + if (files[i].type != FILE_TAIL && !(__pmFD_ISSET(fd, &readyfds))) + continue; + offset = 0; +@@ -431,21 +429,16 @@ multiread: + (oserror() == EAGAIN) || + (oserror() == EWOULDBLOCK))) + continue; +- if (files[i].type == FILE_SOCK) { +- close(files[i].fd); +- files[i].fd = -1; +- continue; +- } +- pmNotifyErr(LOG_ERR, "Data read error on %s: %s\n", +- local_filetype(files[i].type), osstrerror()); +- exit(1); ++ close(files[i].fd); ++ files[i].fd = -1; ++ continue; + } + if (bytes == 0) { + if (files[i].type == FILE_TAIL) + continue; +- pmNotifyErr(LOG_ERR, "No data to read - %s may be closed\n", +- local_filetype(files[i].type)); +- exit(1); ++ close(files[i].fd); ++ files[i].fd = -1; ++ continue; + } + /* + * good read ... data up to buffer + offset + bytes is all OK +diff --git a/src/pmdas/postfix/pmdapostfix.pl b/src/pmdas/postfix/pmdapostfix.pl +index ac46816bc..d6d3f4d3a 100644 +--- a/src/pmdas/postfix/pmdapostfix.pl ++++ b/src/pmdas/postfix/pmdapostfix.pl +@@ -1,5 +1,5 @@ + # +-# Copyright (c) 2012-2015 Red Hat. ++# Copyright (c) 2012-2015,2022 Red Hat. + # Copyright (c) 2009-2010 Josef 'Jeff' Sipek + # + # This program is free software; you can redistribute it and/or modify it +@@ -56,8 +56,6 @@ my @postfix_received_dom = ( + 1 => 'smtp', + ); + +-my $setup = defined($ENV{'PCP_PERL_PMNS'}) || defined($ENV{'PCP_PERL_DOMAIN'}); +- + sub postfix_do_refresh + { + QUEUE: +@@ -212,7 +210,7 @@ $logstats{"received"}{1} = 0; + + # Note: + # Environment variables. +-# $PMDA_POSTFIX_QSHAPE: alternative executable qshape scrpipt (for QA) ++# $PMDA_POSTFIX_QSHAPE: alternative executable qshape script (for QA) + # ... over-rides default and command line argument. + # ... over-rides default arguments -b 10 -t $refresh + # $PMDA_POSTFIX_REFRESH: alternative refresh rate (for QA) +@@ -228,7 +226,7 @@ if (defined($ENV{'PMDA_POSTFIX_QSHAPE'})) { + $qshape = $ENV{'PMDA_POSTFIX_QSHAPE'}; + $qshape_args = ''; + } +-if (!$setup) { $pmda->log("qshape cmd: $qshape $qshape_args "); } ++unless (pmda_install()) { $pmda->log("qshape cmd: $qshape $qshape_args "); } + + if (defined($ENV{'PMDA_POSTFIX_REFRESH'})) { $refresh = $ENV{'PMDA_POSTFIX_REFRESH'}; } + +@@ -238,12 +236,15 @@ foreach my $file ( @logfiles ) { + } + } + if (defined($ENV{'PMDA_POSTFIX_LOG'})) { $logfile = $ENV{'PMDA_POSTFIX_LOG'}; } +-unless(defined($logfile)) +-{ +- $pmda->log("Fatal: No Postfix log file found in: @logfiles"); +- die 'No Postfix log file found'; ++unless (pmda_install()) { ++ if (defined($logfile)) { ++ $pmda->log("logfile: $logfile"); ++ } else { ++ $pmda->log("Warning: assuming logfile: $logfiles[0] as no Postfix log found yet from: @logfiles"); ++ } + } +-if (!$setup) { $pmda->log("logfile: $logfile"); } ++# set a good default if none found, before continuing ++unless (defined($logfile)) { $logfile = $logfiles[0]; } + + $pmda->add_indom($postfix_queues_indom, \@postfix_queues_dom, '', ''); + $pmda->add_indom($postfix_sent_indom, \@postfix_sent_dom, '', ''); diff --git a/SOURCES/redhat-bugzilla-2081262-pmdaproc-cgroups-fix.patch b/SOURCES/redhat-bugzilla-2081262-pmdaproc-cgroups-fix.patch new file mode 100644 index 0000000..77256ef --- /dev/null +++ b/SOURCES/redhat-bugzilla-2081262-pmdaproc-cgroups-fix.patch @@ -0,0 +1,44 @@ +commit d874d2e486c8a64fa9945ed7aa0048cccbd46f77 +Author: Nathan Scott +Date: Wed May 4 17:11:19 2022 +1000 + + pmdaproc: fix cgroup cpu metrics refresh structures + + Jan Kurik encountered this issue when running the regression + testsuite (especially qa/359) on non-x86_64 architectures. + + Something must've changed in the toolchain recently on these + platforms since we've not seen this before, but this bug has + been in our code for some time. It works everywhere else by + good fortune, when there just happen to be NULLs after these + cgroups CPU parsing data structures. + + Resolves Red Hat BZ #2081262. + +diff --git a/src/pmdas/linux_proc/cgroups.c b/src/pmdas/linux_proc/cgroups.c +index 413a72343..26d59863a 100644 +--- a/src/pmdas/linux_proc/cgroups.c ++++ b/src/pmdas/linux_proc/cgroups.c +@@ -1,5 +1,5 @@ + /* +- * Copyright (c) 2012-2019 Red Hat. ++ * Copyright (c) 2012-2019,2022 Red Hat. + * Copyright (c) 2010 Aconex. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it +@@ -863,6 +863,7 @@ read_cpu_time(const char *file, cgroup_cputime_t *ccp) + { "usage_usec", &cputime.usage }, + { "user_usec", &cputime.user }, + { "system_usec", &cputime.system }, ++ { NULL, NULL } + }; + char buffer[4096], name[64]; + unsigned long long value; +@@ -903,6 +904,7 @@ read_cpu_stats(const char *file, cgroup_cpustat_t *ccp) + { "nr_periods", &cpustat.nr_periods }, + { "nr_throttled", &cpustat.nr_throttled }, + { "throttled_time", &cpustat.throttled_time }, ++ { NULL, NULL } + }; + char buffer[4096], name[64]; + unsigned long long value; diff --git a/SPECS/pcp.spec b/SPECS/pcp.spec index f9cb913..e328201 100644 --- a/SPECS/pcp.spec +++ b/SPECS/pcp.spec @@ -1,23 +1,20 @@ Name: pcp -Version: 5.3.5 -Release: 8%{?dist} +Version: 5.3.7 +Release: 7%{?dist} Summary: System-level performance monitoring and performance management License: GPLv2+ and LGPLv2+ and CC-BY URL: https://pcp.io %global artifactory https://performancecopilot.jfrog.io/artifactory Source0: %{artifactory}/pcp-source-release/pcp-%{version}.src.tar.gz +Patch0: redhat-bugzilla-1981886-pmdasockets-backporting.patch +Patch1: redhat-bugzilla-2059461-pmie-systemd-fixup.patch +Patch2: redhat-bugzilla-2081262-pmdaproc-cgroups-fix.patch +Patch3: redhat-bugzilla-2059463-pmdapostfix-harden.patch -Patch0: redhat-bugzilla-2017632.patch -Patch1: redhat-bugzilla-2029301.patch -Patch2: redhat-bugzilla-2030121.patch -Patch3: redhat-bugzilla-2027753.patch -Patch4: redhat-bugzilla-2030140.patch -Patch5: redhat-bugzilla-2024982.patch -Patch6: redhat-bugzilla-2024980.patch -Patch7: redhat-bugzilla-1973833.patch -Patch8: redhat-bugzilla-2006430.patch -Patch9: redhat-bugzilla-1991764.patch +# The additional linker flags break out-of-tree PMDAs. +# https://bugzilla.redhat.com/show_bug.cgi?id=2043092 +%undefine _package_note_flags %if 0%{?fedora} >= 26 || 0%{?rhel} > 7 %global __python2 python2 @@ -101,7 +98,7 @@ Patch9: redhat-bugzilla-1991764.patch %global disable_bcc 1 %endif -# support for pmdabpf, check bcc.spec for supported architectures of libbpf-tools +# support for pmdabpf, check bpf.spec for supported architectures of bpf %if 0%{?fedora} >= 33 || 0%{?rhel} > 8 %ifarch x86_64 ppc64 ppc64le aarch64 %global disable_bpf 0 @@ -300,9 +297,18 @@ Requires: cyrus-sasl-scram %endif Requires: pcp-libs = %{version}-%{release} %if !%{disable_selinux} + +# rpm boolean dependencies are supported since RHEL 8 +%if 0%{?fedora} >= 35 || 0%{?rhel} >= 8 +# This ensures that the pcp-selinux package and all it's dependencies are not pulled +# into containers and other systems that do not use SELinux +Requires: (pcp-selinux = %{version}-%{release} if selinux-policy-targeted) +%else Requires: pcp-selinux = %{version}-%{release} %endif +%endif + %global _confdir %{_sysconfdir}/pcp %global _logsdir %{_localstatedir}/log/pcp %global _pmnsdir %{_localstatedir}/lib/pcp/pmns @@ -2290,12 +2296,6 @@ updated policy package. %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 %build # the buildsubdir macro gets defined in %setup and is apparently only available in the next step (i.e. the %build step) @@ -3353,6 +3353,20 @@ PCP_LOG_DIR=%{_logsdir} %files zeroconf -f pcp-zeroconf-files.rpm %changelog +* Mon May 09 2022 Nathan Scott - 5.3.7-7 +- Additional selinux policy rules for pmdasockets (BZ 1981886) + +* Thu May 05 2022 Nathan Scott - 5.3.7-5 +- Harden pmdapostfix(1) against missing Postfix (BZ 2059463) +- Fix cgroups failure on non-x86_64 platforms (BZ 2081262) + +* Tue May 03 2022 Nathan Scott - 5.3.7-3 +- Fix remaining issues in the pcp-ss(1) utility (BZ 1981886) +- Remove benign pmie systemd unit file warning (BZ 2072971) + +* Tue Apr 05 2022 Nathan Scott - 5.3.7-2 +- Rebase to latest stable version of PCP (BZ 2059462) + * Wed Feb 02 2022 Nathan Scott - 5.3.5-8 - Fix pcp-zeroconf logger interval override regression (BZ 1991764) - Remove warnings from spec setup of PCP systemd units (BZ 2048024)