summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-26Remove ICH6M from case statements in IDE code now weJonathan Gray
treat it like a SATA controller. reminded by brad@
2006-04-26it turns out that a drivers interrupt handler is called at the spl it wasDavid Gwynne
established at. this means we dont need splbio() calls in ami_intr because its already been raised. this diff removes unneeded splbio calls from the interrupt handler path. it also sets it up so the completion paths are all called at splbio, so i can get rid of the spl calls inside those functions too. neither marco or pedro could see anything wrong with it
2006-04-26prevent file races by obtaining an fd for the RCS file andJoris Vink
do our operations on that, this is safe and guarantees we can operate on the file until we close(2) it. a fix is coming for the remaining races in our diff code. okay niallo@ and ray@
2006-04-26In nfs_readdir(), if the buffer provided by the user is not big enoughPedro Martelletto
to hold all the entries a directory has, we can't signal EOF. Okay deraadt@ and miod@.
2006-04-26Fix a typo in register definitions: looks like somebody copied theBrad Smith
CB_SOCKET_STAT_3VSOCK definition to CB_SOCKET_STAT_XVSOCK and CB_SOCKET_STAT_YVSOCK definitions without updating the numbers. From NetBSD
2006-04-26On MVME188, the 2KB nvram is non contiguous; each byte is mapped into aMiod Vallat
32 bit int. So map the right size, and fail open() until the uiomove() wrapper is modified to cope with this.
2006-04-26Remove smc90cx6 files which are no longer used by anything.Claudio Jeker
Found by jsg@ OK brad@ martin@
2006-04-26Define BUS_SPACE_MAP_LINEAR and use it when appropriate. Right nowMiod Vallat
bus_space_map() always maps everything linear, but this could change in the future.
2006-04-26The dual-ported memory of the MVME376 boards is D32 addressable, say theMiod Vallat
documentation, so we can use the MI {zero,copy{to,from}}buf_contig callbacks, which rely upon bcopy() and bzero(), instead of their d16_bcopy() and d16_bzero() equivalents. No functional change, except an unnoticeable speedup.
2006-04-26In nmihand(), do not enter ddb with Debugger(), which causes an exception,Miod Vallat
as we might not be in a state where we can process a nested exception. This would then cause an error exception, which handler calls nmihand. Kaboom. Instead, directly invoke m88k_db_trap(); from the AV tree.
2006-04-26We do not need to reserve the 0x60..0x7f interrupt vector range on MVME188,Miod Vallat
so let VME interrupt numbers start at 0x60 on these machines.
2006-04-26In vmapbuf(), instead of invoking pmap_cache_ctrl() for each page, postponeMiod Vallat
the call and process the whole range once.
2006-04-26Update version numberBjorn Sandell
2006-04-26In pmap_cache_ctrl(), do not flush cache if the previous mapping wasMiod Vallat
cache inhibited; from the AV tree.
2006-04-26tweaks;Jason McIntyre
2006-04-26tweak; ok mickeyJason McIntyre
2006-04-26Remove unused _exists() function. It is not even used in my evil filter treeClaudio Jeker
so I doubt I will need it anytime soon. Additionally I think that the interface is dangerous as it bypasses the ref-counting.
2006-04-26ARGSUSED and a FALLTHROUGH to please lintNikolay Sturm
ok deraadt
2006-04-26make example shell independent; from mickeyJason McIntyre
2006-04-26Last argument to send_filterset() is a left-over from one of my not so cleverClaudio Jeker
ideas that will never be included and always set to 0. Kill it.
2006-04-26DIFF=diff -uXavier Santolaria
2006-04-26syncTheo de Raadt
2006-04-26Remove filterset_names from bgpd.h and replace it with a function becauseClaudio Jeker
the table was already out of sync now. OK henning@
2006-04-26man page is gzip'd, should store as unsigned char array.Theo de Raadt
2006-04-26man page is gzip'd, should store as unsigned char array.Theo de Raadt
2006-04-26Missed the goto in the error path. This resulted in an access to a NULLClaudio Jeker
pointer and a panic later on. Be more careful Claudio! OK henning@
2006-04-26Something very small and lame for nowChad Loder
2006-04-26Reflect prettier function names change in lint warningsChad Loder
2006-04-26Xr azalia (thanks miod)Jason Wright
2006-04-26Openbsd config syntaxJason Wright
2006-04-26man page for azaliaJason Wright
2006-04-26Typos in comments, no code changesChad Loder
2006-04-26not quite working driver for azalia audio (this is essentially AC97 for > 2005)Jason Wright
Just as brain damaged and ill specified. From NetBSD.
2006-04-26coverity, covsmerity: no reason to put an overly complex fix in here inJason Wright
an error case that almost never happens.
2006-04-26ATI IXP 600 IDE. Hardware is not generally available yetJonathan Gray
but should work going by Linux driver.
2006-04-26regenJonathan Gray
2006-04-26ATI IXP 600 IDE/SATA ids.Jonathan Gray
2006-04-26err() cleanup;Xavier Santolaria
2006-04-26Oops, correct import this time.Miod Vallat
2006-04-26don't talk about "shared mode";Jason McIntyre
2006-04-26grammar;Jason McIntyre
2006-04-26zap -DRCSPROG leftover.Xavier Santolaria
2006-04-26zap uneeded includes.Xavier Santolaria
2006-04-26the pack #pragma is a gccism, so replace its use with __packed which willDavid Gwynne
be defined correctly for whatever compilers we use. prompted by lint. ok krw@ marco@
2006-04-26simpler; from michael knudsenJason McIntyre
ok krw
2006-04-26remove dup of <err.h>Xavier Santolaria
2006-04-26build again...Xavier Santolaria
2006-04-26Cleanup, remove an unused var, use an int to store argc instead of a char,Chad Loder
makes lint a bit happier. OK deraadt
2006-04-26fork our code we shared between openrcs/cvs into the openrcs dir.Joris Vink
this was starting to become inhuman to maintain without ugly ugly hacks in the shared code, and it will be easier to make specific changes for openrcs without touching the soon-to-be-replaced opencvs code.
2006-04-26pleasing lint, without displeasing future developersTheo de Raadt