Home
last modified time | relevance | path

Searched refs:schema (Results 1 - 16 of 16) sorted by relevance

/kernel/linux/linux-5.10/Documentation/devicetree/bindings/
H A DMakefile4 DT_MK_SCHEMA ?= dt-mk-schema
23 DT_TMP_SCHEMA := $(obj)/processed-schema-examples.json
26 -name 'processed-schema*' ! \
58 $(obj)/processed-schema-examples.json: $(DT_DOCS) $(src)/.yamllint check_dtschema_version FORCE
63 # Unless DT_SCHEMA_FILES is specified, use the full schema for dtbs_check too.
64 # Just copy processed-schema-examples.json
66 $(obj)/processed-schema.json: $(obj)/processed-schema-examples.json FORCE
73 # If DT_SCHEMA_FILES is specified, use it for processed-schema.json
75 $(obj)/processed-schema
[all...]
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/resctrl/
H A Dctrlmondata.c459 static void show_doms(struct seq_file *s, struct resctrl_schema *schema, int closid) in show_doms() argument
461 struct rdt_resource *r = schema->res; in show_doms()
466 seq_printf(s, "%*s:", max_name_width, schema->name); in show_doms()
475 schema->conf_type); in show_doms()
487 struct resctrl_schema *schema; in rdtgroup_schemata_show() local
495 list_for_each_entry(schema, &resctrl_schema_all, list) { in rdtgroup_schemata_show()
496 seq_printf(s, "%s:uninitialized\n", schema->name); in rdtgroup_schemata_show()
511 list_for_each_entry(schema, &resctrl_schema_all, list) { in rdtgroup_schemata_show()
512 if (closid < schema->num_closid) in rdtgroup_schemata_show()
513 show_doms(s, schema, closi in rdtgroup_schemata_show()
[all...]
H A Drdtgroup.c1370 struct resctrl_schema *schema; in rdtgroup_size_show() local
1405 list_for_each_entry(schema, &resctrl_schema_all, list) { in rdtgroup_size_show()
1406 r = schema->res; in rdtgroup_size_show()
1407 type = schema->conf_type; in rdtgroup_size_show()
1409 seq_printf(s, "%*s:", max_name_width, schema->name); in rdtgroup_size_show()
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/
H A DMakefile4 DT_MK_SCHEMA ?= dt-mk-schema
29 -name 'processed-schema*' \)
67 $(obj)/processed-schema.json: $(DT_DOCS) $(src)/.yamllint check_dtschema_version FORCE
70 always-y += processed-schema.json
79 dt_compatible_check: $(obj)/processed-schema.json
/kernel/linux/linux-6.6/tools/net/ynl/
H A Dcli.py15 parser.add_argument('--schema', dest='schema', type=str)
16 parser.add_argument('--no-schema', action='store_true')
33 args.schema = ''
39 ynl = YnlFamily(args.spec, args.schema)
H A Dethtool.py156 schema = '../../../Documentation/netlink/genetlink-legacy.yaml'
158 ynl = YnlFamily(spec, schema)
/kernel/linux/linux-5.10/tools/testing/selftests/resctrl/
H A Dresctrlfs.c504 char controlgroup[1024], schema[1024], reason[64]; in write_schemata() local
533 sprintf(schema, "%s%d%c%s", "L3:", resource_id, '=', schemata); in write_schemata()
535 sprintf(schema, "%s%d%c%s", "MB:", resource_id, '=', schemata); in write_schemata()
545 if (fprintf(fp, "%s\n", schema) < 0) { in write_schemata()
555 printf("%sok Write schema \"%s\" to resctrl FS%s%s\n", in write_schemata()
556 ret ? "not " : "", schema, ret ? " # " : "", in write_schemata()
/kernel/linux/linux-6.6/tools/testing/selftests/resctrl/
H A Dresctrlfs.c493 char controlgroup[1024], schema[1024], reason[64]; in write_schemata() local
523 sprintf(schema, "%s%d%c%s", "L3:", resource_id, '=', schemata); in write_schemata()
526 sprintf(schema, "%s%d%c%s", "MB:", resource_id, '=', schemata); in write_schemata()
536 if (fprintf(fp, "%s\n", schema) < 0) { in write_schemata()
546 ksft_print_msg("Write schema \"%s\" to resctrl FS%s%s\n", in write_schemata()
547 schema, ret ? " # " : "", in write_schemata()
/kernel/linux/linux-6.6/net/ipv6/
H A Dioam6.c183 sc = rcu_dereference_protected(ns->schema, in ioam6_genl_delns()
230 sc = rcu_dereference(ns->schema); in __ioam6_genl_dumpns_element()
390 rcu_assign_pointer(ns->schema, NULL); in ioam6_genl_delsc()
535 sc_ref = rcu_dereference_protected(ns->schema, in ioam6_genl_ns_set_schema()
539 rcu_assign_pointer(ns->schema, sc); in ioam6_genl_ns_set_schema()
545 rcu_assign_pointer(ns_ref->schema, NULL); in ioam6_genl_ns_set_schema()
876 * if the current IOAM namespace has an active schema attached to it in ioam6_fill_trace_data()
878 sc = rcu_dereference(ns->schema); in ioam6_fill_trace_data()
/kernel/linux/linux-6.6/include/net/
H A Dioam6.h21 struct ioam6_schema __rcu *schema; member
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H A Dioam6.sh318 ip -netns ioam-node-alpha ioam schema add ${ALPHA[8]} "${ALPHA[9]}"
319 ip -netns ioam-node-alpha ioam namespace set 123 schema ${ALPHA[8]}
330 ip -netns ioam-node-beta ioam schema add ${BETA[8]} "${BETA[9]}"
331 ip -netns ioam-node-beta ioam namespace set 123 schema ${BETA[8]}
447 ip -netns ioam-node-alpha ioam namespace set 123 schema ${ALPHA[8]}
/kernel/linux/linux-5.10/scripts/dtc/
H A DMakefile16 $(error dtc needs libyaml for DT schema validation support. \
/kernel/linux/linux-6.6/tools/net/ynl/lib/
H A Dnlspec.py331 netlink-raw schema. Genetlink families use dynamic ID allocation
394 schema = yaml.safe_load(stream)
399 jsonschema.validate(self.yaml, schema)
H A Dynl.py407 def __init__(self, def_path, schema=None):
408 super().__init__(def_path, schema)
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H A Dexported-sql-viewer.py3761 schema = "information_schema"
3764 schema = "public"
3765 QueryExec(query, "SELECT column_name FROM information_schema.columns WHERE table_schema = '" + schema + "' and table_name = '" + select_table_name + "'")
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dexported-sql-viewer.py3762 schema = "information_schema"
3765 schema = "public"
3766 QueryExec(query, "SELECT column_name FROM information_schema.columns WHERE table_schema = '" + schema + "' and table_name = '" + select_table_name + "'")

Completed in 25 milliseconds