Home
last modified time | relevance | path

Searched +full:low +full:- +full:cost (Results 1 – 25 of 229) sorted by relevance

12345678910

/linux-6.12.1/drivers/iio/health/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
19 heart rate monitor and low-cost pulse oximeter.
32 heart rate monitor and low-cost pulse oximeter.
/linux-6.12.1/net/netfilter/
Dxt_limit.c1 // SPDX-License-Identifier: GPL-2.0-only
2 /* (C) 1999 Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr>
3 * (C) 1999 Hervé Eychenne <eychenne@info.enserb.u-bordeaux.fr>
4 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
23 MODULE_DESCRIPTION("Xtables: rate-limit match");
31 /* Rusty: This is my (non-mathematically-inclined) understanding of
34 `credit_cap'. The `peak rate' becomes the cost of passing the
35 test, `cost'.
39 discarded. Every time the match passes, you lose `cost' credits;
45 credits per jiffy). We want to allow a rate as low as 1 per day
[all …]
/linux-6.12.1/kernel/
DKconfig.preempt1 # SPDX-License-Identifier: GPL-2.0-only
41 at the cost of slightly lower throughput.
44 low priority process to voluntarily preempt itself even if it
52 bool "Preemptible Kernel (Low-Latency Desktop)"
59 permitting a low priority process to be preempted involuntarily
63 system is under load, at the cost of slightly lower throughput
71 bool "Fully Preemptible Kernel (Real-Time)"
75 This option turns the kernel into a real-time kernel by replacing
77 preemptible priority-inheritance aware variants, enforcing
79 non-preemptible sections. This makes the kernel, except for very
[all …]
/linux-6.12.1/lib/
DKconfig.kfence1 # SPDX-License-Identifier: GPL-2.0-only
7 bool "KFENCE: low-overhead sampling-based memory safety error detector"
12 KFENCE is a low-overhead sampling-based detector of heap out-of-bounds
13 access, use-after-free, and invalid-free errors. KFENCE is designed
14 to have negligible cost to permit enabling it in production
17 See <file:Documentation/dev-tools/kfence.rst> for more details.
24 enable KASAN due to its cost, consider using KFENCE.
37 setting "kfence.sample_interval" to a non-zero value enables KFENCE.
52 CPU wake-ups if the system is idle, at the risk of a less predictable
55 Warning: The KUnit test suite fails with this option enabled - due to
[all …]
/linux-6.12.1/block/
Dblk-iocost.c1 /* SPDX-License-Identifier: GPL-2.0
3 * IO cost model based controller.
10 * observable cost metric. This is distinguished from CPU and memory where
17 * useless for the purpose of IO capacity distribution. While on-device
19 * non-queued rotational devices, this is no longer viable with modern
22 * While there is no cost metric we can trivially observe, it isn't a
23 * complete mystery. For example, on a rotational device, seek cost
27 * implement a reasonable work-conserving proportional IO resource
30 * 1. IO Cost Model
32 * IO cost model estimates the cost of an IO given its basic parameters and
[all …]
/linux-6.12.1/net/bluetooth/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
20 Bluetooth is low-cost, low-power, short-range wireless technology.
21 It was designed as a replacement for cables and other short-range
31 SMP (Security Manager Protocol) on LE (Low Energy) links
42 To use Linux Bluetooth subsystem, you will need several user-space
66 bool "Bluetooth Low Energy (LE) features"
70 Bluetooth Low Energy includes support low-energy physical
78 Bluetooth Low Energy L2CAP Enhanced Credit Flow Control available with
88 IPv6 compression over Bluetooth Low Energy.
139 Bluetooth Low Energy Secure Connections feature.
/linux-6.12.1/Documentation/block/
Ddeadline-iosched.rst10 -----------------------
11 Refer to Documentation/block/switching-sched.rst for information on
12 selecting an io scheduler on a per-device basis.
14 ------------------------------------------------------------------------------
17 -----------------------
27 -----------------------
33 ------------------------------------
40 This parameter tunes the balance between per-request latency and aggregate
41 throughput. When low latency is the primary concern, smaller is better (where
42 a value of 1 yields first-come first-served behaviour). Increasing fifo_batch
[all …]
Dbfq-iosched.rst5 BFQ is a proportional-share I/O scheduler, with some extra
6 low-latency capabilities. In addition to cgroups support (blkio or io
9 - BFQ guarantees a high system and application responsiveness, and a
10 low latency for time-sensitive applications, such as audio or video
12 - BFQ distributes bandwidth, not just time, among processes or
19 goal, for a given device, is to achieve the maximum-possible
20 throughput at all times, then do switch off all low-latency heuristics
25 As every I/O scheduler, BFQ adds some overhead to per-I/O-request
27 single-lock-protected, per-request processing time of BFQ---i.e., the
29 completion hooks---is, e.g., 1.9 us on an Intel Core i7-2760QM@2.40GHz
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/iio/humidity/
Ddht11.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Harald Geyer <harald@ccbib.org>
13 A simple and low cost module providing a non standard single GPIO based
30 - compatible
31 - gpios
36 - |
37 humidity-sensor {
/linux-6.12.1/Documentation/userspace-api/
Dunshare.rst10 ----------
14 --------
17 3) Cost
21 7) Low Level Design
26 -----------
37 outside the confinement of all-or-nothing shared resources of legacy
45 Al Viro in the August of 2000, on the Linux-Kernel mailing list, as part
53 -----------
59 even non-threaded applications if they have a need to disassociate
60 from default shared namespace. The following lists two use-cases
[all …]
/linux-6.12.1/lib/zstd/compress/
Dzstd_compress_sequences.c5 * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
11 /*-*************************************
17 * -log2(x / 256) lookup table for x in [0, 256).
19 * Else: Return floor(-log2(x / 256) * 256)
54 * Returns true if we should use ncount=-1 else we should
55 * use ncount=1 for low probability symbols instead.
67 * Returns the cost in bytes of encoding the normalized count header.
81 * Returns the cost in bits of encoding the distribution described by count
86 unsigned cost = 0; in ZSTD_entropyCost() local
[all …]
/linux-6.12.1/Documentation/i2c/busses/
Di2c-diolan-u2c.rst2 Kernel driver i2c-diolan-u2c
6 * Diolan U2C-12 I2C-USB adapter
11 Author: Guenter Roeck <linux@roeck-us.net>
14 -----------
16 This is the driver for the Diolan U2C-12 USB-I2C adapter.
18 The Diolan U2C-12 I2C-USB Adapter provides a low cost solution to connect
22 This driver only supports the I2C interface of U2C-12. The driver does not use
27 -----------------
/linux-6.12.1/arch/arm/boot/dts/nxp/imx/
Dimx6ull-phytec-segin-lc-rdk-nand.dts1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
7 /dts-v1/;
9 #include "imx6ull-phytec-phycore-som.dtsi"
10 #include "imx6ull-phytec-segin.dtsi"
11 #include "imx6ull-phytec-segin-peb-eval-01.dtsi"
12 #include "imx6ull-phytec-segin-peb-wlbt-05.dtsi"
15 model = "PHYTEC phyBOARD-Segin i.MX6 ULL Low Cost with NAND";
16 compatible = "phytec,imx6ull-pbacd10-nand", "phytec,imx6ull-pbacd10",
17 "phytec,imx6ull-pcl063", "fsl,imx6ull";
/linux-6.12.1/drivers/net/can/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
10 to 8Mbit/s for the more recent CAN with Flexible Data-Rate
11 (CAN-FD). The CAN bus was originally mainly for automotive, but is now
16 This section contains all the CAN(-FD) device drivers including the
21 can-dev.
62 can-dev module.
70 bool "CAN bit-timing calculation"
73 If enabled, CAN bit-timing parameters will be calculated for the
74 bit-rate specified via Netlink argument "bitrate" when the device
76 with standard bit-rates but may fail for exotic bit-rates or CAN
[all …]
/linux-6.12.1/Documentation/power/
Denergy-model.rst1 .. SPDX-License-Identifier: GPL-2.0
8 -----------
12 subsystems willing to use that information to make energy-aware decisions.
18 each and every client subsystem to re-implement support for each and every
20 abstraction layer which standardizes the format of power cost tables in the
23 The power values might be expressed in micro-Watts or in an 'abstract scale'.
26 can be found in the Energy-Aware Scheduler documentation
27 Documentation/scheduler/sched-energy.rst. For some subsystems like thermal or
30 thus the real micro-Watts might be needed. An example of these requirements can
32 Documentation/driver-api/thermal/power_allocator.rst.
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/net/
Ddavicom,dm9051.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Joseph CHANG <josright123@gmail.com>
13 The DM9051 is a fully integrated and cost-effective low pin count single
17 - $ref: ethernet-controller.yaml#
26 spi-max-frequency:
32 local-mac-address: true
34 mac-address: true
37 - compatible
[all …]
/linux-6.12.1/include/linux/
Dprocessor.h1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Misc low level processor primitives */
9 * spin_begin is used before beginning a busy-wait loop, and must be paired
21 * less than the cost of a context switch (and associated overhead).
23 * Detection of resource owner and decision to spin or sleep or guest-yield
/linux-6.12.1/Documentation/devicetree/bindings/media/i2c/
Dovti,ov02a10.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Dongchun Zhu <dongchun.zhu@mediatek.com>
13 description: |-
14 The Omnivision OV02A10 is a low-cost, high performance, 1/5-inch, 2 megapixel
17 @ 1600x1200 (UXGA) resolution transferred over a 1-lane MIPI interface. The
18 sensor output is available via CSI-2 serial data output.
21 - $ref: /schemas/media/video-interface-devices.yaml#
33 clock-names:
[all …]
/linux-6.12.1/Documentation/admin-guide/
Dcgroup-v2.rst1 .. _cgroup-v2:
11 conventions of cgroup v2. It describes all userland-visible aspects
14 v1 is available under :ref:`Documentation/admin-guide/cgroup-v1/index.rst <cgroup-v1>`.
19 1-1. Terminology
20 1-2. What is cgroup?
22 2-1. Mounting
23 2-2. Organizing Processes and Threads
24 2-2-1. Processes
25 2-2-2. Threads
26 2-3. [Un]populated Notification
[all …]
/linux-6.12.1/Documentation/mm/
Dhighmem.rst30 +--------+ 0xffffffff
32 +--------+ 0xc0000000
36 +--------+ 0x00000000
39 time, but because we need virtual address space for other things - including
40 temporary maps to access the rest of the physical memory - the actual direct
54 * kmap_local_page(), kmap_local_folio() - These functions are used to create
64 These mappings are thread-local and CPU-local, meaning that the mapping
68 CPU-hotplug until the mapping is disposed.
81 On CONFIG_HIGHMEM=n kernels and for low memory pages they return the
125 Each call of kmap_atomic() in the kernel creates a non-preemptible section
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/x86/tigerlake/
Dtgl-metrics.json4 "MetricExpr": "cstate_pkg@c10\\-residency@ / TSC",
11 "MetricExpr": "cstate_pkg@c2\\-residency@ / TSC",
18 "MetricExpr": "cstate_pkg@c3\\-residency@ / TSC",
25 "MetricExpr": "cstate_core@c6\\-residency@ / TSC",
32 "MetricExpr": "cstate_pkg@c6\\-residency@ / TSC",
39 "MetricExpr": "cstate_core@c7\\-residency@ / TSC",
46 "MetricExpr": "cstate_pkg@c7\\-residency@ / TSC",
53 "MetricExpr": "cstate_pkg@c8\\-residency@ / TSC",
60 "MetricExpr": "cstate_pkg@c9\\-residency@ / TSC",
73 "MetricExpr": "((msr@aperf@ - cycles) / msr@aperf@ if msr@smi@ > 0 else 0)",
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/regulator/
Drenesas,raa215300.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Biju Das <biju.das.jz@bp.renesas.com>
13 The RAA215300 is a high-performance, low-cost 9-channel PMIC designed for
14 32-bit and 64-bit MCU and MPU applications. It supports DDR3, DDR3L, DDR4,
16 built-in Real-Time Clock (RTC), 32kHz crystal oscillator, and coin cell
18 ideal for System-On-Module (SOM) applications. A spread spectrum feature
19 provides an ease-of-use solution for noise-sensitive audio or RF applications.
25-power-management/multi-channel-power-management-ics-pmics/ssdsoc-power-management-ics-pmic-and-pm…
[all …]
/linux-6.12.1/kernel/power/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
9 suspend-to-RAM state (e.g. the ACPI S3 state).
28 Some systems prefer not to pay this cost on every invocation
30 user-space before invoking suspend. There's a run-time switch
32 This setting changes the default for the run-tim switch. Say Y
60 for suspend states like suspend-to-RAM (STR) often don't work very
72 <file:Documentation/power/swsusp-and-swap-files.rst>).
122 The default resume partition is the partition that the suspend-
123 to-disk implementation will look for a suspended disk image.
157 non-zero numbered CPU, it may define ARCH_SUSPEND_NONZERO_CPU. This
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/x86/rocketlake/
Drkl-metrics.json4 "MetricExpr": "cstate_pkg@c10\\-residency@ / TSC",
11 "MetricExpr": "cstate_pkg@c2\\-residency@ / TSC",
18 "MetricExpr": "cstate_pkg@c3\\-residency@ / TSC",
25 "MetricExpr": "cstate_core@c6\\-residency@ / TSC",
32 "MetricExpr": "cstate_pkg@c6\\-residency@ / TSC",
39 "MetricExpr": "cstate_core@c7\\-residency@ / TSC",
46 "MetricExpr": "cstate_pkg@c7\\-residency@ / TSC",
53 "MetricExpr": "cstate_pkg@c8\\-residency@ / TSC",
60 "MetricExpr": "cstate_pkg@c9\\-residency@ / TSC",
73 "MetricExpr": "((msr@aperf@ - cycles) / msr@aperf@ if msr@smi@ > 0 else 0)",
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/x86/icelake/
Dicl-metrics.json4 "MetricExpr": "cstate_pkg@c10\\-residency@ / TSC",
11 "MetricExpr": "cstate_pkg@c2\\-residency@ / TSC",
18 "MetricExpr": "cstate_pkg@c3\\-residency@ / TSC",
25 "MetricExpr": "cstate_core@c6\\-residency@ / TSC",
32 "MetricExpr": "cstate_pkg@c6\\-residency@ / TSC",
39 "MetricExpr": "cstate_core@c7\\-residency@ / TSC",
46 "MetricExpr": "cstate_pkg@c7\\-residency@ / TSC",
53 "MetricExpr": "cstate_pkg@c8\\-residency@ / TSC",
60 "MetricExpr": "cstate_pkg@c9\\-residency@ / TSC",
73 "MetricExpr": "((msr@aperf@ - cycles) / msr@aperf@ if msr@smi@ > 0 else 0)",
[all …]

12345678910