Searched refs:current (Results 226 - 250 of 2004) sorted by relevance

1234567891011>>

/linux-master/arch/sh/kernel/vsyscall/
H A Dvsyscall.c60 struct mm_struct *mm = current->mm;
80 current->mm->context.vdso = (void *)addr;
/linux-master/arch/sh/kernel/
H A Dstacktrace.c45 unwind_stack(current, NULL, sp, &save_stack_ops, trace);
77 unwind_stack(current, NULL, sp, &save_stack_ops_nosched, trace);
/linux-master/tools/testing/selftests/drivers/net/netdevsim/
H A Dethtool-coalesce.sh111 current=$(update_current_settings)
113 check $? "$current" "$expected"
H A Dethtool-ring.sh73 current=$(update_current_settings)
75 check $? "$current" "$expected"
/linux-master/fs/xfs/
H A Dxfs_pwork.c72 trace_xfs_pwork_init(mp, nr_threads, current->pid);
76 current->pid);
/linux-master/arch/sparc/kernel/
H A Dunaligned_32.c61 die_if_kernel("Byte sized unaligned access?!?!", current->thread.kregs);
227 printk(KERN_ALERT "current->{mm,active_mm}->context = %08lx\n",
228 (current->mm ? current->mm->context :
229 current->active_mm->context));
230 printk(KERN_ALERT "current->{mm,active_mm}->pgd = %08lx\n",
231 (current->mm ? (unsigned long) current->mm->pgd :
232 (unsigned long) current->active_mm->pgd));
281 current);
[all...]
/linux-master/arch/x86/include/asm/
H A Dcompat.h80 (!!(task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT))
86 if (task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT)
/linux-master/include/linux/
H A Dhardirq.h38 account_hardirq_enter(current); \
66 account_hardirq_exit(current); \
H A Dfreezer.h54 if (likely(!freezing(current)))
56 if (!(current->flags & PF_NOFREEZE))
H A Doom.h62 current->signal->oom_flag_origin = true;
67 current->signal->oom_flag_origin = false;
H A Duser_events.h40 if (!t || !current->user_event_mm)
43 old_mm = current->user_event_mm;
H A Drcuwait.h47 rcu_assign_pointer(w->task, current);
65 if (signal_pending_state(state, current)) { \
H A Drcupdate_trace.h50 struct task_struct *t = current;
72 struct task_struct *t = current;
H A Dioprio.h54 * Expected to be called for current task or with task_lock() held to keep
65 if (p != current)
83 return __get_task_ioprio(current);
/linux-master/arch/um/kernel/
H A Dsysrq.c33 struct pt_regs *segv_regs = current->thread.segv_regs;
56 dump_trace(current, &stackops, (void *)loglvl);
/linux-master/drivers/media/platform/sunxi/sun6i-csi/
H A Dsun6i_csi_capture.h37 #undef current macro
43 struct sun6i_csi_buffer *current; member in struct:sun6i_csi_capture_state
/linux-master/arch/loongarch/power/
H A Dhibernate.c24 save_fp(current);
36 restore_fp(current);
/linux-master/arch/hexagon/include/asm/
H A Dpgalloc.h74 current->active_mm->context.generation = kmap_generation;
80 * Now the "slave" copy of the current thread.
84 ppmd = (pmd_t *)current->active_mm->pgd + pmdindex;
/linux-master/kernel/
H A Dcapability.c41 char name[sizeof(current->comm)];
44 get_task_comm(name, current));
65 char name[sizeof(current->comm)];
68 get_task_comm(name, current));
103 * The only thing that can change the capabilities of the current
104 * process is the current process. As such, we can't be in this code
114 if (pid && (pid != task_pid_vnr(current))) {
127 ret = security_capget(current, pEp, pIp, pPp);
209 * Set capabilities for the current process only. The ability to any other
236 /* may only affect current no
[all...]
/linux-master/fs/
H A Ddrop_caches.c73 current->comm, task_pid_nr(current),
/linux-master/io_uring/
H A Dio-wq.h81 return in_task() && (current->flags & PF_IO_WORKER) &&
82 current->worker_private;
/linux-master/kernel/locking/
H A Dspinlock_rt.c40 lockdep_assert(!current->pi_blocked_on);
42 if (unlikely(!rt_mutex_cmpxchg_acquire(rtm, NULL, current)))
84 if (unlikely(!rt_mutex_cmpxchg_release(&lock->lock, current, NULL)))
105 if (unlikely(!rt_mutex_cmpxchg_acquire(&lock->lock, NULL, current)))
159 if (unlikely(!rt_mutex_cmpxchg_acquire(rtm, NULL, current)))
173 if (likely(rt_mutex_cmpxchg_acquire(rtm, current, NULL)))
181 if (likely(rt_mutex_cmpxchg_acquire(rtm, NULL, current)))
187 #define rwbase_signal_pending_state(state, current) (0)
/linux-master/arch/arm64/kernel/
H A Dsys_compat.c31 if (fatal_signal_pending(current))
91 current->thread.uw.tp_value = regs->regs[0];
/linux-master/arch/s390/include/asm/
H A Dkprobes.h48 (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR))) \
50 : (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR)))
/linux-master/arch/riscv/kernel/
H A Dvector.c167 return riscv_v_ctrl_get_cur(current) == PR_RISCV_V_VSTATE_CTRL_ON;
195 WARN_ON(current->thread.vstate.datap);
202 if (riscv_v_thread_zalloc(riscv_v_user_cachep, &current->thread.vstate)) {
207 riscv_v_vstate_set_restore(current, regs);
241 return current->thread.vstate_ctrl & PR_RISCV_V_VSTATE_CTRL_MASK;
258 /* Do not allow user to turn off V if current is not off */
259 if (riscv_v_ctrl_get_cur(current) != PR_RISCV_V_VSTATE_CTRL_OFF)
266 cur = riscv_v_ctrl_get_cur(current);
278 riscv_v_ctrl_set(current, cur, next, inherit);

Completed in 246 milliseconds

1234567891011>>