Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-17 | better error handling if you try to export a bad key to ssh.com | Markus Friedl | |
2001-09-17 | cleanup and document -1, -s and -S; ok markus@ | Kevin Steves | |
2001-09-17 | sync | Theo de Raadt | |
2001-09-17 | Save the result of the configure children, so that the device | Dale Rahn | |
can be unconfigured. Allows uaudio to be unplugged. Tested by lebel, aaron did not understand why the code was that way. | |||
2001-09-17 | never keep a connection to the smartcard open. | Markus Friedl | |
allows ssh-keygen -D U while the agent is running; report from jakob@ | |||
2001-09-17 | Don't treated return length of recvfrom() as a size_t... it's a socklen_t. | Jason Wright | |
2001-09-17 | u_char*/char* cleanup; ok markus@ | Kevin Steves | |
2001-09-17 | The first implementation of the buffer flushing daemon. It solves our | Grigoriy Orlov | |
problem when syncer can't do its work because of vnode locks (PR1983). This also solves our problem where bigger number of buffers results in a much worse perfomance. In my configuration (i386, 128mb, BUFCACHEPERCENT=35) this speedup tar -xzf ports.tar.gz in 2-4 times. In configuration with low number of buffers and softupdates this may slowdown some operations up to 15%. The major difference with current buffer cache is that new implementation uses separate queues for dirty and clean buffers. I.e. BQ_LRU and BQ_AGE replaced by BQ_CLEAN and BQ_DIRTY. This simplifies things a lot and doesn't affect perfomance in a bad manner. Thanks to art and costa for pointing on errors. Tested by brad, millert, naddy, art, jj, camield art, millert ok. | |||
2001-09-17 | more missing dmesg | Theo de Raadt | |
2001-09-17 | cast a few more long's to int32_t | Jason Wright | |
2001-09-17 | zap kernfs | Theo de Raadt | |
2001-09-17 | add -Fssh_config option; ok markus@ | Kevin Steves | |
2001-09-17 | Add support for -d in usbdevs(8); from Jason Ackley <jason@ackley.net>, pr#2005 | Michael Shalayeff | |
2001-09-17 | icmpv6 nat fix, from Ryan McBride | Daniel Hartmeier | |
2001-09-17 | No need to define TIMEZONE and DST to 0 here, param.c does that automagically. | Artur Grabowski | |
2001-09-17 | Fix and update /var/named entry. Also fix a sentence to end with | Camiel Dobbelaar | |
a dot. ok mpech@, millert@ | |||
2001-09-17 | Remove all of the last vestiges of vtophys (namely RFA's): | Jason Wright | |
o stash bus_dmamap_t in the mbuf cluster (alignment fudge is now 2+sizeof(bus_dmamap_t) o borrow FXP_RXMAP_{GET|PUT} macros from NetBSD o move a few definitions around to make it all work | |||
2001-09-17 | 8 bit quotes | Marc Espie | |
2001-09-17 | slightly better error message | Marc Espie | |
2001-09-17 | Enable DMA for wdc_obio devices. This was the mode in which the recent | Dale Rahn | |
wdc_obio changes were tested, however this file was not commited to renable DMA for those devices. Minor missing item on the adb mouse, add it to mux 0. Muxing is still disabled, but this was missing. | |||
2001-09-17 | Use pmap_k* to map the buffer cache. | Artur Grabowski | |
2001-09-17 | pagemove() should use the pmap_k* functions instead of pmap_enter/remove. | Dale Rahn | |
The buffer cache is initialized with pmap_k* for all powerpc systems. Does not cause a problem with current code because pmap_k* are only wrappers around pmap_enter/remove. | |||
2001-09-17 | The gfx display buffer should request that it be mapped cached (writethru). | Dale Rahn | |
Not used yet, but when the bus_space_map code and pmap are fixed, this will speed up the console. | |||
2001-09-17 | mount -u, not mount_ffs -u | Todd C. Miller | |
2001-09-17 | skip to uid field, not gid | Mike Pechkin | |
millert@ ok | |||
2001-09-17 | Allocate the profiling buffer from kernel_map, not with malloc. | Artur Grabowski | |
2001-09-17 | I'm sure that it's not supposed to say: | Artur Grabowski | |
'off: kernel profiling is kgmon.' | |||
2001-09-17 | genassym changes | Theo de Raadt | |
2001-09-17 | sync actual with flags with usage and man page | assar | |
art@ ok | |||
2001-09-17 | Remove STATIC memory optimization. It's buggy (see regression test trip) | Marc Espie | |
2001-09-17 | Scary interaction | Marc Espie | |
2001-09-17 | Support for arm and sparc64 platforms. ok espie | Kevin Lo | |
2001-09-17 | make ksyms work on sparc64 (requires essentially same goop as db_sym) | Jason Wright | |
2001-09-17 | make vi exit if it can't create a temp file. From NetBSD, ok millert | Peter Valchev | |
2001-09-17 | stuff for ksyms (doesn't quite work yet, tho) | Jason Wright | |
2001-09-17 | This change (and a little change for alpha gcc config) allowed me to build | Artur Grabowski | |
cross tools and kernels with those cross tools on all archs except mvme88k and hppa. 1. Pass MACHINE_ARCH, not MACHINE to TARGET_MACHINE_ARCH when building old binutils. 2. Instead of using the "intelligent" cpp voodoo to find out MACHINE_ARCH from MACHINE (which has never worked correctly for sparc, 68k and recently it broke for powerpc), we have a table of machine->machine_arch translations. It's easier to modify one table once per arch instead of juggling for a few hours every time some include files change. 3. Remove some sparc64 cruft. 4. Set MACHINE and MACHINE_ARCH in cross-env, otherwise the kernel will try to build libkern for the host. Please note that this doesn't allow you to do complete builds. I haven't even tested cross-lib. Only kernel builds have been tested. | |||
2001-09-16 | patsubst on multi-line pattern... icky. | Marc Espie | |
2001-09-16 | remove some unneeded includes; ok millert | Peter Valchev | |
2001-09-16 | special-case MACRO (without parens) recognition, so that $# is set to 0 | Marc Espie | |
as it should. | |||
2001-09-16 | check pattern subst | Marc Espie | |
2001-09-16 | Fix \\ in recognition in patsubst: must advance beyond it as well. | Marc Espie | |
2001-09-16 | It is not legal to have multiple .%T entries in a reference so split | Todd C. Miller | |
the manual references up. This is still not as nice as it could be but at least groff no longer spits out an error. | |||
2001-09-16 | Typos in comments. | Artur Grabowski | |
From Alexander Yurchenko <grange@rt.mipt.ru> | |||
2001-09-16 | Typo in comment. | Artur Grabowski | |
From Alexander Yurchenko <grange@rt.mipt.ru> | |||
2001-09-16 | Update CellServDB. | Artur Grabowski | |
From Arla 0.35.5 through David Krause <openbsd@davidkrause.com> | |||
2001-09-16 | Optimize space-eating loop since we've already checked that the | Todd C. Miller | |
first char is a space. Patch from sacrificial-spam-address@horizon.com | |||
2001-09-16 | 1) In skin(), only add a space after a comma if there is actually a space | Todd C. Miller | |
in the input buffer. This prevents a rare buffer overflow on very long header lines where one or more entries has a comment in it but the entries have no space after the comma *and* the amount of extra space needed to add a space after each comma is greater than the length of the comments that will be removed. This is debian bug #108677 2) In skin(), use a temporary variable in the realloc() and don't die if realloc() fails since its only purpose is to shrink the buffer, not expand it (and thus is not fatal). | |||
2001-09-16 | partial documentation for the *_DEPENDS recent changes. | Marc Espie | |
2001-09-16 | calls krb_afslog() after setting $HOME; mattiasa@e.kth.se; fixes pr 1943 | Markus Friedl | |
2001-09-16 | Add a manual page for genassym.sh, from NetBSD. | Miod Vallat | |