Home
last modified time | relevance | path

Searched full:invoked (Results 1 – 25 of 785) sorted by relevance

12345678910>>...32

/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtcp_rtt.c9 __u32 invoked; member
50 static int verify_sk(int map_fd, int client_fd, const char *msg, __u32 invoked, in verify_sk() argument
60 if (val.invoked != invoked) { in verify_sk()
61 log_err("%s: unexpected bpf_tcp_sock.invoked %d != %d", in verify_sk()
62 msg, val.invoked, invoked); in verify_sk()
133 /*invoked=*/1, in run_test()
147 /*invoked=*/2, in run_test()
/linux/Documentation/core-api/
H A Dcpu_hotplug.rst134 hotplug states will be invoked, starting with ``CPUHP_ONLINE`` and terminating
158 When a CPU is onlined, the startup callbacks are invoked sequentially until
159 the state CPUHP_ONLINE is reached. They can also be invoked when the
163 When a CPU is offlined the teardown callbacks are invoked in the reverse
165 be invoked when the callbacks of a state are removed or an instance is
179 The startup callbacks in this section are invoked before the CPU is
180 started during a CPU online operation. The teardown callbacks are invoked
183 The callbacks are invoked on a control CPU as they can't obviously run on
203 The startup callbacks in this section are invoked on the hotplugged CPU
205 setup code. The teardown callbacks are invoked with interrupts disabled
[all …]
H A Dcachetlb.rst10 after the interface is invoked.
38 This is usually invoked when the kernel page tables are
95 At the end of every page fault, this routine is invoked to tell
100 This routine is also invoked in various other places which pass
220 The first of these two routines is invoked after vmap_range()
221 has installed the page table entries. The second is invoked
/linux/Documentation/scsi/
H A Dscsi_eh.rst67 scsi_finish_command() is invoked for the command. The
83 scsi_eh_scmd_add(scmd) is invoked for the command. See
106 2. scsi_abort_command() is invoked to schedule an asynchronous abort which may
107 issue a retry scmd->allowed + 1 times. Asynchronous aborts are not invoked
113 3. scsi_eh_scmd_add(scmd) is invoked for the
124 Otherwise scsi_eh_scmd_add() is invoked for the command.
246 recovered (eh_work_q is empty), scsi_eh_flush_done_q() is invoked to
260 :ACTION: scsi_eh_scmd_add() is invoked for scmd
278 :ACTION: scsi_eh_finish_cmd() is invoked to EH-finish scmd
297 - otherwise, scsi_finish_command() is invoked for scmd
[all …]
/linux/arch/um/include/shared/
H A Dirq_kern.h31 * @timetravel_handler: the timetravel interrupt handler, invoked with the IRQ
36 * Note that the timetravel handler is invoked only if the time_travel_mode is
37 * %TT_MODE_EXTERNAL, and then it is invoked even while the system is suspended!
39 * an appropriate delay, before sending an ACK on the socket it was invoked for.
49 * not be invoked at all and the @handler must handle the FD becoming
/linux/drivers/net/fddi/skfp/h/
H A Dhwmtm.h202 * This macro may be invoked by the OS-specific module to read
216 * This macro may be invoked by the OS-specific module to read
232 * This macro may be invoked by the OS-specific module to get the
249 * This macro may be invoked by the OS-specific module to get the
268 * This macro may be invoked by the OS-specific module to read
285 * This macro may be invoked by the OS-specific module to read
301 * This macro may be invoked by the OS-specific module to get
318 * This macro may be invoked by the OS-specific module to get
332 * This macro may be invoked by the OS-specific module to get the
348 * This macro is invoked by the OS-specific before it left the
/linux/drivers/media/platform/mediatek/vcodec/decoder/
H A Dvdec_vpu_if.h56 * vpu_dec_start - start decoding, basically the function will be invoked once
66 * vpu_dec_end - end decoding, basically the function will be invoked once
91 * vpu_dec_core - core start decoding, basically the function will be invoked once
99 * vpu_dec_core_end - core end decoding, basically the function will be invoked once
/linux/Documentation/RCU/
H A DUP.rst30 This same problem can occur if call_rcu() is invoked from a hardware
59 Suppose that call_rcu() is invoked while holding a lock, and that the
77 It is far better to guarantee that callbacks are invoked
119 Therefore, the called function has been invoked within an RCU
134 then, since RCU callbacks can be invoked from softirq context,
/linux/include/linux/
H A Drseq.h17 /* Invoked from resume_user_mode_work() */
32 * Invoked from signal delivery to fixup based on the register context before
52 /* Invoked from context switch to force evaluation on exit to user */
88 * Invoked from __set_task_cpu() when a task migrates or from
116 * does nothing when invoked with NULL register state.
H A Dentry-virt.h30 * Invoked from xfer_to_guest_mode_handle_work(). Defaults to NOOP. Can be
55 * Has to be invoked with interrupts disabled before the last call
85 * Has to be invoked with interrupts disabled before the transition to
/linux/drivers/net/wwan/t7xx/
H A Dt7xx_pci.h109 * @suspend: callback invoked before sending D3 request to device
110 * @suspend_late: callback invoked after getting D3 ACK from device
111 * @resume_early: callback invoked before sending the resume request to device
112 * @resume: callback invoked after getting resume ACK from device
/linux/include/linux/regulator/
H A Dcoupler.h24 * @attach_regulator: Callback invoked on creation of a coupled regulator,
30 * @detach_regulator: Callback invoked on destruction of a coupled regulator.
32 * @balance_voltage: Callback invoked when voltage of a coupled regulator is
/linux/drivers/crypto/caam/
H A Dqi.h31 * caam_qi_cbk - application's callback function invoked by the driver when the
140 * Invoked when shared descriptor is required to be change in driver context.
160 * Invoked when a user of the CAAM-QI (i.e. caamalg-qi) needs data which has
174 * Invoked when a user of the CAAM-QI (i.e. caamalg-qi) no longer needs
/linux/Documentation/virt/kvm/
H A Dhalt-polling.rst19 invoked. Thus halt polling is especially useful on workloads with very short
49 received during the polling interval (and thus schedule is invoked) there are
76 invoked and a wakeup source received (irrespective of
77 whether the scheduler is invoked within that function).
151 that cpu, otherwise the polling will cease immediately and schedule will be invoked to
/linux/tools/testing/selftests/bpf/progs/
H A Dtcp_rtt.c8 __u32 invoked; member
54 storage->invoked++; in _sockops()
H A Dmptcp_sock.c13 __u32 invoked; member
73 storage->invoked++; in _sockops()
/linux/Documentation/virt/kvm/devices/
H A Dvfio.rst55 The FILE/GROUP_ADD operation above should be invoked prior to accessing the
60 descriptors, FILE_ADD should be invoked before VFIO_DEVICE_BIND_IOMMUFD
/linux/include/uapi/linux/
H A Dnitro_enclaves.h19 * The ioctl can be invoked on the /dev/nitro_enclaves fd, before
58 * The ioctl can be invoked on the enclave fd, before an enclave
93 * The ioctl can be invoked on the enclave fd, before
116 * The ioctl can be invoked on the enclave fd,
158 * The ioctl can be invoked on the enclave fd, after an
/linux/Documentation/driver-api/pm/
H A Dcpuidle.rst43 A CPU idle time (``CPUIdle``) governor is a bundle of policy code invoked when
91 until the ``->enable()`` governor callback is invoked for that CPU
104 callback when it was last invoked for the target CPU, free all memory
143 selection made by the ``->select()`` callback (when it was invoked last
255 be invoked for the logical CPU represented by it, so it must take place after
/linux/Documentation/scheduler/
H A Dsched-ext.rst207 * callback will only be invoked if we failed to find a core to insert
260 ``ops.dispatch()`` is invoked.
268 invoked. This serves two purposes. First, CPU selection optimization
294 invoked. This is discouraged, as it can introduce racy behavior or
297 2. Once the target CPU is selected, ``ops.enqueue()`` is invoked (unless the
342 When a task leaves BPF scheduler custody, ``ops.dequeue()`` is invoked.
367 run, ``ops.dispatch()`` is invoked which can use the following two
/linux/drivers/tee/qcomtee/
H A Dqcomtee_object.h27 * %QCOMTEE_OBJECT_TYPE_ROOT). The root object is invoked to pass the user's
60 * the kernel and QTEE. It is invoked by the kernel when it wants to get a
150 * @object: current object invoked in this callback context.
188 * @object: object being invoked.
/linux/block/
H A Dbfq-wf2q.c55 * @expiration: id true, this function is being invoked after the
177 * next_in_service. In particular, this function is invoked for an
212 * invoked, and thus active_entities still coincides with the in bfq_no_longer_next_in_service()
697 * invoked with update_class_too unset in the points in the code where
862 * When this function is invoked, entity is not in any service in bfq_update_fin_time_enqueue()
1083 * @expiration: true if this function is being invoked in the expiration path
1122 * bfq_group_set_parent has already been invoked for the group in __bfq_deactivate_entity()
1158 * @expiration: true if this function is being invoked in the expiration path
1223 * assuming that who invoked this function does not in bfq_deactivate_entity()
1386 * This function is invoked when there has been a change in the trees
[all …]
/linux/drivers/base/power/
H A Dcommon.c93 * This function should typically be invoked from subsystem level code during
132 * This function should typically be invoked by a driver during the probe phase,
307 * it will be invoked during the remove phase from drivers implicitly if driver
354 * detaches @dev from its PM domain. Typically it should be invoked during the
372 * Typically it should be invoked during the remove phase from drivers.
/linux/kernel/rcu/
H A Dsync.c39 * rcu_sync_exit(), so that it is invoked after a grace period following the
49 * If another rcu_sync_enter() is invoked before the grace period
52 * another rcu_sync_enter() and its matching rcu_sync_exit() are invoked
/linux/drivers/soc/samsung/
H A Dexynos-pmu.h37 * SYS_AFTR, SYS_LPA, SYS_SLEEP. This will be invoked before
41 * This will be invoked after @pmu_config registers have

12345678910>>...32