##summary
IP4 route register a call back notify in IPv4 address.
When a address is added, fib_inetaddr_event
will be called.
and then 4 route entry maybe added in fib_add_ifaddr
##summary
IP4 route register a call back notify in IPv4 address.
When a address is added, fib_inetaddr_event
will be called.
and then 4 route entry maybe added in fib_add_ifaddr
unregister_netdev
is used to delete a net device. In fact, it equals:
1 | rtnl_lock(); |
a temporary list stores a single net device, which is to be deleted.net_todo_list
stores all the net devices are being deleted.
The core function is rollback_registered_many
, which efficiently deletes many devices in a list.
But here, in this case, one a single netdevice in the list.
##summary
There is a struct rt_rq
in struct rq
. struct rt_rq
is used to store all
the realtime task in current struct rq
. which has a struct rt_prio_array active
.
There are four sched_class
,stop_sched_class --> rt_sched_class --> fair_sched_class --> idle_sched_class
They are linked one by one staticly by struct sched_class->next
by their defination.
Each sched_class
has method pick_next_task
, which is used to select
a perfect process to run from each sched_class
‘s runqueue.
When we need schedule, the four pick_next_task
will be called one by one.
As a optimization, most time there is no rt task in running state,
in this case we can directly call fair_sched_class
.
##summary:
*_rq
of rq? 1 | 426 struct cfs_rq cfs; |
1 | git send-email --annotate --subject-prefix="PATCH v2 net-next" \ |
promisc is one bit of struct net_device’s flag, which is used to indicate if a device is in promisc status.
1 | 30 /* Standard interface flags (netdevice->flags). */ |
There are two kinds of operataion, could cause a NIC enter/leave promisc status.
ip command
run mutli on
command, just need one off
to recover.
1 | ip link set dev eth0 promisc on |
tcpdump command
When tcpdump starts, it let dev to promisc,
and just before exit, tcpdump let dev left promisc.
All these is done by call kernel api dev_set_promiscuity.