summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-08-11constify constant targetsMichael Shalayeff
2003-08-11constify constant namesMichael Shalayeff
2003-08-11constify constant constsMichael Shalayeff
2003-08-11I can not reproduce the ksh -O1 issues anymore on mvme88k with the latestMiod Vallat
snapshot, so stop disabling optimization.
2003-08-11during probe there is no need to map the whole hpa space. only rom is ↵Michael Shalayeff
needed. also do not map too much of rom
2003-08-11a few strict protosMichael Shalayeff
2003-08-11load 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-11better cleaningTheo de Raadt
2003-08-11free code memory should change permissions failMichael Shalayeff
2003-08-11ansification and knf and protosTheo de Raadt
2003-08-11make sure Debugger() is called only inside _both_ DDB and OSIOP_DEBUGMichael Shalayeff
2003-08-11wax mongooseMichael Shalayeff
2003-08-11implement CLOCK_MONOTONIC from NetBSD; ok marc@Kevin Lo
2003-08-11make dmesg prints closer to the rest of the driversMichael Shalayeff
2003-08-11make sure to not attach the card if the int cannot be established and repair ↵Michael Shalayeff
the dmesg outputs
2003-08-11cleanup dmesg outputMichael Shalayeff
2003-08-11Saving or restoring the process' registers to/from the pcb was usingMiod 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-10typo; from Dmitry Bogdan <dsb@uvm.poi.dvo.ru>Michael Shalayeff
2003-08-10Do not make NBPG visible in assym.hMiod Vallat
2003-08-10Do not add an extra newline at the end if the last line of the inputOtto Moerbeek
file contains no newline and the diff does not touch the last line. Contributions from millert@. ok millert@ tedu@
2003-08-10A long-needed notes update for mvme88k...Miod Vallat
2003-08-10link File::Basename to basename, dirname, fileparseMarc Espie
ok millert@ `as long as basename(3) still points to the C routine'
2003-08-10Warn if the diff is a context or unified diff and the contextOtto Moerbeek
is empty. In this case, a previously applied patch cannot be detected. ok millert@ tedu@
2003-08-10Skip t12 for ed(1) style patches, including cleanup.Otto Moerbeek
ok millert@
2003-08-10New regression case and some minor Makefile cleanup.Otto Moerbeek
ok millert@
2003-08-10ansiTheo de Raadt
2003-08-10clean leftoversTheo de Raadt
2003-08-10No need to bring <machine/psl.h> from <machine/param.h>, this adds unnecessaryMiod Vallat
pollution. Makes warnings in binutils compilation disappear...
2003-08-10syncTheo de Raadt
2003-08-10sprintf -> snprintf, okay millert@.Marc Espie
2003-08-10Define wint_t on powerpc.Miod Vallat
2003-08-10Remove uvm_useracc(): misleading, gives a false sentiment of security, andMiod Vallat
eventually not used anymore. Conforming to art@'s evil plans.
2003-08-10Do not trust and use uvm_useracc, but rather always check copy{in,out} forMiod Vallat
failure and act appropriately.
2003-08-09Fix off by one in strlcpy() check; Patrick LatifiTodd C. Miller
2003-08-09Perl hints to use -O1 on mvme88k now; ok millert@Miod Vallat
2003-08-09New RAMDISK configuration, inspired by the mvme68k one; and the associatedMiod Vallat
fixes to get the kernel to compile without option DDB and without option DIAGNOSTIC.
2003-08-09make release bugletMiod Vallat
2003-08-09syncCedric Berger
2003-08-09This patch remove the restriction that tables cannot be used in routing orCedric 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-09missing #includes in the code exampleDaniel Hartmeier
2003-08-09mvme88k set updates, again. Should be almost perfect now!Miod Vallat
2003-08-09Always install the installboot manual page.Miod Vallat
2003-08-09update and install USD01 (begin) and USD17 (msmacros);Jason McIntyre
ok mickey@
2003-08-09new sentence, new line + small cleanup;Jason McIntyre
ok ho@
2003-08-09need to include bpfilter.h for bpf to work (noticed by weissmanndude). put ↵Michael Shalayeff
some non-fatal printfs into ifdef debug
2003-08-09fix for mcount call to allow .text sizes larger than 512k; epsie@ okMichael Shalayeff
2003-08-08Remove a buffer which got added during the safe stringification, but leftMiod Vallat
unused. ok tedu@
2003-08-08Enable the first level of compiler optimizations on mvme88k by default,Miod Vallat
now that is getting stable. ksh(1) still has to be builh at -O0 for now, though. ok deraadt@
2003-08-08Fix harmless address computation buglet in pmap_collect().Miod Vallat
2003-08-08remove unused code and a some cleanup; deraadt@ and krw@ ok.Federico G. Schwindt