Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-08-11 | load file in one pass avoiding seeking the headers back and forth; miod@ ↵ | Michael Shalayeff | |
testing & ok (two months ago and then i forgot ;) | |||
2003-08-11 | better cleaning | Theo de Raadt | |
2003-08-11 | free code memory should change permissions fail | Michael Shalayeff | |
2003-08-11 | ansification and knf and protos | Theo de Raadt | |
2003-08-11 | make sure Debugger() is called only inside _both_ DDB and OSIOP_DEBUG | Michael Shalayeff | |
2003-08-11 | wax mongoose | Michael Shalayeff | |
2003-08-11 | implement CLOCK_MONOTONIC from NetBSD; ok marc@ | Kevin Lo | |
2003-08-11 | make dmesg prints closer to the rest of the drivers | Michael Shalayeff | |
2003-08-11 | make sure to not attach the card if the int cannot be established and repair ↵ | Michael Shalayeff | |
the dmesg outputs | |||
2003-08-11 | cleanup dmesg output | Michael Shalayeff | |
2003-08-11 | Saving or restoring the process' registers to/from the pcb was using | Miod Vallat | |
double load/store instructions, for speed; however, these only work if the pcb structure is also 8 bytes aligned... which is not necessarily true. In this case, the lossage was compensated by the data access exception handler, which means that for every unlucky pcb operation, the kernel was happily generating a dozen of exceptions in a row... Stop the madness and change this to regular load/store operations. | |||
2003-08-10 | Do not make NBPG visible in assym.h | Miod Vallat | |
2003-08-10 | ansi | Theo de Raadt | |
2003-08-10 | clean leftovers | Theo de Raadt | |
2003-08-10 | No need to bring <machine/psl.h> from <machine/param.h>, this adds unnecessary | Miod Vallat | |
pollution. Makes warnings in binutils compilation disappear... | |||
2003-08-10 | Define wint_t on powerpc. | Miod Vallat | |
2003-08-10 | Remove uvm_useracc(): misleading, gives a false sentiment of security, and | Miod Vallat | |
eventually not used anymore. Conforming to art@'s evil plans. | |||
2003-08-10 | Do not trust and use uvm_useracc, but rather always check copy{in,out} for | Miod Vallat | |
failure and act appropriately. | |||
2003-08-09 | New RAMDISK configuration, inspired by the mvme68k one; and the associated | Miod Vallat | |
fixes to get the kernel to compile without option DDB and without option DIAGNOSTIC. | |||
2003-08-09 | This patch remove the restriction that tables cannot be used in routing or | Cedric Berger | |
redirection rules... The advantage of using tables in redirection/routing rules is not efficiency, in fact it will run slower than straight address pools. However, this brings a lot of flexibility to PF, allowing simple scripts/daemons to add/remove addresses from redirection/routing pools easily. This implementation support all table features, including cidr blocks and negated addresses. So specifying { 10.0.0.0/29 !10.0.0.0 !10.0.0.7 } will correctly round-robin between the six addresses: .1, .2, .3, .4, .5, .6. Tables can also be combined with simple addresses, so the following rule will work as expected: "nat on foo0 -> { 1.1.1.1 <bar> }" ok henning@ mcbride@ | |||
2003-08-09 | Always install the installboot manual page. | Miod Vallat | |
2003-08-09 | need to include bpfilter.h for bpf to work (noticed by weissmanndude). put ↵ | Michael Shalayeff | |
some non-fatal printfs into ifdef debug | |||
2003-08-08 | Fix harmless address computation buglet in pmap_collect(). | Miod Vallat | |
2003-08-08 | remove unused code and a some cleanup; deraadt@ and krw@ ok. | Federico G. Schwindt | |
2003-08-08 | remove scsi/raid drivers not needed on laptop floppy | Theo de Raadt | |
2003-08-08 | wb no longer fits | Theo de Raadt | |
2003-08-08 | Slightly clean up cpu_fork(). | Miod Vallat | |
2003-08-08 | let us call COMPAT_UFS dead | Theo de Raadt | |
2003-08-08 | ansi | Theo de Raadt | |
2003-08-08 | put COPTS in CFLAGS; idea from miod | Theo de Raadt | |
2003-08-08 | ifdef some debugging crap | Jason Wright | |
2003-08-08 | first ansi | Theo de Raadt | |
2003-08-08 | no pcmcia pccom on this floppy, sorry | Theo de Raadt | |
2003-08-08 | x is probably just as random as letoh32(x), don't bother byte swapping the ↵ | Jason Wright | |
numbers from the RNG. | |||
2003-08-07 | missed one wrt intr_establish | Michael Shalayeff | |
2003-08-07 | dead proto | Michael Shalayeff | |
2003-08-07 | make all intr_establish take the same last arg for name | Michael Shalayeff | |
2003-08-07 | first allocate space on stack then copyout signal shits. add a DEBUG check ↵ | Michael Shalayeff | |
for a whacky user pc (as impossible due to the recent trap.c change) | |||
2003-08-07 | be more careful when loading trap_tmp_save and a bit better sigcode | Michael Shalayeff | |
2003-08-07 | sync | Theo de Raadt | |
2003-08-07 | remove junk vendors (might have deleted a few by accident, will re-add as ↵ | Theo de Raadt | |
needed) | |||
2003-08-07 | sync | Theo de Raadt | |
2003-08-07 | remove a bunch of junk | Theo de Raadt | |
2003-08-07 | In sendsig() and sigreturn(), use the SS_xxx flags rather than the SA_xxx | Miod Vallat | |
flags (purely cosmetic, as they have the same value). Also some minor indentation/KNF repairs. | |||
2003-08-07 | better dmesg output and do some spaces; markus@ ok | Michael Shalayeff | |
2003-08-07 | Allow nested interrupts in the openpic interrupt controller, tested by | Dale Rahn | |
brad@ and miod@ | |||
2003-08-07 | make pf_match take u_int32_t instead of u_int16_t | Henning Brauer | |
it's not only used to ,atch on ports any more but uid/gid as well, and uid_t/gid_t are u_int32_t. found by aaron@ ok cedric@ | |||
2003-08-07 | make net.inet6.ip6.redirect actually work. from kame | Jun-ichiro itojun Hagino | |
2003-08-07 | m_cat might free mbuf passed as 2nd arg. compute pkthdr.len before m_cat. | Jun-ichiro itojun Hagino | |
from kame | |||
2003-08-07 | watchdog driver for Geode SC1100 (e.g. in soekris net4801); ok mickey@ | Markus Friedl | |