summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-12-14Add wrapper functions to enable/disable interrupts and manipulate their state.Mark Kettenis
2009-12-14when removing sets, remove cant markers as wellMarc Espie
2009-12-14Do non-blocking I/O when delivering locally over a pipe.Jacek Masiulaniec
2009-12-14fix sticky-address - by pretty much re-implementing it. still followingHenning Brauer
the original approach using a source tracking node. the reimplementation i smore flexible than the original one, we now have an slist of source tracking nodes per state. that is cheap because more than one entry will be an absolute exception. ok beck and jsg, also stress tested by Sebastian Benoit <benoit-lists at fb12.de>
2009-12-14combined updates show the packages that can't be updatedMarc Espie
2009-12-14Add /etc/rtadvd.confgiovanni
ok sthen@
2009-12-14Add server options to completion as well.Nicholas Marriott
2009-12-14New server option, escape-time, to set the timeout used to detect if escapesNicholas Marriott
are alone or part of a function key or meta sequence.
2009-12-14fuss about install msgs: new method state->ntogo, use it to annotate moreMarc Espie
messages with global progress information. Also, when not finding a suitable update, report it if set is not a simple update. Helps in figuring out cases like gstreamer...
2009-12-14off by one the other way roundMarc Espie
2009-12-14temporary fix for kept packages until we move them awayMarc Espie
2009-12-14sleep(3) is supposed to return zero when it sleeps the entire amountPhilip Guenthe
ok deraadt@
2009-12-14Add a test for sleep(3), to verify that it both (a) returns zero when itPhilip Guenthe
completes, and (b) returns the unslept time in seconds when interrupted
2009-12-13- Silicon Graphics also made a copper GigE adapter.Stuart Henderson
- Remove mentioning PCI in the Silicon Graphics adapter name. This isn't in the name of the adapter from the marketing material. from Brad.
2009-12-13Use safe fd limits in smtp, lka, queue, and control. Removes aJacek Masiulaniec
possibility for fd-starvation fatal when under heavy load.
2009-12-13Improve the layout by moving the paragraph describing the hardware featuresStuart Henderson
supported by the driver below the list of supported hardware. From Brad.
2009-12-13typoJacek Masiulaniec
2009-12-13fix leaks found by parfait.Jonathan Gray
ok deraadt
2009-12-13repair typeTheo de Raadt
2009-12-13spacing, no binary change.Igor Sobrado
2009-12-13okay, so old libs are not 'kept', keep track of updates correctly insteadMarc Espie
2009-12-13clean up code, no functional changeMarc Espie
2009-12-13simplify set printingMarc Espie
2009-12-13copy correctly sized object, found by parfait; ok jsgTheo de Raadt
2009-12-13use a more standard wording and add a list of supported controllersIgor Sobrado
to the description of fpa(4); while here, synchronize the description of fpa(4) in pci(4). ok claudio@
2009-12-13kill fifty-eight commented out lines from the manual page codeIgor Sobrado
leaving the ioctl description by now, until we see if it is needed (claudio@ has noted that the ioctl description is a copy from inet(4), so it would need to be reworked). ok claudio@
2009-12-13Cleanup promiscuous mode and multicast handling. From Brad.Mark Kettenis
2009-12-13Ensure that if_start() is called at IPL_NET.Joel Sing
ok claudio@
2009-12-13force gzip to write package even if things don't compress.Marc Espie
2009-12-13bit less aggressive about hiding; ok miodTheo de Raadt
2009-12-13remember to restore errno (ie. stop someone from making a mistake later)Theo de Raadt
ok guenther
2009-12-13remove #ifdef CDDA bits cos nothing in cd.c uses it and nothing i can findDavid Gwynne
defines it.
2009-12-13prefix all softc members with sc_, not just most of them.David Gwynne
2009-12-13use sc consistently as the name of the pointer to the softc variable, notDavid Gwynne
cd.
2009-12-12Nuke useless ancient documentation. ok deraadtNicholas Marriott
2009-12-12Protect more definitions userland doesn't need to care about with _KERNELMiod Vallat
2009-12-12Switch page size from 4KB to 16KB on R10k kernels without R5k supportMiod Vallat
(i.e. IP27 and IP30 sgi kernels).
2009-12-12Introduce various CPU_### options to enable cpu-specific code or workarounds;Miod Vallat
be sure to rerun config(8) on your kernel configuration files.
2009-12-12Provide a correct version for little endian kernels... sighMiod Vallat
2009-12-12unifdef -D__LP64__Miod Vallat
2009-12-12Whoops, missed these.Nicholas Marriott
2009-12-12tip is not setuid or setgid anymore and there are no PRIV/EXPR commands, soNicholas Marriott
remove the code. ok deraadt
2009-12-12update will ask about conflicts, so we need that in updateinfo...Marc Espie
2009-12-12autovivifiedMarc Espie
2009-12-12test case for the gamin/fam scenarioMarc Espie
2009-12-12fix the fam->libgamin issue. Look for update candidates in self beforeMarc Espie
asking the repository. This solves this kind of conflicts. also, register packages we keep, this makes for simpler scenarios (todo: split updateset into further categories)
2009-12-12have pkg_add recheck there are no internal conflicts in an updateset.Marc Espie
provides a different failure for the fam/gamin update (better one actually, since we go further...)
2009-12-12when parsing .wav headers, check if rate <= RATE_MAX (instead ofAlexandre Ratchov
rate < RATE_MAX). Similarly check if bits <= 32 (instead of bits < 32)
2009-12-12When acting as a client do content reads from the disk progressivelyJacek Masiulaniec
as the remote accepts more data instead of doing one big read into the memory in the beginning of session.
2009-12-12Use a socketpair instead of a pair of pipes.Nicholas Marriott
looks ok to millert@