/Linux-v6.1/kernel/sched/ |
D | clock.c | 3 * sched_clock() for unstable CPU clocks 73 * We must start with !__sched_clock_stable because the unstable -> stable 74 * transition is accurate, while the stable -> unstable transition is not. 122 * Since we're still unstable and the tick is already running, we have in __set_sched_clock_stable() 128 * Attempt to make the (initial) unstable->stable transition continuous. in __set_sched_clock_stable() 150 * "tsc=unstable". 168 …printk(KERN_WARNING "TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unsta… in __sched_clock_work() 169 printk(KERN_INFO "sched_clock: Marking unstable (%lld, %lld)<-(%lld, %lld)\n", in __sched_clock_work() 222 * notably: acpi_processor and intel_idle, which can mark the TSC as unstable. 414 * TSC to be unstable, any computation will be computing crap. in sched_clock_tick_stable()
|
/Linux-v6.1/rust/alloc/collections/ |
D | mod.rs | 71 #[unstable( 83 #[unstable( 99 #[unstable( 111 #[unstable( 123 #[unstable(feature = "try_reserve_kind", reason = "new API", issue = "48043")]
|
/Linux-v6.1/rust/alloc/ |
D | boxed.rs | 169 #[unstable(feature = "thin_box", issue = "92791")] 186 #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global, 226 #[unstable(feature = "new_uninit", issue = "63291")] 253 #[unstable(feature = "new_uninit", issue = "63291")] 282 #[unstable(feature = "allocator_api", issue = "32838")] 308 #[unstable(feature = "allocator_api", issue = "32838")] 309 // #[unstable(feature = "new_uninit", issue = "63291")] 334 #[unstable(feature = "allocator_api", issue = "32838")] 335 // #[unstable(feature = "new_uninit", issue = "63291")] 357 #[unstable(feature = "allocator_api", issue = "32838")] [all …]
|
D | slice.rs | 105 #[unstable(feature = "slice_range", issue = "76393")] 107 #[unstable(feature = "array_chunks", issue = "74985")] 109 #[unstable(feature = "array_chunks", issue = "74985")] 111 #[unstable(feature = "array_windows", issue = "75027")] 127 #[unstable(feature = "slice_group_by", issue = "80552")] 248 /// When applicable, unstable sorting is preferred because it is generally faster than stable 301 /// When applicable, unstable sorting is preferred because it is generally faster than stable 346 /// When applicable, unstable sorting is preferred because it is generally faster than stable 502 #[unstable(feature = "allocator_api", issue = "32838")] 749 #[unstable(feature = "slice_concat_trait", issue = "27747")] [all …]
|
D | alloc.rs | 49 /// Note: while this type is unstable, the functionality it provides can be 51 #[unstable(feature = "allocator_api", issue = "32838")] 228 #[unstable(feature = "allocator_api", issue = "32838")] 395 #[unstable(feature = "alloc_internals", issue = "none")]
|
/Linux-v6.1/rust/alloc/vec/ |
D | drain_filter.rs | 22 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")] 28 #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global, 54 #[unstable(feature = "allocator_api", issue = "32838")] 61 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")] 99 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")]
|
D | into_iter.rs | 34 #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global, 89 #[unstable(feature = "allocator_api", issue = "32838")] 280 #[unstable(feature = "trusted_len", issue = "37572")] 284 #[unstable(issue = "none", feature = "std_internals")] 290 #[unstable(issue = "none", feature = "std_internals")] 294 #[unstable(issue = "none", feature = "std_internals")] 344 #[unstable(issue = "none", feature = "inplace_iteration")] 348 #[unstable(issue = "none", feature = "inplace_iteration")]
|
D | drain.rs | 27 #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + 'a = Global, 64 #[unstable(feature = "allocator_api", issue = "32838")] 182 #[unstable(feature = "trusted_len", issue = "37572")]
|
/Linux-v6.1/mm/ |
D | ksm.c | 66 * Therefore KSM uses two data structures - the stable and the unstable tree. 89 * unstable tree: this tree holds pointers to pages which have been found to 90 * be "unchanged for a period of time". The unstable tree sorts these pages 92 * upon the unstable tree to work correctly - the unstable tree is liable to 93 * be corrupted as its contents are modified, and so it is called unstable. 97 * 1) The unstable tree is flushed every time KSM completes scanning all 99 * 2) KSM will only insert into the unstable tree, pages whose hash value 101 * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the 107 * take 10 attempts to find a page in the unstable tree, once it is found, 109 * compare it against the stable tree, and then against the unstable tree.) [all …]
|
/Linux-v6.1/include/linux/ |
D | smp.h | 229 * raw_processor_id() - get the current (unstable) CPU id 231 * For then you know what you are doing and need an unstable 252 * Allow the architecture to differentiate between a stable and unstable read. 253 * For example, x86 uses an IRQ-safe asm-volatile read for the unstable but a
|
/Linux-v6.1/net/netfilter/ |
D | nf_nat_bpf.c | 2 /* Unstable NAT Helpers for XDP and TC-BPF hook 6 * are exposed through to BPF programs is explicitly unstable.
|
/Linux-v6.1/Documentation/userspace-api/media/v4l/ |
D | vidioc-query-dv-timings.rst | 58 ENOLINK is returned. If a signal was detected, but it was unstable and 82 The signal was unstable and the hardware could not lock on to it.
|
/Linux-v6.1/Documentation/scheduler/ |
D | sched-rt-group.rst | 21 Fiddling with these settings can result in an unstable system, the knobs are 26 * very small values in sched_rt_period_us can result in an unstable 30 * very small values in sched_rt_runtime_us can result in an unstable
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | imx6q-cm-fx6.dts | 172 * the module behaves unstable at this frequency. Hence, remove the 194 * the module behaves unstable at this frequency. Hence, remove the 216 * the module behaves unstable at this frequency. Hence, remove the 238 * the module behaves unstable at this frequency. Hence, remove the
|
/Linux-v6.1/drivers/gpu/drm/i915/ |
D | Kconfig | 158 menu "drm/i915 Unstable Evolution" 161 source "drivers/gpu/drm/i915/Kconfig.unstable"
|
D | Kconfig.unstable | 3 bool "Enable unstable API for early prototype development"
|
/Linux-v6.1/drivers/mtd/ |
D | sm_ftl.c | 337 if (ftl->unstable) in sm_write_sector() 382 if (ftl->unstable) in sm_write_block() 444 if (ftl->unstable) in sm_mark_block_bad() 474 if (ftl->unstable) in sm_erase_block() 742 if (!ftl->unstable) { in sm_recheck_media() 743 sm_printk("media unstable, not allowing writes"); in sm_recheck_media() 744 ftl->unstable = 1; in sm_recheck_media() 942 if (ftl->unstable) in sm_cache_flush() 962 if (ftl->unstable) in sm_cache_flush()
|
/Linux-v6.1/ |
D | .rustfmt.toml | 4 # Unstable options that help catching some mistakes in formatting and that we may want to enable
|
/Linux-v6.1/kernel/time/ |
D | clocksource.c | 161 * watchdog_list will find the unstable clock again. in clocksource_watchdog_work() 189 * clocksource_mark_unstable - mark clocksource unstable via watchdog 190 * @cs: clocksource to be marked unstable 192 * This function is called by the x86 TSC code to mark clocksources as unstable; 260 …pr_warn("timekeeping watchdog on CPU%d: %s read-back delay of %lldns, attempt %d, marking unstable… in cs_watchdog_read() 404 /* Clocksource already marked unstable? */ in clocksource_watchdog() 446 …pr_warn("timekeeping watchdog on CPU%d: Marking clocksource '%s' as unstable because the skew is t… in clocksource_watchdog() 976 …pr_warn("Override clocksource %s is unstable and not HRT compatible - cannot switch while in HRT/N… in __clocksource_select() 1031 * Run the watchdog first to eliminate unstable clock sources in clocksource_done_booting()
|
/Linux-v6.1/include/xen/interface/io/ |
D | 9pfs.h | 15 * https://xenbits.xen.org/docs/unstable/misc/9pfs.html
|
/Linux-v6.1/Documentation/maintainer/ |
D | rebasing-and-merging.rst | 57 expose an unstable branch for others to test with or for automated 58 testing services. If you do expose a branch that may be unstable in 72 as the new base. The kernel is often in a relatively unstable state
|
/Linux-v6.1/Documentation/devicetree/bindings/clock/ti/ |
D | clockdomain.txt | 3 Binding status: Unstable - ABI compatibility may be broken in the future
|
D | fapll.txt | 3 Binding status: Unstable - ABI compatibility may be broken in the future
|
/Linux-v6.1/arch/x86/kernel/ |
D | tsc.c | 42 * TSC can be unstable due to cpufreq or due to unsynced TSCs 230 * unstable. We do this because unlike Time Of Day, in native_sched_clock() 302 if (!strcmp(str, "unstable")) in tsc_setup() 973 * as unstable and give up in those cases. 1107 pr_info("Marking TSC unstable due to clocksource watchdog\n"); in tsc_cs_mark_unstable() 1175 pr_info("Marking TSC unstable due to %s\n", reason); in mark_tsc_unstable() 1245 * Exceptions must mark TSC as unstable: in unsynchronized_tsc() 1339 /* Don't bother refining TSC on unstable systems */ in tsc_refine_calibration_work()
|
/Linux-v6.1/Documentation/devicetree/bindings/clock/ |
D | keystone-gate.txt | 1 Status: Unstable - ABI compatibility may be broken in the future
|