Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-08 | kill arcnet leftovers, some pt out by Mike Belopuhov <mkb@crypt.org.ru>, | Henning Brauer | |
some I found afterwards, ok dlg | |||
2007-06-08 | oops, here too: put the MAC list into a display, like we do for | Jason McIntyre | |
ciphers, since groff has trouble with wide lines; | |||
2007-06-08 | put the MAC list into a display, like we do for ciphers, | Jason McIntyre | |
since groff has trouble handling wide lines; | |||
2007-06-08 | all disklabels read from the kernel now always contain a total sector | Theo de Raadt | |
size which is the REAL DISK SIZE. always. if a driver fails to set this right, please fix it. agreed with otto and krw | |||
2007-06-08 | all disklabels read from the kernel now always contain a total sector | Theo de Raadt | |
size which is the REAL DISK SIZE. always. if a driver fails to set this right, please fix it. agreed with otto and krw | |||
2007-06-08 | all drivers should spoof version 1 labels | Theo de Raadt | |
2007-06-08 | - always set the partition disk size to full disk info (from driver) | Theo de Raadt | |
- always store our new fatty 16-partitions-with-full-cpg-info style sun disklabels on the disk. - correct an error in matching old-style 16-partition matching code; the checksum spanned a different region tested by me, groked by krw, which is a lot more than the rest of the post-hackathon exhausted slackers | |||
2007-06-08 | Add a "MACs" line after "Ciphers" with the default MAC algorithms, | Peter Valchev | |
to ease people who want to tweak both (eg. for performance reasons). ok deraadt@ djm@ dtucker@ | |||
2007-06-08 | increase the % of space given to inodes | Theo de Raadt | |
2007-06-07 | Fix typo introduced during ANSI-fication. Found by Rainer Giedat. MIPS | Kenneth R Westerback | |
kernel compiles again. | |||
2007-06-07 | Add missing parens, fixes a bug aded in rev 1.112 where maxval would | Todd C. Miller | |
be set to 0 most of the time. | |||
2007-06-07 | show messages about keeping libraries more often, starting on verbose. | Marc Espie | |
2007-06-07 | give handle a temporary name, this prevents `undefined' messages. | Marc Espie | |
2007-06-07 | expand the IEEE80211_NODE_{LOCK,UNLOCK}* macros into their respective | Damien Bergamini | |
definitions. remove comments about "lock order reversals" that are specific to freebsd. ok reyk@ jsg@ mglocker@ | |||
2007-06-07 | move ieee80211_compute_duration() and ieee80211_compute_duration1() | Damien Bergamini | |
functions into the two drivers that use them (atw and rtw.) this code is not generic enough to be used by other drivers and there is no chance that it will ever be used in newer driver since it supports 802.11b only. plus, it hurts my eyes each time i look into ieee80211_output.c. "fine with me as long as the logic doesn't change in the functions" jsg@ | |||
2007-06-07 | do not complain about c not being a multiple of lp->d_secpercyl; ok millert | Theo de Raadt | |
2007-06-07 | convert some displays to lists, since the format is more suitable; | Jason McIntyre | |
plus a little cleanup; | |||
2007-06-07 | test umac-64@openssh.com | Peter Valchev | |
ok djm@ | |||
2007-06-07 | Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, must | Peter Valchev | |
specify umac-64@openssh.com). Provides about 20% end-to-end speedup compared to hmac-md5. Represents a different approach to message authentication to that of HMAC that may be beneficial if HMAC based on one of its underlying hash algorithms is found to be vulnerable to a new attack. http://www.ietf.org/rfc/rfc4418.txt in conjunction with and OK djm@ | |||
2007-06-07 | roller-coaster. The bug that corrupts the page tables is back. | Artur Grabowski | |
So put back the flushg in pmap_release since at least it hides it and I can now reproduce. | |||
2007-06-07 | another XXsize() botch | Theo de Raadt | |
2007-06-07 | always close sockets before calling hce_notify_done. | Pierre-Yves Ritschard | |
first spotted by Paulius Bulotas <paulius+openbsd-misc at devnull.lt>. | |||
2007-06-07 | PR 5502 From: Marc Huber <Marc.Huber@web.de> | Henning Brauer | |
pfioctl()'s DIOCKILLSTATES triggers panic due to wrong test variable in for() loop. well analyzed and fixed, excellent PR, applied verbatim, thanks! (this was fallout from the state - state key split) | |||
2007-06-07 | outline what to do with old libs. | Marc Espie | |
2007-06-07 | make compute_size explicit. That way, we can do it once, at the right | Marc Espie | |
moment. | |||
2007-06-07 | GET should have been SET | Otto Moerbeek | |
2007-06-07 | Replace magic bus clock constants in est related files with defines. | Dimitry Andric | |
ok jsg | |||
2007-06-07 | Fix spacing. | Dimitry Andric | |
2007-06-07 | Correct exit value when one of the files specified cannot be checked out. | Xavier Santolaria | |
Matches GNU's behaviour. From Pierre Riteau (long time ago). | |||
2007-06-07 | (finally) Enable reload support for layer 3 configurations. | Pierre-Yves Ritschard | |
Hoststated can be reloaded either by sending SIGHUP to the parent process or by using ``hoststatectl reload'' discussed and ok reyk@ | |||
2007-06-07 | in OpenBSD as all old BSD unix, RAW_PART always starts at 0, so no | Theo de Raadt | |
need for special case code; ok krw | |||
2007-06-07 | more XXsize() functions not fixed | Theo de Raadt | |
2007-06-07 | best if this compiles | Theo de Raadt | |
2007-06-07 | strncpy -> strlcpy, plus a little spacing line up. | Ray Lai | |
OK deraadt. | |||
2007-06-07 | more XXsize() fallout | Theo de Raadt | |
2007-06-07 | Comment 'fixes'. All bounds_check_with_label now identical except for | Kenneth R Westerback | |
vax and alpha. | |||
2007-06-07 | Eliminate unnecessary duplicate defines *_LABELSECTOR and | Kenneth R Westerback | |
*_LABELOFFSET. Don't use osdep->labelsector since it will always be LABELSECTOR, since we don't support extended DOS partitions holding the OpenBSD disk label. No functional change. Now only Alpha and Vax bounds_check_with_label differ by more than comments. | |||
2007-06-07 | Type of raidsize is now daddr64_t, not int. Fixes compile. | Kenneth R Westerback | |
2007-06-07 | More bounds_check_with_label homogenization. Fix a couple of typos while | Kenneth R Westerback | |
there. 'so go to it!' deraadt@ | |||
2007-06-07 | another XXsize() function forgotten | Theo de Raadt | |
2007-06-06 | Oops, dispatch packets to the correct hci_input_xxx() function | Uwe Stuehler | |
2007-06-06 | correct format strings for large types; ok marco | Theo de Raadt | |
2007-06-06 | Let it compile with SBT_DEBUG | Uwe Stuehler | |
2007-06-06 | clamp the disklabel d_secperunit to what the disk actually says it has, | Theo de Raadt | |
not to what some bogus disklabel from the past may say (some of which may have been caused by older openbsd disklabel programs). resolves issues seen by myself and Markus Lude on sparc/sparc64 machines | |||
2007-06-06 | fix format strings for block #'s now that they are 64 bit; ok tedu (who | Theo de Raadt | |
also spotted one more) | |||
2007-06-06 | add another revision "RTL8168 3"; from NetBSD via Brad | Peter Valchev | |
2007-06-06 | an XXsize() function that got skipped | Theo de Raadt | |
2007-06-06 | the copyright holder changed the license from "dual bsd/gpl" to be | Reyk Floeter | |
2-clause bsd-only. good. | |||
2007-06-06 | No need to call hci_enable() when we can do "btconfig <dev> up"; ok gwk | Uwe Stuehler | |
2007-06-06 | fix the cylinder rounding calculation for "totally using the space" type | Theo de Raadt | |
calculations; ok otto millert |