如何在内核中为 tty 驱动程序编写具有 poll() 功能的 read()?
How to write read() with poll() functionality in kernel for tty driver?
在我的驱动程序模块中,数据来自回调函数。
我想添加数据以读取回调但无法在 tty 结构中找到读取回调
没有读取回调。 tty 核心将 tty 驱动程序接收到的数据缓存在一个名为 struct tty_flip_buffer 的结构中。阅读 LDD3
的 Chapter 18
在我的驱动程序模块中,数据来自回调函数。 我想添加数据以读取回调但无法在 tty 结构中找到读取回调
没有读取回调。 tty 核心将 tty 驱动程序接收到的数据缓存在一个名为 struct tty_flip_buffer 的结构中。阅读 LDD3
的 Chapter 18