| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Enhance a panic string to contain more useful debugging information. | bz | 2010-02-20 | 1 | -1/+2 |
* | Revised revision 199201 (add interface description capability as inspired | delphij | 2010-01-27 | 1 | -0/+70 |
* | While flushing the multicast filter of an interface, do not zero the relevant | syrinx | 2010-01-24 | 1 | -2/+19 |
* | Declare a new EVENTHANDLER called iflladdr_event which signals that the L2 | thompsa | 2010-01-18 | 1 | -0/+1 |
* | The devices that supported EVFILT_NETDEV kqueue filters were removed in | brooks | 2009-12-31 | 1 | -9/+2 |
* | Change vlan interfaces to cope more usefully with the parent interface being | jhb | 2009-12-29 | 1 | -0/+10 |
* | Remove if_timer/if_watchdog now that they are no longer used. The space | jhb | 2009-11-30 | 1 | -66/+0 |
* | Revert revision 199201 for now as it has introduced a kernel vulnerability | delphij | 2009-11-12 | 1 | -41/+0 |
* | Add interface description capability as inspired by OpenBSD. | delphij | 2009-11-11 | 1 | -0/+41 |
* | A wrong variable is used when setting up the interface | qingli | 2009-09-20 | 1 | -2/+2 |
* | Self pointing routes are installed for configured interface addresses | qingli | 2009-09-15 | 1 | -0/+53 |
* | Add IFNET_HOLD reserved pointer value for the ifindex ifnet array, | rwatson | 2009-08-26 | 1 | -13/+39 |
* | Break out allocation of new ifindex values from if_alloc() and if_vmove(), | rwatson | 2009-08-25 | 1 | -34/+42 |
* | Make if_grow static -- it's not used outside of if.c, and with the | rwatson | 2009-08-24 | 1 | -1/+2 |
* | When moving ifnets from one vnet to another, and the ifnet | zec | 2009-08-24 | 1 | -0/+15 |
* | Rework global locks for interface list and index management, correcting | rwatson | 2009-08-23 | 1 | -36/+58 |
* | Appease VNET_DEBUG - in if_vmove we temporarily switch i.e. | zec | 2009-08-14 | 1 | -1/+1 |
* | Merge the remainder of kern_vimage.c and vimage.h into vnet.c and | rwatson | 2009-08-01 | 1 | -1/+0 |
* | Make the in-kernel logic for the SIOCSIFVNET, SIOCSIFRVNET ioctls | bz | 2009-07-26 | 1 | -2/+90 |
* | Introduce and use a sysinit-based initialization scheme for virtual | rwatson | 2009-07-23 | 1 | -35/+17 |
* | Normalize field naming for struct vnet, fix two debugging printfs that | rwatson | 2009-07-19 | 1 | -2/+2 |
* | Reimplement and/or implement vnet list locking by replacing a mostly | rwatson | 2009-07-19 | 1 | -2/+2 |
* | Remove the interim vimage containers, struct vimage and struct procg, | jamie | 2009-07-17 | 1 | -15/+2 |
* | Remove unused VNET_SET() and related macros; only VNET_GET() is | rwatson | 2009-07-16 | 1 | -2/+2 |
* | Build on Jeff Roberson's linker-set based dynamic per-CPU allocator | rwatson | 2009-07-14 | 1 | -69/+17 |
* | Remove support for the /dev/net/* per-interface devices. They serve | brooks | 2009-06-29 | 1 | -172/+5 |
* | Remove unnecessary include of kdb.h that snuck in during ifaddr refcount | rwatson | 2009-06-27 | 1 | -1/+0 |
* | Define four wrapper functions for interface address locking, | rwatson | 2009-06-26 | 1 | -0/+34 |
* | In if_setlladdr(), use IF_ADDR_LOCK() and ifaddr references to improve | rwatson | 2009-06-24 | 1 | -3/+15 |
* | Modify most routines returning 'struct ifaddr *' to return references | rwatson | 2009-06-23 | 1 | -11/+32 |
* | Remove duplicate #include <net/route.h> from the middle of the file. | bz | 2009-06-23 | 1 | -1/+0 |
* | Move virtualization of routing related variables into their own | bz | 2009-06-22 | 1 | -3/+0 |
* | Add a new function, ifa_ifwithaddr_check(), which rather than returning | rwatson | 2009-06-22 | 1 | -2/+16 |
* | After the update to fxp(4) in r194573 we should no longer need | bz | 2009-06-22 | 1 | -1/+0 |
* | Clean up common ifaddr management: | rwatson | 2009-06-21 | 1 | -6/+33 |
* | Switch cmd argument to u_long. This matches what if_ethersubr.c does and | rdivacky | 2009-06-21 | 1 | -1/+1 |
* | r193336 moved ifq_detach to if_free which broke if_alloc followed | sam | 2009-06-15 | 1 | -5/+4 |
* | Manage vnets via the jail system. If a jail is given the boolean | jamie | 2009-06-15 | 1 | -2/+16 |
* | carp(4) allows people to share a set of IP addresses and can only | bz | 2009-06-11 | 1 | -0/+8 |
* | Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. Use | kib | 2009-06-10 | 1 | -2/+2 |
* | After r193232 rt_tables in vnet.h are no longer indirectly dependent on | bz | 2009-06-08 | 1 | -1/+0 |
* | Introduce an infrastructure for dismantling vnet instances. | zec | 2009-06-08 | 1 | -1/+25 |
* | Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERIC | rwatson | 2009-06-05 | 1 | -1/+0 |
* | move ifq_detach from if_detach to if_free; this permits callers to | sam | 2009-06-02 | 1 | -3/+1 |
* | Convert the two dimensional array to be malloced and introduce | bz | 2009-06-01 | 1 | -1/+2 |
* | Introduce an interm userland-kernel API for creating vnets and | zec | 2009-05-31 | 1 | -0/+15 |
* | Set ifp->if_afdata_initialized to 0 while holding IF_AFDATA_LOCK on ifp, | zec | 2009-05-22 | 1 | -1/+1 |
* | Introduce the if_vmove() function, which will be used in the future | zec | 2009-05-22 | 1 | -80/+175 |
* | Change the curvnet variable from a global const struct vnet *, | zec | 2009-05-05 | 1 | -14/+28 |
* | Permit buiding kernels with options VIMAGE, restricted to only a single | zec | 2009-04-30 | 1 | -1/+9 |