summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-08-12safenet 1141 driver from freebsd (sam at errno):Jason Wright
this is a completely hacked up version, complaints should be to me not sam =)
2003-08-12The idle loop is supposed to run with interrupts enabled, and will onlyMiod Vallat
relax the interrupt mask (i.e. spl level). However, under some unclear circumstances, it will be entered with interrupts disabled, and thus will loop forever if no process is runnable. Check the PSR and make sure that interrupts are enabled in this case. This gets rid of the random freezes, although a better fix would be preferrable...
2003-08-12Build xfs/xfs_node.cHans Insulander
2003-08-12Fix include stuff, unused variables and statics and other small things neededHans Insulander
to compile in our tree.
2003-08-12For whatever reason, cvs cannot import a file that already exists, but isHans Insulander
deleted. *sigh*
2003-08-12move verify_cksum() to ahc; krw@ ok.Federico G. Schwindt
2003-08-12fix GENERIC compilation.Federico G. Schwindt
2003-08-12MergeHans Insulander
2003-08-12Import xfs from arla-current as of 5 Aug 2003.Hans Insulander
ok deraadt@
2003-08-12add/update my copyrightNathan Binkert
2003-08-12src argument to m_copyback() can be a const; itojun@ okMichael Shalayeff
2003-08-11if we run out of space, make the dead vnode VNON. if a VBLK gets out, itTed Unangst
causes trouble later. netbsd pr22419
2003-08-11Sprinkle proper use of _C_LABEL and _ASM_LABEL in the .S files (except forMiod Vallat
the _fp.S which are too scary at the moment). This will be necessary to move to ELF in the future. Use local symbols whenever possible. Attempt to use delayed branches whenever possible. Remove stupid or straightforward comments, some hardcoded values, and a few unused variables or routines.
2003-08-11Fix DIOCCHANGEADDR, use the supplied ticket instead of 0.Daniel Hartmeier
2003-08-11Add signal number sanity checking to usl_sync_init(). This is notTodd C. Miller
strictly required since the signal routines do their own sanity checks, but this way the VT_SETMODE ioctl() gets a nice EINVAL. Potential problem pointed out by Jacques Vidrine; deraadt@ OK
2003-08-11move to 3.4-betaTheo de Raadt
2003-08-11constify voicetabMichael Shalayeff
2003-08-11constify constant targetsMichael Shalayeff
2003-08-11constify constant namesMichael Shalayeff
2003-08-11constify constant constsMichael Shalayeff
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-10Do not make NBPG visible in assym.hMiod Vallat
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-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-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-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-09Always install the installboot manual page.Miod Vallat
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-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
2003-08-08remove scsi/raid drivers not needed on laptop floppyTheo de Raadt
2003-08-08wb no longer fitsTheo de Raadt
2003-08-08Slightly clean up cpu_fork().Miod Vallat
2003-08-08let us call COMPAT_UFS deadTheo de Raadt