发布时间:2014-01-06 16:15:38
内核版本:2.6.34报文的IP校验和、ICMP校验和、TCP/UDP校验和使用相同的算法,在RFC1071中定义,网上这方面的资料和例子很多,就不解释算法流程了,而是侧重于在实现的变化和技巧。The checksum algorithm is simply to add up all the 16-bit words in one's complement and then to take the one's complem.........【阅读全文】
发布时间:2013-11-18 17:10:19
第三部分: ioctl管理网桥3.1 通过ioctl系统调用创建网桥 仍然以前的配置作为例,我们分用户空间程序brctl是如何通过ioctl系统调用在kernel空间内创建上述的数据结构。创建网桥,我们不需要预知任何网络设备信息,因此我们通过ioctl来创建网桥时不应该与任何网络设备绑定到一起。网桥模块.........【阅读全文】
发布时间:2013-03-22 15:05:31
//arch/powerpc/kernel/irq.cvoid do_IRQ(struct pt_regs *regs){ struct pt_regs *old_regs = set_irq_regs(regs); unsigned int irq; trace_irq_entry(regs); irq_enter(); check_stack_overflow(); .........【阅读全文】