Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-02 | I've been guaranteed that guaranteed is better than guarenteed. | Miod Vallat | |
2002-12-25 | Turn xxUNIT, xxPARt, xxLABELDEV macro names into uppercase. | Miod Vallat | |
2002-12-25 | Get prototypes from *dev_decl() macros rather than running our own. | Miod Vallat | |
2002-12-25 | Do not force DEBUG to be defined here. hp300 is already slow enough. | Miod Vallat | |
2002-12-10 | interupt->interrupt | Miod Vallat | |
2002-12-09 | From Andrushock, s/sucess/success/g | Todd C. Miller | |
2002-12-06 | unkown; torh@bogus.net | Theo de Raadt | |
2002-11-29 | inconsistant spelling; torh@bogus.net | Theo de Raadt | |
2002-10-29 | Since memory deallocation can't fail, remove the error return from | Artur Grabowski | |
uvm_unmap, uvm_deallocate and a few other functions. Simplifies some code and reduces diff to the UBC branch. | |||
2002-07-10 | 'sez' is not an english word; ok deraadt@ | Jason Peel | |
2002-06-09 | convert sleep() calls to tsleep(). | Miod Vallat | |
2002-06-09 | fix the use of "cuz" in the tree; these are all in comments | Jason Peel | |
noticed by aaron@, recommended by deraadt@ | |||
2002-05-30 | protect biodone with splbio. | Artur Grabowski | |
miod@ ok. | |||
2002-05-23 | remove the defines for iodone -> biodone and iowait -> biowait. | Artur Grabowski | |
Use the correct functions everywhere instead. | |||
2002-03-14 | Final __P removal plus some cosmetic fixups | Todd C. Miller | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-02-15 | Don't cast nonexistent return value from splx to (void). ok art@ | Thomas Nordin | |
2001-12-19 | UBC was a disaster. It worked very good when it worked, but on some | Artur Grabowski | |
machines or some configurations or in some phase of the moon (we actually don't know when or why) files disappeared. Since we've not been able to track down the problem in two weeks intense debugging and we need -current to be stable, back out everything to a state it had before UBC. We apologise for the inconvenience. | |||
2001-11-28 | Sync in more uvm changes from NetBSD. | Artur Grabowski | |
This time we're getting rid of KERN_* and VM_PAGER_* error codes and use errnos instead. | |||
2001-11-25 | Typos. | Miod Vallat | |
2001-11-06 | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. | Miod Vallat | |
(Look ma, I might have broken the tree) | |||
2001-11-04 | hp300spu.h information not needed anymore. | Miod Vallat | |
2001-11-01 | Change d_mmap in struct cdevsw from: | Artur Grabowski | |
int (*d_mmap) __P((dev_t, int, int)); to: paddr_t (*d_mmap) __P((dev_t, off_t, int)); This allows us to mmap devices past 4GB offsets. | |||
2001-09-23 | document some registers; copied from comreg.h | Todd C. Miller | |
2001-09-23 | For serial console, drop into ddb on <break> if ddb.console is nonzero | Todd C. Miller | |
2001-09-20 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok | |||
2001-09-11 | Don't include <vm/vm_kern.h> if you don't need foo_map. | Miod Vallat | |
2001-08-26 | Nuke annoying defopt, by popular demand. Plus you get two typos fixed | Miod Vallat | |
for free. | |||
2001-08-12 | this does not seem to require none of the vm headers even and compiles ok | Michael Shalayeff | |
2001-08-11 | redundant includes. | Artur Grabowski | |
2001-06-27 | recieve -> receive | Nathan Binkert | |
2001-06-27 | no more old VM | Artur Grabowski | |
2001-06-25 | cold is in systm now | Michael Shalayeff | |
2001-05-31 | Initialize b_dep if we malloc our own struct buf. | Artur Grabowski | |
2001-05-31 | Initialize bp->b_dep if we malloc our own struct buf. | Artur Grabowski | |
2001-05-11 | Kill remaining vm_offset_t and vm_size_t; NetBSD used as a guide | Todd C. Miller | |
2001-05-11 | unify | Theo de Raadt | |
2001-05-10 | Don't play with MCR_IEN, it breaks serial console input on the 425e. | Todd C. Miller | |
If it turns out that this causes problems on other 4xx models this can be added back for the non-425e models. | |||
2001-05-10 | Add missing #include <sys/resourcevar.h> so these can compile. | Todd C. Miller | |
2001-05-10 | In apciparam() in the ospeed == 0 case, actually set the cfcr to the new | Todd C. Miller | |
value; bad@netbsd.org | |||
2001-05-10 | Skip "serial 1" on non-425e models. It's mapped to DCA at 9 on every | Todd C. Miller | |
other 4xx model, and the "not configured" could be pretty annoying. This means we can nuke apcicheckdca() and just key off being a 425e. Also, ia->ia_addr is a physical address, not a kernel virtual address; thorpej@netbsd.org | |||
2001-05-10 | Some locking protocol fixes and better enforcement of wiring limits. | Artur Grabowski | |
From NetBSD. | |||
2001-05-10 | When acpi is used as the console, set cn_tab appropriately so that a | Todd C. Miller | |
serial console on the 425e gets attached properly. The hp300 port should really be changed such that drivers don't touch cn_tab themselves but this turns out to be a bit tricky so I'm going to punt on that for now. | |||
2001-05-10 | Move the timeout_set() call up a bit | Todd C. Miller | |
2001-05-04 | Substantial update from NetBSD, most notably gives us UVM support; millert@ ok | Aaron Campbell | |
2001-05-01 | convert to new timeouts | Todd C. Miller | |
2001-01-31 | based on art's sparc patch: | Jason Wright | |
mmap should return -1 on failure, not EOPNOTSUPP. As it was now, an mmap of /dev/mem always returned page 45. | |||
2000-11-10 | seperate -> separate, okay aaron@ | Niels Provos | |
2000-07-06 | Change splsoftclock() call to spllowersoftclock() to conform with other | Hakan Olsson | |
code and keep old behaviour. (art@ ok) | |||
1999-09-18 | Fix device existance check. | Jason Downs | |