summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2018-02-28Remove an obsolete assertion too (fix build)ozaki-r
2018-02-28Sweep obsolete BRIDGE_MPSAFE (it's always on now)ozaki-r
2018-02-27Remove the Econet code. It was part of acorn26, which was removed amaxv
2018-02-16Currently, it is not necessary to install rss_config.h. Pointed out by msaito...knakahara
2018-02-16Introduce very simple Receive Side Scaling (RSS) utility.knakahara
2018-02-14Remove IFF_STATICARP, we don't support this, and the code is useless in itsmaxv
2018-02-13Make the arpresolve branch more readable, fix typo, fix XXX (which Imaxv
2018-02-13Remove KERNEL_LOCK around the MPLS code. It's not needed, since we're onlymaxv
2018-02-13Define ar_* as inlined functions, not as macros. Makes it easier tomaxv
2018-02-12Use m_freem instead of m_free. Otherwise we're leaking the next mbufs inmaxv
2018-02-12Fix typo, and add a comment about MPLS.maxv
2018-02-08Remove ovbcopy. It's long dead; only sparc has a reference to a functionmaxv
2018-02-08Typos.dholland
2018-02-07ppprcvframe() has indentation issues.mrg
2018-02-06Fix breaking character limit. Pointed out by ozaki-r@n.o, thanks.knakahara
2018-01-31apply a little more #ifdef INET/INET6. fixes !INET6 builds.mrg
2018-01-30Prevent rt_free_global.wk from being enqueued to workqueue doublyozaki-r
2018-01-30Destroy ifq_lock at the end of if_detachozaki-r
2018-01-26A few fixes:maxv
2018-01-26Use MH_ALIGN instead, ok knakahara@.maxv
2018-01-26Don't call if_attach, do if_initialize+if_register, otherwise when anmaxv
2018-01-26Several fixes in L2TP:maxv
2018-01-25stylemaxv
2018-01-25Add locking.christos
2018-01-25Fix another deadlockozaki-r
2018-01-25Abandon unnecessary softintozaki-r
2018-01-23Fix a return value of rt_update_prepareozaki-r
2018-01-19Several changes:maxv
2018-01-19Fix inverted logic.nakayama
2018-01-19Suppress noisy debugging outputsozaki-r
2018-01-19Release rt_so_mtx on updating a rtentry to avoid a deadlock with route_introzaki-r
2018-01-16Fix agr(4) module build. Reviewed by pgoyette@n.o, thanks.knakahara
2018-01-16stylemaxv
2018-01-15Mostly style, and add a bunch of KASSERTs.maxv
2018-01-15Style, and fix a bug in the AppleTalk path: we're doingmaxv
2018-01-15Fix two bugs in altq_etherclassify. When scanning the mbuf chain we needmaxv
2018-01-15Add a KASSERT in IFQ_CLASSIFY, we really need to make sure the givenmaxv
2018-01-15Fix a bug in the VLAN path: there's an inverted logic, the mbuf needs tomaxv
2018-01-15Style, make the code more readable, and add a KASSERT (we expect the mbufmaxv
2018-01-15Mmh, fix a weird mistake: the guy who added #if NVLAN > 0 forgot tomaxv
2018-01-15Several fixes:maxv
2018-01-15If the bridge is not running, don't call bridge_stop. Otherwise themaxv
2018-01-15Fix spl leak.maxv
2018-01-15Style, improve comment, and add KASSERTs on the assumptions.maxv
2018-01-15Fix the net.ether.multicast sysctl. If there is no multicast addressmaxv
2018-01-15Fix PR kern/52920. Pointed out by David Binderman, thanks.knakahara
2018-01-14If cnt == 0, don't kmem_alloc(0). Found by Mootja.maxv
2018-01-10add ipsec(4) interface, which is used for route-based VPN.knakahara
2018-01-10Check MP-safety in ifa_insert and ifa_remove only for IFEF_MPSAFE driversozaki-r
2018-01-09Use a queue of deferred entries to delete routes instead of a fixed stackchristos