| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement a mechanism by which ATM drivers can inform interested | Hartmut Brandt | 2003-07-29 | 2 | -1/+85 |
| * | Use M_WAITOK instead of M_WAIT in sppp_attach(). | Gary Jennejohn | 2003-07-26 | 1 | -1/+1 |
| * | add monitor mode | Sam Leffler | 2003-07-21 | 1 | -0/+2 |
| * | Disabling multicast on vlan interface caused kernel panic. | Hajimu UMEMOTO | 2003-07-19 | 1 | -0/+2 |
| * | Add mutex for routing entries. | Jeffrey Hsu | 2003-07-19 | 1 | -1/+8 |
| * | Correct the device identifiers for the ProATM cards. | Hartmut Brandt | 2003-07-18 | 1 | -2/+2 |
| * | Implement an utility function that can be used by device drivers to | Hartmut Brandt | 2003-07-15 | 2 | -0/+59 |
| * | The mbuf put on the interface queue contains the 4-byte pseudoheader. | Hartmut Brandt | 2003-07-15 | 1 | -1/+2 |
| * | Add identifiers for ProSum's and IDT's cards that are based on | Hartmut Brandt | 2003-07-15 | 1 | -1/+9 |
| * | ATM_PH_LLCSNAP and ATMIO_FLAG_LLCSNAP must have the same value, so | Hartmut Brandt | 2003-07-15 | 1 | -2/+4 |
| * | Protect a kernel structure by _KERNEL. | Hartmut Brandt | 2003-07-15 | 1 | -0/+2 |
| * | Move the MAC entry point to label ethernet-sourced mbufs with a MAC label | Robert Watson | 2003-07-13 | 1 | -4/+8 |
| * | - In vlan_input(), always mask off all but the VLID bits from tags | Bill Paul | 2003-07-08 | 2 | -3/+12 |
| * | Testing VLANs with the new 8139C+ chip (which does hardware tag | Bill Paul | 2003-07-06 | 1 | -2/+2 |
| * | remove old 802.11 support; replaced by new code in sys/net80211 | Sam Leffler | 2003-06-28 | 2 | -4027/+0 |
| * | add "autoselect" mode and "auto" alias: these let you reset the | Sam Leffler | 2003-06-25 | 1 | -0/+6 |
| * | Add the hooks for netgraph and HARP to the NATM code. This allows us | Hartmut Brandt | 2003-06-23 | 1 | -3/+64 |
| * | Apply style(9) to this file. I'm going to touch large parts of this file | Hartmut Brandt | 2003-06-23 | 1 | -30/+32 |
| * | Now that most of this file is new, stylify the rest and correct the | Hartmut Brandt | 2003-06-18 | 1 | -59/+57 |
| * | Add definitions for the ioctls that are used by netgraph and harp to open | Hartmut Brandt | 2003-06-17 | 1 | -0/+18 |
| * | Fix the breakage introduced by rev. 1.43 of sys/dev/midway.c (don't commit | Hartmut Brandt | 2003-06-16 | 1 | -17/+92 |
| * | Fix a typo in an ATM media name. As this name was not use yet, no problems | Hartmut Brandt | 2003-06-02 | 1 | -1/+1 |
| * | Wrap macro in do {...} while(0); | Poul-Henning Kamp | 2003-05-31 | 1 | -1/+1 |
| * | Remove break after return. | Poul-Henning Kamp | 2003-05-31 | 1 | -3/+0 |
| * | Replace a handrolled defrag function with m_defrag. The handrolled | Mike Silbersack | 2003-05-28 | 1 | -21/+14 |
| * | Define a link layer MIB for ATM. Most fields of this MIB are needed by | Hartmut Brandt | 2003-05-05 | 2 | -0/+63 |
| * | Back out rev 1.146 -- it broke the LINT build. | David E. O'Brien | 2003-05-05 | 1 | -1/+1 |
| * | Fix some easy, global, lint warnings. In most cases, this means | Mark Murray | 2003-04-30 | 2 | -2/+2 |
| * | Add media types and options for ATM. While on most ATM cards media cannot | Hartmut Brandt | 2003-04-29 | 2 | -0/+63 |
| * | Add module data and version to the atm_subr and reference this info from the | Hartmut Brandt | 2003-04-29 | 2 | -1/+26 |
| * | o add support for multi-mode devices like 802.11 wireless cards that support | Sam Leffler | 2003-04-28 | 3 | -40/+80 |
| * | Tweak to previous commit: increment ifp->if_iqdrops if the m_copy() fails. | Archie Cobbs | 2003-04-23 | 1 | -1/+2 |
| * | Fix a case where the return value from m_copy() was not being checked | Archie Cobbs | 2003-04-23 | 1 | -6/+6 |
| * | Move MAC label storage for mbufs into m_tags from the m_pkthdr structure, | Robert Watson | 2003-04-14 | 1 | -8/+0 |
| * | No need to unlock if error detected before locking. | Jeffrey Hsu | 2003-04-13 | 1 | -2/+4 |
| * | Introduce an M_ASSERTPKTHDR() macro which performs the very common task | Dag-Erling Smørgrav | 2003-04-08 | 3 | -7/+5 |
| * | Don't use ovbcopy(); use void * instead of char *. | Dag-Erling Smørgrav | 2003-04-04 | 1 | -6/+3 |
| * | o netisr_queue() returns 1 on success and 0 on failure, | Maxim Konovalov | 2003-03-27 | 1 | -1/+1 |
| * | - Use if_broadcastaddr from struct ifnet rather than relying on | Matthew N. Dodd | 2003-03-21 | 2 | -3/+4 |
| * | Assignment could be NULL, check. | Matthew N. Dodd | 2003-03-21 | 1 | -1/+1 |
| * | Use td->td_ucred instead of td->td_proc->p_ucred. | John Baldwin | 2003-03-20 | 1 | -2/+2 |
| * | - Use IFP2AC(). | Matthew N. Dodd | 2003-03-16 | 2 | -5/+73 |
| * | Fix whitespace issues. | Matthew N. Dodd | 2003-03-15 | 1 | -20/+20 |
| * | Don't strip header from packets before input routine is called. | Matthew N. Dodd | 2003-03-15 | 2 | -6/+27 |
| * | Use if_printf(). | Matthew N. Dodd | 2003-03-15 | 2 | -4/+3 |
| * | iso88025_ifattach() changes: | Matthew N. Dodd | 2003-03-15 | 2 | -3/+22 |
| * | - Style(9) changes. | Matthew N. Dodd | 2003-03-15 | 1 | -4/+11 |
| * | Stray } forgotten by manual merging. | Matthew N. Dodd | 2003-03-15 | 1 | -1/+0 |
| * | - Remove stray ). | Matthew N. Dodd | 2003-03-15 | 1 | -2/+6 |
| * | Revert part of 1.37; use bcopy() like if_fddisubr.c. | Matthew N. Dodd | 2003-03-15 | 1 | -3/+1 |