summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-05-08ansify, clean up formatting, remove useless return statements.Nathan Binkert
ok jason
2003-05-07add missing device name parameters to printfsAnil Madhavapeddy
jason@ ok
2003-05-07string fix; tedu okTheo de Raadt
2003-05-07string cleaningTheo de Raadt
2003-05-07string cleaning; ok art teduTheo de Raadt
2003-05-07double semicolon in local var declMichael Shalayeff
2003-05-07disable profiling for tlb fault handlersMichael Shalayeff
2003-05-07selecet pa-level and scheduling separatelyMichael Shalayeff
2003-05-07double memsize as there might be prom as wellMichael Shalayeff
2003-05-07exit stack is not used anymore. fpemu and emergency are fine w/ just a page ↵Michael Shalayeff
per face
2003-05-07plug a memory leakMichael Shalayeff
2003-05-07string cleanup; nate okTheo de Raadt
2003-05-07use strlcpy; itojun okTheo de Raadt
2003-05-07make this at least compile ...Michael Shalayeff
2003-05-06String fixes. Scsi now strcpy/strcat/sprintf/strncat free. SomeKenneth R Westerback
strncpy still present for manipulating d_packname/d_typename. ok deraadt@.
2003-05-06make sure we always zero out ds (and get no trash from stack) and always ↵Michael Shalayeff
warn about no acb where applicable; krw@ ok
2003-05-06count auto-sense reqs as well; krw@ okMichael Shalayeff
2003-05-06allow programming dma block bus transaction length on 710 and set to 8 words ↵Michael Shalayeff
for hppa/osiop; krw@ ok
2003-05-06string cleaning; tedu okTheo de Raadt
2003-05-06Fix a bug that prevents rdr/binat (but not nat) from working for protocolsDaniel Hartmeier
other than TCP, UDP and ICMP (for instance GRE). Reported by Gunnar Helliesen. ok henning@
2003-05-06updated prototype for dounmountTed Unangst
2003-05-06attempt to put a process's cwd back in place after a forced umount.Ted Unangst
won't always work, but it's the best we can do for now. this covers at least some of the failure cases the previous commit to vfs_lookup.c checks for. ok weingart@
2003-05-06avoid doing a lookup on no longer mounted directories.Ted Unangst
fixes a crash with forced unmounts. from netbsd
2003-05-06use M_NOWAIT instead of WAITOK for the hashtable allocation. ok itojun@Ted Unangst
2003-05-06use snprintfTheo de Raadt
2003-05-06sprintf -> snprintf. strncpy -> bcopy since d_packname is not really aKenneth R Westerback
string. Ensure that all of d_packname is used by not null-terminating string that is put in it. Suggestions and motivation to remove strncpy() from deraadt@. ok deraadt@ tedu@.
2003-05-06range check for the CIS table scanHenning Brauer
normally, the CIS table is scanned until we hit the end tuple (CISTPL_END). I have at least one card with an invalid CIS table without end tuple - while this card is in error, this should not bring us to ddb. thus stop scanning when we reach PCMCIA_CIS_SIZE ok millert@
2003-05-06Declare the major number for wd, so that a custom kernel can specific explicitMiod Vallat
root on wd0a. Problem spotted by Denis A. Doroshenko.
2003-05-06string cleaning; tedu okTheo de Raadt
2003-05-05Move exec base to 0x1c000000, exe/data gap to 512MB. Allows betterDale Rahn
interleave of exe/shared libs. Raise MAXDSIZ back to 1G. This change REQUIRES a binary update on i386.
2003-05-05Write explicit scsibus at controller attachment, rather than scsibus at scsiMiod Vallat
attribute.
2003-05-05regenHenning Brauer
2003-05-05"Intel 82440MX AC97 Modem" rev 0x00 at pci0 dev 0 function 2 not configuredHenning Brauer
2003-05-05fix test for restoring mnt_syncer in dounmount.Ted Unangst
ok and input csapuntz@
2003-05-04mop-mop squeek-squeekMichael Shalayeff
2003-05-04Free mbuf when dropping invalid ARP with ar_hrd != ARPHRD_ETHER, insteadDaniel Hartmeier
of leaking. Reported by orjan.sjelvgren@ignite.com. ok jason@, krw@ and henning@.
2003-05-04snprintfTheo de Raadt
2003-05-04Set code segment register according to nxpages, copied from machdep.cDale Rahn
2003-05-04When a protection fault occurs, force %cr2 to contain the pc asDale Rahn
the fault address.
2003-05-04string cleaning. ok deraadt@Ted Unangst
2003-05-04remove unused var docache from relookup. from netbsdTed Unangst
2003-05-03string fixTheo de Raadt
2003-05-03string fixes; tedu okTheo de Raadt
2003-05-03string fixes; tedu okTheo de Raadt
2003-05-03regenAlexander Yurchenko
2003-05-03A bunch of new Promise ATA/SATA chips; from FreeBSDAlexander Yurchenko
2003-05-03sprintf -> snprintf.Kenneth R Westerback
Almost identical to a previously submitted diff from tedu@. ok tedu@ tdeval@
2003-05-03just as a safety measure, set m_flags to 0 for mbufs allocated on stack.Jun-ichiro itojun Hagino
dhartmei ok
2003-05-02when flipping the code descriptors also update cs in theMichael Shalayeff
tss and not only in the frame since we might be returning that way too. add a heuristic for detecting an exec protection fault: iff we get a read protection fault (which we normally never get due to our segments being always readable) we assume that it was an exec protection indeed and go to page fault routine which will decide the rest for us (including sending a signal should that be needed). problem found by drahn@ and testing by many ppl.
2003-05-02syncTed Unangst