Home
last modified time | relevance | path

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

1234

/OK3568_Linux_fs/kernel/include/trace/events/
H A Dhuge_memory.h90 TP_PROTO(struct mm_struct *mm, int isolated, int status),
92 TP_ARGS(mm, isolated, status),
96 __field(int, isolated)
102 __entry->isolated = isolated;
108 __entry->isolated,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dtraversal_switch_detector.hpp84 isolation_type isolated; member
91 , isolated(isolation_unknown) in region_properties()
117 if (properties.isolated != isolation_unknown) in get_isolation()
119 return properties.isolated; in get_isolation()
190 if (prop.isolated == isolation_unknown) in get_isolation()
193 prop.isolated = iso; in get_isolation()
199 if (prop.isolated == isolation_no) in get_isolation()
214 if (properties.isolated == isolation_unknown) in get_isolated_regions()
217 properties.isolated = get_isolation(properties, properties.region_id, visited); in get_isolated_regions()
235 op.enriched.isolated = prop.isolated == isolation_yes; in assign_isolation()
H A Daggregate_operations.hpp32 bool isolated; member
47 , isolated(false) in ring_with_direction()
121 if (! rwd.isolated) in is_isolated()
239 rwd.isolated = op.enriched.isolated; in aggregate_operations()
H A Denrichment_info.hpp43 , isolated(false) in enrichment_info()
70 bool isolated; member
/OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/common/
H A Dmali_osk_bitops.h49 u32 isolated; in _mali_internal_find_first_zero_bit() local
61 isolated = negated & inverted ; /* xxx...x1000...0 & zzz...z1000...0, zs are ~xs */ in _mali_internal_find_first_zero_bit()
65 leading_zeros = _mali_osk_clz(isolated); in _mali_internal_find_first_zero_bit()
/OK3568_Linux_fs/kernel/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
/OK3568_Linux_fs/kernel/include/linux/
H A Dlist_lru.h211 long isolated = 0; in list_lru_walk() local
215 isolated += list_lru_walk_node(lru, nid, isolate, in list_lru_walk()
220 return isolated; in list_lru_walk()
/OK3568_Linux_fs/kernel/mm/
H A Dlist_lru.c207 unsigned long isolated = 0; in __list_lru_walk_one() local
228 isolated++; in __list_lru_walk_one()
254 return isolated; in __list_lru_walk_one()
292 long isolated = 0; in list_lru_walk_node() local
295 isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg, in list_lru_walk_node()
302 isolated += __list_lru_walk_one(nlru, memcg_idx, in list_lru_walk_node()
311 return isolated; in list_lru_walk_node()
H A Dcompaction.c575 int isolated; in isolate_freepages_block() local
629 isolated = __isolate_free_page(page, order); in isolate_freepages_block()
630 if (!isolated) in isolate_freepages_block()
634 total_isolated += isolated; in isolate_freepages_block()
635 cc->nr_freepages += isolated; in isolate_freepages_block()
639 blockpfn += isolated; in isolate_freepages_block()
643 blockpfn += isolated - 1; in isolate_freepages_block()
644 cursor += isolated - 1; in isolate_freepages_block()
703 unsigned long isolated, pfn, block_start_pfn, block_end_pfn; in isolate_freepages_range() local
712 for (; pfn < end_pfn; pfn += isolated, in isolate_freepages_range()
[all …]
H A Dmemory-failure.c1762 bool isolated = false; in isolate_page() local
1766 isolated = isolate_huge_page(page, pagelist); in isolate_page()
1769 isolated = !isolate_lru_page(page); in isolate_page()
1771 isolated = !isolate_movable_page(page, ISOLATE_UNEVICTABLE); in isolate_page()
1773 if (isolated) in isolate_page()
1777 if (isolated && lru) in isolate_page()
1789 return isolated; in isolate_page()
H A Dmigrate.c2066 int isolated; in migrate_misplaced_page() local
2085 isolated = numamigrate_isolate_page(pgdat, page); in migrate_misplaced_page()
2086 if (!isolated) in migrate_misplaced_page()
2100 isolated = 0; in migrate_misplaced_page()
2104 return isolated; in migrate_misplaced_page()
2125 int isolated = 0; in migrate_misplaced_transhuge_page() local
2137 isolated = numamigrate_isolate_page(pgdat, page); in migrate_misplaced_transhuge_page()
2138 if (!isolated) { in migrate_misplaced_transhuge_page()
2227 return isolated; in migrate_misplaced_transhuge_page()
H A Dzsmalloc.c283 unsigned int isolated:ISOLATED_BITS; member
462 return zspage->isolated; in is_zspage_isolated()
1503 bool isolated; in zs_free() local
1526 isolated = is_zspage_isolated(zspage); in zs_free()
1529 if (likely(!isolated)) in zs_free()
1842 zspage->isolated++; in inc_zspage_isolation()
1847 zspage->isolated--; in dec_zspage_isolation()
H A Dkhugepaged.c1070 int isolated = 0, result = 0; in collapse_huge_page() local
1163 isolated = __collapse_huge_page_isolate(vma, address, pte, in collapse_huge_page()
1167 if (unlikely(!isolated)) { in collapse_huge_page()
1225 trace_mm_collapse_huge_page(mm, isolated, result); in collapse_huge_page()
/OK3568_Linux_fs/kernel/drivers/base/
H A Dcpu.c272 cpumask_var_t isolated; in print_cpus_isolated() local
274 if (!alloc_cpumask_var(&isolated, GFP_KERNEL)) in print_cpus_isolated()
277 cpumask_andnot(isolated, cpu_possible_mask, in print_cpus_isolated()
279 len = sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(isolated)); in print_cpus_isolated()
281 free_cpumask_var(isolated); in print_cpus_isolated()
285 static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);
/OK3568_Linux_fs/kernel/Documentation/vm/
H A Dpage_migration.rst181 Once page is successfully isolated, VM uses page.lru fields so driver
187 After isolation, VM calls migratepage() of driver with the isolated page.
203 If migration fails on the isolated page, VM should return the isolated page
204 to the driver so VM calls the driver's putback_page() with the isolated page.
205 In this function, the driver should put the isolated page back into its own data
236 page is LRU or non-LRU movable once the page has been isolated because LRU
251 To prevent concurrent isolation among several CPUs, VM marks isolated page
255 driver sees a PG_isolated page, it means the page has been isolated by the
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-pytest-forked_1.4.0.bb1 SUMMARY = "run tests in isolated forked subprocesses"
/OK3568_Linux_fs/buildroot/docs/manual/
H A Dgetting.txt18 If you want to setup an isolated buildroot environment on Linux or Mac
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/crypto/
H A Dhisilicon,hip07-sec.txt11 Regions 2-18 have registers for the 16 individual queues which are isolated
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dwaf.bbclass37 # sufficiently isolated by setting the output directory, this ensures that
/OK3568_Linux_fs/kernel/Documentation/s390/
H A Dpci.rst97 The more the segments are different, the more the functions are isolated.
/OK3568_Linux_fs/kernel/Documentation/ABI/obsolete/
H A Dsysfs-class-net-mesh78 is used to classify clients as "isolated" by the
/OK3568_Linux_fs/yocto/poky/documentation/overview-manual/
H A Ddevelopment-environment.rst542 specific features or changes. Using isolated branches facilitates
571 that you would use for isolated work. You would make your changes in
572 that isolated branch, stage and commit them locally, switch to the
574 changes from your isolated branch into the currently checked out
576 done with working in that isolated branch, you can safely delete the
577 isolated branch.
/OK3568_Linux_fs/kernel/drivers/net/can/sja1000/
H A DKconfig86 - ASEM CAN raw - 2 isolated CAN channels (www.asem.it)
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Ducd9200.rst31 designed for non-isolated DC/DC power applications. The devices integrate
/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dtodo.rst70 risk of becoming isolated if and when hardware FP emulation comes out

1234