summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-08-14m_copyback()'s 4th arg is const void *, nuke (caddr_t) casts.Jason Wright
2003-08-14correct length maskJason Wright
2003-08-14GENERIC is now safe(4)Jason Wright
2003-08-14regen.. again. sorry.Federico G. Schwindt
2003-08-14unbust my previous commit.Federico G. Schwindt
2003-08-14add more delays during initJason Wright
2003-08-14regen.Federico G. Schwindt
2003-08-14add more syscalls. implement exit_group (which is actually an alias forFederico G. Schwindt
sys_exit), needed for newer glibc's binaries. from marius aamodt eriksen <marius at monkey dot org>
2003-08-14partial proto repairsTheo de Raadt
2003-08-14in some fs (ie. procfs), readdir won't return a cookie, so calculateFederico G. Schwindt
it based on the offset and reclen. with this, a emulated ls binary (ie. linux) correctly list the files in such filesystems. also plug some memory leak and remove a unneeded panic. adapted from FreeBSD. henning@ tedu@ ok. some other people ok'ed this in the past as well.
2003-08-14remove magic swapping constants in favor of the #defines I added a fewJason Wright
minutes ago (could have sworn I hit ^X^S).
2003-08-14- remove some uneeded junk (mainly leftovers from ubsec cut/paste)Jason Wright
- fix interrupt printing - make shared structure entries volatile to ensure ordering - swap the key, iv, and mackey arguments appropriately - treat particle descriptor as two 32 elements (necessary for swabbing) - set the endian control byte correctly and flip off swabbing on the packet data (now works on macppc)
2003-08-14kill unneeded caddr_t casts for *_copybackJason Wright
2003-08-14mirror change in mbufs: cuio_copyback's 4th arg is now const void *Jason Wright
2003-08-14add uhci based on suggestion from loki at niteshade dot netJason Wright
2003-08-14constify vfsops; tedu@ okMichael Shalayeff
2003-08-14add itimerspec data structure, defined by POSIX 1003.1b. ok marc@Kevin Lo
2003-08-13Always force a pipeline flush after a PSR change, not before. How couldMiod Vallat
this have ever worked?
2003-08-13remove some copy and waste. from marius@monkey.orgTed Unangst
2003-08-12add safe(4). Works well enough for testing at least.Jason Wright
2003-08-12- Don't need the bus_dma callback cruft as we have everything necessary in theJason Wright
map structure. - pull in some of sam's debugging stuff so that #define SAFE_DEBUG will compile - set the dst <- src when uio && nicealign && uniform
2003-08-12fix after mickey breakage; reported by grange@.Federico G. Schwindt
2003-08-12cleaning: remove sc_flags and FBSDID junkJason Wright
also: let safe_uniform() check all of the elements
2003-08-12regenMichael Shalayeff
2003-08-12constify sequencer script; krw@ okMichael Shalayeff
2003-08-12add acphyMichael Shalayeff
2003-08-12regenMichael Shalayeff
2003-08-12altima 101/101L phy from netbsd via freebsd; hugh@ testingMichael Shalayeff
2003-08-12syncAlexander Yurchenko
2003-08-12TI cardbus controller found on my new laptopAlexander Yurchenko
ok deraadt@
2003-08-12Get rid of unused code, and KNF/ELF-sanitize the remaining code.Miod Vallat
2003-08-12Use spltty() instead of rolling our own expanded version.Miod Vallat
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