summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-05-16we need a cpu_info_store; how did miod miss this?Theo de Raadt
2007-05-16syncTheo de Raadt
2007-05-16open() returns -1 on error, not NULL. From Tobias Stoeckmann.Xavier Santolaria
2007-05-16add definitions for the bits in the "register" bus_space region.David Gwynne
2007-05-16add support for multicast addresses. this adds the add/del multi handlersDavid Gwynne
to the ioctl, and programs the multicast filter in tht_iff. we are not using the perfect multicast filters, only the imperfect one. i think there is a requirement that addresses in the perfect filter be in order, but im not sure how to do that nicely (yet). this has taken a long time because i dont know how to write c.
2007-05-16count the number of multicast ranges that are kept in the list of multicastDavid Gwynne
addresses in struct arpcom. this lets a nic driver easily see if it wants allmulti behaviour, which in turn means we can clean some code up. ok jason@ claudio@ norby@
2007-05-16oops, committed debug code, sorry.Marc Espie
2007-05-16Oops, forgot this file in the cpuinfo changes.Miod Vallat
2007-05-16Switch vax to __HAVE_CPUINFO, based on an incomplete diff from art.Miod Vallat
2007-05-16map the pci BARs that we're interested in. this gives us access to theDavid Gwynne
chips registers and io interface, but whats actually in them is still a mystery to me.
2007-05-16Wrap some functions, labels, and variables in #ifdefs correspondingRay Lai
to #ifdefs where they are used. Found by lint by bret dot lambert at gmail. OK deraadt@.
2007-05-16Add missing ssize_t rlen, used when DEBUG is defined, and onlyRay Lai
define c when DEBUG is undefined. From Pav Lucistnik <pav at FreeBSD>. While here, correct format strings to match ssize_t. OK moritz@.
2007-05-15remove catman reference from SEE ALSO;Jason McIntyre
2007-05-15nothing uses catman, so kill it; ok millert deraadtJason McIntyre
2007-05-15Remove unused variable.Mark Kettenis
2007-05-15We will never call OpenFirmware from 32-bit code.Mark Kettenis
ok art@, deraadt@
2007-05-15Update the ifp of bridge cache entries if the entry is not static. ThisClaudio Jeker
makes carp(4) fail-over work over bridge(4). OK michele@ jason@
2007-05-15allows for incomplete locations (without arch) and for repositories toMarc Espie
print PackageLocations (to be cleaned up later).
2007-05-15don't assume 4-byte aligned memory when intercepting a stringNikolay Sturm
this should get rid of systrace: intercept_get_string: ioctl: Invalid argument no objections from provos, ok otto
2007-05-15Remove useless NOxxx defines and use NULL instead.Moritz Jodeit
No binary change. OK ray@
2007-05-15require the right code at the right location.Marc Espie
problem noticed by deanna@
2007-05-15fix some lint 'xxx used, but not defined' warnings by properly addingOtto Moerbeek
stuff to LSRCS
2007-05-15regenMarcus Glocker
2007-05-15Add vendor and product; AmbiCom, Inc. WL54CF.Marcus Glocker
2007-05-15pass COPTS thru, okay millert@Marc Espie
2007-05-15Switch amd64 to VM_PAGE_MD. Mostly just imitating i386. flags in pg_flags.Artur Grabowski
deraadt@ ok
2007-05-15make splassert(IPL_NONE) work on i386/MP (the single-processor case isArtur Grabowski
a bit more hairy). deraadt@ ok
2007-05-15Userland has the right to compile, too; not sure this will be enough yetMiod Vallat
but deraadt@ insists this goes in now.
2007-05-15External bus errors should not occur, so panic. ok deraadt@Dale Rahn
2007-05-15Remove the MI implementation of mutexes and remove the __HAVE_MUTEXArtur Grabowski
option. Every architecture implements mutexes now.
2007-05-15draft-ietf-idr-restart -> RFC 4724 and bump draft-ietf-idr-as4bytes toClaudio Jeker
version 13.
2007-05-15Graceful restart is no longer a draft so point it to the right RFC 4724.Claudio Jeker
Additionally our as4byte support is based on draft-ietf-idr-as4bytes-13.
2007-05-15switch m68k to __HAVE_CPUINFOMartin Reindl
help miod@, art@ ok deraadt@
2007-05-15printconf didn't handle the 'down' flag for peersHenning Brauer
From: Stuart Henderson <stu@spacehopper.org>
2007-05-15FibreChannel -> Fibre Channel, to be consistent with the restJason McIntyre
of our pages; ok dlg
2007-05-15make sli's .Nd match other scsi interfaces; ok dlgJason McIntyre
2007-05-15make sure to give all special files to root/wheel, and strip them of writeMarc Espie
and suid bits.
2007-05-15fix tests to run nowMarc Espie
2007-05-15Make usage declaration match prototype; Make it __dead also.Thordur I. Bjornsson
ok otto@
2007-05-15do not copy pkgname, since we're going to erase it, and packing-listsMarc Espie
now detect duplicate stuff.
2007-05-15fix dependenciesMarc Espie
2007-05-15oops; martin go see what you did here..Theo de Raadt
2007-05-15use the correct fd for poll. we're waiting on the pipe, not pfTed Unangst
ok ckuethe deraadt
2007-05-15syncTheo de Raadt
2007-05-15Dummy mutex code for arm platforms. ok drahn@ deraadt@Miod Vallat
2007-05-15syncTheo de Raadt
2007-05-15now that setroot() prints nice things like:Theo de Raadt
root on sd0a swap on sd0b dump on sd0b we can skip printing: rootdev=0x400 rrootdev=0xd00 rawdev=0xd02 ok miod, no objections from other lazy slackers
2007-05-15kill __HAVE_DEVICE_REGISTER by requiring all architectures to have aTheo de Raadt
device_register() function -- even if it does nothing. reduces the cpp-based blather different between architectures idea ok'd by miod; tested on all architectures (except a few miod will need to cleanup because he has them)
2007-05-15manpage for the emulex driver. very basic, it'll get fleshed out as we goDavid Gwynne
2007-05-15start work on a driver for emulex fibre channel controllers.David Gwynne
it is split up into a bus independant chunk (dev/ic/sli*) and the attach glue (dev/pci/sli_pci.c) cos there are sbus varaints of this chip which i hope to get my hands on one day. this does nothing except attach to the LP8000 controllers.