Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-12 | Fix all users of getsock to use FREF/FRELE properly. | Artur Grabowski | |
2002-02-12 | support 712's programmable power switch, no interrupt yet | Michael Shalayeff | |
2002-02-12 | small repairs to hpmc and toc handlers | Michael Shalayeff | |
2002-02-12 | Much to my annoyance, teach zskbd how to bark. | Jason Wright | |
2002-02-12 | leftover form dekvtop (which did the block maps too) | Michael Shalayeff | |
2002-02-11 | more cloned devices | Michael Shalayeff | |
2002-02-11 | irqs porper | Michael Shalayeff | |
2002-02-11 | remove lpa support (used for kvtop), copy a piece of pcxl fault handler into ↵ | Michael Shalayeff | |
the dirty handler to avoid excessive branching | |||
2002-02-11 | kvtop no more | Michael Shalayeff | |
2002-02-11 | extend the hackery to not use kvtop | Michael Shalayeff | |
2002-02-11 | fpu_curpcb has pa in it, use accordingly, do not use kvtop | Michael Shalayeff | |
2002-02-11 | do not use kvtop | Michael Shalayeff | |
2002-02-11 | o add __weak_alias definition. | Federico G. Schwindt | |
o empty definitions if !__GNUC__ miod@ testing and ok. | |||
2002-02-11 | only change _STRING for weak_alias; sorry miod. | Federico G. Schwindt | |
2002-02-11 | o add __weak_alias definition. | Federico G. Schwindt | |
o _STRING -> __STRING o empty definitions if !__GNUC__ miod@ testing and ok. | |||
2002-02-11 | disable fpu on csw, print fpu version on cpu line, if present | Michael Shalayeff | |
2002-02-11 | Merge pmap_bootstrap060() with pmap_bootstrap(). | Miod Vallat | |
Thanks to deraadt@ for testing on mvme177. | |||
2002-02-11 | Remove unused function prototype, from Jason Ish | Daniel Hartmeier | |
2002-02-11 | Remove ancient comment regarding memcmp(), from Jason Ish | Daniel Hartmeier | |
2002-02-11 | oops. forgot to commit this. | Artur Grabowski | |
2002-02-11 | Big fixup of fd passing. It now works, even on sparc64. | Artur Grabowski | |
Some parts from NetBSD, but with big modifications. | |||
2002-02-11 | In {send,recv}msg allow zero sized message. We can have control data. | Artur Grabowski | |
2002-02-11 | 1<<39 is horrible | Theo de Raadt | |
2002-02-10 | no; GPL_MATH_EMULATE is not "required"; nj.lee@plumtree.co.nz | Theo de Raadt | |
2002-02-10 | spelling | Theo de Raadt | |
2002-02-10 | theo doesn't like this code | Nathan Binkert | |
2002-02-10 | sys/ioctl_compat.h is needed for COMPAT_LINUX, too | Marco S Hyman | |
2002-02-10 | Match the VT8366_ISA (chip VT8233) south bridge as ATA100 | Chris Cappuccio | |
2002-02-09 | spelling, brige->bridge | Eric Jackson | |
2002-02-09 | these functions are no longer needed | Eric Jackson | |
2002-02-09 | Protect the whole sys_fnctl with one big FREF/FRELE pair. | Artur Grabowski | |
2002-02-08 | com freq is 7372800, which "normal" * 4 and is discovered by | Michael Shalayeff | |
Enrik Berkhan <Enrik.Berkhan@planb.de> . | |||
2002-02-08 | regen | Michael Shalayeff | |
2002-02-08 | a couple more hp prods | Michael Shalayeff | |
2002-02-08 | A mosquito escaped, sorry. | Miod Vallat | |
2002-02-08 | Teach some magic to the kernel so that it can decode serial console settings. | Miod Vallat | |
mickey@ said "commitski". | |||
2002-02-08 | Require a FREFd file in dofilewrite{,v}. | Artur Grabowski | |
2002-02-08 | require a FREFd fp in dofilereadv. Fix some comments. | Artur Grabowski | |
2002-02-08 | Opps. unbreak. | Artur Grabowski | |
2002-02-08 | Better tx interrupt handling; don't call bestart() from betint() unless | Jason Wright | |
we're OACTIVE and cleared at least one slot | |||
2002-02-08 | since we're checking, avoid an unnecessary write | Jason Wright | |
2002-02-08 | simplify sys_pread a bit. | Artur Grabowski | |
2002-02-08 | Better IFF_OACTIVE handling; don't bother calling qestart() unless | Jason Wright | |
we were IFF_OACTIVE and we freed at least one slot. | |||
2002-02-08 | simplify qec_put a bit | Jason Wright | |
2002-02-08 | Add a comment about an obscure behavior in dup2(2). | Artur Grabowski | |
2002-02-08 | Add a slightly redundant arg to finishdup that's the struct file * | Artur Grabowski | |
present on the 'old' descriptor. It's not really necessary because we can easily find it with 'fp = p->p_fd->fd_ofiles[old];', but this allows us to require that the fp is FREFed without violating all rules of good taste and all callers have to do fd_getfile on it anyway (to detect larval and closing files. FREF the fp in all callers. | |||
2002-02-08 | do not rely on u_int being availabel | Michael Shalayeff | |
2002-02-08 | vagfb_setcolor() needs to enter entries into the software copy of the | Jason Wright | |
palette so that it can be restored correctly. | |||
2002-02-08 | No more need for ffree. Since it's hard to use it safely, remove it. | Artur Grabowski | |
2002-02-08 | - Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't have | Artur Grabowski | |
the same semantics as NetBSD anyway, so it's good to avoid name collissions. - Always fdremove before freeing the file, not the other way around. - falloc FREFs the file. - have FILE_SET_MATURE FRELE the file (It feels like a good ortogonality to falloc FREFing the file). - Use closef as much as possible instead of ffree in error paths of falloc:ing functions. closef is much more careful with the fd and can deal with the fd being forcibly closed by dup2. Also try to avoid manually calling *fo_close when closef can do that for us (this makes some error paths mroe complicated (sys_socketpair and sys_pipe), but others become simpler (sys_open)). |