/Linux-v6.6/tools/testing/selftests/drivers/dma-buf/ |
D | udmabuf.c | 28 struct udmabuf_create create; in main() local 60 memset(&create, 0, sizeof(create)); in main() 63 create.memfd = memfd; in main() 64 create.offset = getpagesize()/2; in main() 65 create.size = getpagesize(); in main() 66 buf = ioctl(devfd, UDMABUF_CREATE, &create); in main() 73 create.memfd = memfd; in main() 74 create.offset = 0; in main() 75 create.size = getpagesize()/2; in main() 76 buf = ioctl(devfd, UDMABUF_CREATE, &create); in main() [all …]
|
/Linux-v6.6/tools/testing/selftests/tc-testing/tc-tests/actions/ |
D | ife.json | 4 "name": "Create valid ife encode action with mark and pass control", 28 "name": "Create valid ife encode action with mark and pipe control", 52 "name": "Create valid ife encode action with mark and continue control", 76 "name": "Create valid ife encode action with mark and drop control", 100 "name": "Create valid ife encode action with mark and reclassify control", 124 "name": "Create valid ife encode action with mark and jump control", 148 "name": "Create valid ife encode action with mark value at 32-bit maximum", 172 "name": "Create ife encode action with mark value exceeding 32-bit maximum", 194 "name": "Create valid ife encode action with prio and pass control", 218 "name": "Create valid ife encode action with prio and pipe control", [all …]
|
/Linux-v6.6/tools/perf/scripts/python/ |
D | export-to-sqlite.py | 103 printerr(" calls 'calls' => create calls and call_paths table"); 104 printerr(" callchains 'callchains' => create call_paths table"); 165 do_query(query, 'CREATE TABLE selected_events (' 168 do_query(query, 'CREATE TABLE machines (' 172 do_query(query, 'CREATE TABLE threads (' 178 do_query(query, 'CREATE TABLE comms (' 184 do_query(query, 'CREATE TABLE comm_threads (' 188 do_query(query, 'CREATE TABLE dsos (' 194 do_query(query, 'CREATE TABLE symbols (' 201 do_query(query, 'CREATE TABLE branch_types (' [all …]
|
D | export-to-postgresql.py | 25 # user has postgresql permissions to create databases. Examples of installing 282 printerr(" calls 'calls' => create calls and call_paths table"); 283 printerr(" callchains 'callchains' => create call_paths table"); 327 do_query(query, 'CREATE DATABASE ' + dbname) 341 do_query(query, 'CREATE TABLE selected_events (' 344 do_query(query, 'CREATE TABLE machines (' 348 do_query(query, 'CREATE TABLE threads (' 354 do_query(query, 'CREATE TABLE comms (' 360 do_query(query, 'CREATE TABLE comm_threads (' 364 do_query(query, 'CREATE TABLE dsos (' [all …]
|
/Linux-v6.6/tools/lib/perf/tests/ |
D | test-evlist.c | 50 __T("failed to create cpus", cpus); in test_stat_cpu() 53 __T("failed to create evlist", evlist); in test_stat_cpu() 56 __T("failed to create evsel1", evsel); in test_stat_cpu() 61 __T("failed to create evsel2", evsel); in test_stat_cpu() 109 __T("failed to create threads", threads); in test_stat_thread() 114 __T("failed to create evlist", evlist); in test_stat_thread() 117 __T("failed to create evsel1", evsel); in test_stat_thread() 122 __T("failed to create evsel2", evsel); in test_stat_thread() 166 __T("failed to create threads", threads); in test_stat_thread_enable() 171 __T("failed to create evlist", evlist); in test_stat_thread_enable() [all …]
|
D | test-evsel.c | 31 __T("failed to create cpus", cpus); in test_stat_cpu() 34 __T("failed to create evsel", evsel); in test_stat_cpu() 65 __T("failed to create threads", threads); in test_stat_thread() 70 __T("failed to create evsel", evsel); in test_stat_thread() 98 __T("failed to create threads", threads); in test_stat_thread_enable() 103 __T("failed to create evsel", evsel); in test_stat_thread_enable() 143 __T("failed to create threads", threads); in test_stat_user_read() 148 __T("failed to create evsel", evsel); in test_stat_user_read() 203 __T("failed to create evsel", evsel); in test_stat_read_format_single() 239 __T("failed to create leader", leader); in test_stat_read_format_group() [all …]
|
/Linux-v6.6/Documentation/admin-guide/sysctl/ |
D | user.rst | 19 malfunction and attempt to create a ridiculous number of objects, 42 user namespace may create. 48 user namespace may create. 54 user namespace may create. 60 current user namespace may create. 66 user namespace may create. 72 user namespace may create. 78 user namespace may create. 84 user namespace may create.
|
/Linux-v6.6/tools/testing/selftests/bpf/progs/ |
D | iters_state_safety.c | 39 /* create iterator */ in create_and_destroy() 62 /* create iterator */ in create_and_forget_to_destroy_fail() 100 /* create iterator */ in compromise_iter_w_direct_write_fail() 127 /* create iterator */ in compromise_iter_w_direct_write_and_skip_destroy_fail() 152 /* create iterator */ in compromise_iter_w_helper_write_fail() 205 /* create iterator */ in valid_stack_reuse() 216 /* create iterator */ in valid_stack_reuse() 239 /* create iterator */ in double_create_fail() 244 /* (attempt to) create iterator again */ in double_create_fail() 267 /* create iterator */ in double_destroy_fail() [all …]
|
/Linux-v6.6/fs/ocfs2/dlm/ |
D | dlmlock.c | 287 struct dlm_create_lock create; in dlm_send_remote_lock_request() local 291 memset(&create, 0, sizeof(create)); in dlm_send_remote_lock_request() 292 create.node_idx = dlm->node_num; in dlm_send_remote_lock_request() 293 create.requested_type = lock->ml.type; in dlm_send_remote_lock_request() 294 create.cookie = lock->ml.cookie; in dlm_send_remote_lock_request() 295 create.namelen = res->lockname.len; in dlm_send_remote_lock_request() 296 create.flags = cpu_to_be32(flags); in dlm_send_remote_lock_request() 297 memcpy(create.name, res->lockname.name, create.namelen); in dlm_send_remote_lock_request() 299 tmpret = o2net_send_message(DLM_CREATE_LOCK_MSG, dlm->key, &create, in dlm_send_remote_lock_request() 300 sizeof(create), res->owner, &status); in dlm_send_remote_lock_request() [all …]
|
/Linux-v6.6/fs/tracefs/ |
D | event_inode.c | 8 * eventfs is used to dynamically create inodes and dentries based on the 12 * inodes/dentries of the files. When accessed, the eventfs will create the 33 * @name: the name of the file or directory to create 89 * create_file - create a file in the tracefs filesystem 90 * @name: the name of the file to create. 96 * This is the basic "create a file" function for tracefs. It allows for a 142 * create_dir - create a dir in the tracefs filesystem 143 * @name: the name of the file to create. 147 * This is the basic "create a dir" function for eventfs. It allows for a 255 * eventfs_post_create_dir - post create dir routine [all …]
|
/Linux-v6.6/tools/testing/selftests/drivers/net/netdevsim/ |
D | udp_tunnel_nic.sh | 355 msg="create VxLANs" 366 msg="create VxLANs" 380 msg="create VxLANs 1/5" 384 msg="create VxLANs 2/5" 388 msg="create VxLANs 3/5" 392 msg="create VxLANs 4/5" 396 msg="create VxLANs 5/5" 403 msg="create GENEVE 1/5" 407 msg="create GENEVE 2/5" 411 msg="create GENEVE 3/5" [all …]
|
/Linux-v6.6/tools/testing/selftests/tc-testing/tc-tests/qdiscs/ |
D | fq.json | 4 "name": "Create FQ with default setting", 27 "name": "Create FQ with limit packet setting", 50 "name": "Create FQ with flow_limit setting", 73 "name": "Create FQ with quantum setting", 96 "name": "Create FQ with initial_quantum setting", 119 "name": "Create FQ with invalid initial_quantum setting", 141 "name": "Create FQ with maxrate setting", 164 "name": "Create FQ with nopacing setting", 187 "name": "Create FQ with refill_delay setting", 210 "name": "Create FQ with low_rate_threshold setting", [all …]
|
D | cake.json | 4 "name": "Create CAKE with default setting", 27 "name": "Create CAKE with bandwidth limit", 50 "name": "Create CAKE with autorate-ingress flag", 73 "name": "Create CAKE with rtt time", 96 "name": "Create CAKE with besteffort flag", 119 "name": "Create CAKE with diffserv8 flag", 142 "name": "Create CAKE with diffserv4 flag", 165 "name": "Create CAKE with flowblind flag", 188 "name": "Create CAKE with dsthost and nat flag", 211 "name": "Create CAKE with wash flag", [all …]
|
D | htb.json | 4 "name": "Create HTB with default setting", 27 "name": "Create HTB with default-N setting", 50 "name": "Create HTB with r2q setting", 73 "name": "Create HTB with direct_qlen setting", 96 "name": "Create HTB with class rate and burst setting", 120 "name": "Create HTB with class mpu setting", 144 "name": "Create HTB with class prio setting", 168 "name": "Create HTB with class ceil setting", 192 "name": "Create HTB with class cburst setting", 216 "name": "Create HTB with class mtu setting", [all …]
|
D | sfq.json | 4 "name": "Create SFQ with default setting", 27 "name": "Create SFQ with limit setting", 50 "name": "Create SFQ with perturb setting", 73 "name": "Create SFQ with quantum setting", 96 "name": "Create SFQ with divisor setting", 119 "name": "Create SFQ with flows setting", 142 "name": "Create SFQ with depth setting", 165 "name": "Create SFQ with headdrop setting", 188 "name": "Create SFQ with redflowlimit setting",
|
D | sfb.json | 4 "name": "Create SFB with default setting", 27 "name": "Create SFB with rehash setting", 50 "name": "Create SFB with db setting", 73 "name": "Create SFB with limit setting", 96 "name": "Create SFB with max setting", 119 "name": "Create SFB with target setting", 142 "name": "Create SFB with increment setting", 165 "name": "Create SFB with decrement setting", 188 "name": "Create SFB with penalty_rate setting", 211 "name": "Create SFB with penalty_burst setting",
|
D | netem.json | 4 "name": "Create NETEM with default setting", 27 "name": "Create NETEM with limit flag", 50 "name": "Create NETEM with delay time", 73 "name": "Create NETEM with distribution and corrupt flag", 96 "name": "Create NETEM with distribution and duplicate flag", 119 "name": "Create NETEM with distribution and loss flag", 142 "name": "Create NETEM with distribution and loss state flag", 165 "name": "Create NETEM with loss gemodel flag", 188 "name": "Create NETEM with reorder flag", 211 "name": "Create NETEM with rate limit", [all …]
|
/Linux-v6.6/drivers/gpu/drm/amd/display/dc/dce60/ |
D | dce60_resource.c | 969 * Create resources * in dce60_construct() 994 dm_error("DC: failed to create dp clock source!\n"); in dce60_construct() 1001 dm_error("DC: failed to create clock sources!\n"); in dce60_construct() 1012 dm_error("DC: failed to create dmcu!\n"); in dce60_construct() 1022 dm_error("DC: failed to create abm!\n"); in dce60_construct() 1040 dm_error("DC: failed to create tg!\n"); in dce60_construct() 1047 dm_error("DC: failed to create memory input!\n"); in dce60_construct() 1054 dm_error("DC: failed to create input pixel processor!\n"); in dce60_construct() 1061 dm_error("DC: failed to create transform!\n"); in dce60_construct() 1068 dm_error("DC: failed to create output pixel processor!\n"); in dce60_construct() [all …]
|
/Linux-v6.6/drivers/gpu/drm/amd/display/dc/dce80/ |
D | dce80_resource.c | 979 * Create resources * in dce80_construct() 1008 dm_error("DC: failed to create dp clock source!\n"); in dce80_construct() 1015 dm_error("DC: failed to create clock sources!\n"); in dce80_construct() 1026 dm_error("DC: failed to create dmcu!\n"); in dce80_construct() 1036 dm_error("DC: failed to create abm!\n"); in dce80_construct() 1054 dm_error("DC: failed to create tg!\n"); in dce80_construct() 1061 dm_error("DC: failed to create memory input!\n"); in dce80_construct() 1068 dm_error("DC: failed to create input pixel processor!\n"); in dce80_construct() 1075 dm_error("DC: failed to create transform!\n"); in dce80_construct() 1082 dm_error("DC: failed to create output pixel processor!\n"); in dce80_construct() [all …]
|
/Linux-v6.6/tools/perf/util/ |
D | cpumap.h | 96 * cpu_aggr_map__empty_new - Create a cpu_aggr_map of size nr with every entry 104 * cpu_aggr_map__new - Create a cpu_aggr_map with an aggr_cpu_id for each cpu in 118 * aggr_cpu_id__socket - Create an aggr_cpu_id with the socket populated with 124 * aggr_cpu_id__die - Create an aggr_cpu_id with the die and socket populated 130 * aggr_cpu_id__core - Create an aggr_cpu_id with the core, die and socket 136 * aggr_cpu_id__core - Create an aggr_cpu_id with the cpu, core, die and socket 142 * aggr_cpu_id__node - Create an aggr_cpu_id with the numa node populated for 147 * aggr_cpu_id__global - Create an aggr_cpu_id for global aggregation.
|
/Linux-v6.6/tools/lib/perf/Documentation/ |
D | libperf-counting.txt | 75 We create software events for cpu and task: 97 In this case we will monitor current process, so we create threads map with single pid (0): 103 39 fprintf(stderr, "failed to create threads\n"); 110 Now we create libperf's event list, which will serve as holder for the events we want: 116 47 fprintf(stderr, "failed to create evlist\n"); 121 We create libperf's events for the attributes we defined earlier and add them to the list: 127 53 fprintf(stderr, "failed to create evsel1\n"); 135 61 fprintf(stderr, "failed to create evsel2\n");
|
/Linux-v6.6/drivers/md/ |
D | dm-init.c | 23 static char *create; variable 28 …* Format: dm-mod.create=<name>,<uuid>,<minor>,<flags>,<table>[,<table>+][;<name>,<uuid>,<minor>,<f… 33 * See Documentation/admin-guide/device-mapper/dm-init.rst for dm-mod.create="..." format 157 * dm_parse_table - parse "dm-mod.create=" table field 232 * dm_parse_devices - parse "dm-mod.create=" argument 267 * dm_init_init - parse "dm-mod.create=" argument and configure drivers 276 if (!create) in dm_init_init() 279 if (strlen(create) >= DM_MAX_STR_SIZE) { in dm_init_init() 283 str = kstrndup(create, DM_MAX_STR_SIZE, GFP_KERNEL); in dm_init_init() 320 module_param(create, charp, 0); [all …]
|
/Linux-v6.6/Documentation/admin-guide/device-mapper/ |
D | zero.rst | 20 To create a sparse device, start by creating a dm-zero device that's the 25 echo "0 $TEN_TERABYTES zero" | dmsetup create zero1 27 Then create a snapshot of the zero device, using any available block-device as 33 dmsetup create sparse1 35 This will create a 10TB sparse device called /dev/mapper/sparse1 that has
|
/Linux-v6.6/kernel/ |
D | kthread.c | 344 struct kthread_create_info *create = _create; in kthread() local 345 int (*threadfn)(void *data) = create->threadfn; in kthread() 346 void *data = create->data; in kthread() 354 done = xchg(&create->done, NULL); in kthread() 356 kfree(create->full_name); in kthread() 357 kfree(create); in kthread() 361 self->full_name = create->full_name; in kthread() 374 create->result = current; in kthread() 403 static void create_kthread(struct kthread_create_info *create) in create_kthread() argument 408 current->pref_node_fork = create->node; in create_kthread() [all …]
|
/Linux-v6.6/fs/debugfs/ |
D | file.c | 445 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value 446 * @name: a pointer to a string containing the name of the file to create. 481 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val… 482 * @name: a pointer to a string containing the name of the file to create. 517 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val… 518 * @name: a pointer to a string containing the name of the file to create. 554 …* debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit val… 555 * @name: a pointer to a string containing the name of the file to create. 592 * debugfs_create_ulong - create a debugfs file that is used to read and write 594 * @name: a pointer to a string containing the name of the file to create. [all …]
|