Home
last modified time | relevance | path

Searched refs:curr (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/Linux-v5.4/drivers/char/ipmi/
Dipmi_si_hotmod.c60 const char **curr) in parse_str() argument
65 s = strchr(*curr, ','); in parse_str()
73 if (strcmp(*curr, v[i].name) == 0) { in parse_str()
75 *curr = s; in parse_str()
80 pr_warn("Invalid hotmod %s '%s'\n", name, *curr); in parse_str()
84 static int check_hotmod_int_op(const char *curr, const char *option, in check_hotmod_int_op() argument
89 if (strcmp(curr, name) == 0) { in check_hotmod_int_op()
91 pr_warn("No option given for '%s'\n", curr); in check_hotmod_int_op()
96 pr_warn("Bad option given for '%s'\n", curr); in check_hotmod_int_op()
104 static int parse_hotmod_str(const char *curr, enum hotmod_op *op, in parse_hotmod_str() argument
[all …]
/Linux-v5.4/fs/hfsplus/
Dbitmap.c25 __be32 *pptr, *curr, *end; in hfsplus_block_allocate() local
43 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
52 val = *curr; in hfsplus_block_allocate()
61 curr++; in hfsplus_block_allocate()
65 while (curr < end) { in hfsplus_block_allocate()
66 val = *curr; in hfsplus_block_allocate()
75 curr++; in hfsplus_block_allocate()
87 curr = pptr = kmap(page); in hfsplus_block_allocate()
98 start = offset + (curr - pptr) * 32 + i; in hfsplus_block_allocate()
115 *curr++ = cpu_to_be32(n); in hfsplus_block_allocate()
[all …]
/Linux-v5.4/kernel/locking/
Dlockdep.c1621 struct task_struct *curr = current; in print_circular_bug_header() local
1632 curr->comm, task_pid_nr(curr)); in print_circular_bug_header()
1654 struct task_struct *curr = current; in print_circular_bug() local
1682 lockdep_print_held_locks(curr); in print_circular_bug()
2025 print_bad_irq_dependency(struct task_struct *curr, in print_bad_irq_dependency() argument
2046 curr->comm, task_pid_nr(curr), in print_bad_irq_dependency()
2047 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT, in print_bad_irq_dependency()
2048 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT, in print_bad_irq_dependency()
2049 curr->hardirqs_enabled, in print_bad_irq_dependency()
2050 curr->softirqs_enabled); in print_bad_irq_dependency()
[all …]
Dosq_lock.c47 int curr = encode_cpu(smp_processor_id()); in osq_wait_next() local
58 if (atomic_read(&lock->tail) == curr && in osq_wait_next()
59 atomic_cmpxchg_acquire(&lock->tail, curr, old) == curr) { in osq_wait_next()
94 int curr = encode_cpu(smp_processor_id()); in osq_lock() local
99 node->cpu = curr; in osq_lock()
107 old = atomic_xchg(&lock->tail, curr); in osq_lock()
209 int curr = encode_cpu(smp_processor_id()); in osq_unlock() local
214 if (likely(atomic_cmpxchg_release(&lock->tail, curr, in osq_unlock()
215 OSQ_UNLOCKED_VAL) == curr)) in osq_unlock()
/Linux-v5.4/drivers/input/serio/
Dhp_sdc.c183 hp_sdc_transaction *curr; in hp_sdc_take() local
190 curr = hp_sdc.tq[hp_sdc.rcurr]; in hp_sdc_take()
193 curr->seq[curr->idx++] = status; in hp_sdc_take()
194 curr->seq[curr->idx++] = data; in hp_sdc_take()
200 if (curr->seq[curr->actidx] & HP_SDC_ACT_SEMAPHORE) in hp_sdc_take()
201 if (curr->act.semaphore) in hp_sdc_take()
202 up(curr->act.semaphore); in hp_sdc_take()
204 if (curr->seq[curr->actidx] & HP_SDC_ACT_CALLBACK) in hp_sdc_take()
205 if (curr->act.irqhook) in hp_sdc_take()
206 curr->act.irqhook(irq, dev_id, status, data); in hp_sdc_take()
[all …]
/Linux-v5.4/fs/hfs/
Dbitmap.c31 __be32 *curr, *end; in hfs_find_set_zero_bits() local
40 curr = bitmap + (offset / 32); in hfs_find_set_zero_bits()
44 val = *curr; in hfs_find_set_zero_bits()
56 while (++curr < end) { in hfs_find_set_zero_bits()
57 val = *curr; in hfs_find_set_zero_bits()
70 start = (curr - bitmap) * 32 + i; in hfs_find_set_zero_bits()
85 *curr++ = cpu_to_be32(n); in hfs_find_set_zero_bits()
88 n = be32_to_cpu(*curr); in hfs_find_set_zero_bits()
95 *curr++ = cpu_to_be32(0xffffffff); in hfs_find_set_zero_bits()
107 *curr = cpu_to_be32(n); in hfs_find_set_zero_bits()
[all …]
/Linux-v5.4/kernel/sched/
Dstop_task.c68 struct task_struct *curr = rq->curr; in put_prev_task_stop() local
71 delta_exec = rq_clock_task(rq) - curr->se.exec_start; in put_prev_task_stop()
75 schedstat_set(curr->se.statistics.exec_max, in put_prev_task_stop()
76 max(curr->se.statistics.exec_max, delta_exec)); in put_prev_task_stop()
78 curr->se.sum_exec_runtime += delta_exec; in put_prev_task_stop()
79 account_group_exec_runtime(curr, delta_exec); in put_prev_task_stop()
81 curr->se.exec_start = rq_clock_task(rq); in put_prev_task_stop()
82 cgroup_account_cputime(curr, delta_exec); in put_prev_task_stop()
93 static void task_tick_stop(struct rq *rq, struct task_struct *curr, int queued) in task_tick_stop() argument
Dswait.c24 struct swait_queue *curr; in swake_up_locked() local
29 curr = list_first_entry(&q->task_list, typeof(*curr), task_list); in swake_up_locked()
30 wake_up_process(curr->task); in swake_up_locked()
31 list_del_init(&curr->task_list); in swake_up_locked()
51 struct swait_queue *curr; in swake_up_all() local
57 curr = list_first_entry(&tmp, typeof(*curr), task_list); in swake_up_all()
59 wake_up_state(curr->task, TASK_NORMAL); in swake_up_all()
60 list_del_init(&curr->task_list); in swake_up_all()
Drt.c90 rt_rq->highest_prio.curr = MAX_RT_PRIO; in init_rt_rq()
162 rt_rq->highest_prio.curr = MAX_RT_PRIO; in init_tg_rt_entry()
266 return rq->rt.highest_prio.curr > prev->prio; in need_pull_rt_task()
488 struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr; in sched_rt_rq_enqueue() local
502 if (rt_rq->highest_prio.curr < curr->prio) in sched_rt_rq_enqueue()
871 if (rt_rq->rt_nr_running && rq->curr == rq->idle) in do_sched_rt_period_timer()
902 return rt_rq->highest_prio.curr; in rt_se_prio()
957 struct task_struct *curr = rq->curr; in update_curr_rt() local
958 struct sched_rt_entity *rt_se = &curr->rt; in update_curr_rt()
962 if (curr->sched_class != &rt_sched_class) in update_curr_rt()
[all …]
/Linux-v5.4/drivers/char/agp/
Dgeneric.c163 void agp_free_memory(struct agp_memory *curr) in agp_free_memory() argument
167 if (curr == NULL) in agp_free_memory()
170 if (curr->is_bound) in agp_free_memory()
171 agp_unbind_memory(curr); in agp_free_memory()
173 if (curr->type >= AGP_USER_TYPES) { in agp_free_memory()
174 agp_generic_free_by_type(curr); in agp_free_memory()
178 if (curr->type != 0) { in agp_free_memory()
179 curr->bridge->driver->free_by_type(curr); in agp_free_memory()
182 if (curr->page_count != 0) { in agp_free_memory()
183 if (curr->bridge->driver->agp_destroy_pages) { in agp_free_memory()
[all …]
/Linux-v5.4/lib/
Dsg_split.c27 struct sg_splitter *curr = splitters; in sg_calculate_split() local
43 if (!curr->in_sg0) { in sg_calculate_split()
44 curr->in_sg0 = sg; in sg_calculate_split()
45 curr->skip_sg0 = skip; in sg_calculate_split()
48 curr->nents++; in sg_calculate_split()
49 curr->length_last_sg = len; in sg_calculate_split()
52 curr++; in sg_calculate_split()
57 curr->in_sg0 = sg; in sg_calculate_split()
58 curr->skip_sg0 = skip; in sg_calculate_split()
59 curr->nents = 1; in sg_calculate_split()
[all …]
/Linux-v5.4/arch/x86/um/
Dtls_32.c98 struct uml_tls_struct* curr = in load_TLS() local
105 if (!curr->present) { in load_TLS()
106 if (!curr->flushed) { in load_TLS()
107 clear_user_desc(&curr->tls); in load_TLS()
108 curr->tls.entry_number = idx; in load_TLS()
110 WARN_ON(!LDT_empty(&curr->tls)); in load_TLS()
115 if (!(flags & O_FORCE) && curr->flushed) in load_TLS()
118 ret = do_set_thread_area(&curr->tls); in load_TLS()
122 curr->flushed = 1; in load_TLS()
138 struct uml_tls_struct* curr = in needs_TLS_update() local
[all …]
/Linux-v5.4/drivers/staging/greybus/
Daudio_topology.c991 struct gb_audio_control *curr; in gbaudio_tplg_create_widget() local
1014 curr = w->ctl; in gbaudio_tplg_create_widget()
1017 curr); in gbaudio_tplg_create_widget()
1021 curr->name, curr->iface); in gbaudio_tplg_create_widget()
1031 control->id = curr->id; in gbaudio_tplg_create_widget()
1032 control->name = curr->name; in gbaudio_tplg_create_widget()
1035 if (curr->info.type == GB_AUDIO_CTL_ELEM_TYPE_ENUMERATED) { in gbaudio_tplg_create_widget()
1037 &curr->info.value.enumerated; in gbaudio_tplg_create_widget()
1051 curr = (void *)curr + csize; in gbaudio_tplg_create_widget()
1152 struct gb_audio_control *curr; in gbaudio_tplg_process_kcontrols() local
[all …]
/Linux-v5.4/sound/core/
Dpcm_param_trace.h29 …eam, snd_pcm_hw_param_t type, int index, const struct snd_mask *prev, const struct snd_mask *curr),
30 TP_ARGS(substream, type, index, prev, curr),
51 memcpy(__entry->curr_bits, curr->bits, sizeof(__u32) * 8);
69 …_pcm_hw_param_t type, int index, const struct snd_interval *prev, const struct snd_interval *curr),
70 TP_ARGS(substream, type, index, prev, curr),
106 __entry->curr_min = curr->min;
107 __entry->curr_max = curr->max;
108 __entry->curr_openmin = curr->openmin;
109 __entry->curr_openmax = curr->openmax;
110 __entry->curr_integer = curr->integer;
[all …]
/Linux-v5.4/sound/firewire/oxfw/
Doxfw-proc.c14 struct snd_oxfw_stream_formation formation, curr; in proc_read_formation() local
22 &curr); in proc_read_formation()
37 if (memcmp(&formation, &curr, sizeof(curr)) == 0) in proc_read_formation()
52 &curr); in proc_read_formation()
67 if (memcmp(&formation, &curr, sizeof(curr)) == 0) in proc_read_formation()
/Linux-v5.4/lib/zlib_inflate/
Dinftrees.c30 unsigned curr; /* number of index bits for current table */ in zlib_inflate_table() local
191 curr = root; /* current table index bits */ in zlib_inflate_table()
220 fill = 1U << curr; in zlib_inflate_table()
255 curr = len - drop; in zlib_inflate_table()
256 left = (int)(1 << curr); in zlib_inflate_table()
257 while (curr + drop < max) { in zlib_inflate_table()
258 left -= count[curr + drop]; in zlib_inflate_table()
260 curr++; in zlib_inflate_table()
265 used += 1U << curr; in zlib_inflate_table()
271 (*table)[low].op = (unsigned char)curr; in zlib_inflate_table()
/Linux-v5.4/tools/vm/
Dpage_owner_sort.c36 char *curr = buf, *const buf_end = buf + buf_size; in read_block() local
38 while (buf_end - curr > 1 && fgets(curr, buf_end - curr, fin)) { in read_block()
39 if (*curr == '\n') /* empty line */ in read_block()
40 return curr - buf; in read_block()
41 curr += strlen(curr); in read_block()
/Linux-v5.4/lib/dim/
Dnet_dim.c137 static int net_dim_stats_compare(struct dim_stats *curr, in net_dim_stats_compare() argument
141 return curr->bpms ? DIM_STATS_BETTER : DIM_STATS_SAME; in net_dim_stats_compare()
143 if (IS_SIGNIFICANT_DIFF(curr->bpms, prev->bpms)) in net_dim_stats_compare()
144 return (curr->bpms > prev->bpms) ? DIM_STATS_BETTER : in net_dim_stats_compare()
148 return curr->ppms ? DIM_STATS_BETTER : in net_dim_stats_compare()
151 if (IS_SIGNIFICANT_DIFF(curr->ppms, prev->ppms)) in net_dim_stats_compare()
152 return (curr->ppms > prev->ppms) ? DIM_STATS_BETTER : in net_dim_stats_compare()
158 if (IS_SIGNIFICANT_DIFF(curr->epms, prev->epms)) in net_dim_stats_compare()
159 return (curr->epms < prev->epms) ? DIM_STATS_BETTER : in net_dim_stats_compare()
/Linux-v5.4/fs/btrfs/
Ddelayed-inode.c698 struct btrfs_delayed_item *curr, *next; in btrfs_batch_insert_items() local
730 curr = next; in btrfs_batch_insert_items()
731 next = __btrfs_next_delayed_item(curr); in btrfs_batch_insert_items()
735 if (!btrfs_is_continuous_delayed_item(curr, next)) in btrfs_batch_insert_items()
777 list_for_each_entry_safe(curr, next, &head, tree_list) { in btrfs_batch_insert_items()
779 write_extent_buffer(leaf, &curr->data, in btrfs_batch_insert_items()
781 curr->data_len); in btrfs_batch_insert_items()
784 btrfs_delayed_item_release_metadata(root, curr); in btrfs_batch_insert_items()
786 list_del(&curr->tree_list); in btrfs_batch_insert_items()
787 btrfs_release_delayed_item(curr); in btrfs_batch_insert_items()
[all …]
/Linux-v5.4/tools/perf/ui/
Dprogress.c18 u64 last = p->curr; in ui_progress__update()
20 p->curr += adv; in ui_progress__update()
22 if (p->curr >= p->next) { in ui_progress__update()
23 u64 nr = DIV_ROUND_UP(p->curr - last, p->step); in ui_progress__update()
33 p->curr = 0; in __ui_progress__init()
/Linux-v5.4/drivers/leds/trigger/
Dledtrig-pattern.c27 struct led_pattern *curr; member
41 data->curr = data->next; in pattern_trig_update_patterns()
42 if (!data->is_indefinite && data->curr == data->patterns) in pattern_trig_update_patterns()
62 if (data->delta_t == 0 || data->curr->delta_t < UPDATE_INTERVAL) in pattern_trig_compute_brightness()
63 return data->curr->brightness; in pattern_trig_compute_brightness()
65 step_brightness = abs(data->next->brightness - data->curr->brightness); in pattern_trig_compute_brightness()
66 step_brightness = data->delta_t * step_brightness / data->curr->delta_t; in pattern_trig_compute_brightness()
68 if (data->next->brightness > data->curr->brightness) in pattern_trig_compute_brightness()
69 return data->curr->brightness + step_brightness; in pattern_trig_compute_brightness()
71 return data->curr->brightness - step_brightness; in pattern_trig_compute_brightness()
[all …]
/Linux-v5.4/drivers/gpu/drm/msm/disp/dpu1/
Ddpu_hw_blk.c72 struct dpu_hw_blk *curr; in dpu_hw_blk_get() local
77 list_for_each_entry(curr, &dpu_hw_blk_list, list) { in dpu_hw_blk_get()
78 if ((curr->type != type) || in dpu_hw_blk_get()
79 (id >= 0 && curr->id != id) || in dpu_hw_blk_get()
81 atomic_read(&curr->refcount))) in dpu_hw_blk_get()
84 hw_blk = curr; in dpu_hw_blk_get()
/Linux-v5.4/drivers/gpu/drm/i915/
Di915_scatterlist.h25 unsigned int curr; member
31 s.max = s.curr = s.sgp->offset; in __sgt_iter()
78 ((__dmap) = (__iter).dma + (__iter).curr); \
79 (((__iter).curr += (__step)) >= (__iter).max) ? \
91 pfn_to_page((__iter).pfn + ((__iter).curr >> PAGE_SHIFT))); \
92 (((__iter).curr += PAGE_SIZE) >= (__iter).max) ? \
/Linux-v5.4/fs/erofs/
Dzpvec.h31 struct page *curr, *next; member
40 if (!ctor->curr) in z_erofs_pagevec_ctor_exit()
46 kunmap(ctor->curr); in z_erofs_pagevec_ctor_exit()
78 ctor->curr = next; in z_erofs_pagevec_ctor_pagedown()
81 kmap_atomic(ctor->curr) : kmap(ctor->curr); in z_erofs_pagevec_ctor_pagedown()
93 ctor->curr = ctor->next = NULL; in z_erofs_pagevec_ctor_init()
/Linux-v5.4/Documentation/hwmon/
Dir35221.rst44 curr[2-3]_label "iout[1-2]"
45 curr[2-3]_input Measured output current
46 curr[2-3]_crit Critical maximum current
47 curr[2-3]_crit_alarm Current critical high alarm
48 curr[2-3]_highest Highest output current
49 curr[2-3]_lowest Lowest output current
50 curr[2-3]_max Maximum current
51 curr[2-3]_max_alarm Current high alarm

12345678910>>...13