Home
last modified time | relevance | path

Searched refs:isolated (Results 1 – 25 of 65) sorted by relevance

123

/linux/include/trace/events/
H A Dhuge_memory.h95 TP_PROTO(struct mm_struct *mm, int isolated, int status),
97 TP_ARGS(mm, isolated, status),
101 __field(int, isolated)
107 __entry->isolated = isolated;
111 TP_printk("mm=%p, isolated=%d, status=%s",
113 __entry->isolated,
/linux/tools/testing/selftests/net/forwarding/
H A Dbridge_port_isolation.sh47 ip link set dev $swp1 type bridge_slave isolated on
49 ip link set dev $swp2 type bridge_slave isolated on
51 ip link set dev $swp3 type bridge_slave isolated off
/linux/mm/
H A Dlist_lru.c200 unsigned long isolated = 0; in __list_lru_walk_one() local
224 isolated++; in __list_lru_walk_one()
254 return isolated; in __list_lru_walk_one()
292 long isolated = 0; in list_lru_walk_node() local
294 isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg, in list_lru_walk_node()
306 isolated += __list_lru_walk_one(lru, nid, index, in list_lru_walk_node()
317 return isolated; in list_lru_walk_node()
H A Dcompaction.c636 int isolated; in isolate_freepages_block() local
683 isolated = __isolate_free_page(page, order); in isolate_freepages_block()
684 if (!isolated) in isolate_freepages_block()
688 nr_scanned += isolated - 1; in isolate_freepages_block()
689 total_isolated += isolated; in isolate_freepages_block()
690 cc->nr_freepages += isolated; in isolate_freepages_block()
694 blockpfn += isolated; in isolate_freepages_block()
698 blockpfn += isolated - 1; in isolate_freepages_block()
699 page += isolated - 1; in isolate_freepages_block()
755 unsigned long isolated, pfn, block_start_pfn, block_end_pfn; in isolate_freepages_range() local
[all …]
H A Dmlock.c125 bool isolated = false; in __munlock_folio() local
130 isolated = true; in __munlock_folio()
145 if (isolated || !folio_test_unevictable(folio)) in __munlock_folio()
152 if (isolated && folio_test_unevictable(folio) && folio_evictable(folio)) { in __munlock_folio()
159 if (isolated) in __munlock_folio()
H A Dpercpu-internal.h72 bool isolated; /* isolated from active chunk
59 bool isolated; /* isolated from active chunk global() member
H A Dmemory-failure.c920 * XXX: It is possible that a page is isolated from LRU cache,
1156 * Clean swap cache pages can be directly isolated. A later page fault will in me_swapcache_dirty()
1510 * but also isolated from buddy freelist, so need to identify the in __get_unpoison_page()
2311 * The check (unnecessarily) ignores LRU pages being isolated and in memory_failure()
2636 bool isolated = false; in mf_isolate_folio()
2639 isolated = isolate_hugetlb(folio, pagelist); in mf_isolate_folio()
2644 isolated = folio_isolate_lru(folio); in mf_isolate_folio()
2646 isolated = isolate_movable_page(&folio->page, in mf_isolate_folio()
2649 if (isolated) { in mf_isolate_folio()
2665 return isolated;
2633 bool isolated = false; mf_isolate_folio() local
[all...]
H A Dpercpu.c559 /* leave isolated chunks in-place */ in pcpu_chunk_relocate()
560 if (chunk->isolated) in pcpu_chunk_relocate()
571 if (!chunk->isolated) { in pcpu_isolate_chunk()
572 chunk->isolated = true; in pcpu_isolate_chunk()
582 if (chunk->isolated) { in pcpu_reintegrate_chunk()
583 chunk->isolated = false; in pcpu_reintegrate_chunk()
601 if (chunk != pcpu_reserved_chunk && !chunk->isolated) in pcpu_update_empty_pages()
2111 * Once a chunk is isolated to the to_depopulate list, the chunk is no
2285 * If the chunk is isolated, it may be in the process of being in free_percpu()
2288 if (!chunk->isolated in free_percpu()
[all...]
H A Dpercpu-vm.c387 * isolated and managed in separate lists at the back of pcpu_slot: sidelined
401 * If it is isolated, it may be on the sidelined list so move it back to in pcpu_should_reclaim_chunk()
406 return ((chunk->isolated && chunk->nr_empty_pop_pages) || in pcpu_should_reclaim_chunk()
H A Dmigrate.c2598 int isolated; in migrate_misplaced_folio() local
2622 isolated = numamigrate_isolate_folio(pgdat, folio); in migrate_misplaced_folio()
2623 if (!isolated) in migrate_misplaced_folio()
2637 isolated = 0; in migrate_misplaced_folio()
2646 return isolated; in migrate_misplaced_folio()
H A Dmemory_hotplug.c1181 * Fixup the number of isolated pageblocks before marking the sections in online_pages()
1785 bool isolated; in do_migrate_range() local
1822 isolated = isolate_lru_page(page); in do_migrate_range()
1824 isolated = isolate_movable_page(page, ISOLATE_UNEVICTABLE); in do_migrate_range()
1825 if (isolated) { in do_migrate_range()
1996 * in a way that pages from isolated pageblock are left on pcplists. in offline_pages()
2001 /* set above range as isolated */ in offline_pages()
2075 * of isolated pageblocks, memory onlining will properly revert this. in offline_pages()
H A Dvmscan.c343 * This misses isolated folios which are not accounted for to save counters.
345 * not expected that isolated folios will be a dominating factor.
438 * that isolated the folio, the page cache and optional filesystem in is_page_cache_freeable()
808 * folio_putback_lru - Put previously isolated folio onto appropriate LRU list.
811 * Add previously isolated @folio to appropriate LRU list.
1318 * except we already have the folio isolated in shrink_folio_list()
1560 * Since lazyfree pages are isolated from file LRU from the beginning, in update_lru_sizes()
1562 * discard so isolated count will be mismatched. in update_lru_sizes()
1563 * Compensate the isolated count for both LRU lists. in update_lru_sizes()
1664 * return with no isolated folio in isolate_lru_folios()
1757 unsigned long inactive, isolated; too_many_isolated() local
4339 int isolated = 0; scan_folios() local
[all...]
/linux/include/linux/
H A Dlist_lru.h244 long isolated = 0; in list_lru_walk() local
248 isolated += list_lru_walk_node(lru, nid, isolate, in list_lru_walk()
253 return isolated; in list_lru_walk()
/linux/tools/testing/selftests/cgroup/
H A Dtest_cpuset_prs.sh434 2) VAL=isolated
511 ISCPUS=$DIR/cpuset.cpus.isolated
579 isolated)
614 ISCPUS=${CGROUP2}/cpuset.cpus.isolated
815 test_partition isolated
821 test_partition isolated
/linux/drivers/base/
H A Dcpu.c280 cpumask_var_t isolated; in print_cpus_isolated() local
282 if (!alloc_cpumask_var(&isolated, GFP_KERNEL)) in print_cpus_isolated()
285 cpumask_andnot(isolated, cpu_possible_mask, in print_cpus_isolated()
287 len = sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(isolated)); in print_cpus_isolated()
289 free_cpumask_var(isolated); in print_cpus_isolated()
293 static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);
/linux/Documentation/hwmon/
H A Dpli1209bc.rst22 The Vicor PLI1209BC is an isolated digital power system supervisor that provides
25 interface over an isolated UART interface. Through the PLI, the host processor
H A Dtps546d24.rst22 The TPS546D24A is a highly integrated, non-isolated DC/DC converter capable
H A Ducd9200.rst31 designed for non-isolated DC/DC power applications. The devices integrate
/linux/Documentation/devicetree/bindings/crypto/
H A Dhisilicon,hip07-sec.txt11 Regions 2-18 have registers for the 16 individual queues which are isolated
/linux/Documentation/driver-api/
H A Dvfio-pci-device-specific-driver-acceptance.rst10 handling to provide isolated device access to userspace. While the
/linux/Documentation/ABI/testing/
H A Dsysfs-driver-uacce36 Description: (R) A sysfs node that read the device isolated state. The value 1
/linux/Documentation/security/keys/
H A Dtrusted-encrypted.rst57 Fixed set of operations running in isolated execution environment.
61 Customizable set of operations running in isolated execution
66 Fixed set of operations running in isolated execution environment.
70 Fixed set of cryptographic operations running in isolated execution
/linux/Documentation/arch/s390/
H A Dpci.rst105 The more the segments are different, the more the functions are isolated.
/linux/drivers/net/can/sja1000/
H A DKconfig86 - ASEM CAN raw - 2 isolated CAN channels (www.asem.it)
/linux/Documentation/arch/arm/nwfpe/
H A Dtodo.rst70 risk of becoming isolated if and when hardware FP emulation comes out

123