* netdevices.txt update
@ 2003-02-19 4:34 Jeff Garzik
2003-02-21 14:56 ` Bill Davidsen
0 siblings, 1 reply; 2+ messages in thread
From: Jeff Garzik @ 2003-02-19 4:34 UTC (permalink / raw)
To: lkml, netdev
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
Just made a minor update to Documentation/networking/netdevices.txt, and
thought I would take the opportunity to pass it around once again.
Even though this doc has existed for quite a while now, I still come
across code that loves to violate these locking rules in various ways.
Comments and additions welcome
Jeff
[-- Attachment #2: netdevices.txt --]
[-- Type: text/plain, Size: 1180 bytes --]
Network Devices, the Kernel, and You!
Introduction
============
The following is a random collection of documentation regarding
network devices.
struct net_device synchronization rules
=======================================
dev->open:
Synchronization: rtnl_lock() semaphore.
Context: process
dev->stop:
Synchronization: rtnl_lock() semaphore.
Context: process
Note1: netif_running() is guaranteed false
Note2: dev->poll() is guaranteed to be stopped
dev->do_ioctl:
Synchronization: rtnl_lock() semaphore.
Context: process
dev->get_stats:
Synchronization: dev_base_lock rwlock.
Context: nominally process, but don't sleep inside an rwlock
dev->hard_start_xmit:
Synchronization: dev->xmit_lock spinlock.
Context: BHs disabled
Notes: netif_queue_stopped() is guaranteed false
dev->tx_timeout:
Synchronization: dev->xmit_lock spinlock.
Context: BHs disabled
Notes: netif_queue_stopped() is guaranteed true
dev->set_multicast_list:
Synchronization: dev->xmit_lock spinlock.
Context: BHs disabled
dev->poll:
Synchronization: __LINK_STATE_RX_SCHED bit in dev->state. See
dev_close code and comments in net/core/dev.c for more info.
Context: softirq
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: netdevices.txt update
2003-02-19 4:34 netdevices.txt update Jeff Garzik
@ 2003-02-21 14:56 ` Bill Davidsen
0 siblings, 0 replies; 2+ messages in thread
From: Bill Davidsen @ 2003-02-21 14:56 UTC (permalink / raw)
To: Jeff Garzik; +Cc: lkml, netdev
[-- Attachment #1: Type: TEXT/PLAIN, Size: 630 bytes --]
On Tue, 18 Feb 2003, Jeff Garzik wrote:
> Just made a minor update to Documentation/networking/netdevices.txt, and
> thought I would take the opportunity to pass it around once again.
>
> Even though this doc has existed for quite a while now, I still come
> across code that loves to violate these locking rules in various ways.
>
> Comments and additions welcome
I wish other kernel interfaces were as well documented, or documented at
all other than the source code using them. Thank you so much!
--
bill davidsen <davidsen@tmr.com>
CTO, TMR Associates, Inc
Doing interesting things with little computers since 1979.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-02-21 14:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-19 4:34 netdevices.txt update Jeff Garzik
2003-02-21 14:56 ` Bill Davidsen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).