aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/networking/netdevices.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/networking/netdevices.txt')
-rw-r--r--Documentation/networking/netdevices.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/networking/netdevices.txt b/Documentation/networking/netdevices.txt
index 336fe8e85b20..b107733cfdcd 100644
--- a/Documentation/networking/netdevices.txt
+++ b/Documentation/networking/netdevices.txt
@@ -65,7 +65,7 @@ dev->get_stats:
65 Context: nominally process, but don't sleep inside an rwlock 65 Context: nominally process, but don't sleep inside an rwlock
66 66
67dev->hard_start_xmit: 67dev->hard_start_xmit:
68 Synchronization: netif_tx_lock spinlock. 68 Synchronization: __netif_tx_lock spinlock.
69 69
70 When the driver sets NETIF_F_LLTX in dev->features this will be 70 When the driver sets NETIF_F_LLTX in dev->features this will be
71 called without holding netif_tx_lock. In this case the driver 71 called without holding netif_tx_lock. In this case the driver
@@ -87,12 +87,12 @@ dev->hard_start_xmit:
87 Only valid when NETIF_F_LLTX is set. 87 Only valid when NETIF_F_LLTX is set.
88 88
89dev->tx_timeout: 89dev->tx_timeout:
90 Synchronization: netif_tx_lock spinlock. 90 Synchronization: netif_tx_lock spinlock; all TX queues frozen.
91 Context: BHs disabled 91 Context: BHs disabled
92 Notes: netif_queue_stopped() is guaranteed true 92 Notes: netif_queue_stopped() is guaranteed true
93 93
94dev->set_rx_mode: 94dev->set_rx_mode:
95 Synchronization: netif_tx_lock spinlock. 95 Synchronization: netif_addr_lock spinlock.
96 Context: BHs disabled 96 Context: BHs disabled
97 97
98struct napi_struct synchronization rules 98struct napi_struct synchronization rules