netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andi Kleen <ak@suse.de>
To: Chris Friesen <cfriesen@nortelnetworks.com>
Cc: Donald Becker <becker@scyld.com>, netdev@oss.sgi.com
Subject: Re: how to report network device errors to userspace?
Date: Wed, 19 Jun 2002 23:36:59 +0200	[thread overview]
Message-ID: <20020619233659.A7368@wotan.suse.de> (raw)
In-Reply-To: <3D10F552.C05ADD53@nortelnetworks.com>

On Wed, Jun 19, 2002 at 05:19:14PM -0400, Chris Friesen wrote:
> Donald Becker wrote:
> > 
> > On Wed, 19 Jun 2002, Chris Friesen wrote:
> > 
> > > I'm curious about the proper way for a network device driver to report
> > > faults to userspace.
> > 
> > What type of fault?
> 
> I'm looking for asynchronous notification of events such as loss of ethernet
> carrier or SONET LOS/LOF/LCD/RDI/AIS.  When the driver figures out (whether
> interrupt or poll-based) that it's lost connectivity it then somehow notifies a
> userspace app that something has happened, so the userspace app can deal with
> it.
> 
> Currently the way we are doing it for ethernet is that the userspace app calls a
> device ioctl() with SIOCGMIIREG multiple times per second, but it would be nice
> to have the driver notify us asynchronously.

I would suggest sending a netlink message from the driver.  That's really
what netlink was designed for.

> 
> > People very much care.  There are sufficient reporting mechanisms for
> > most errors -- it's much more consistent, orthogonal and thorough than
> > other device types.  Compare /proc/net/dev with the errors reported for
> > disks, serial, USB, keyboard...
> 
> Is it possible to select() on an entry in /proc/net becoming readable?  Is

Yes, but it's very ugly to implement and not recommended.

> reading from /proc/net and converting from ASCII faster than doing an ioctl() to
> the driver and getting binary data?

It's quite slow. When you plan to do this often better go with some 
binary interface (experience has shown for other statistics that /proc
has a huge overhead) 


-Andi

  reply	other threads:[~2002-06-19 21:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-06-19 18:39 how to report network device errors to userspace? Chris Friesen
2002-06-19 20:21 ` Donald Becker
2002-06-19 21:19   ` Chris Friesen
2002-06-19 21:36     ` Andi Kleen [this message]
2002-06-19 21:44       ` Chris Friesen
2002-06-19 21:54         ` Andi Kleen
2002-06-20  2:44           ` James Morris
2002-06-20  2:50             ` jamal
2002-06-19 21:45       ` Jes Sorensen
2002-06-19 21:50         ` Chris Friesen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020619233659.A7368@wotan.suse.de \
    --to=ak@suse.de \
    --cc=becker@scyld.com \
    --cc=cfriesen@nortelnetworks.com \
    --cc=netdev@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).