http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / Documentation / networking / netdevices.txt
1
2 Network Devices, the Kernel, and You!
3
4
5 Introduction
6 ============
7 The following is a random collection of documentation regarding
8 network devices.
9
10 struct net_device allocation rules
11 ==================================
12 Network device structures need to persist even after module is unloaded and
13 must be allocated with kmalloc.  If device has registered successfully,
14 it will be freed on last use by free_netdev.  This is required to handle the
15 pathologic case cleanly (example: rmmod mydriver </sys/class/net/myeth/mtu )
16
17 There are routines in net_init.c to handle the common cases of
18 alloc_etherdev, alloc_netdev.  These reserve extra space for driver
19 private data which gets freed when the network device is freed. If
20 separately allocated data is attached to the network device
21 (dev->priv) then it is up to the module exit handler to free that.
22
23
24 struct net_device synchronization rules
25 =======================================
26 dev->open:
27         Synchronization: rtnl_lock() semaphore.
28         Context: process
29
30 dev->stop:
31         Synchronization: rtnl_lock() semaphore.
32         Context: process
33         Note1: netif_running() is guaranteed false
34         Note2: dev->poll() is guaranteed to be stopped
35
36 dev->do_ioctl:
37         Synchronization: rtnl_lock() semaphore.
38         Context: process
39
40 dev->get_stats:
41         Synchronization: dev_base_lock rwlock.
42         Context: nominally process, but don't sleep inside an rwlock
43
44 dev->hard_start_xmit:
45         Synchronization: dev->xmit_lock spinlock.
46         Context: BHs disabled
47         Notes: netif_queue_stopped() is guaranteed false
48
49 dev->tx_timeout:
50         Synchronization: dev->xmit_lock spinlock.
51         Context: BHs disabled
52         Notes: netif_queue_stopped() is guaranteed true
53
54 dev->set_multicast_list:
55         Synchronization: dev->xmit_lock spinlock.
56         Context: BHs disabled
57
58 dev->poll:
59         Synchronization: __LINK_STATE_RX_SCHED bit in dev->state.  See
60                 dev_close code and comments in net/core/dev.c for more info.
61         Context: softirq
62