summaryrefslogtreecommitdiffstats
path: root/sys/net/if_arcsubr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* get rid of arc network support. we have no users of it so this is deaddlg2006-07-181-561/+0
| | | | | | | code. however, it is still cluttering up the kernel namespace a bit. it is better gone. ok claudio@
* adopt to extended rtrequest / rtalloc1 apihenning2006-06-171-3/+3
|
* With the exception of two other small uncommited diffs this movesbrad2006-03-041-4/+4
| | | | | | the remainder of the network stack from splimp to splnet. ok miod@
* First step towards more sane time handling in the kernel -- this changestholo2004-06-211-2/+2
| | | | | | | | things such that code that only need a second-resolution uptime or wall time, and used to get that from time.tv_secs or mono_time.tv_secs now get this from separate time_t globals time_second and time_uptime. ok art@ niklas@ nordin@
* Don't use time for random starting value... "love it" deraadt@tholo2004-06-211-2/+2
|
* add a congestion indicator to if_queue. It is set when the input queuehenning2004-04-171-6/+2
| | | | | | | | is full, along with a timer that unsets it again after 10ms. The input queue beeing full is a reliable indicator for CPU overload, and this flag allows other subsystems to cope with the situation. hacked with beck ok kjc@ markus@ beck@
* small compiler warning cleanup (#error instead of bailing out)hshoexer2003-12-121-2/+2
| | | | ok henning@ grange@
* de-register. deraadt okitojun2003-12-101-9/+9
|
* prevent looutput() feedback of broadcast/multicast packets if they aredhartmei2003-08-181-2/+3
| | | | | pf routed. prevents a kernel lockup with some (non-sensical) route-to rules. report and debugging by mpech@. ok itojun@, henning@, mpech@.
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
| | | | rescinded 22 July 1999. Proofed by myself and Theo.
* remove the altq classifier code which is replaced by pf and no longer used.kjc2003-01-071-9/+2
| | | | ok henning@, deraadt@
* Make compile with -Werror (unused vars warnings)niklas2002-09-151-3/+1
|
* KNF - return is not a function.itojun2002-09-111-3/+3
|
* allocate sockaddr_dl for ifnet in if_alloc_sadl(), as we don't always knowitojun2002-06-301-11/+4
| | | | | the size of sockaddr_dl on if_attach() - for instance, see ether_ifattach(). from netbsd. fgs ok
* First round of __P removal in sysmillert2002-03-141-2/+2
|
* sync with KAMEkjc2002-03-121-12/+21
| | | | | ALTQify more drivers. ok millert@
* Use queue.h TAILQ macros instead of accessing members directly.jason2001-12-091-3/+3
| | | | (And convert a few loops to TAILQ_FOREACH).
* change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange.itojun2001-06-151-3/+1
| | | | | | | | follows BSD/OS practice and ucd-snmp code (FreeBSD does it for specific interfaces only). was: if_lastchange get updated on every packet transmission/receipt. now: if_lastchange get updated when IFF_UP is changed.
* Check m_pullup() and m_pullup2() return for NULL, not 0; itojun@ okaaron2001-05-111-2/+2
|
* OpenBSD tags + some prototyping policeniklas1997-02-241-0/+1
|
* if_name/if_unit -> if_xname/if_softcderaadt1996-05-101-8/+8
|
* partial sync with netbsd 960418, more to comederaadt1996-04-211-2/+2
|
* miscellanous if_arcsubr.c cleanup and optimizations; from is@beverly.rhein.de; netbsd pr#1825deraadt1995-12-271-72/+37
|
* initial import of NetBSD treederaadt1995-10-181-0/+611