Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 25 of 346) sorted by relevance

12345678910>>...14

/linux-6.15/tools/perf/scripts/python/
H A Devent_analyzing_sample.py48 con.execute("""
55 con.execute("""
97 con.execute("insert into gen_events values(?, ?, ?, ?)",
102 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
126 count = con.execute("select count(*) from gen_events")
135 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
148 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
159 count = con.execute("select count(*) from pebs_ll")
168 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)")
180 dseq = con.execute("select dse, count(dse) from pebs_ll group by dse order by -count(dse)")
[all …]
/linux-6.15/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dinit.h15 u8 execute; member
29 .execute = 1, \
36 int nvbios_post(struct nvkm_subdev *, bool execute);
/linux-6.15/scripts/gdb/linux/
H A Dsymbols.py41 show_pagination = gdb.execute("show pagination", to_string=True)
43 gdb.execute("set pagination off")
53 gdb.execute("set pagination %s" % ("on" if pagination else "off"))
164 gdb.execute(cmdline, to_string=True)
186 gdb.execute("symbol-file", to_string=True)
192 gdb.execute("symbol-file {0}{1}".format(orig_vmlinux, offset_arg))
H A Dutils.py105 endian = gdb.execute("show endian", to_string=True)
180 target_arch = gdb.execute("show architecture", to_string=True)
197 return gdb.execute("monitor info version", to_string=True) != ""
203 thread_info = gdb.execute("info thread 2", to_string=True)
/linux-6.15/arch/powerpc/mm/book3s64/
H A Dpkeys.c415 static bool pkey_access_permitted(int pkey, bool write, bool execute) in pkey_access_permitted() argument
421 if (execute) in pkey_access_permitted()
431 bool arch_pte_access_permitted(u64 pte, bool write, bool execute) in arch_pte_access_permitted() argument
436 return pkey_access_permitted(pte_to_pkey_bits(pte), write, execute); in arch_pte_access_permitted()
448 bool execute, bool foreign) in arch_vma_access_permitted() argument
458 return pkey_access_permitted(vma_pkey(vma), write, execute); in arch_vma_access_permitted()
/linux-6.15/drivers/nvme/target/
H A Dfabrics-cmd.c110 req->execute = nvmet_execute_prop_set; in nvmet_parse_fabrics_admin_cmd()
113 req->execute = nvmet_execute_prop_get; in nvmet_parse_fabrics_admin_cmd()
117 req->execute = nvmet_execute_auth_send; in nvmet_parse_fabrics_admin_cmd()
120 req->execute = nvmet_execute_auth_receive; in nvmet_parse_fabrics_admin_cmd()
156 req->execute = nvmet_execute_auth_send; in nvmet_parse_fabrics_io_cmd()
159 req->execute = nvmet_execute_auth_receive; in nvmet_parse_fabrics_io_cmd()
418 req->execute = nvmet_execute_admin_connect; in nvmet_parse_connect_cmd()
420 req->execute = nvmet_execute_io_connect; in nvmet_parse_connect_cmd()
H A Dpassthru.c411 req->execute = nvmet_passthru_execute_cmd; in nvmet_setup_passthru_command()
503 req->execute = nvmet_execute_async_event; in nvmet_parse_passthru_admin_cmd()
511 req->execute = nvmet_execute_keep_alive; in nvmet_parse_passthru_admin_cmd()
519 req->execute = nvmet_execute_set_features; in nvmet_parse_passthru_admin_cmd()
522 req->execute = nvmet_passthru_set_host_behaviour; in nvmet_parse_passthru_admin_cmd()
534 req->execute = nvmet_execute_get_features; in nvmet_parse_passthru_admin_cmd()
545 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd()
553 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd()
559 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd()
H A Ddiscovery.c386 req->execute = nvmet_execute_disc_set_features; in nvmet_parse_discovery_cmd()
389 req->execute = nvmet_execute_disc_get_features; in nvmet_parse_discovery_cmd()
392 req->execute = nvmet_execute_async_event; in nvmet_parse_discovery_cmd()
395 req->execute = nvmet_execute_keep_alive; in nvmet_parse_discovery_cmd()
398 req->execute = nvmet_execute_disc_get_log_page; in nvmet_parse_discovery_cmd()
401 req->execute = nvmet_execute_disc_identify; in nvmet_parse_discovery_cmd()
H A Dio-cmd-file.c368 req->execute = nvmet_file_execute_rw; in nvmet_file_parse_io_cmd()
371 req->execute = nvmet_file_execute_flush; in nvmet_file_parse_io_cmd()
374 req->execute = nvmet_file_execute_dsm; in nvmet_file_parse_io_cmd()
377 req->execute = nvmet_file_execute_write_zeroes; in nvmet_file_parse_io_cmd()
H A Dio-cmd-bdev.c464 req->execute = nvmet_bdev_execute_rw; in nvmet_bdev_parse_io_cmd()
469 req->execute = nvmet_bdev_execute_flush; in nvmet_bdev_parse_io_cmd()
472 req->execute = nvmet_bdev_execute_dsm; in nvmet_bdev_parse_io_cmd()
475 req->execute = nvmet_bdev_execute_write_zeroes; in nvmet_bdev_parse_io_cmd()
/linux-6.15/tools/testing/selftests/powerpc/pmu/
H A Dlib.c140 char execute, name[128]; in parse_proc_maps() local
153 &start, &end, &execute, name); in parse_proc_maps()
157 if (execute != 'x') in parse_proc_maps()
/linux-6.15/scripts/
H A Dcheckkconfigsymbols.py209 execute(["git", "reset", "--hard", commit])
226 def execute(cmd): function
238 commits = execute(["git", "log", "--pretty=oneline",
247 stdout = execute(["git", "status", "--porcelain"])
256 stdout = execute(["git", "rev-parse", "HEAD"])
295 stdout = execute(["git", "ls-files"])
/linux-6.15/tools/memory-model/litmus-tests/
H A DLB+unlocklockonceonce+poacquireonce.litmus6 * If two locked critical sections execute on the same CPU, all accesses
7 * in the first must execute before any accesses in the second, even if the
/linux-6.15/drivers/net/wireless/ath/ath10k/
H A Dbmi.c309 u32 cmdlen = sizeof(cmd.id) + sizeof(cmd.execute); in ath10k_bmi_execute()
310 u32 resplen = sizeof(resp.execute); in ath10k_bmi_execute()
322 cmd.execute.addr = __cpu_to_le32(address); in ath10k_bmi_execute()
323 cmd.execute.param = __cpu_to_le32(param); in ath10k_bmi_execute()
331 if (resplen < sizeof(resp.execute)) { in ath10k_bmi_execute()
337 *result = __le32_to_cpu(resp.execute.result); in ath10k_bmi_execute()
H A Dbmi.h117 } execute; member
167 } execute; member
/linux-6.15/Documentation/admin-guide/pm/
H A Dintel-speed-select.rst45 To get help with the tool, execute the command below::
97 profiles, execute the command below::
196 To get the current performance level, execute::
241 To the change the performance level to 4, execute::
341 To enable and check the options, execute::
388 on CPU 0, execute::
526 To disable, execute::
626 execute::
656 To enable Intel(R) SST-BF feature, execute::
723 To disable the Intel(R) SST-BF feature, execute::
[all …]
/linux-6.15/net/sunrpc/
H A Dstats.c158 ktime_t backlog, execute, now; in rpc_count_iostats_metrics() local
182 execute = ktime_sub(now, task->tk_start); in rpc_count_iostats_metrics()
183 op_metrics->om_execute = ktime_add(op_metrics->om_execute, execute); in rpc_count_iostats_metrics()
189 trace_rpc_stats_latency(req->rq_task, backlog, req->rq_rtt, execute); in rpc_count_iostats_metrics()
/linux-6.15/Documentation/admin-guide/
H A Dmono.rst4 To configure Linux to automatically execute Mono-based .NET binaries
8 This will allow you to execute Mono-based .NET binaries just like any
70 that the ``.exe`` file has execute permissions.
/linux-6.15/Documentation/bpf/
H A Dbpf_prog_run.rst19 execute a BPF program in the kernel and return the results to userspace. This
21 as way to explicitly execute programs in the kernel for their side effects. The
25 The ``BPF_PROG_RUN`` command can be used to execute BPF programs of the
46 execute the program and return the results to userspace. Note that programs will
56 which can be used to execute XDP programs in a way where packets will actually
/linux-6.15/tools/testing/selftests/tc-testing/
H A DREADME6 execute them inside a network namespace dedicated to the task.
81 - execute
91 The execute and verify stages each run one command. The execute stage
155 pre- and post-execute stage
191 runs each command in the execute stage under valgrind,
/linux-6.15/Documentation/livepatch/
H A Dcallbacks.rst6 to execute callback functions when a kernel object is (un)patched. They
69 in-kernel vmlinux targets, this means that callbacks will always execute
71 callbacks will only execute if the target module is loaded. When a
72 module target is (un)loaded, its callbacks will execute only if the
/linux-6.15/include/asm-generic/
H A Dmm_hooks.h21 bool write, bool execute, bool foreign) in arch_vma_access_permitted() argument
/linux-6.15/arch/x86/include/asm/
H A Dmmu_context.h260 bool write, bool execute, bool foreign) in arch_vma_access_permitted() argument
263 if (execute) in arch_vma_access_permitted()
/linux-6.15/arch/arm64/include/asm/
H A Dmmu_context.h311 bool write, bool execute, bool foreign) in arch_vma_access_permitted() argument
320 return por_el0_allows_pkey(vma_pkey(vma), write, execute); in arch_vma_access_permitted()
/linux-6.15/drivers/gpu/drm/radeon/
H A Datom.c709 int execute = 0, target = U16(*ptr); in atom_op_jump() local
715 execute = ctx->ctx->cs_above; in atom_op_jump()
718 execute = ctx->ctx->cs_above || ctx->ctx->cs_equal; in atom_op_jump()
721 execute = 1; in atom_op_jump()
724 execute = !(ctx->ctx->cs_above || ctx->ctx->cs_equal); in atom_op_jump()
727 execute = !ctx->ctx->cs_above; in atom_op_jump()
730 execute = ctx->ctx->cs_equal; in atom_op_jump()
733 execute = !ctx->ctx->cs_equal; in atom_op_jump()
737 SDEBUG(" taken: %s\n", str_yes_no(execute)); in atom_op_jump()
739 if (execute) { in atom_op_jump()

12345678910>>...14