Searched refs:isolated (Results 1 - 20 of 20) sorted by relevance

/linux-master/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-master/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-master/include/linux/
H A Dlist_lru.h244 long isolated = 0; local
248 isolated += list_lru_walk_node(lru, nid, isolate,
253 return isolated;
H A Dpage-flags.h174 /* non-lru isolated movable page */
1057 PAGEFLAG(Isolated, isolated, PF_ANY);
/linux-master/mm/
H A Dlist_lru.c200 unsigned long isolated = 0; local
224 isolated++;
254 return isolated;
292 long isolated = 0; local
294 isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg,
306 isolated += __list_lru_walk_one(lru, nid, index,
317 return isolated;
H A Dpercpu-internal.h59 bool isolated; /* isolated from active chunk member in struct:pcpu_chunk
H A Dmlock.c125 bool isolated = false; local
130 isolated = true;
145 if (isolated || !folio_test_unevictable(folio))
152 if (isolated && folio_test_unevictable(folio) && folio_evictable(folio)) {
159 if (isolated)
H A Dcompaction.c504 * If no pages were isolated then mark this pageblock to be skipped in the
629 int isolated; local
676 isolated = __isolate_free_page(page, order);
677 if (!isolated)
681 nr_scanned += isolated - 1;
682 total_isolated += isolated;
683 cc->nr_freepages += isolated;
687 blockpfn += isolated;
691 blockpfn += isolated - 1;
692 page += isolated
748 unsigned long isolated, pfn, block_start_pfn, block_end_pfn; local
820 unsigned long active, inactive, isolated; local
[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
406 return ((chunk->isolated && chunk->nr_empty_pop_pages) ||
H A Dmemory-failure.c918 * XXX: It is possible that a page is isolated from LRU cache,
1153 * Clean swap cache pages can be directly isolated. A later page fault will
1516 * but also isolated from buddy freelist, so need to identify the
2316 * The check (unnecessarily) ignores LRU pages being isolated and
2633 bool isolated = false; local
2636 isolated = isolate_hugetlb(folio, pagelist);
2641 isolated = folio_isolate_lru(folio);
2643 isolated = isolate_movable_page(&folio->page,
2646 if (isolated) {
2662 return isolated;
[all...]
H A Dmigrate.c94 * As movable pages are not isolated from LRU lists, concurrent
98 * In order to avoid having an already isolated movable page
99 * being (wrongly) re-isolated while it is under migration,
140 * Put previously isolated pages back onto the appropriate lists
143 * This function shall be used whenever the isolated pageset has been
159 * We isolated non-lru movable folio so here we can use
1301 * isolated from the unevictable LRU: but this case is the easiest.
2076 * errno - if the page cannot be found/isolated
2138 * or drop the folio ref if it was not isolated.
2562 int isolated; local
[all...]
H A Dpercpu.c559 /* leave isolated chunks in-place */
560 if (chunk->isolated)
571 if (!chunk->isolated) {
572 chunk->isolated = true;
582 if (chunk->isolated) {
583 chunk->isolated = false;
601 if (chunk != pcpu_reserved_chunk && !chunk->isolated)
2137 * Once a chunk is isolated to the to_depopulate list, the chunk is no
2309 * If the chunk is isolated, it may be in the process of being
2312 if (!chunk->isolated
[all...]
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
808 * folio_putback_lru - Put previously isolated folio onto appropriate LRU list.
811 * Add previously isolated @folio to appropriate LRU list.
1300 * except we already have the folio isolated
1542 * Since lazyfree pages are isolated from file LRU from the beginning,
1544 * discard so isolated count will be mismatched.
1545 * Compensate the isolated count for both LRU lists.
1646 * return with no isolated folio
1757 unsigned long inactive, isolated; local
4339 int isolated = 0; local
[all...]
H A Dmemory_hotplug.c1181 * Fixup the number of isolated pageblocks before marking the sections
1785 bool isolated; local
1822 isolated = isolate_lru_page(page);
1824 isolated = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
1825 if (isolated) {
1995 * in a way that pages from isolated pageblock are left on pcplists.
2000 /* set above range as isolated */
2074 * of isolated pageblocks, memory onlining will properly revert this.
H A Dhugetlb.c3045 bool isolated; local
3052 isolated = isolate_hugetlb(old_folio, list);
3053 ret = isolated ? 0 : -EBUSY;
6396 * been isolated for migration.
/linux-master/tools/testing/selftests/cgroup/
H A Dtest_cpuset_prs.sh157 # P<v> = set cpus.partition (0:member, 1:root, 2:isolated)
434 2) VAL=isolated
511 ISCPUS=$DIR/cpuset.cpus.isolated
579 isolated)
585 "isolated invalid"*)
595 # Get isolated (including offline) CPUs by looking at
596 # /sys/kernel/debug/sched/domains and cpuset.cpus.isolated control file,
599 # Note that isolated CPUs from the sched/domains context include offline
600 # CPUs as well as CPUs in non-isolated 1-CPU partition. Those CPUs may
601 # not be included in the cpuset.cpus.isolated contro
[all...]
/linux-master/drivers/base/
H A Dcpu.c280 cpumask_var_t isolated; local
282 if (!alloc_cpumask_var(&isolated, GFP_KERNEL))
285 cpumask_andnot(isolated, cpu_possible_mask,
287 len = sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(isolated));
289 free_cpumask_var(isolated);
293 static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);
/linux-master/net/bridge/
H A Dbr_sysfs_if.c242 BRPORT_ATTR_FLAG(isolated, BR_ISOLATED);
/linux-master/drivers/net/dsa/microchip/
H A Dksz_common.h113 bool isolated; member in struct:ksz_port
H A Dksz_common.c1955 * Except if both ports are isolated.
1958 !(p->isolated && other_p->isolated)) {
1985 * [j] are in the same bridge group and not isolated
1989 !(other_p->isolated && third_p->isolated))
2766 p->isolated = !!(flags.val & BR_ISOLATED);

Completed in 453 milliseconds