Convert to critical sections. No need to protect the interupt from racing
[dragonfly.git] / sys /
2005-06-09 Joerg SonnenbergerConvert to critical sections. No need to protect the...
2005-06-09 Joerg SonnenbergerConvert to critical sections, move timer reset into...
2005-06-09 Joerg SonnenbergerUse M_WAITOK for contigmalloc now that the attach path...
2005-06-09 Joerg SonnenbergerDon't bzero the softc, it is already zero.
2005-06-09 Eirik NygaardReplace the hand rolled linked list with a SLIST.
2005-06-09 Joerg SonnenbergerUse ether_crc32_be.
2005-06-09 Joerg SonnenbergerUse PCI helper functions instead of hand-rolling them...
2005-06-09 Joerg Sonnenbergerdevice_printf / if_printf and some minor nits.
2005-06-09 Jeffrey HsuDeprecate MCLGET() in favor of m_getl() in order to...
2005-06-09 Matthew DillonFix a bug in the mbstats accounting. m_mbufs was being...
2005-06-09 Jeffrey HsuAlso preserve all the non-copied flags in the target...
2005-06-09 Joerg SonnenbergerFix some bugs in the last commit. We have to call ether...
2005-06-09 Jeffrey HsuPreserve the target M_EXT_CLUSTER flag when duplicating...
2005-06-09 Matthew DillonAdd a missing lwkt_reltoken() in the NULL return path...
2005-06-09 Jeffrey HsuThe header type of a mbuf doesn't change when appended...
2005-06-09 Jeffrey HsuA packet header without any packet tags is still a...
2005-06-08 Jeffrey HsuOnly duplicate packet headers into mbuf packet headers.
2005-06-08 Jeffrey HsuGet an mbuf packet header to begin with instead of...
2005-06-08 Jeffrey HsuOnly allow packet headers to be copied into a packet...
2005-06-08 Jeffrey HsuShould have allocated a mbuf packet header to begin...
2005-06-08 Jeffrey HsuAllocate the right type of mbuf to begin with rather...
2005-06-08 Jeffrey HsuConvert to use m_getl() in order to take advantage...
2005-06-08 Matthew DillonRollup mbuf/objcache fixes.
2005-06-08 Matthew DillonHandle the case where the version file might be empty...
2005-06-08 Matthew DillonTemporary hack to fix interrupt race when decrementing...
2005-06-08 Joerg SonnenbergerReorder initialisation to make protection unnecessary.
2005-06-08 Joerg SonnenbergerFix detach order: We have to unhook the interrupt first...
2005-06-08 Matthew DillonReorder code in m_chtype() to properly decrement the...
2005-06-08 Max OkumotoRemove spl*() in src/sys/dev/serial/{cy,rc,rp,si,sio...
2005-06-07 Jeffrey HsuRe-implement the mbuf allocator using the object cache.
2005-06-07 Jeffrey HsuGeneric cache of pre-initialized objects. It uses...
2005-06-07 Jeffrey HsuPrefer the clearer m_getc() API over m_getm().
2005-06-07 YONETANI Tomokazuremove an unused struct
2005-06-07 YONETANI TomokazuReplace spl*() with critical sections.
2005-06-06 Max OkumotoRemove spl*() in src/sys/dev/netif/wi
2005-06-06 Max OkumotoRemove spl*() in src/sys/dev/netif/{ste,ti,tl,tx,txp...
2005-06-06 Simon Schubertconvert spl* to critical sections
2005-06-06 Simon SchubertAdd entry for disk/mpt, "LSI '909 FC adapters"
2005-06-06 Simon Schubertremove bs, a pc98-only driver
2005-06-06 Simon Schubertremove ct, a pc98-only driver
2005-06-06 Jeffrey HsuDeprecate MCLGET() in favor of m_getcl() or m_getl...
2005-06-06 Eirik NygaardMore spl_* removal from dev/disk/, replacing them with...
2005-06-06 Joerg SonnenbergerConvert splimp to criticial sections for now. Cleanup...
2005-06-06 Joerg SonnenbergerLet the system deal with device shutdown, don't do...
2005-06-06 Joerg SonnenbergerUse WAITOK allocation, fix some arguments and remove...
2005-06-06 Joerg SonnenbergerAlways hook the interrupt up last, we don't have to...
2005-06-06 Joerg SonnenbergerReplace splimp with critical sections for now. Fix...
2005-06-06 Matthew DillonGet rid of an unused variable due to the last commit.
2005-06-06 Matthew DillonAdd some missing #include's from the last commit.
2005-06-06 Joerg SonnenbergerRemove splimp in xl_attach, the interrupt is created...
2005-06-06 David RhodusReplace spl with critical sections.
2005-06-06 Matthew DillonRemove spl*() calls from kern, replacing them with...
2005-06-06 Gregory Neil ShapiroMerge from vendor branch SENDMAIL:
2005-06-05 Simon SchubertMerge from vendor branch GCC:
2005-06-05 Joerg SonnenbergerMake call to arc_ioctl the default case.
2005-06-05 Joerg SonnenbergerMerge the pointer to the link-layer address into ifnet...
2005-06-05 Simon Schubertunbreak world: only include sys/thread2.h in kernel...
2005-06-05 Joerg SonnenbergerAdd f_owner (user who mounted the filesystem), f_type...
2005-06-05 Jeroen Ruigrok/asmodaiAdd include file protection wrapper.
2005-06-05 Joerg SonnenbergerInstead of using ifnet_addrs and following ifa_ifp...
2005-06-04 Joerg SonnenbergerInstead of checking for ifnet_addrs[ifp->index - 1...
2005-06-04 Simon Schubertconvert spl*() to critical sections.
2005-06-04 Matthew DillonThe acpi module was failing to load due to exposed...
2005-06-03 Matthew DillonReplace cpu_mb1() and cpu_mb2() with cpu_mfence(),...
2005-06-03 Joerg SonnenbergerAnother instance of IF_LLSOCKADDR.
2005-06-03 Joerg SonnenbergerAdd a new macro IF_LLSOCKADDR which maps a ifnet pointe...
2005-06-03 Joerg SonnenbergerExpand itjc_bus_setup, it declares variables.
2005-06-03 Joerg SonnenbergerRename label to not collidate with local variable....
2005-06-03 Joerg SonnenbergerInclude sys/thread2.h to unbreak build.
2005-06-03 Joerg SonnenbergerAdd missing parameter.
2005-06-03 Matthew Dillonvm_contig_pg_free() must busy the page before freeing...
2005-06-03 Joerg Sonnenbergerreorder declarations
2005-06-03 Matthew DillonAugment the panic when attempting to switch from a...
2005-06-03 Joerg SonnenbergerUse IF_DRAIN.
2005-06-03 Matthew DillonAdd a sysctl, debug.use_malloc_pattern, that explicitly...
2005-06-03 Sascha WildnerRemove spl*() in disk/{ata,buslogic,ccd} and replace...
2005-06-03 Joerg SonnenbergerDon't commit half of a change. Prefix parameter names...
2005-06-03 Matthew Dilloncpu_mb2() needs to load %eax with $0 before running...
2005-06-03 Joerg SonnenbergerDon't name arguments in prototypes. Nuke __STDC__ condi...
2005-06-03 Eirik NygaardRemove *spl() from netinet6 replacing them with critica...
2005-06-03 Sascha WildnerRemove spl*() in net/{altq,bpf.c,bridge,dummynet,ef...
2005-06-03 Sascha WildnerRemove spl*() in net/{altq,bpf.c,bridge,dummynet,ef...
2005-06-03 Matthew DillonRemove spl*() calls from i386, replacing them with...
2005-06-03 Eirik NygaardRemove *spl() from dev/disk/{advansys,aha,ahb,aic7xxx...
2005-06-03 Matthew DillonRemove spl*() calls from net/i4b, replacing them with...
2005-06-03 Jeroen Ruigrok/asmodaiAdd first stab at a statvfs.h.
2005-06-03 Jeroen Ruigrok/asmodaiAdd id_t, a general identifier type, per IEEE Std 1003...
2005-06-03 Jeroen Ruigrok/asmodaiAdd blkcnt_t and blksize_t per IEEE Std 1003.1, 2004...
2005-06-03 Jeroen Ruigrok/asmodaiAdd fsblkcnt_t and fsfilcnt_t.
2005-06-03 Hiten PandyaCovert netproto/ipsec into using critical sections...
2005-06-02 Matthew DillonRemove spl*() calls from netinet, replacing them with...
2005-06-02 Hiten PandyaCorrect typo in comment for vshiftl().
2005-06-02 Matthew DillonRemove spl*() calls from the netproto/atm driver, repla...
2005-06-02 Sascha WildnerRemove spl*() calls in netgraph and replace them with...
2005-06-02 Matthew DillonAfter some thought, replace the splhigh()/spl0() combin...
2005-06-02 Matthew DillonFix a warning by conditionalizing a forward declaration.
2005-06-02 Matthew DillonRemove variable names from procedure declarations so...
2005-06-02 Matthew DillonConditionalize thread2.h so /usr/src/usr.bin/fstat...
2005-06-02 Matthew DillonRemove spl*() calls from the crypto device driver,...
2005-06-02 Matthew DillonRemove spl*() calls from the atm code, replacing them...
next