全部博文(685)
发布时间:2014-11-05 18:40:39
原文地址:http://blog.chinaunix.net/uid-13746440-id-3076106.html其中netlink的协议族注册是在net/netlink/af_netlink.c中完成的, af_netlink协议初始化如下netlink_proto_init1. 调用proto_register, 将netlink_proto结构挂接到系统的网络协议链表中2. 分配MAX_LINKS个netlink表结构, nl_table, 每个成员代表一种协.........【阅读全文】
发布时间:2014-11-05 18:29:15
原文地址:http://www.linuxidc.com/Linux/2012-09/70700.htm本文分析基于Linux Kernel 3.2.1更多请查看 Linux内核--网络内核实现分析1、系统初始化过程中会调用sock_init函数进行套接字的初始化,主要是进行缓存的初始化static int __init sock_init(void) { .........【阅读全文】
发布时间:2014-11-05 17:26:57
原文地址:http://blog.csdn.net/myarrow/article/details/86095641. 简介 内核提供了一个重要的结构体struct machine_desc ,这个结构体在内核移植中起到相当重要的作用,内核通过machine_desc结构体来控制系统体系架构相关部分的初始化。machine_desc结构体通过MACHINE_START宏来初始化,在代码中, 通过.........【阅读全文】
发布时间:2014-11-05 13:43:29
原文地址:http://www.cnblogs.com/caosiyang/archive/2011/12/23/2299190.htmlTaglist是以tags文件为基础,需要ctags生成tags文件。安装ctags,Redhat和CentOS可以执行yum install ctags,Debian和Ubantu可以执行apt-get install ctags下载Taglist,地址是http://sourceforge.net/projects/vim-taglist/files/.........【阅读全文】
发布时间:2014-11-04 19:58:56
原文地址:http://blog.csdn.net/cumtgao/article/details/8363123程序从start。S开始启动start_code:/** set the cpu to SVC32 mode 设置管理模式*/mrs r0, cpsr bic r0, r0, #0x1f orr r0, r0, #0xd3msr cpsr, r0#ifdef CONFIG_S3C24X0/* turn off the watchdog *//*关看门狗 关中.........【阅读全文】