Searched refs:next (Results 126 - 150 of 3417) sorted by relevance

1234567891011>>

/linux-master/arch/arc/kernel/
H A Dfpu.c32 void fpu_save_restore(struct task_struct *prev, struct task_struct *next) argument
35 unsigned int *readfrom = &next->thread.fpu.aux_dpfp[0].l;
69 void fpu_save_restore(struct task_struct *prev, struct task_struct *next) argument
72 struct arc_fpu *restore = &next->thread.fpu;
/linux-master/include/linux/raid/
H A Dxor.h11 struct xor_block_template *next; member in struct:xor_block_template
/linux-master/tools/power/cpupower/lib/
H A Dcpufreq.h19 struct cpufreq_available_governors *next; member in struct:cpufreq_available_governors
25 struct cpufreq_available_frequencies *next; member in struct:cpufreq_available_frequencies
32 struct cpufreq_affected_cpus *next; member in struct:cpufreq_affected_cpus
39 struct cpufreq_stats *next; member in struct:cpufreq_stats
/linux-master/samples/trace_events/
H A Dtrace_custom_sched.h29 struct task_struct *next,
32 TP_ARGS(preempt, prev, next, prev_state),
35 * The next fields are where the customization happens.
50 __entry->next_pid = next->pid;
51 __entry->next_prio = next->prio;
/linux-master/drivers/gpu/drm/i915/
H A Di915_user_extensions.c26 u64 next; local
53 if (get_user(next, &ext->next_extension) ||
54 overflows_type(next, uintptr_t))
57 ext = u64_to_user_ptr(next);
/linux-master/drivers/gpu/drm/msm/
H A Dmsm_ringbuffer.h49 uint32_t *start, *end, *cur, *next; member in struct:msm_ringbuffer
114 * ring->next points to the current command being written - it won't be
117 if (ring->next == ring->end)
118 ring->next = ring->start;
119 *(ring->next++) = data;
/linux-master/arch/x86/include/asm/
H A Dswitch_to.h10 struct task_struct *next);
13 struct task_struct *next);
49 #define switch_to(prev, next, last) \
51 ((last) = __switch_to_asm((prev), (next))); \
/linux-master/arch/arm64/mm/
H A Dtrans_pgd.c88 unsigned long next; local
103 next = pmd_addr_end(addr, end);
107 if (copy_pte(info, dst_pmdp, src_pmdp, addr, next))
113 } while (dst_pmdp++, src_pmdp++, addr = next, addr != end);
124 unsigned long next; local
139 next = pud_addr_end(addr, end);
143 if (copy_pmd(info, dst_pudp, src_pudp, addr, next))
149 } while (dst_pudp++, src_pudp++, addr = next, addr != end);
160 unsigned long next; local
166 next
179 unsigned long next; local
[all...]
H A Dmmu.c205 unsigned long next; local
225 next = pte_cont_addr_end(addr, end);
228 if ((((addr | next | phys) & ~CONT_PTE_MASK) == 0) &&
232 init_pte(pmdp, addr, next, phys, __prot);
234 phys += next - addr;
235 } while (addr = next, addr != end);
242 unsigned long next; local
249 next = pmd_addr_end(addr, end);
252 if (((addr | next | phys) & ~PMD_MASK) == 0 &&
263 alloc_init_cont_pte(pmdp, addr, next, phy
280 unsigned long next; local
321 unsigned long next; local
376 unsigned long next; local
417 unsigned long addr, end, next; local
864 unsigned long next; local
897 unsigned long next; local
930 unsigned long next; local
948 unsigned long next; local
1013 unsigned long i, next, start = addr; local
1053 unsigned long i, next, start = addr; local
1093 unsigned long i, next, start = addr; local
1131 unsigned long next; local
1147 vmemmap_set_pmd(pmd_t *pmdp, void *p, int node, unsigned long addr, unsigned long next) argument
1153 vmemmap_check_pmd(pmd_t *pmdp, int node, unsigned long addr, unsigned long next) argument
1256 unsigned long next, end; local
[all...]
/linux-master/arch/sh/include/asm/
H A Dmmu_context.h110 struct mm_struct *next,
115 if (likely(prev != next)) {
116 cpumask_set_cpu(cpu, mm_cpumask(next));
117 set_TTB(next->pgd);
118 activate_context(next, cpu);
120 if (!cpumask_test_and_set_cpu(cpu, mm_cpumask(next)))
121 activate_context(next, cpu);
109 switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
/linux-master/include/linux/
H A Dllist.h16 * needed. This is because llist_del_first depends on list->first->next not
61 struct llist_node *next; member in struct:llist_node
86 node->next = node;
93 * When a node is on a list the ->next pointer will be NULL or
100 return node->next != node;
144 for ((pos) = (node); pos; (pos) = (pos)->next)
163 for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n))
183 (pos) = llist_entry((pos)->member.next, typeof(*(pos)), member))
205 (n = llist_entry(pos->member.next, typeof(*n), member), true); \
223 return node->next;
[all...]
/linux-master/net/rose/
H A Drose_route.c67 rose_node = rose_node->next;
81 rose_neigh = rose_neigh->next;
126 rose_neigh->next = rose_neigh_list;
144 rose_tmpn = rose_tmpn->next;
166 rose_node->next = NULL;
168 rose_tmpp->next = rose_node;
169 rose_node->next = NULL;
173 rose_node->next = rose_node_list;
176 rose_tmpp->next = rose_node;
177 rose_node->next
[all...]
/linux-master/arch/microblaze/include/asm/
H A Dmmu_context_mm.h59 * This caches the next context number that we expect to be free.
114 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
117 tsk->thread.pgdir = next->pgd;
118 get_mmu_context(next);
119 set_context(next->context, next->pgd);
/linux-master/arch/riscv/include/asm/
H A Dswitch_to.h51 struct task_struct *next)
57 fstate_restore(next, task_pt_regs(next));
75 #define switch_to(prev, next, last) \
78 struct task_struct *__next = (next); \
50 __switch_to_fpu(struct task_struct *prev, struct task_struct *next) argument
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dramgk104.c210 struct nvkm_ram_data *next = ram->base.next; local
211 u8 v0 = next->bios.ramcfg_11_03_c0;
212 u8 v1 = next->bios.ramcfg_11_03_30;
243 u32 next = (prev & ~mask) | data; local
244 nvkm_memx_wr32(fuc->memx, addr, next);
255 struct nvkm_ram_data *next = ram->base.next; local
256 int vc = !next->bios.ramcfg_11_02_08;
257 int mv = !next
706 struct nvkm_ram_data *next = ram->base.next; local
1041 gk104_ram_calc_xits(struct gk104_ram *ram, struct nvkm_ram_data *next) argument
1236 struct nvkm_ram_data *next = ram->base.next; local
[all...]
/linux-master/drivers/usb/host/
H A Dohci-dbg.c23 #define ohci_dbg_sw(ohci, next, size, format, arg...) \
25 if (next != NULL) { \
27 s_len = scnprintf (*next, *size, format, ## arg ); \
28 *size -= s_len; *next += s_len; \
33 /* Version for use where "next" is the address of a local variable */
34 #define ohci_dbg_nosw(ohci, next, size, format, arg...) \
37 s_len = scnprintf(*next, *size, format, ## arg); \
38 *size -= s_len; *next += s_len; \
46 char **next,
49 ohci_dbg_sw (ohci, next, siz
42 ohci_dump_intr_mask( struct ohci_hcd *ohci, char *label, u32 mask, char **next, unsigned *size) argument
64 maybe_print_eds( struct ohci_hcd *ohci, char *label, u32 value, char **next, unsigned *size) argument
101 ohci_dump_status(struct ohci_hcd *controller, char **next, unsigned *size) argument
191 ohci_dump_roothub( struct ohci_hcd *controller, int verbose, char **next, unsigned *size) argument
492 char *next; local
588 char *next; local
[all...]
/linux-master/sound/isa/gus/
H A Dgus_mem.c47 nblock->next = pblock;
52 nblock->prev->next = nblock;
56 pblock = pblock->next;
58 nblock->next = NULL;
64 alloc->last->next = nblock;
78 alloc->first = block->next;
79 if (block->next)
80 block->next->prev = NULL;
82 block->prev->next = block->next;
[all...]
/linux-master/arch/riscv/mm/
H A Dpageattr.c30 unsigned long next, struct mm_walk *walk)
43 unsigned long next, struct mm_walk *walk)
56 unsigned long next, struct mm_walk *walk)
69 unsigned long next, struct mm_walk *walk)
79 static int pageattr_pte_hole(unsigned long addr, unsigned long next, argument
100 unsigned long next; local
105 next = pmd_addr_end(vaddr, end);
107 if (next - vaddr >= PMD_SIZE &&
108 vaddr <= (vaddr & PMD_MASK) && end >= next)
130 } while (pmdp++, vaddr = next, vadd
29 pageattr_p4d_entry(p4d_t *p4d, unsigned long addr, unsigned long next, struct mm_walk *walk) argument
42 pageattr_pud_entry(pud_t *pud, unsigned long addr, unsigned long next, struct mm_walk *walk) argument
55 pageattr_pmd_entry(pmd_t *pmd, unsigned long addr, unsigned long next, struct mm_walk *walk) argument
68 pageattr_pte_entry(pte_t *pte, unsigned long addr, unsigned long next, struct mm_walk *walk) argument
139 unsigned long next; local
184 unsigned long next; local
242 unsigned long next; local
[all...]
/linux-master/arch/loongarch/mm/
H A Dkasan_init.c148 unsigned long next; local
155 next = addr + PAGE_SIZE;
157 } while (ptep++, addr = next, addr != end && __pte_none(early, READ_ONCE(*ptep)));
163 unsigned long next; local
167 next = pmd_addr_end(addr, end);
168 kasan_pte_populate(pmdp, addr, next, node, early);
169 } while (pmdp++, addr = next, addr != end && __pmd_none(early, READ_ONCE(*pmdp)));
175 unsigned long next; local
179 next = pud_addr_end(addr, end);
180 kasan_pmd_populate(pudp, addr, next, nod
187 unsigned long next; local
199 unsigned long next; local
[all...]
/linux-master/arch/x86/mm/
H A Dtlb.c208 * Make sure the next time we go to switch to
219 static void choose_new_asid(struct mm_struct *next, u64 next_tlb_gen, argument
235 next->context.ctx_id)
258 * until the next time we switch to it.
324 void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
330 switch_mm_irqs_off(NULL, next, tsk);
346 struct task_struct *next)
363 clear_ti_thread_flag(&next->thread_info, TIF_SPEC_L1D_FLUSH);
364 next->l1d_flush_kill.func = l1d_flush_force_sigbus;
365 task_work_add(next,
345 l1d_flush_evaluate(unsigned long prev_mm, unsigned long next_mm, struct task_struct *next) argument
369 mm_mangle_tif_spec_bits(struct task_struct *next) argument
383 cond_mitigation(struct task_struct *next) argument
501 switch_mm_irqs_off(struct mm_struct *unused, struct mm_struct *next, struct task_struct *tsk) argument
[all...]
/linux-master/arch/arm64/kernel/
H A Dprocess.c423 static void tls_thread_switch(struct task_struct *next) argument
427 if (is_compat_thread(task_thread_info(next)))
428 write_sysreg(next->thread.uw.tp_value, tpidrro_el0);
432 write_sysreg(*task_user_tls(next), tpidr_el0);
434 write_sysreg_s(next->thread.tpidr2_el0, SYS_TPIDR2_EL0);
441 static void ssbs_thread_switch(struct task_struct *next) argument
447 if (unlikely(next->flags & PF_KTHREAD))
457 spectre_v4_enable_task_mitigation(next);
469 static void entry_task_switch(struct task_struct *next) argument
471 __this_cpu_write(__entry_task, next);
479 erratum_1418040_thread_switch(struct task_struct *next) argument
520 __switch_to(struct task_struct *prev, struct task_struct *next) argument
[all...]
/linux-master/drivers/acpi/acpica/
H A Dhwpci.c24 struct acpi_pci_device *next; member in struct:acpi_pci_device
179 list_element->next = *return_list_head;
237 info = info->next;
264 struct acpi_pci_device *next; local
267 next = list_head;
268 while (next) {
269 previous = next;
270 next = previous->next;
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_res_cursor.h59 struct list_head *head, *next; local
82 next = block->link.next;
83 if (next != head)
84 block = list_entry(next, struct drm_buddy_block, link);
123 * Move the cursor @size bytes forwrad, walking to the next node if necessary.
129 struct list_head *next; local
147 next = block->link.next;
148 block = list_entry(next, struc
[all...]
/linux-master/arch/arm64/include/asm/
H A Dmmu_context.h30 static inline void contextidr_thread_switch(struct task_struct *next) argument
35 write_sysreg(task_pid_nr(next), contextidr_el1);
215 static inline void __switch_mm(struct mm_struct *next) argument
221 if (next == &init_mm) {
226 check_and_switch_context(next);
230 switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
233 if (prev != next)
234 __switch_mm(next);
242 update_saved_ttbr0(tsk, next);
/linux-master/sound/core/seq/
H A Dseq_prioq.c23 * |next
152 f->tail->next = cell;
154 cell->next = NULL;
176 /* move cursor to next cell */
178 cur = cur->next;
187 prev->next = cell;
188 cell->next = cur;
223 f->head = cell->next;
229 cell->next = NULL;
252 register struct snd_seq_event_cell *cell, *next; local
[all...]

Completed in 573 milliseconds

1234567891011>>