| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix some easy, global, lint warnings. In most cases, this means | markm | 2003-04-30 | 1 | -1/+1 |
* | Use td->td_ucred instead of td->td_proc->p_ucred. | jhb | 2003-03-20 | 1 | -2/+2 |
* | Note that MAJOR_AUTO is now the default if d_maj is not initialized. This | phk | 2003-03-09 | 1 | -1/+0 |
* | Make nokqfilter() return the correct return value. | phk | 2003-03-03 | 1 | -1/+0 |
* | Gigacommit to improve device-driver source compatibility between | phk | 2003-03-03 | 1 | -14/+7 |
* | Make the network /dev entries use MAJOR_AUTO. | mux | 2003-02-28 | 1 | -3/+1 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -7/+7 |
* | - add support for IPX (tested with mount -t nwfs and mars_nwe), | fjoe | 2003-01-24 | 1 | -0/+2 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -7/+7 |
* | SMP locking for radix nodes. | hsu | 2002-12-24 | 1 | -0/+2 |
* | SMP locking for ifnet list. | hsu | 2002-12-22 | 1 | -0/+20 |
* | Lock up ifaddr reference counts. | hsu | 2002-12-18 | 1 | -3/+6 |
* | Back out rev 1.150; things are more complicated than this. | sam | 2002-11-15 | 1 | -1/+1 |
* | if_attach should not sleep; change malloc's M_WAITOK to M_NOWAIT | sam | 2002-11-15 | 1 | -1/+1 |
* | Add a new helper function if_printf() modeled on device_printf(). The | brooks | 2002-09-24 | 1 | -0/+14 |
* | Clean up a comment talking about C strings, which are terminated with the | jmallett | 2002-08-19 | 1 | -4/+4 |
* | Implement user-setable promiscuous mode (a new `promisc' flag for ifconfig(8)). | sobomax | 2002-08-19 | 1 | -0/+11 |
* | Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoid | sobomax | 2002-08-18 | 1 | -11/+19 |
* | Introduce support for Mandatory Access Control and extensible | rwatson | 2002-08-01 | 1 | -0/+12 |
* | Introduce support for Mandatory Access Control and extensible | rwatson | 2002-07-31 | 1 | -0/+11 |
* | Check retifma for NULL before using it. | mini | 2002-07-02 | 1 | -1/+2 |
* | Move all unit number management cloned interfaces into the cloning | brooks | 2002-05-25 | 1 | -4/+25 |
* | just merged cosmetic changes from KAME to ease sync between KAME and FreeBSD. | suz | 2002-04-19 | 1 | -1/+1 |
* | Add missing 'struct ifreq ifr;' that was forgotten in the last commit. | peter | 2002-04-10 | 1 | -0/+1 |
* | fixed a kernel crash when enabling multicast on vlan interface | suz | 2002-04-10 | 1 | -4/+9 |
* | Change callers of mtx_init() to pass in an appropriate lock type name. In | jhb | 2002-04-04 | 1 | -2/+3 |
* | Change the suser() API to take advantage of td_ucred as well as do a | jhb | 2002-04-01 | 1 | -9/+9 |
* | Make `route add -inet6 default ::1 -ifp gif0' work actually. | ume | 2002-04-01 | 1 | -5/+1 |
* | Remove __P. | alfred | 2002-03-19 | 1 | -1/+1 |
* | Simplify the interface cloning framework by handling unit | mux | 2002-03-11 | 1 | -4/+59 |
* | Use revoke_and_destroy_dev() instead of destroy_dev() when removing /dev/net | green | 2002-03-05 | 1 | -1/+1 |
* | Change the network interface cloning API so the destroy function returns | brooks | 2002-03-04 | 1 | -2/+1 |
* | Simple p_ucred -> td_ucred changes to start using the per-thread ucred | jhb | 2002-02-27 | 1 | -2/+2 |
* | Fix a warning by pulling prototype for arp_ifinit() into scope. | peter | 2002-02-26 | 1 | -1/+4 |
* | When the local link address is changed, send out gratuitous ARPs | luigi | 2002-02-18 | 1 | -0/+11 |
* | Introduce an interface announcement message for the routing | ru | 2002-01-18 | 1 | -0/+6 |
* | Add a SIOCGIFINDEX ioctl, which returns the index of a named interface. | jlemon | 2001-10-17 | 1 | -0/+4 |
* | Cleanup ifunit(), so it uses the dev_named() function to map an interface | jlemon | 2001-10-17 | 1 | -29/+11 |
* | Pull post-4.4BSD change to sys/net/route.c from BSD/OS 4.2. | ru | 2001-10-17 | 1 | -4/+4 |
* | Revision 1.13 corresponded to CSRG revision 8.4. | ru | 2001-10-17 | 1 | -1/+1 |
* | if_index is the highest interface index in the system, not the next | fenner | 2001-10-17 | 1 | -3/+3 |
* | bring in ARP support for variable length link level addresses | fjoe | 2001-10-14 | 1 | -0/+1 |
* | Fix the ``WARNING: Driver mistake: repeat make_dev'', caused by using | jlemon | 2001-10-11 | 1 | -2/+3 |
* | Move device nodes into a /dev/net/ directory, to avoid conflict with | jlemon | 2001-10-11 | 1 | -8/+61 |
* | Add ability to attach knotes to network devices. | jlemon | 2001-09-29 | 1 | -1/+73 |
* | Introduce network device nodes. Network devices will now automatically | jlemon | 2001-09-29 | 1 | -63/+157 |
* | Add two fields to the ifnet structure indicating what extra capabilities | jlemon | 2001-09-18 | 1 | -0/+14 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -12/+12 |
* | Fix another shortcircuit return() statement that I missed. | jlemon | 2001-09-07 | 1 | -1/+1 |
* | Fix sense of comparison in space test. Also eliminate a compile | jlemon | 2001-09-07 | 1 | -8/+8 |