上一页 1 2 3 4 5 6 7 8 ··· 40 下一页
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-rt-group.html 实时组调度 0. 警告 调整这些设置可能导致系统不稳定,这些旋钮只有 root 用户才能操作,并且假设 root 用户知道自己在做什么。 最值得注意的是: 在 sch 阅读全文
posted @ 2023-12-11 21:50 摩斯电码 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-nice-design.html 调度器 Nice 设计 本文档解释了在新的 Linux 调度器中重新设计和简化 nice-levels 实现的思路。 在 Linux 下,nice levels 阅读全文
posted @ 2023-12-11 21:46 摩斯电码 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-util-clamp.html 利用率夹紧 1. 简介 利用率夹紧,也称为util clamp或uclamp,是一种调度器功能,允许用户空间帮助管理任务的性能需求。它是在v5.3版本中引入的。C 阅读全文
posted @ 2023-12-11 21:40 摩斯电码 阅读(573) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/schedutil.html Schedutil 注意 所有这些都假设频率和工作能力之间存在线性关系,我们知道这是有缺陷的,但这是最好的可行近似。 PELT(Per Entity Load Tracking 阅读全文
posted @ 2023-12-11 21:28 摩斯电码 阅读(60) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-energy.html 能量感知调度 1. 简介 能量感知调度(Energy Aware Scheduling,EAS)赋予调度器预测其决策对 CPU 能量消耗的影响的能力。EAS 依赖于 CP 阅读全文
posted @ 2023-12-11 21:22 摩斯电码 阅读(122) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-capacity.html 容量感知调度 1. CPU容量 1.1 简介 传统的同质 SMP 平台由纯粹相同的 CPU 组成。另一方面,异构平台由具有不同性能特征的 CPU 组成 - 在这样的平 阅读全文
posted @ 2023-12-11 21:05 摩斯电码 阅读(41) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/completion.html Completions - "wait for completion" barrier APIs 介绍: 如果您有一个或多个线程必须等待某些内核活动达到某个点或特定状态,完成 阅读全文
posted @ 2023-12-11 20:53 摩斯电码 阅读(47) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-domains.html 调度器域 每个 CPU 都有一个“基本”调度域(struct sched_domain)。域层次结构是通过这些基本域通过 ->parent 指针构建的。->parent 阅读全文
posted @ 2023-12-11 20:50 摩斯电码 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-design-CFS.html CFS调度器 1. 概述 CFS代表“完全公平调度器”,是由Ingo Molnar实现并合并到Linux 2.6.23中的新“桌面”进程调度器。它是替代先前普通调 阅读全文
posted @ 2023-12-11 20:49 摩斯电码 阅读(43) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-deadline.html 0. 警告 调整这些设置可能导致系统行为不可预测甚至不稳定。对于 -rt(组)调度,假定超级用户知道自己在做什么。 1. 概述 sched_dl 调度类中包含的 SC 阅读全文
posted @ 2023-12-11 20:36 摩斯电码 阅读(142) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-bwc.html CFS带宽控制 注意 本文仅讨论SCHED_NORMAL的CPU带宽控制。SCHED_RT情况在实时组调度中有所涉及。 CFS带宽控制是CONFIG_FAIR_GROUP_SC 阅读全文
posted @ 2023-12-11 20:11 摩斯电码 阅读(48) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/sched-arch.html 《CPU调度器实现提示:针对特定体系结构代码》 Nick Piggin,2005 上下文切换 运行队列锁定 默认情况下,调用switch_to体系结构函数时会锁定运行队列。除 阅读全文
posted @ 2023-12-11 20:04 摩斯电码 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/scheduler/index.html#scheduler Completions - "wait for completion" barrier APIs CPU Scheduler implementation hint 阅读全文
posted @ 2023-12-11 19:59 摩斯电码 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/staging/rpmsg.html#remote-processor-messaging-rpmsg-framework Remote Processor Messaging (rpmsg) Framework 介绍 现代S 阅读全文
posted @ 2023-12-11 19:56 摩斯电码 阅读(601) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/staging/remoteproc.html#remote-processor-framework 远程处理器框架 简介 现代SoC通常具有异构的远程处理器设备,采用非对称多处理(AMP)配置,可以运行不同实例的操作系统,无 阅读全文
posted @ 2023-12-11 19:54 摩斯电码 阅读(128) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/early-userspace/early_userspace_support.html#early-userspace-support 早期用户空间(Early userspace)是一组库和程序,提供 阅读全文
posted @ 2023-12-11 19:50 摩斯电码 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/overlayfs.html#overlay-filesystem Overlay Filesystem 本文档描述了在Linux中提供叠加文件系统功能的新方法的原型(有时称为联合文件系统)。叠加文件系 阅读全文
posted @ 2023-12-11 19:47 摩斯电码 阅读(223) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/admin-guide/blockdev/zram.html#zram-compressed-ram-based-block-devices zram:基于压缩的RAM块设备 介绍 zram模块创建名为/dev/zram<id 阅读全文
posted @ 2023-12-11 19:30 摩斯电码 阅读(638) 评论(0) 推荐(1) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/staging/tee.html#tee-subsystem 这篇文档介绍了 Linux 中的 TEE(可信执行环境)子系统。 TEE 是在一些安全环境中运行的受信任操作系统,例如 ARM CPU 上的 TrustZone,或 阅读全文
posted @ 2023-12-11 19:18 摩斯电码 阅读(370) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/relay.html#relay-interface-formerly-relayfs Relay Interface (formerly relayfs) 介绍 Relay接口提供了一种方式,让内核应 阅读全文
posted @ 2023-12-11 19:15 摩斯电码 阅读(34) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/uio-howto.html#the-userspace-i-o-howto 用户空间 I/O HOWTO 作者 Hans-Jürgen Koch Linux 开发者,Linutronix 日期 2006 阅读全文
posted @ 2023-12-11 19:12 摩斯电码 阅读(67) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/dmaengine/provider.html#dmaengine-controller-documentation DMA引擎控制器文档 硬件介绍 大多数从DMA控制器都具有相同的操作原则。 它们具有一 阅读全文
posted @ 2023-12-11 18:57 摩斯电码 阅读(37) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/legacy.html GPIO(通用输入/输出)是什么? "通用输入/输出"(GPIO)是一种灵活的软件控制数字信号。它们来自许多类型的芯片,对于在嵌入式和定制硬件上工作的 Linux 开发人 阅读全文
posted @ 2023-12-11 16:08 摩斯电码 阅读(45) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/drivers-on-gpio.html GPIO子系统驱动程序 在Linux内核中,有许多标准的GPIO任务的驱动程序,它们提供了适当的内核空间和用户空间的API/ABI,并且可以通过硬件描述 阅读全文
posted @ 2023-12-11 15:52 摩斯电码 阅读(141) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/board.html GPIO映射 本文档解释了如何将GPIO分配给特定的设备和功能。 请注意,这仅适用于基于新描述符的接口。有关已弃用的基于整数的GPIO接口的描述,请参阅“Legacy GP 阅读全文
posted @ 2023-12-11 15:51 摩斯电码 阅读(88) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/consumer.html GPIO描述符消费者接口 本文档描述了GPIO框架的消费者接口。请注意,它描述了新的基于描述符的接口。有关已弃用的基于整数的GPIO接口的描述,请参阅“Legacy 阅读全文
posted @ 2023-12-11 15:49 摩斯电码 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/driver.html GPIO 驱动接口 这份文档是 GPIO 芯片驱动程序编写者的指南。 每个 GPIO 控制器驱动程序都需要包含以下头文件,该头文件定义了用于定义 GPIO 驱动程序的结构 阅读全文
posted @ 2023-12-11 15:47 摩斯电码 阅读(110) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/using-gpio.html 在Linux中使用GPIO线 Linux内核的存在是为了将硬件抽象化并呈现给用户。GPIO线通常不是面向用户的抽象。使用GPIO线的最明显、自然和首选方式是让内核 阅读全文
posted @ 2023-12-11 15:38 摩斯电码 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/intro.html GPIO接口简介 什么是GPIO? GPIO(通用目的输入/输出)是一种灵活的软件控制的数字信号。它们由许多种类型的芯片提供,并且对于使用嵌入式和定制硬件的Linux开发人 阅读全文
posted @ 2023-12-11 15:36 摩斯电码 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/gpio/index.html#general-purpose-input-output-gpio 通用目的输入/输出(GPIO) 简介 GPIO接口 什么是GPIO? 常见的GPIO属性 在Linux中 阅读全文
posted @ 2023-12-11 15:33 摩斯电码 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/staging/static-keys.html#static-keys 静态键 警告 已弃用的API: 直接使用'struct static_key'现在已经被弃用。此外,static_key_{true,false}()也 阅读全文
posted @ 2023-12-11 11:54 摩斯电码 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/livepatch/index.html 动态补丁 (取消)补丁回调 原子替换和累积补丁 动态补丁模块的ELF格式 影子变量 系统状态变化 可靠的堆栈跟踪 动态补丁API 阅读全文
posted @ 2023-12-10 23:27 摩斯电码 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/fb/deferred_io.html 延迟IO 延迟IO是一种延迟和重新分配IO的方法。它使用主机内存作为缓冲区,并使用MMU页错误作为执行设备IO的预触发器。以下示例可能是对这种设置如何工作的有用解释: 用户空间应用程序( 阅读全文
posted @ 2023-12-10 23:25 摩斯电码 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/proc.html /proc文件系统 /proc/sys 作者:Terrehon Bowden terrehon@pacbell.net, Bodo Bauer bb@ricochet.net 日期: 阅读全文
posted @ 2023-12-10 23:17 摩斯电码 阅读(199) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/fuse.html FUSE 定义 用户空间文件系统: 普通用户空间进程提供数据和元数据的文件系统。文件系统可以通过内核接口正常访问。 文件系统守护进程: 提供文件系统数据和元数据的进程。 非特权挂载( 阅读全文
posted @ 2023-12-10 20:55 摩斯电码 阅读(227) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/sysfs.html sysfs - _用于导出内核对象的_文件系统 Patrick Mochel mochel@osdl.org Mike Murphy mamurph@cs.clemson.edu 阅读全文
posted @ 2023-12-10 20:41 摩斯电码 阅读(47) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/filesystems/autofs.html autofs - 工作原理 目的 autofs 的目标是提供按需挂载和无竞争的自动卸载各种其他文件系统。这提供了两个关键优势: 无需延迟引导,直到所有可能需要的文件系统都被挂载。 阅读全文
posted @ 2023-12-10 20:32 摩斯电码 阅读(117) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/device-io.html Bus-Independent Device Accesses 作者 Matthew Wilcox 作者 Alan Cox 介绍 Linux提供了一个API,它抽象了在所有总 阅读全文
posted @ 2023-12-10 20:20 摩斯电码 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/clk.html#the-common-clk-framework Common Clk Framework 作者 Mike Turquette mturquette@ti.com 本文旨在解释通用时钟框 阅读全文
posted @ 2023-12-10 20:03 摩斯电码 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://www.kernel.org/doc/html/v6.6/driver-api/vfio-mediated-device.html VFIO中介设备 版权 © 2016,NVIDIA CORPORATION。保留所有权利。 作者 Neo Jia cjia@nvidia.com Kir 阅读全文
posted @ 2023-12-10 19:58 摩斯电码 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 40 下一页