编译linux内核 Documentation 为man手册 收藏
对每一个linux内核以及驱动开发者来说,内核自带的 Documentation目录无疑是一个非常非常有用的参考资料和学习资料。建议多读~
当我们在写驱动或者修改内核的时候,可能需要用到某些kernel api,我们也想能够像libc api那样可以通过man手册查看其使用方法,毫无疑问,直接到内核 source code 里面去查找到相关的函数定义是一种方法,但是显得比较麻烦。你可以将内核api安装为man手册,然后你就可以很方便的 man xxx-kernel-api 了。具体步骤如下(based on FC6 ):
(1)在kernel source的顶层目录,执行make installmandocs就可以将man 手册安装到 /usr/local/man/man9下面了。
NOTES: 注意,如果在执行make installmandocs的时候需要其他的一些工具程序,可以使用yum工具来进行在线安装,比如,我的系统在make installmandocs时报缺少xmlto,所以执行yum install xmlto安装好需要的工具之后再执行make installmandocs就可以了。
自此,已经安装好了。下面show一段: man copy_from_user
COPY_FROM_USER(9) User Space Memory Access COPY_FROM_USER(9)
NAME
copy_from_user - Copy a block of data from user space.
SYNOPSIS
unsigned long copy_from_user (void * to, const void __user * from,
unsigned long n);
ARGUMENTS
to Destination address, in kernel space.
from Source address, in user space.
n Number of bytes to copy.
CONTEXT
User context only. This function may sleep.
DESCRIPTION
Copy data from user space to kernel space.
Returns number of bytes that could not be copied. On success, this will
be zero.
If some data could not be copied, this function will pad the copied
data to the requested size using zero bytes.
Kernel Hackers Manual January 2008 COPY_FROM_USER(9)
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/bshawk/archive/2008/01/27/2068676.aspx