| /tools/build/ |
| A D | Makefile.feature | 191 $(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat))) 206 $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat))) 216 $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat))) 234 ifneq (,$(filter 1,$(foreach feat,$(call feature_group,$(feat)),$(feature-$(feat))))) 265 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_… 270 $(foreach feat,$(FEATURE_TESTS),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_du… 281 …$(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FI… 291 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat))) 303 FEATURE_OMIT := $(foreach feat,$(FEATURE_DISPLAY),$(FEATURE_GROUP_MEMBERS-$(feat))) 311 …$(foreach feat,$(filter-out $(FEATURE_OMIT),$(FEATURE_DISPLAY)),$(call feature_print_status,$(feat… [all …]
|
| /tools/testing/selftests/drivers/net/netdevsim/ |
| A D | ethtool-features.sh | 17 for feat in $FEATS ; do 18 s=$(ethtool --json -k $NSIM_NETDEV | jq ".[].\"$feat\".active" 2>/dev/null) 21 s=$(ethtool --json -k $NSIM_NETDEV | jq ".[].\"$feat\".fixed" 2>/dev/null)
|
| /tools/perf/util/ |
| A D | header.h | 146 int (*copy)(struct feat_copier *fc, int feat, struct feat_writer *fw); 157 void perf_header__set_feat(struct perf_header *header, int feat); 158 void perf_header__clear_feat(struct perf_header *header, int feat); 159 bool perf_header__has_feat(const struct perf_header *header, int feat); 167 int feat, int fd, void *data));
|
| A D | header.c | 89 __set_bit(feat, header->adds_features); in perf_header__set_feat() 3486 if (!feat_ops[feat].print) in perf_file_section__fprintf_info() 3498 feat_ops[feat].name); in perf_file_section__fprintf_info() 3615 int feat; in perf_header__adds_write() local 3845 int feat; in perf_header__process_sections() local 4104 if (!feat_ops[feat].process) in perf_file_section__process() 4366 u64 feat = fe->feat_id; in perf_event__process_feature() local 4374 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) { in perf_event__process_feature() 4383 if (feat_ops[feat].process && feat_ops[feat].process(&ff, NULL)) { in perf_event__process_feature() 4394 feat_ops[feat].name); in perf_event__process_feature() [all …]
|
| A D | synthetic-events.c | 2395 int feat, ret; in perf_event__synthesize_features() local 2411 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) { in perf_event__synthesize_features() 2412 if (!feat_ops[feat].synthesize) { in perf_event__synthesize_features() 2413 pr_debug("No record header feature for header :%d\n", feat); in perf_event__synthesize_features() 2419 ret = feat_ops[feat].write(&ff, evlist); in perf_event__synthesize_features() 2428 fe->feat_id = feat; in perf_event__synthesize_features()
|
| A D | intel-tpebs.c | 222 if (event->feat.feat_id < HEADER_LAST_FEATURE) in process_feature_event()
|
| /tools/testing/cxl/test/ |
| A D | mem.c | 1400 feat->uuid = CXL_VENDOR_FEATURE_TEST; in fill_feature_vendor_test() 1401 feat->id = 0; in fill_feature_vendor_test() 1402 feat->get_feat_size = cpu_to_le16(0x4); in fill_feature_vendor_test() 1403 feat->set_feat_size = cpu_to_le16(0x4); in fill_feature_vendor_test() 1404 feat->flags = cpu_to_le32(CXL_FEATURE_F_CHANGEABLE | in fill_feature_vendor_test() 1407 feat->get_feat_ver = 1; in fill_feature_vendor_test() 1408 feat->set_feat_ver = 1; in fill_feature_vendor_test() 1409 feat->effects = cpu_to_le16(CXL_CMD_CONFIG_CHANGE_COLD_RESET | in fill_feature_vendor_test() 1502 struct cxl_feat_entry *feat; in mock_get_supported_features() local 1533 feat = out->ents; in mock_get_supported_features() [all …]
|
| /tools/lib/bpf/ |
| A D | features.c | 589 struct kern_feature_desc *feat = &feature_probes[feat_id]; in feat_supported() local 597 ret = feat->probe(cache->token_fd); in feat_supported() 604 feat->desc, errstr(ret)); in feat_supported()
|
| /tools/arch/s390/include/uapi/asm/ |
| A D | kvm.h | 448 __u64 feat[16]; member 488 __u64 feat; member
|
| /tools/perf/ |
| A D | builtin-inject.c | 2020 int feat, int fd __maybe_unused, void *data) in save_section_info_cb() argument 2024 inject->secs[feat] = *section; in save_section_info_cb() 2036 static bool keep_feat(int feat) in keep_feat() argument 2038 switch (feat) { in keep_feat() 2089 static int feat_copy(struct perf_inject *inject, int feat, struct feat_writer *fw) in feat_copy() argument 2092 u64 offs = inject->secs[feat].offset; in feat_copy() 2093 size_t sz = inject->secs[feat].size; in feat_copy() 2115 static int feat_copy_cb(struct feat_copier *fc, int feat, struct feat_writer *fw) in feat_copy_cb() argument 2121 if (!inject->secs[feat].offset || in feat_copy_cb() 2122 !keep_feat(feat)) in feat_copy_cb() [all …]
|
| A D | builtin-stat.c | 2066 int feat; in init_features() local 2068 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++) in init_features() 2069 perf_header__set_feat(&session->header, feat); in init_features()
|
| A D | Makefile.config | 1303 $(foreach feat,$(FEATURE_TESTS_EXTRA),$(call feature_print_status,$(feat),) $(info $(MSG))) 1347 $(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FIL…
|
| A D | builtin-report.c | 248 if (event->feat.feat_id < HEADER_LAST_FEATURE) in process_feature_event() 251 if (event->feat.feat_id != HEADER_LAST_FEATURE) { in process_feature_event() 253 event->feat.feat_id); in process_feature_event()
|
| A D | builtin-record.c | 1767 int feat; in record__init_features() local 1769 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++) in record__init_features() 1770 perf_header__set_feat(&session->header, feat); in record__init_features()
|
| A D | builtin-annotate.c | 319 if (event->feat.feat_id < HEADER_LAST_FEATURE) in process_feature_event()
|
| A D | builtin-timechart.c | 1514 int feat, in process_header() argument 1520 switch (feat) { in process_header()
|
| A D | builtin-script.c | 3614 if (event->feat.feat_id < HEADER_LAST_FEATURE) in process_feature_event()
|
| /tools/include/uapi/linux/ |
| A D | userfaultfd.h | 121 } feat; member
|
| /tools/testing/selftests/kvm/arm64/ |
| A D | vgic_init.c | 941 u32 feat = 0; in test_v3_sysregs() local 945 feat |= BIT(KVM_ARM_VCPU_HAS_EL2); in test_v3_sysregs() 950 init.features[0] |= feat; in test_v3_sysregs() 962 if (feat) in test_v3_sysregs()
|
| /tools/testing/selftests/ublk/ |
| A D | kublk.c | 1399 const char *feat; in cmd_dev_get_features() local 1404 feat = feat_map[i]; in cmd_dev_get_features() 1406 feat = "unknown"; in cmd_dev_get_features() 1407 printf("\t%-20s: 0x%llx\n", feat, 1ULL << i); in cmd_dev_get_features()
|
| /tools/lib/perf/include/perf/ |
| A D | event.h | 547 struct perf_record_header_feature feat; member
|