Data struct.
1 | 123 /* The inetsw table contains everything that inet_create needs to |
1 | 1019 static const struct net_proto_family inet_family_ops = { |
1 | > inet_create |
System call socket
will do two things:
struct socket *sock
.__sock_create
, which alloc a struct socket *sock
,creating
method of net_families[family]
.sock
to a file descriptor by sock_map_fd
.1 | > socket |
Each family
has a corresponding array element of struct net_proto_family
,
which will be called in system call socket
.
1 | 181 struct net_proto_family { |
The create
is important, which is first and basic function during
system call socket
.
1 | 164 static DEFINE_SPINLOCK(net_family_lock); |
I want to write blog with github page and octopress in the office
and in the home.
The github page has work well done with pc in the home.
Now setup the environment in office to write github page.
The github page repo:
https://github.com/martinbj2008/martinbj2008.github.io
the octopress is pushed to git repo as branch “source”
How to write blog and sync them to github while avoid conflict with home?
On ubuntu 13.04, create the file ~/.config/gtk-3.0/gtk.css with following lines
1 | martin@ubuntu:~$ cat ~/.config/gtk-3.0/gtk.css |
##summaryinflate
duplicate a new node whose child array is double of orignal node,
and put original node’s child into the new node.
以插入一条新的路由为例。
1 | > fib_insert_node |
###trie_rebalance
1 | for_each_node(from current node tn to fib_trie root) |
##summary
softirq 真正干活的函数是__do_softirq
。
linuxv3.11内核里能够执行__do_softirq
,有如下调用,
这里指真正执行softirq的地方,不是触发(设置)softirq标志 !!!