linux学习中
发布时间:2013-11-15 11:20:49
WLAN Througput Point 1 There are two througput issues i met recently1 In kernel 2.6.15 , DBDC througput, changing HZ from 250 to 1000, will increase the TX and througput a lot. TX 180+178 campare to 165+160, CPU loading is about 85%&nb.........【阅读全文】
发布时间:2013-11-15 10:47:35
MIPS 非对齐指令操作是如何处理的 Hi all 最近发现了一个有点想不通的事情,是这样的,mips一般是对对齐有严格要求的,四字节的话需要地址也是四字节对齐的。 在fusion code中,在ethernet driver中分配rx skb是这样来的 static struct sk_b.........【阅读全文】
发布时间:2013-11-15 10:44:26
spin_lock/rw_lock 强调如下两点1 rw_lock也是一种spin_lock,如果得不到,将会spin2 对于UP, spin_lock和rw_lock起的作用只是preempt_disable, 然后其它的就没了, 因此在UP上同步,读锁和写锁都只是禁止抢占,完全没有其真正意义上的读写锁。3 preempt_count这个变量.........【阅读全文】