| /linux/tools/testing/selftests/ |
| H A D | run_kselftest.sh | 33 -c | --collection COLLECTION Run all tests from COLLECTION 34 -l | --list List the available collection:test entries 61 -c | --collection) 90 for collection in $COLLECTIONS ; do 91 found="$(echo "$available" | grep "^$collection:")" 93 echo "No such collection '$collection'" >&2 117 for collection in $collections ; do 118 [ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg 119 tests=$(echo "$available" | grep "^$collection:" | cut -d: -f2) 120 ($dryrun cd "$collection" && $dryrun run_many $tests)
|
| /linux/tools/testing/selftests/net/tcp_ao/ |
| H A D | key-management.c | 430 static struct key_collection collection; variable 454 struct test_key *key = &collection.keys[index]; in init_key_in_collection() 485 size_t key_sz = sizeof(collection.keys[0]); in init_default_key_collection() 488 free(collection.keys); in init_default_key_collection() 489 collection.keys = NULL; in init_default_key_collection() 501 collection.keys = reallocarray(collection.keys, nr_keys, key_sz); in init_default_key_collection() 502 if (!collection.keys) in init_default_key_collection() 505 memset(collection.keys, 0, nr_keys * key_sz); in init_default_key_collection() 506 collection.nr_keys = nr_keys; in init_default_key_collection() 592 for (i = 0; i < collection.nr_keys; i++) { in key_collection_socket() [all …]
|
| /linux/arch/arm64/kvm/vgic/ |
| H A D | vgic-its.c | 261 struct its_collection *collection; in find_collection() local 263 list_for_each_entry(collection, &its->collection_list, coll_list) { in find_collection() 264 if (coll_id == collection->collection_id) in find_collection() 265 return collection; in find_collection() 352 if (!its_is_collection_mapped(ite->collection)) in update_affinity_ite() 355 vcpu = collection_to_vcpu(kvm, ite->collection); in update_affinity_ite() 370 if (ite->collection != coll) in update_affinity_collection() 633 if (!ite || !its_is_collection_mapped(ite->collection)) in vgic_its_resolve_lpi() 636 vcpu = collection_to_vcpu(kvm, ite->collection); in vgic_its_resolve_lpi() 796 if (ite && its_is_collection_mapped(ite->collection)) { in vgic_its_cmd_handle_discard() [all …]
|
| H A D | vgic-debug.c | 512 if (ite->irq && ite->collection) { in vgic_its_debug_show() 515 ite->collection->target_addr, in vgic_its_debug_show() 516 ite->collection->collection_id, ite->irq->hw); in vgic_its_debug_show()
|
| /linux/tools/perf/ |
| H A D | builtin-bench.c | 118 struct collection { struct 124 static struct collection collections[] = { argument 150 static void dump_benchmarks(struct collection *coll) in dump_benchmarks() 181 struct collection *coll; in print_usage() 237 static void run_collection(struct collection *coll) in run_collection() 263 struct collection *coll; in run_all_collections() 271 struct collection *coll; in cmd_bench()
|
| /linux/Documentation/dev-tools/ |
| H A D | kcov.rst | 6 the ``kcov`` debugfs file. Coverage collection is enabled on a task basis, and 12 (unless remove coverage collection is enabled, see below) and from some 16 See the "Comparison operands collection" section for details. 20 tasks or soft interrupts. See the "Remote coverage collection" section for 35 To enable comparison operands collection, set:: 43 Coverage collection 76 /* A single fd descriptor allows coverage collection on a single 90 /* Enable coverage collection on the current thread. */ 101 /* Disable coverage collection for the current thread. After this call 140 Comparison operands collection [all …]
|
| /linux/fs/jffs2/ |
| H A D | README.Locking | 49 avoid deadlocks with garbage collection -- the VFS will lock the i_sem 51 allocation may trigger garbage-collection, which may need to move a 53 VFS. If the garbage collection code were to attempt to lock the i_sem 59 mutex, which is obtained by the garbage collection code and also 94 pointer when the garbage collection thread exits. The code to kill the 133 collection code is looking at them.
|
| /linux/Documentation/tools/rv/ |
| H A D | rv-mon-sched.rst | 7 Scheduler monitors collection 24 The scheduler monitor collection is a container for several monitors to model
|
| /linux/drivers/hid/ |
| H A D | hid-cougar.c | 212 if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe() 232 if (hdev->collection->usage == HID_GD_KEYBOARD) { in cougar_probe() 240 } else if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe()
|
| /linux/drivers/net/wireless/ath/ath12k/ |
| H A D | Kconfig | 59 Enable ath12k coredump collection 62 dump collection not required choose N.
|
| /linux/drivers/hid/usbhid/ |
| H A D | hiddev.c | 630 if (hid->collection[i].type == in hiddev_ioctl() 635 r = hid->collection[i].usage; in hiddev_ioctl() 811 cinfo.type = hid->collection[cinfo.index].type; in hiddev_ioctl() 812 cinfo.usage = hid->collection[cinfo.index].usage; in hiddev_ioctl() 813 cinfo.level = hid->collection[cinfo.index].level; in hiddev_ioctl() 884 if (hid->collection[i].type == in hiddev_connect() 886 !IS_INPUT_APPLICATION(hid->collection[i].usage)) in hiddev_connect()
|
| /linux/tools/perf/scripts/python/ |
| H A D | exported-sql-viewer.py | 1273 def __init__(self, collection, xbase=Decimal(0), ybase=Decimal(0)): argument 1274 self.collection = collection 1298 def __init__(self, db, collection, cpu, xbase): argument 1299 super(SwitchGraphData, self).__init__(collection, xbase) 1310 " AND exec_flag = " + self.collection.glb.dbref.TRUE + 1329 " WHERE machine_id = " + str(self.collection.machine_id) + 1341 start_time = self.collection.glb.StartTime(self.collection.machine_id) 1373 hregion = self.collection.LookupHRegion(key) 1376 self.collection.AddHRegion(key, hregion) 1682 def __init__(self, collection, data, attrs, event_handler, first, parent=None): argument [all …]
|
| /linux/kernel/trace/rv/monitors/sco/ |
| H A D | Kconfig | 11 This monitor is part of the sched monitors collection.
|
| /linux/kernel/trace/rv/monitors/snroc/ |
| H A D | Kconfig | 11 This monitor is part of the sched monitors collection.
|
| /linux/kernel/trace/rv/monitors/snep/ |
| H A D | Kconfig | 12 This monitor is part of the sched monitors collection.
|
| /linux/kernel/trace/rv/monitors/scpd/ |
| H A D | Kconfig | 12 This monitor is part of the sched monitors collection.
|
| /linux/kernel/trace/rv/monitors/sssw/ |
| H A D | Kconfig | 12 This monitor is part of the sched monitors collection.
|
| /linux/Documentation/hid/ |
| H A D | hiddev.rst | 118 application collection. If the index is invalid (greater or equal to 129 also returns the level the collection lives in the hierarchy. 132 the other fields. If the index is larger than the last collection 226 Returns the collection index associated with this usage. This 227 indicates where in the collection hierarchy this usage sits.
|
| /linux/kernel/trace/rv/monitors/nrp/ |
| H A D | Kconfig | 11 This monitor is part of the sched monitors collection.
|
| /linux/kernel/trace/rv/monitors/sts/ |
| H A D | Kconfig | 16 This monitor is part of the sched monitors collection.
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-devices-system-xen_cpu | 5 A collection of global/individual Xen physical cpu attributes
|
| H A D | sysfs-kernel-mm-memory-tiers | 4 Description: A collection of all the memory tiers allocated.
|
| /linux/Documentation/admin-guide/perf/ |
| H A D | dwc_pcie_pmu.rst | 13 debugging, AER error injection, and collection of statistics. To facilitate 14 collection of statistics, Synopsys DesignWare Cores PCIe controller
|
| /linux/Documentation/trace/coresight/ |
| H A D | coresight-tpdm.rst | 13 short serves as data collection component for various dataset types.
|
| /linux/net/dcb/ |
| H A D | Kconfig | 11 DCB is a collection of Ethernet enhancements which allow DCB capable
|