Searched refs:inactive (Results 1 - 19 of 19) sorted by relevance

/linux-master/include/linux/
H A Dbpf-cgroup-defs.h71 struct bpf_prog_array *inactive; member in struct:cgroup_bpf
/linux-master/arch/arm/include/debug/
H A Dsa1100.S32 @ if Ser3 is inactive, then try Ser1
37 @ if Ser1 is inactive, then try Ser2
/linux-master/net/tipc/
H A Dsubscr.h60 * @inactive: true if this subscription is inactive
72 bool inactive; member in struct:tipc_subscription
H A Dsubscr.c49 if (sub->inactive)
112 sub->inactive = true;
155 sub->inactive = false;
H A Dtopsrv.c109 bool inactive; member in struct:outqueue_entry
267 if (e->inactive)
331 e->inactive = (event == TIPC_SUBSCR_TIMEOUT);
/linux-master/kernel/bpf/
H A Dbpf_lru_list.c101 /* Move nodes between or within active and inactive list (like
102 * active to inactive, inactive to active or tail of active back to
141 * inactive list.
163 /* Rotate the inactive list. It starts from the next_inactive_rotation
174 struct list_head *inactive = &l->lists[BPF_LRU_LIST_T_INACTIVE]; local
175 struct list_head *cur, *last, *next = inactive;
179 if (list_empty(inactive))
183 if (last == inactive)
188 if (cur == inactive) {
217 struct list_head *inactive = &l->lists[BPF_LRU_LIST_T_INACTIVE]; local
[all...]
H A Dcgroup.c517 err = compute_effective_progs(desc, atype, &desc->bpf.inactive);
527 if (unlikely(desc->bpf.inactive)) {
528 bpf_prog_array_free(desc->bpf.inactive);
529 desc->bpf.inactive = NULL;
534 activate_effective_progs(desc, atype, desc->bpf.inactive);
535 desc->bpf.inactive = NULL;
547 bpf_prog_array_free(desc->bpf.inactive);
548 desc->bpf.inactive = NULL;
885 * cgrp->bpf.inactive table we can recover by
/linux-master/include/net/
H A Dbonding.h170 inactive:1, /* indicates inactive slave */ member in struct:slave
572 slave->inactive = 1;
587 slave->inactive = 0;
600 return slave->inactive;
/linux-master/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_encoder_phys_vid.c123 u32 inactive = local
126 return active + inactive;
132 u32 inactive = local
135 return active + inactive;
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_execlists_submission.c1642 struct i915_request **inactive)
1647 *inactive++ = *port;
1652 *inactive++ = *port;
1663 return inactive;
1817 process_csb(struct intel_engine_cs *engine, struct i915_request **inactive) argument
1846 return inactive;
1878 prev = inactive;
1933 *inactive++ = *old++;
1995 *inactive++ = *execlists->active++;
2046 return inactive;
1641 cancel_port_requests(struct intel_engine_execlists * const execlists, struct i915_request **inactive) argument
2436 struct i915_request **inactive; local
3011 reset_csb(struct intel_engine_cs *engine, struct i915_request **inactive) argument
3108 struct i915_request **inactive; local
[all...]
/linux-master/drivers/spi/
H A Dspi-mt65xx.c290 u32 setup, hold, inactive; local
307 inactive = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000;
340 if (inactive) {
341 inactive = min_t(u32, inactive, 0x100);
344 reg_val |= (((inactive - 1) & 0xff) << SPI_CFG1_CS_IDLE_OFFSET);
H A Dspi-tegra114.c724 struct spi_delay *inactive = &spi->cs_inactive; local
733 inactive->unit != SPI_DELAY_UNIT_SCK) {
753 inactive_cycles = min_t(u8, inactive->value, MAX_INACTIVE_CYCLES);
/linux-master/arch/s390/kernel/
H A Dperf_cpum_cf.c681 * Change the CPUMF state to inactive.
682 * Disable and enable (inactive) the CPU-counter sets according
688 u64 inactive; local
694 inactive = cpuhw->state & ~((1 << CPUMF_LCCTL_ENABLE_SHIFT) - 1);
695 inactive |= cpuhw->dev_state;
696 err = lcctl(inactive);
933 * the inactive or disabled state.
994 * control and set the counter set state to inactive.
H A Dperf_cpum_sf.c1037 struct hws_lsctl_request_block inactive; local
1048 inactive = cpuhw->lsctl;
1049 inactive.cs = 0;
1050 inactive.cd = 0;
1052 err = lsctl(&inactive);
/linux-master/mm/
H A Dvmscan.c157 /* Incremented by the number of inactive pages that were scanned */
524 * of the inactive LRU.
858 * inactive list. Another page table reference will
895 * MADV_FREE anonymous folios are put into inactive file list too.
1120 * inactive list and refilling from the active list. The
1757 unsigned long inactive, isolated; local
1767 inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
1770 inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
1780 inactive >>= 3;
1782 too_many = isolated > inactive;
2197 unsigned long inactive, active; local
[all...]
H A Dcompaction.c820 unsigned long active, inactive, isolated; local
822 inactive = node_page_state(pgdat, NR_INACTIVE_FILE) +
836 inactive >>= 3;
840 too_many = isolated > (inactive + active) / 2;
/linux-master/drivers/net/bonding/
H A Dbond_options.c1464 slave->inactive = 0;
1466 slave->inactive = 1;
/linux-master/drivers/media/v4l2-core/
H A Dv4l2-ctrls-core.c2413 /* invert since the actual flag is called 'inactive' */
2414 bool inactive = !active; local
2420 if (inactive)
2426 if (old != inactive)
2528 pr_cont(" inactive");
/linux-master/drivers/md/
H A Dmd.c4389 * inactive
4403 * When written to inactive array, starts without resync
4410 * When written to inactive array, starts with resync
4423 enum array_state { clear, inactive, suspended, readonly, read_auto, clean, active, enumerator in enum:array_state
4426 "clear", "inactive", "suspended", "readonly", "read-auto", "clean", "active",
4441 enum array_state st = inactive;
4472 st = inactive;
4497 case inactive:
4536 case inactive:
4606 if (st == readonly || st == read_auto || st == inactive ||
[all...]

Completed in 303 milliseconds