Searched refs:active (Results 51 - 75 of 1168) sorted by relevance

1234567891011>>

/linux-master/drivers/xen/
H A Dpvcalls-front.c71 } active; member in union:sock_mapping::__anon765
136 struct pvcalls_data_intf *intf = map->active.ring;
153 struct pvcalls_data_intf *intf = map->active.ring;
235 unbind_from_irqhandler(map->active.irq, map);
245 gnttab_end_foreign_access(map->active.ring->ref[i], NULL);
246 gnttab_end_foreign_access(map->active.ref, NULL);
265 wake_up_interruptible(&map->active.inflight_conn_req);
347 if (!map->active.ring)
350 free_pages_exact(map->active.data.in,
351 PAGE_SIZE << map->active
[all...]
/linux-master/arch/s390/appldata/
H A Dappldata_base.c106 * call data gathering function for each (active) module
116 if (ops->active == 1) {
199 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
271 int active; local
273 .data = &active,
298 active = ops->active;
306 if (active && (ops->active
[all...]
/linux-master/mm/
H A Dmmu_gather.c23 if (tlb->delayed_rmap && tlb->active != &tlb->local)
26 batch = tlb->active;
28 tlb->active = batch->next;
44 tlb->active->next = batch;
45 tlb->active = batch;
79 * we only need to walk through the current active batch and the
88 if (tlb->active != &tlb->local)
89 tlb_flush_rmap_batch(tlb->active, vma);
150 tlb->active = &tlb->local;
179 batch = tlb->active;
[all...]
/linux-master/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_ldu.c44 struct list_head active; member in struct:vmw_legacy_display
58 struct list_head active; member in struct:vmw_legacy_display_unit
63 list_del_init(&ldu->active);
91 list_for_each_entry(entry, &lds->active, active) {
106 if (!list_empty(&lds->active)) {
107 entry = list_entry(lds->active.next, typeof(*entry), active);
119 list_for_each_entry(entry, &lds->active, active) {
[all...]
/linux-master/tools/testing/selftests/gpio/
H A Dgpio-mockup-sysfs.sh50 active-high)
53 active-low)
/linux-master/arch/csky/include/asm/
H A Dasid.h15 atomic64_t __percpu *active; member in struct:asid_info
31 #define active_asid(info, cpu) *per_cpu_ptr((info)->active, cpu)
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gt_buffer_pool.c33 i915_active_fini(&node->active);
40 bool active = false; local
76 active |= !list_empty(list);
84 return active;
101 container_of(ref, typeof(*node), active);
118 WRITE_ONCE(node->age, jiffies ?: 1); /* 0 reserved for active nodes */
154 i915_active_init(&node->active, NULL, pool_retire, 0);
158 i915_active_fini(&node->active);
211 ret = i915_active_acquire(&node->active);
/linux-master/sound/soc/sof/amd/
H A Dacp-stream.c134 if (stream->active)
139 stream->active = 1;
145 stream->active = 1;
150 dev_err(sdev->dev, "stream %d active or no inactive stream\n", tag);
162 /* Free an active stream */
165 stream->active = 0;
170 dev_err(sdev->dev, "Cannot find active stream tag %d\n", acp_stream->stream_tag);
182 adata->stream_buf[i].active = 0;
/linux-master/drivers/media/platform/
H A Dvideo-mux.c29 int active; member in struct:video_mux
76 if (vmux->active == local->index)
79 if (vmux->active >= 0) {
84 dev_dbg(sd->dev, "setting %d active\n", local->index);
88 vmux->active = local->index;
90 /* Propagate the active format to the source */
95 vmux->active);
98 if (vmux->active != local->index)
103 vmux->active = -1;
123 if (vmux->active
[all...]
/linux-master/drivers/media/pci/cx23885/
H A Dcx23885-vbi.c167 * This is the risc program of the first buffer to be queued if the active list
197 if (list_empty(&q->active)) {
199 list_add_tail(&buf->queue, &q->active);
201 dprintk(2, "[%p/%d] vbi_queue - first active\n",
206 prev = list_entry(q->active.prev, struct cx23885_buffer,
209 list_add_tail(&buf->queue, &q->active);
212 dprintk(2, "[%p/%d] buffer_queue - append to active\n",
221 struct cx23885_buffer *buf = list_entry(dmaq->active.next,
236 while (!list_empty(&dmaq->active)) {
237 struct cx23885_buffer *buf = list_entry(dmaq->active
[all...]
/linux-master/arch/powerpc/mm/nohash/
H A Dmmu_context.c49 * an LRU usage. That way very active tasks don't always have to pay the TLB
109 /* We have a candidate victim, check if it's active, on SMP
110 * we cannot steal active contexts
112 if (mm->context.active) {
241 /* Mark us active and the previous one not anymore */
242 next->context.active++;
244 WARN_ON(prev->context.active < 1);
245 prev->context.active--;
321 mm->context.active = 0;
337 WARN_ON(mm->context.active !
[all...]
/linux-master/kernel/gcov/
H A Dgcc_4_7.c183 * Determine whether a counter is active. Doesn't change at run-time.
190 /* Determine number of active counters. Based on gcc magic. */
283 unsigned int active; local
306 active = num_counter_active(info);
308 fi_size += sizeof(struct gcov_ctr_info) * active;
320 for (ct_idx = 0; ct_idx < active; ct_idx++) {
349 unsigned int active; local
357 active = num_counter_active(info);
365 for (ct_idx = 0; ct_idx < active; ct_idx++, ci_ptr++)
/linux-master/drivers/ata/
H A Dpata_legacy.c389 u8 active, recover; local
395 active = clamp_val(t.active, 2, 15);
403 iowrite8(recover << 4 | active, ap->ioaddr.device_addr);
423 u8 active, recover; local
429 active = clamp_val(t.active, 2, 15);
437 iowrite8(recover << 4 | active, ap->ioaddr.device_addr);
487 u8 active, recover, setup; local
513 active
562 u8 active, recover, setup; local
681 int active, recovery; local
819 int active, recovery; local
[all...]
H A Dpata_ns87410.c79 at.active = clamp_val(at.active, 2, 16) - 2;
83 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active];
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dselq.c37 init_params = kvzalloc(sizeof(*selq->active), GFP_KERNEL);
53 rcu_assign_pointer(selq->active, init_params);
83 selq_active = rcu_dereference_protected(selq->active,
96 rcu_dereference_protected(selq->active, lockdep_is_held(selq->state_lock));
110 selq_active = rcu_dereference_protected(selq->active,
126 old_params = rcu_replace_pointer(selq->active, selq->standby,
200 selq = rcu_dereference_bh(priv->selq.active);
/linux-master/drivers/media/platform/ti/omap3isp/
H A Disppreview.c639 params = (prev->params.active & OMAP3ISP_PREV_CONTRAST)
661 params = (prev->params.active & OMAP3ISP_PREV_BRIGHTNESS)
674 u32 active = prev->params.active; local
678 prev->params.params[0].busy |= ~active & update;
679 prev->params.params[1].busy |= active & update;
681 /* Mark all active parameters we are going to touch as busy. */
682 update = (prev->params.params[0].update & active)
683 | (prev->params.params[1].update & ~active);
685 prev->params.params[0].busy |= active
695 u32 active = prev->params.active; local
866 u32 active; local
925 preview_setup_hw(struct isp_prev_device *prev, u32 update, u32 active) argument
1062 preview_config_input_size(struct isp_prev_device *prev, u32 active) argument
1385 u32 active; local
1526 u32 active; local
[all...]
/linux-master/drivers/clocksource/
H A Dem_sti.c29 unsigned int active[USER_NR]; member in struct:em_sti_priv
155 used_before = p->active[USER_CLOCKSOURCE] | p->active[USER_CLOCKEVENT];
160 p->active[user] = 1;
172 used_before = p->active[USER_CLOCKSOURCE] | p->active[USER_CLOCKEVENT];
173 p->active[user] = 0;
174 used_after = p->active[USER_CLOCKSOURCE] | p->active[USER_CLOCKEVENT];
/linux-master/arch/sh/kernel/cpu/sh4a/
H A Dubc.c65 unsigned long active = 0; local
70 active |= (1 << i);
72 return active;
/linux-master/tools/testing/selftests/sync/
H A Dsync_stress_consumer.c42 int error, active; local
47 active = sync_fence_count_with_status(fence,
49 } while (active);
/linux-master/drivers/net/wireless/ti/wlcore/
H A Dscan.c86 bool active = false; local
90 * count active interfaces according to interface type.
92 * we don't want to count sta in p2p_find as active interface.
97 active = true;
102 active = true;
109 if (active)
264 cfg->active[0] =
299 cfg->active[1] =
314 cfg->active[2] = 0;
318 wl1271_debug(DEBUG_SCAN, " 2.4GHz: active
[all...]
/linux-master/drivers/scsi/snic/
H A Dsnic_stats.h8 atomic64_t active; /* Active IOs */ member in struct:snic_io_stats
9 atomic64_t max_active; /* Max # active IOs */
91 /* Auxillary function to update active IO counter */
98 nr_active_ios = atomic64_read(&io->active);
109 atomic64_dec(&s_stats->io.active);
/linux-master/drivers/pps/clients/
H A Dpps-ldisc.c16 static void pps_tty_dcd_change(struct tty_struct *tty, bool active) argument
32 pps_event(pps, &ts, active ? PPS_CAPTUREASSERT :
36 active ? "assert" : "clear", jiffies);
/linux-master/arch/powerpc/kernel/ptrace/
H A Dptrace-view.c589 .active = vr_active, .regset_get = vr_get, .set = vr_set
596 .active = vsr_active, .regset_get = vsr_get, .set = vsr_set
603 .active = evr_active, .regset_get = evr_get, .set = evr_set
610 .active = tm_cgpr_active, .regset_get = tm_cgpr_get, .set = tm_cgpr_set
615 .active = tm_cfpr_active, .regset_get = tm_cfpr_get, .set = tm_cfpr_set
620 .active = tm_cvmx_active, .regset_get = tm_cvmx_get, .set = tm_cvmx_set
625 .active = tm_cvsx_active, .regset_get = tm_cvsx_get, .set = tm_cvsx_set
630 .active = tm_spr_active, .regset_get = tm_spr_get, .set = tm_spr_set
635 .active = tm_tar_active, .regset_get = tm_tar_get, .set = tm_tar_set
640 .active
[all...]
/linux-master/drivers/input/misc/
H A Diqs626a.c338 u8 active; member in struct:iqs626_sys_reg
361 u8 active; member in struct:iqs626_channel_desc
369 .active = BIT(0),
380 .active = BIT(1),
388 .active = BIT(2) | BIT(1),
396 .active = BIT(4),
409 .active = BIT(5),
422 .active = BIT(6),
435 .active = BIT(7),
925 sys_reg->redo_ati |= iqs626_channels[ch_id].active;
[all...]
/linux-master/arch/sparc/include/asm/
H A Dtlbflush_64.h15 unsigned long active; member in struct:tlb_batch

Completed in 389 milliseconds

1234567891011>>