LINUX设备驱动程序(影印版)(第三版) pdf snb 115盘 kindle 在线 下载 pmlz mobi

LINUX设备驱动程序(影印版)(第三版)电子书下载地址
内容简介:
这本经典书籍目前已更新至第三版,对于那些希望在Linux操作系统下支持计算机外围设备、运行新硬件,或者仅仅对Linux内核普通编程感兴趣的人来说,它是本书籍。《Linux设备驱动程序》揭示了如何给大多数的设备编写驱动程序的信息,这些信息迄今仅通过口头或者隐晦的源代码注释被共享。
本书的作者是Linux社区的领导者。Jonathan Corbet是个不定期的内核开源项目参与者同时还是评价甚高的LWN.net新闻和信息站点的执行编辑。Alessandro Rubini是Linux代码的一个开源提供者同时也是活跃的意大利Linux社区的中心人物。Greg Kroah-Hartman目前是本书描述的USB、PCI和驱动核心子系统相关的内核代码维护者。
本书新版根据Linux内核2.6.10彻底更新。内核的这个版本更加合理化并简化了普通工作任务的几个方法,比如即插即用、通过sysfs文件系统和用户空间交互、标准总线上的多设备管理。
你不必是一个内核高手就可以理解并享受本书,所需要的只是C以及Unix系统调用方面的背景知识。在不需要特殊的硬件设备就能编译和运行的详细示例的指引下,你将学会如何给字符设备、块设备和网络接口编写驱动程序。PCI、USB和tty(终端)子系统都单列一章。本书为那些对操作系统的工作机制好奇的人提供了地址空间、异步事件和I/O等方面的阐述。
本书的主题包括:
* 字符设备、块设备、tty(终端)和网络驱动程序
* 驱动程序调试
* 中断
* 定时问题
* 内存管理和DMA
* 驱动模型和sysfs
* 热插拔设备
* 通用总线,包括SCSI、PCI、USB和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 Applications
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 Conditions
Pitfalls in scull
Concurrency and Its Management
Semaphores and Mutexes
Completions
Spinlocks
Locking Traps
Alternatives to Locking
Quick Reference
6. Advanced Char Driver Operations
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. USB 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 functions 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、USB和tty(终端)子系统都单列一章。本书为那些对操作系统的工作机制好奇的人提供了地址空间、异步事件和I/O等方面的阐述。
网站评分
书籍多样性:3分
书籍信息完全性:4分
网站更新速度:8分
使用便利性:7分
书籍清晰度:6分
书籍格式兼容性:8分
是否包含广告:3分
加载速度:6分
安全性:3分
稳定性:4分
搜索功能:4分
下载便捷性:5分
下载点评
- 中评(59+)
- 超值(545+)
- 已买(588+)
- 章节完整(112+)
- 内涵好书(295+)
- 可以购买(355+)
- 书籍完整(659+)
下载评价
- 网友 权***颜:
下载地址、格式选择、下载方式都还挺多的
- 网友 曹***雯:
为什么许多书都找不到?
- 网友 詹***萍:
好评的,这是自己一直选择的下载书的网站
- 网友 师***怡:
说的好不如用的好,真心很好。越来越完美
- 网友 康***溪:
强烈推荐!!!
- 网友 谭***然:
如果不要钱就好了
- 网友 隗***杉:
挺好的,还好看!支持!快下载吧!
- 网友 薛***玉:
就是我想要的!!!
- 网友 冷***洁:
不错,用着很方便
- 网友 訾***晴:
挺好的,书籍丰富
- 网友 融***华:
下载速度还可以
喜欢"LINUX设备驱动程序(影印版)(第三版)"的人也看了
乔布斯全书 文娟 pdf snb 115盘 kindle 在线 下载 pmlz mobi
People in public 2014 National Bank Financial Recruitment Examination exclusive materials pdf snb 115盘 kindle 在线 下载 pmlz mobi
中国古代紫砂器 pdf snb 115盘 kindle 在线 下载 pmlz mobi
公木传 pdf snb 115盘 kindle 在线 下载 pmlz mobi
【正版保证团购优惠】当代会计评论. 第11 卷. 第1 辑:总第21 辑 pdf snb 115盘 kindle 在线 下载 pmlz mobi
Linux系统安全基础:二进制代码安全性分析基础与实践 pdf snb 115盘 kindle 在线 下载 pmlz mobi
罪犯心理咨询话语研究 (Discourse Study of Prison Counseling) pdf snb 115盘 kindle 在线 下载 pmlz mobi
道藏书目提要 pdf snb 115盘 kindle 在线 下载 pmlz mobi
国际大奖绘本 安格斯和猫 精装大开本 玛乔丽·弗拉克大师名作 3-6岁幼儿童早教启蒙认知书籍 pdf snb 115盘 kindle 在线 下载 pmlz mobi
新闻节目与播音主持 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 注册电气工程师执业资格考试专业基础考试复习教程(第2版) pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 长喜英语—考研词汇 词根+联想+语境 记忆法(阅读版)2014年 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 高分子材料用助剂 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 小熊图书2020王后雄教材完全解读高中地理2必修第二册人教版高一新教材地区(鲁京辽琼沪)用 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 趣读漫画鬼谷子 抖音同款正版 鬼谷子儿童版教会孩子为人处事 少年读鬼谷子全集正版口才情商孩子都能读的漫画书课外阅读 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 揭秘中华文明翻翻书:揭秘古代艺术 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 货币金融学考点归纳习题详解考研真题 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- FLASHBACK(ISBN=9780807050415) 英文原版 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 执法之道【售后无忧】 pdf snb 115盘 kindle 在线 下载 pmlz mobi
- 大学法语阅读教程(2第2版) pdf snb 115盘 kindle 在线 下载 pmlz mobi
书籍真实打分
故事情节:8分
人物塑造:4分
主题深度:5分
文字风格:6分
语言运用:6分
文笔流畅:6分
思想传递:4分
知识深度:8分
知识广度:7分
实用性:3分
章节划分:3分
结构布局:6分
新颖与独特:3分
情感共鸣:4分
引人入胜:7分
现实相关:3分
沉浸感:8分
事实准确性:6分
文化贡献:5分