| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement the check I was talking about in the previous message already. | mlaier | 2004-11-30 | 1 | -4/+4 |
* | Assign if_broadcastaddr to NULL not 0 in if_attach(). | rwatson | 2004-11-23 | 1 | -8/+10 |
* | Move if_handoff() from an inline in if_var.h to a function to if.c | rwatson | 2004-10-30 | 1 | -0/+25 |
* | Define IFF_LOCKGIANT() and IFF_UNLOCKGIANT() macros, which conditionally | rwatson | 2004-10-19 | 1 | -2/+30 |
* | Call sbuf_finish() before sbuf_data() so as to not panic the system. | green | 2004-09-22 | 1 | -0/+1 |
* | Fix a LOR where ifconf() used copyout while holding a mutex. This LOR | brooks | 2004-09-22 | 1 | -41/+51 |
* | Log the renaming of an interface. This should make it easier to follow | brooks | 2004-09-18 | 1 | -0/+3 |
* | Re-add ifi_epoch, to struct if_data, this time replacing ifi_unused | brooks | 2004-09-08 | 1 | -0/+1 |
* | don't call f_detach if the filter has alread removed the knote.. This | jmg | 2004-09-06 | 1 | -3/+0 |
* | Back out ifi_epoch. The ABI breakage is too disruptive this close to | brooks | 2004-09-02 | 1 | -1/+0 |
* | Fix an assertion when if_down()ing a ALTQ managed interface. The lock should | mlaier | 2004-09-01 | 1 | -0/+2 |
* | Use a spare byte in struct if_data to store the structure size without | brooks | 2004-09-01 | 1 | -0/+1 |
* | Add a new variable, ifi_epoch, to struct if_data. It is set to the last | brooks | 2004-08-30 | 1 | -0/+1 |
* | When detaching an interface, don't leave an obsolete pointer to the | brooks | 2004-08-27 | 1 | -0/+1 |
* | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | jmg | 2004-08-15 | 1 | -19/+23 |
* | Do not attempt to clean up data that has not been initialized yet. | roam | 2004-08-06 | 1 | -4/+15 |
* | Add a new network interface flag, IFF_NEEDSGIANT, which will allow | rwatson | 2004-07-27 | 1 | -0/+49 |
* | Gratuitous whitespace change to un-wrap a short line. | rwatson | 2004-07-18 | 1 | -2/+1 |
* | Major overhaul of pseudo-interface cloning. Highlights include: | brooks | 2004-06-22 | 1 | -242/+2 |
* | Do the dreaded s/dev_t/struct cdev */ | phk | 2004-06-16 | 1 | -4/+4 |
* | Transform tbr_dequeue into a function pointer in order to build drivers with | mlaier | 2004-06-15 | 1 | -2/+2 |
* | Link ALTQ to the build and break with ABI for struct ifnet. Please recompile | mlaier | 2004-06-13 | 1 | -2/+19 |
* | arpcom untangling: | luigi | 2004-04-24 | 1 | -2/+2 |
* | Fix a recently introduced panic in if_detach() by delaying | luigi | 2004-04-19 | 1 | -11/+11 |
* | Make if_(un)route static in if.c as they are called from if_up/if_down only. | mlaier | 2004-04-18 | 1 | -2/+4 |
* | Use if_link instead of the alias if_list, and change a for() into | luigi | 2004-04-16 | 1 | -1/+6 |
* | Consistently use ifaddr_byindex() to access the link-level address | luigi | 2004-04-16 | 1 | -1/+1 |
* | Remove advertising clause from University of California Regent's | imp | 2004-04-07 | 1 | -4/+0 |
* | Don't allow interfaces to be renamed to the empty string. | brooks | 2004-03-13 | 1 | -2/+4 |
* | Remove if_withname. It came in with the KAME import, but never got | brooks | 2004-03-13 | 1 | -26/+0 |
* | Bring eventhandler callbacks for pf. | mlaier | 2004-02-26 | 1 | -0/+6 |
* | Device megapatch 4/6: | phk | 2004-02-21 | 1 | -0/+2 |
* | Minor beautifications related to style(9) and code consistency. | yar | 2004-02-21 | 1 | -5/+5 |
* | Improve the SIOCSIFCAP handler a bit: | yar | 2004-02-21 | 1 | -1/+5 |
* | Add the kernel side of network interface renaming support. | brooks | 2004-02-04 | 1 | -23/+56 |
* | More macro cleanup. Use the system roundup2() macro instead of making | brooks | 2004-02-02 | 1 | -3/+1 |
* | Cleanup malloc() use in if_attach(): | brooks | 2004-01-27 | 1 | -22/+20 |
* | Clean up macro usage in if_attach(): | brooks | 2004-01-27 | 1 | -2/+2 |
* | Don't panic if there are more than 255 interfaces in the system. | ru | 2004-01-23 | 1 | -1/+2 |
* | Don't truncate the interface name in ifunit(). It's now possible to query | green | 2003-12-26 | 1 | -2/+2 |
* | Replace the if_name and if_unit members of struct ifnet with new members | brooks | 2003-10-31 | 1 | -20/+30 |
* | Replace a couple printfs with if_printfs. | brooks | 2003-10-31 | 1 | -4/+3 |
* | Since dp->dom_ifattach calls malloc() with M_WAITOK, we cannot | ume | 2003-10-24 | 1 | -2/+21 |
* | Clean up whitespace, remove "register" keyword, ANSIfy. | des | 2003-10-23 | 1 | -109/+59 |
* | protect by IFNET_RLOCK. | ume | 2003-10-22 | 1 | -0/+2 |
* | - add dom_if{attach,detach} framework. | ume | 2003-10-17 | 1 | -0/+48 |
* | AF_LINK sockaddr has to be attached to ifp->if_addrlist until the | ume | 2003-10-16 | 1 | -3/+11 |
* | Locking for updates to routing table entries. Each rtentry gets a mutex | sam | 2003-10-04 | 1 | -5/+7 |
* | I don't know from where the notion that device driver should or | phk | 2003-09-28 | 1 | -1/+1 |
* | Disabling multicast on vlan interface caused kernel panic. | ume | 2003-07-19 | 1 | -0/+2 |