summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-11-27fix format stringsCharles Longeau
ok mpf@
2007-11-27add rcs idJasper Lievisse Adriaanse
"feel free to do so" jsing@
2007-11-27missing rcs idJasper Lievisse Adriaanse
"feel free to do so" jsing@
2007-11-27ARGH. Work has poisoned my mind. KNF the braces.Artur Grabowski
2007-11-27Remember to add gbe.4...Joel Sing
2007-11-27Unify amd64 and i386 code further; ok oga kettenisTheo de Raadt
2007-11-27Initial support for the SGI Graphics Back End (GBE) frame buffer found inJoel Sing
SGI O2 machines. We currently rely on the video hardware being initialised by the ARCS firmware and can only use the initial resolution with a colour depth of 32 bits. This driver is disabled by default. ok miod@
2007-11-27tweak previous;Jason McIntyre
2007-11-27tweak the Ox warning section;Jason McIntyre
2007-11-27tweak previous;Jason McIntyre
2007-11-27add missing header for errx.Charles Longeau
ok otto@ deraadt@
2007-11-27add missing header for inet_ntoa.Charles Longeau
"sure" deraadt@
2007-11-27Add display type for SGI GBE.Joel Sing
ok miod@
2007-11-27Add BUS_SPACE_MAP_LINEARJoel Sing
ok miod@
2007-11-27use symbolic constant 'Infinity' instead of -1 where appropriate; fromOtto Moerbeek
Mark Lumsden
2007-11-27fix format stringsCharles Longeau
ok mpf@ henning@
2007-11-27Don't give bad advice. The MTU/MSS issue is not solvable by changing the MTUClaudio Jeker
of any interface of the pppoe router. The best way to get a reliable network connection is to use pf(4) and the max-mss scrub option. OK henning@, mbalmer@ Yes please! sthen@
2007-11-27update "show database" output (work in progress) but now link local LSAClaudio Jeker
are printed again.
2007-11-27Make lsa_find() find link local LSA by passing the interface instead of theClaudio Jeker
area as lookup point. Additionally make lsa_dump or actually the code around it pass all LSA to ospf6ctl. The rde_spf.c are not final.
2007-11-27Make carp(4) behave more like a ethernet interface by initalizing theClaudio Jeker
IPv4 interface address similar to arp_ifinit(). The main difference is that we do not send out a gracious arp as the carp(4) is not ready to send at that moment. This will make backup interface show up like the master ones. OK mpf@ earlier version OK henning@ mcbride@
2007-11-27Monster diff to bring us a bit on track again.Claudio Jeker
a) implement all (or at least most) lsa_check() cases. b) classify the LSA scope correctly and add a per interface lsa_tree for the link local stuff. c) implement a function to parse a prefix. There is still a lot missing currently link local LSA are added to the interface tree but nothing can access them (lsa_find() and a few friends need some changes). OK norby@
2007-11-27mips64 also needs memcpy.S, otherwise memcpy.c gets built, which conflictsJoel Sing
with bcopy.S ok miod@
2007-11-27Only checksum the NMEA sentence if it as GPRMC message.Marc Balmer
suggested by otto.
2007-11-27fix typoMarc Espie
2007-11-27Prefixes or actually pathes that would cause a rooting loops should not beClaudio Jeker
dropped when parsed but instead be added to the RIB marked as not eligible. So the decision process does not pick them up as a valid route. Tested and some ideas by Tony Sarendal (tony (at) polarcap (dot) org)
2007-11-26Enable read ahead and write cache enable if supported byJonathan Gray
the disk rather than depending on the disk to have it on. A bunch of people have suggested this should go in.
2007-11-26Like i386 - make the __mp_lock not spin at splhigh.Artur Grabowski
deraadt@ ok
2007-11-26Document how the sensors degrade over time.Marc Balmer
2007-11-26Add LSI PCI IDs for 1078 based megaraid; from the windows driver infMarco Peereboom
2007-11-26In uvm_aio_aiodone(), kill the variable-sized array on stack, and use aMiod Vallat
fixed size array which size should match any buf; if a bogus buf is passed to this function, the kernel will KASSERT instead of potentially running out of stack and having an undefined behaviour. ok deraadt@
2007-11-26keep unmade uptodate all the time, even for targets we're not making yet,Marc Espie
since we might want to make them later. okay millert@, beck@
2007-11-26Add a new warning to gcc, -Wvariable-decl, which causes it to warn forMiod Vallat
auto declarations which size are not known at compile time. This flag will eventually be added to the kernel makefiles so that we can rely on -Wstack-larger-than work. ok deraadt@ mbalmer@ otto@ marco@
2007-11-26Undo (well, comment out) 1.10 - this causes a regression on oqo-1 machines,Miod Vallat
but fixes keyboard on legacy (non-ps/2) controllers, which are probably still more common; discussed and ok deraadt@
2007-11-26Add new PERC6 & CERC6 PCI IDsMarco Peereboom
2007-11-26regenMarco Peereboom
2007-11-26Add PERC6Marco Peereboom
2007-11-26Just CRYPTO; RAID CRYPTO doesn't mean anything.Marco Peereboom
2007-11-26implement atascsi_probe_dev and atascsi_detach_dev. they let a hba tellDavid Gwynne
the midlayer(s) what to do.
2007-11-26Decode CreateQWordFiled().Mark Kettenis
ok marco@
2007-11-26First step towards unifying pchb between i386 and amd64Theo de Raadt
Light testing, mostly mechanical
2007-11-26Let multiple variables in the same filename expandTheo de Raadt
ok otto millert
2007-11-26Automatically degrade the timedelta sensor if the clock is free running for toMarc Balmer
long (12 hours for most cards, four days for the ones with higher precision local clocks, e.g. the GPS170PCI). All radio-clock drivers now behave more or less the same with regarding to timedelta sensor degradation; time to implement a few new drivers...
2007-11-26make popen/pclose thread safe. closes library/5634. from and okay andreas@Kurt Miller
2007-11-26Degrade the timedelta if the GPS reports a warning condition for more thanMarc Balmer
ten minutes (or if a serial GPS is disconnect and we get no NMEA sentences at all). ok otto
2007-11-26bump the maximum cdb that the driver will take from the midlayer up to 16David Gwynne
bytes. if you want to use large volumes on ciss, you need ciss to chew the large scsi io commands. problem found and fix tested by johan
2007-11-26Ooops. The perils of hacking in three different trees.Artur Grabowski
Make this compile on !MULTIPROCESSOR noticed by jasper@
2007-11-26add logging option, ok deraadt@Jolan Luff
2007-11-26cleanup. nl is a poor name for a global (accessed via macro no less).Ted Unangst
also, man page says nlist ends with NULL name, not "". ok art bob deraadt
2007-11-26print the comma before the MAC address string in dc_attach() instead of theBrad Smith
PCI front end attach function. This corrects the dmesg output for CardBus adapters and ensures proper dmesg output if an error occurs in dc_attach(). ok dlg@
2007-11-26Display module size for direct rambus rimms, not yet tested.Jonathan Gray