Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-03-23 | Take vm_pmap out of struct vmspace if we are using UVM since UVM doesn't | Todd C. Miller | |
use that. Fixes size mismatch in i386 pmap.new kernel. This requires that users rebuild libkvm and friends using the new headers for ps et al to work with a new kernel. | |||
2001-03-23 | Use pool to allocate processes. | Artur Grabowski | |
2001-03-23 | Fix pagemove to work with PMAP_NEW. Mostly from NetBSD. | Artur Grabowski | |
2001-03-23 | fix a diagnostic check in pagemove | Artur Grabowski | |
2001-03-23 | check rcvif and tag for vlan_input_tag() [Same check as in vlan_input()] | Jason Wright | |
2001-03-23 | m_freem not m_free | Jason Wright | |
2001-03-23 | Careful with copying mbuf pkthdr. | Angelos D. Keromytis | |
2001-03-23 | Use M_COPY_PKTHDR(), and zero out tdbi. | Angelos D. Keromytis | |
2001-03-23 | Be paranoid when copying m_pkthdr. | Angelos D. Keromytis | |
2001-03-23 | check packet length in vlan_input() and pullup if necessary | Jason Wright | |
use m_adj instead of twiddling everything ourselves | |||
2001-03-23 | regen | Michael Shalayeff | |
2001-03-23 | a few more wavelans, from nbsd | Michael Shalayeff | |
2001-03-23 | Fix slow mbuf leak. | Angelos D. Keromytis | |
2001-03-23 | atactl SMART support; wouter@yourcreativesolutions.nl | Theo de Raadt | |
2001-03-23 | move the vlan and bridge handling around a bit, and make sure the test | Jason Wright | |
for (mcast || bcase || (unicast || for us)) is always called. | |||
2001-03-23 | protect func ptr ars w/ __P | Michael Shalayeff | |
2001-03-23 | cache alignment games | Michael Shalayeff | |
2001-03-23 | fix compiling in audio-less configs | Michael Shalayeff | |
2001-03-23 | Remove obsolete configs, add the one we (Applitron) use nowadays instead. | Niklas Hallqvist | |
2001-03-22 | pmap_physseg is kernel-only business | Michael Shalayeff | |
2001-03-22 | Remove transient config file. | Niklas Hallqvist | |
2001-03-22 | sync | Niklas Hallqvist | |
2001-03-22 | handle d/i prot traps proper | Michael Shalayeff | |
2001-03-22 | shuffle the tlb handlers a little, | Michael Shalayeff | |
make a new one for na data fault, since those w/ hpt need it. | |||
2001-03-22 | Merge in NetBSD's PMAP_NEW, still disabled | Niklas Hallqvist | |
2001-03-22 | make sure we stop stack tracing on user pc | Michael Shalayeff | |
2001-03-22 | ifdef on a proper debug define | Michael Shalayeff | |
2001-03-22 | KNF a stmt | Niklas Hallqvist | |
2001-03-22 | pastos in diagnostic strings | Niklas Hallqvist | |
2001-03-22 | Longstanding multicast bug causing eternal looping, unveiled by a recent commit | Niklas Hallqvist | |
2001-03-22 | remember vga type as passed from lower level attach | Michael Shalayeff | |
2001-03-22 | More EMODD work: | Brandon Creighton | |
- Using CVTDL and subtracting to seperate integer from fraction does not work if the integer is >32 bits long; instead, rearrange the bits into a quadword, use ASHQ to truncate, and then subtract. Also: - Set the condition codes properly; this fixes the other problem with >32-bit-integer parts in libm by letting modf subtract the fractional part (which *is* a double) to get the integral part in a double. - move the zero checks earlier in the routine - instead of 'ret' in zeroexit, use brw goback | |||
2001-03-22 | fix typo | Michael Shalayeff | |
2001-03-22 | Typo. | Angelos D. Keromytis | |
2001-03-22 | remove vlan_proto variable, replace with ETHERTYPE_8021Q | Jason Wright | |
define if_type for vlan interfaces (IFT_8021_VLAN) #ifdef DEBUG some debugging printf's protect against other uses of M_PROTO1 | |||
2001-03-22 | let bstp_transmit_tcn() handle all of the work for sending TCN messages | Jason Wright | |
and remove unnecessary structure element | |||
2001-03-22 | Sync style, typo, and comments a little closer to NetBSD. art@ ok | smart | |
2001-03-22 | contify usbdevs a little | Michael Shalayeff | |
2001-03-22 | strlcpy instead of strncpy + \0 | Jason Wright | |
2001-03-22 | new timeouts | Michael Shalayeff | |
2001-03-22 | Reformat comment. | Angelos D. Keromytis | |
2001-03-22 | Paranoid -- clear tdbi field in mbuf pkthdr. | Angelos D. Keromytis | |
2001-03-22 | Get pmap->cpus_using before the pmap structure is touched. Besides, we | Miod Vallat | |
need to do this before playing with pmap_expand(). Solves a few more pmap data corruption problems. | |||
2001-03-22 | Use pool for allocating vnodes. | Artur Grabowski | |
Even though vnodes are never freed (could be) this gives us big memory and kmem_map savings. | |||
2001-03-22 | Sigh. PR_WAITOK, not M_WAITOK | Artur Grabowski | |
2001-03-22 | Change the ffs inode allocation from using malloc to pool. | Artur Grabowski | |
Saves approx. 256k memory on a GENERIC i386 and moves 670k out of kmem_map. | |||
2001-03-21 | Ok, I'm breaking my promise. I promised to not do anything with the | Artur Grabowski | |
old vm system and I hoped that it would make people help me to switch all archs to uvm. But that didn't help. Fix pool to work with the old vm system (not optimal, ha!). | |||
2001-03-21 | in nd6_cache_lladdr(), set nd6_gctimer to ln_expire just after the state | Jun-ichiro itojun Hagino | |
transition to STALE. fixes tahi test breakage. sync with kame. | |||
2001-03-21 | Don't force sin6_port to be zero. | Angelos D. Keromytis | |
2001-03-21 | Move files from common to dev to be more like other archs | Artur Grabowski | |
(and so that tab completion on "compile" works as on other archs. :)) |