LINUX设备驱动程序(影印版)(第三版) mobi 下载 网盘 caj lrf pdf txt 阿里云

LINUX设备驱动程序(影印版)(第三版)电子书下载地址
内容简介:
这本经典书籍目前已更新至第三版,对于那些希望在Linux操作系统下支持计算机外围设备、运行新硬件,或者仅仅对Linux内核普通编程感兴趣的人来说,它是本书籍。《Linux设备驱动程序》揭示了如何给大多数的设备编写驱动程序的信息,这些信息迄今仅通过口头或者隐晦的源代码注释被共享。
本书的作者是Linux社区的领导者。Jonathan Corbet是个不定期的内核开源项目参与者同时还是评价甚高的LWN.net新闻和信息站点的执行编辑。Alessandro Rubini是Linux代码的一个开源提供者同时也是活跃的意大利Linux社区的中心人物。Greg Kroah-Hartman目前是本书描述的U***、PCI和驱动核心子系统相关的内核代码维护者。
本书新版根据Linux内核2.6.10彻底更新。内核的这个版本更加合理化并简化了普通工作任务的几个方法,比如即插即用、通过sysfs文件系统和用户空间交互、标准总线上的多设备管理。
你不必是一个内核高手就可以理解并享受本书,所需要的只是C以及Unix系统调用方面的背景知识。在不需要特殊的硬件设备就能编译和运行的详细示例的指引下,你将学会如何给字符设备、块设备和网络接口编写驱动程序。PCI、U***和tty(终端)子系统都单列一章。本书为那些对操作系统的工作机制好奇的人提供了地址空间、异步事件和I/O等方面的阐述。
本书的主题包括:
* 字符设备、块设备、tty(终端)和网络驱动程序
* 驱动程序调试
* 中断
* 定时问题
* 内存管理和DMA
* 驱动模型和sysfs
* 热插拔设备
* 通用总线,包括SCSI、PCI、U***和IEEE1394(FireWire)的特殊要求。
书籍目录:
Preface
1. An Introduction to Device Drivers
The Role of the Device Driver
Splitting the Kernel
Classes of Devices and Modules
Security Issues
Version Numbering
License Terms
Joining the Kernel Development Community
Overview of the Book
2. Building and Running Modules
Setting Up Your Test System
The Hello World Module
Kernel Modules Versus Applicati***
Compiling and Loading
The Kernel Symbol Table
Preliminaries
Initialization and Shutdown
Module Parameters
Doing It in User Space
Quick Reference
3. Char Drivers
The Design of scull
Major and Minor Numbers
Some Important Data Structures 49Char Device Registration
open and release
scull's Memory Usage
read and write
Playing with the New Devices
Quick Reference
4. Debugging Techniques
Debugging Support in the Kernel
Debugging by Printing
Debugging by Querying
Debugging by Watching
Debugging System Faults
Debuggers and Related Tools
5. Concurrency and Race Conditi***
Pitfalls in scull
Concurrency and Its Management
Semaphores and Mutexes
Completi***
Spinlocks
Locking Traps
Alternatives to Locking
Quick Reference
6. Advanced Char Driver Operati***
ioctl
Blocking I/O
poll and select
Asynchronous Notification
Seeking a Device
Access Control on a Device File
Quick Reference
7. Time, Delays, and Deferred Work
Measuring Time Lapses
Knowing the Current Time
Delaying Execution
Kernel Timers
Tasklets
Workqueues
Quick Reference
8. Allocating Memory
9. Communicating with Hardware
10. Interrupt Handling
11. Data Types in the Kernel
12. PCI Drivers
13. U*** Drivers
14. The Linux Device Model
15. Memory Mapping and DMA
16. Block Drivers
17. Network Drivers
18. TTY Drivers
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
GFP_ATOMIC
Used to allocate memory from interrupt handlers and other code outside of a process context. Never sleeps.
GFP_KERNEL
Normal allocation of kernel memory. May sleep.
struct gendisk is a dynamically allocated structure that requires special kernel
manipulation to be initialized; drivers cannot allocate the structure on their own.
Instead, you must call:
The minors argument should be the number of minor numbers this disk uses; note
that you cannot change the minors field later and expect things to work properly.
When a disk is no longer needed, it should be freed with:
A gendisk is a reference-counted structure (it contains a kobject). There are get_disk
and put_disk functi*** available to manipulate the reference count, but drivers
should never need to do that. Normally, the call to del_gendisk removes the final reference
to a gendisk, but there are no guarantees of that. Thus, it is possible that the
structure could continue to exist (and your methods could be called) after a call to
del_gendisk. If you delete the structure when there are no users (that is, after the final
release or in your module cleanup function), however, you can be sure that you will
not hear from it again.
Allocating a gendisk structure does not make the disk available to the system. To do
that, you must initialize the structure and call add_disk:
其它内容:
书籍介绍
本书揭示了如何给大多数的设备编写驱动程序的信息,这些信息迄今仅通过口头或者隐晦的源代码注释被共享。你不必是一个内核高手就可以理解并享受本书,所需要的只是C以及Unix系统调用方面的背景知识。在不需要特殊的硬件设备就能编译和运行的详细示例的指引下,你将学会如何给字符设备、块设备和网络接口编写驱动程序。PCI、U***和tty(终端)子系统都单列一章。本书为那些对操作系统的工作机制好奇的人提供了地址空间、异步事件和I/O等方面的阐述。
网站评分
书籍多样性:9分
书籍信息完全性:6分
网站更新速度:6分
使用便利性:6分
书籍清晰度:3分
书籍格式兼容性:5分
是否包含广告:9分
加载速度:4分
安全性:9分
稳定性:4分
搜索功能:4分
下载便捷性:6分
下载点评
- 在线转格式(149+)
- 引人入胜(269+)
- 体验满分(384+)
- 内容齐全(537+)
- 章节完整(274+)
- 少量广告(376+)
- 不亏(200+)
- 购买多(678+)
- 四星好评(624+)
下载评价
- 网友 宓***莉:
不仅速度快,而且内容无盗版痕迹。
- 网友 郗***兰:
网站体验不错
- 网友 后***之:
强烈推荐!无论下载速度还是书籍内容都没话说 真的很良心!
- 网友 通***蕊:
五颗星、五颗星,大赞还觉得不错!~~
- 网友 师***怡:
说的好不如用的好,真心很好。越来越完美
- 网友 冯***卉:
听说内置一千多万的书籍,不知道真假的
- 网友 养***秋:
我是新来的考古学家
- 网友 龚***湄:
差评,居然要收费!!!
- 网友 国***芳:
五星好评
- 网友 寿***芳:
可以在线转化哦
喜欢"LINUX设备驱动程序(影印版)(第三版)"的人也看了
新东方 GRE数学官方指南 美国教育考试服务中心 著 群言出版社【正版】 mobi 下载 网盘 caj lrf pdf txt 阿里云
2009证券投资基金-命题预测考卷 mobi 下载 网盘 caj lrf pdf txt 阿里云
澳门特区金融安全的法律保障、政策协调与技术支撑研究 mobi 下载 网盘 caj lrf pdf txt 阿里云
失乐园 mobi 下载 网盘 caj lrf pdf txt 阿里云
立法法律与程序 mobi 下载 网盘 caj lrf pdf txt 阿里云
社会工作实务(中级)历年真题及全真模拟试卷(2021升级版全国社会工作者职业水平考试辅 mobi 下载 网盘 caj lrf pdf txt 阿里云
歌剧评论精选:纽约时报 (美)托马西尼 著,黄小猩 译 南京大学出版社【正版】 mobi 下载 网盘 caj lrf pdf txt 阿里云
行者无疆---踏浪去西沙 mobi 下载 网盘 caj lrf pdf txt 阿里云
土木工程制图基础 mobi 下载 网盘 caj lrf pdf txt 阿里云
它们是怎么来的(精) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 义务教育教科书 语文 课堂笔记 六年级 下册 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 中国古代文化常识 王力主编 北京联合出版公司【正版可开发票】 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 美丽中国系列 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 变形金刚 领袖之证 2 误人子弟 注音故事版 辽宁少年儿童出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 【年末清仓】2010年贵州省***录用考试专用教材(行政职业能力测验全真模拟试卷) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 优秀宝宝科学启蒙绘本 小燕子去哪里 全8册 (套装) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 联想局一家企业的中国智慧【正版保证】 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 剧本剪接内行门道系列四册套书 21天搞定你的剧本 别让你的剧本逊毙了 剪接的法则 电影即剪接 港台原版 原点 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 图解纳米科技【正版保证】 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 备考2019 基金从业资格考试教材2019 基金从业资格证考试 科目1 基金法律法规、职业道德与业务规范真题与攻略(试卷1本) mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:3分
人物塑造:8分
主题深度:9分
文字风格:3分
语言运用:8分
文笔流畅:4分
思想传递:5分
知识深度:6分
知识广度:6分
实用性:9分
章节划分:5分
结构布局:3分
新颖与独特:5分
情感共鸣:8分
引人入胜:8分
现实相关:8分
沉浸感:5分
事实准确性:8分
文化贡献:7分