Home
last modified time | relevance | path

Searched refs:which (Results 1 – 24 of 24) sorted by relevance

/kernel/time/
A Ditimer.c76 static int do_getitimer(int which, struct itimerspec64 *value) in do_getitimer() argument
80 switch (which) { in do_getitimer()
113 SYSCALL_DEFINE2(getitimer, int, which, struct __kernel_old_itimerval __user *, value) in SYSCALL_DEFINE2() argument
116 int error = do_getitimer(which, &get_buffer); in SYSCALL_DEFINE2()
141 COMPAT_SYSCALL_DEFINE2(getitimer, int, which, in COMPAT_SYSCALL_DEFINE2() argument
145 int error = do_getitimer(which, &get_buffer); in COMPAT_SYSCALL_DEFINE2()
226 static int do_setitimer(int which, struct itimerspec64 *value, in do_setitimer() argument
233 switch (which) { in do_setitimer()
369 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL); in SYSCALL_DEFINE3()
398 COMPAT_SYSCALL_DEFINE3(setitimer, int, which, in COMPAT_SYSCALL_DEFINE3() argument
[all …]
A DKconfig217 Auxiliary POSIX clocks are clocks which can be steered
218 independently of the core timekeeper, which controls the
221 and other clock domains, which are not correlated to the TAI/NTP
A Dtimeconst.bc30 which brings the mul value into the range 2^b-1 <= x < 2^b. Such
/kernel/
A Dutsname_sysctl.c20 char *which = table->data; in get_uts() local
24 which = (which - (char *)&init_uts_ns) + (char *)uts_ns; in get_uts()
26 return which; in get_uts()
A DKconfig.preempt103 Select this if you are building a kernel for systems which
124 The feature is primarily interesting for Linux distributions which
150 which is the likely usage by Linux distributions, there should
158 This option enables a new scheduler class sched_ext (SCX), which
164 - Customization: Building application-specific schedulers which
171 which exports function callbacks and flags to BPF programs that
A Dexit.c1719 int kernel_waitid_prepare(struct wait_opts *wo, int which, pid_t upid, in kernel_waitid_prepare() argument
1733 switch (which) { in kernel_waitid_prepare()
1779 static long kernel_waitid(int which, pid_t upid, struct waitid_info *infop, in kernel_waitid() argument
1785 ret = kernel_waitid_prepare(&wo, which, upid, infop, options, ru); in kernel_waitid()
1797 SYSCALL_DEFINE5(waitid, int, which, pid_t, upid, struct siginfo __user *, in SYSCALL_DEFINE5() argument
1802 long err = kernel_waitid(which, upid, &info, options, ru ? &r : NULL); in SYSCALL_DEFINE5()
1932 int, which, compat_pid_t, pid, in COMPAT_SYSCALL_DEFINE5() argument
1938 long err = kernel_waitid(which, pid, &info, options, uru ? &ru : NULL); in COMPAT_SYSCALL_DEFINE5()
A Dexit.h27 int kernel_waitid_prepare(struct wait_opts *wo, int which, pid_t upid,
A Dsys.c259 SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) in SYSCALL_DEFINE3() argument
268 if (which > PRIO_USER || which < PRIO_PROCESS) in SYSCALL_DEFINE3()
279 switch (which) { in SYSCALL_DEFINE3()
329 SYSCALL_DEFINE2(getpriority, int, which, int, who) in SYSCALL_DEFINE2() argument
338 if (which > PRIO_USER || which < PRIO_PROCESS) in SYSCALL_DEFINE2()
342 switch (which) { in SYSCALL_DEFINE2()
2347 int __weak arch_prctl_spec_ctrl_get(struct task_struct *t, unsigned long which) in arch_prctl_spec_ctrl_get() argument
2352 int __weak arch_prctl_spec_ctrl_set(struct task_struct *t, unsigned long which, in arch_prctl_spec_ctrl_set() argument
A DKconfig.kexec121 which are loaded in the main kernel with kexec-tools into
156 Enable direct update to the crash elfcorehdr (which contains
A Dwatchdog.c1032 static int proc_watchdog_common(int which, const struct ctl_table *table, int write, in proc_watchdog_common() argument
1045 *param = (watchdog_enabled & which) != 0; in proc_watchdog_common()
A Daudit.c1128 static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature, in audit_log_feature_change() argument
1141 audit_feature_names[which], !!old_feature, !!new_feature, in audit_log_feature_change()
A Dsignal.c3090 static void retarget_shared_pending(struct task_struct *tsk, sigset_t *which) in retarget_shared_pending() argument
3095 sigandsets(&retarget, &tsk->signal->shared_pending.signal, which); in retarget_shared_pending()
3745 static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info, in do_sigtimedwait() argument
3750 sigset_t mask = *which; in do_sigtimedwait()
/kernel/module/
A DKconfig7 Kernel modules are small pieces of compiled code which can
13 useful for infrequently used options which are not required
33 Allows you to enable / disable features which can help you debug
46 modules we keep track of modules which failed due to either the
106 many duplicate module auto-loading requests which could be optimized
137 anyway), which makes your kernel smaller, faster
168 to the modules to (hopefully) spot any changes which would
243 Modules which contain a MODULE_VERSION get an extra "srcversion"
244 field inserted into their modinfo section, which contains a
245 sum of the source files which made it. This helps maintainers
[all …]
/kernel/irq/
A Dirq_sim.c54 enum irqchip_irq_state which, bool *state) in irq_sim_get_irqchip_state() argument
59 switch (which) { in irq_sim_get_irqchip_state()
72 enum irqchip_irq_state which, bool state) in irq_sim_set_irqchip_state() argument
77 switch (which) { in irq_sim_set_irqchip_state()
A Dmanage.c38 static int __irq_get_irqchip_state(struct irq_data *d, enum irqchip_irq_state which, bool *state);
2631 static int __irq_get_irqchip_state(struct irq_data *data, enum irqchip_irq_state which, bool *state) in __irq_get_irqchip_state() argument
2650 err = chip->irq_get_irqchip_state(data, which, state); in __irq_get_irqchip_state()
2666 int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which, bool *state) in irq_get_irqchip_state() argument
2671 return __irq_get_irqchip_state(data, which, state); in irq_get_irqchip_state()
2689 int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which, bool val) in irq_set_irqchip_state() argument
2708 return chip->irq_set_irqchip_state(data, which, val); in irq_set_irqchip_state()
A Dchip.c1228 enum irqchip_irq_state which, in irq_chip_set_parent_state() argument
1236 return data->chip->irq_set_irqchip_state(data, which, val); in irq_chip_set_parent_state()
1250 enum irqchip_irq_state which, in irq_chip_get_parent_state() argument
1258 return data->chip->irq_get_irqchip_state(data, which, state); in irq_chip_get_parent_state()
/kernel/power/
A DKconfig7 Allow the system to enter sleep states in which main memory is
46 Enable the suspend to disk (STD) functionality, which is usually
63 It creates an image which is saved in your active swap. Upon the next
133 which will set the resume partition to the device specified.
135 Note there is currently not a way to specify which device to save the
361 per-cpu workqueues which were observed to contribute
388 from which subsystems can access the energy models.
/kernel/rcu/
A DKconfig26 thousands of CPUs, but for which real-time response
37 designed for UP systems from which real-time response
47 no such adjustments can be made, which has the often-beneficial
167 root of NR_CPUS, which allows NR_CPUS to be insanely large.
196 skew them, which reduces lock contention enough that large
245 This option is disabled by default on PREEMPT_RT=y kernels which
273 online), which handles grace periods for its group. Nothing
A DKconfig.debug162 Enable RCU CPU-stall notifiers, which are invoked just before
171 that you are thinking of acquiring. In which case, having your
/kernel/trace/
A DKconfig21 API, which will be used by other function-entry hooking
237 instruction at the beginning of every kernel function, which NOP
405 The default measurement method is a maximum search, which is
429 The default measurement method is a maximum search, which is
455 depending on what the cpumask file is set to, which each thread
545 stacktrace at the IRQ context, which helps to identify the code
567 allowing the user to pick and choose which trace point they
599 After which, only the tracing buffer for CPU 2 was swapped with
618 into the C conditionals to test which path a branch takes.
945 write which is not added to the rest of the calculations.
[all …]
/kernel/bpf/
A DKconfig8 # Used by archs to tell that they support BPF JIT compiler plus which
81 disable it by setting it to 1 (from which no other transition to
A Dverifier.c2282 enum bpf_reg_type which) in reg_is_init_pkt_pointer() argument
2288 return reg->type == which && in reg_is_init_pkt_pointer()
/kernel/dma/
A DKconfig118 This enables support for restricted DMA pools which provide a level of
164 This enables the Contiguous Memory Allocator which allows drivers
235 PAGE_SIZE order which is greater than or equal to the requested buffer
/kernel/gcov/
A DKconfig53 which are not linked to the kernel image to prevent linker errors.

Completed in 93 milliseconds