summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-23Don't reset the sticky tag of a file in CVS/Entries if it is not requested.Tobias Stoeckmann
OK niallo@, xsa@
2008-01-23extend bgpctl show rib detail output to include more attributes in the output.Claudio Jeker
In addition to communities bgpctl now prints the aggregator, originator id, cluster list and extended communities if available. OK henning@
2008-01-23Add defines for extended communities. OK henning@Claudio Jeker
2008-01-23- add missing libc locking functions for _thread_atexit_lock() andKurt Miller
_thread_atexit_unlock(). okay tedu@
2008-01-23syncPeter Valchev
2008-01-23Revert the change for bz #1307 as it causes connection aborts if an IGNOREDarren Tucker
packet arrives while we're waiting in packet_read_expect (and possibly elsewhere).
2008-01-22- Fix some ifconfig up / down tweaks.Marcus Glocker
- Make monitor mode work again. - Enable fast channel switching.
2008-01-22with a lot of fragments per cylinder group and lots of cylinderOtto Moerbeek
groups, it is possible that fpg * ncg overflows an int. Problem seen by jared rr spiegel while playing with very small fragments on a large disk. ok krw@ millert@
2008-01-22Added change to parseop to support return value; removes 1/2 stack depth forJordan Hargrave
parseint ok marco@
2008-01-22add Y.C. Cable USB-Serial adapterOkan Demirmen
ok jsg@
2008-01-22regenOkan Demirmen
2008-01-22add Y.C. Cable USB vendorOkan Demirmen
ok jsg@
2008-01-22Fix a double VOP_UNLOCK() that was introduced into the error pathTodd C. Miller
in rev 1.141. From Christian Ehrhardt and Pedro Martelletto. OK hshoexer@ miod@
2008-01-22Add splnet around mii_tick() in rl_tick().Brad Smith
ok dlg@
2008-01-22add the Fujitsu PRIMEQUEST 10GBASE-SR LAN Card.Brad Smith
ok dlg@
2008-01-22pick the right csaddr when dumping cgs. Makes FFS2 dumps work much betterOtto Moerbeek
ok thib@ millert@
2008-01-22Don't remove magic branch numbers from rcs files, as it breaks compatibilityTobias Stoeckmann
with GNU cvs. OK niallo@, ray@
2008-01-22Another sneaky 32 bit variable trying to hold 64 bit values. This timeKenneth R Westerback
in find_bounds() when processing a DOS MBR.
2008-01-22Use u_int64_t variables to hold partition offsets when calculatingKenneth R Westerback
offsets and sizes of free chunks. 32 bits just won't hack new big partitions. Simplify and clarify code while here.
2008-01-22Make sort_partitions() even more consistant with free_chunks() by notKenneth R Westerback
returning the number of elements. Check for terminating empty entry (i.e. NULL) instead. Code a bit clearer and shorter with fewer variables. No functional change.
2008-01-22Kill redundant loop to find number of partitions to sort. We no longerKenneth R Westerback
calloc() the memory.
2008-01-22Replace a frequent calloc/free dance for sorted partitions with aKenneth R Westerback
static array that we zero before each use. heapsort(3) shouldn't care. "should be fine" beck@
2008-01-21add names for OpenBSD test MIBsReyk Floeter
2008-01-21move snmpd.conf to the etc/ directory. it is not installed yet by the build.Reyk Floeter
2008-01-21update configuration exampleReyk Floeter
2008-01-21move README to the Attic; ask me directly if you need to know aboutReyk Floeter
the TODOs and remaining issues.
2008-01-21syncReyk Floeter
2008-01-21Qlogic -> QLogic;Jason McIntyre
2008-01-21changes to disklabel's usage:Igor Sobrado
- align usages and their descriptions (text enclosed in brackets); - blank[], used for padding prior to r1.86, can improve readability of usage on 80-column displays if NUMBOOT == 2 ok jsing@, krw@
2008-01-21use the right capitalization for `QLogic'Igor Sobrado
ok jsing@
2008-01-21update to sudo 1.6.9p12Todd C. Miller
2008-01-21Add shutdown hook which resets the device when called. This solvesMarcus Glocker
re-attach issues when rebooting with upgt attached.
2008-01-21when a remote write error occurs during an upload, ensure that ACKs for allDamien Miller
issued requests are properly drained. patch from t8m AT centrum.cz
2008-01-21Remove the fixed 100 handle limit in sftp-server and allocate as manyDamien Miller
as we have available file descriptors. Patch from miklos AT szeredi.hu; ok dtucker@ markus@
2008-01-21Fixed cvs_findcmd I broke last time: cvs_findcmd is called during .cvsrcTobias Stoeckmann
parsing and must have a local cmdp variable. > Spotted by Pierre Riteau.
2008-01-21Fixed export to be fully functional and compliant to GNU cvs in local andTobias Stoeckmann
remote setups. OK xsa@
2008-01-21Add support for SMC SMCWUSBT-G2.Jonathan Gray
Tested by Kaspo Lo <kaxpolox@yahoo.com>
2008-01-21regenJonathan Gray
2008-01-21add SMC SMCWUSBT-G2Jonathan Gray
2008-01-21Check against RESET_REG_SUP in FADT before doing the acpi reset danceJonathan Gray
after all, not doing so appears to break more machines than it fixes. ok marco@
2008-01-21Fix boot time interrupt storm on mec(4) by disabling DMA when stopping theJoel Sing
interface. Without this we are potentially freeing TX buffers that are in use, plus we leave DMA enabled when rebooting. This leads to an interrupt storm at boot time if we were receiving/transmitting network traffic whilst shutting down. ok miod@. Tested by jasper@.
2008-01-20Remove obsolete rateset variables.Marcus Glocker
2008-01-20Cleanup rates:Marcus Glocker
- The device (firmware) does automatic rate control for 11b/g. - Allow user to set fixed rates. - Send management frames always at DS1.
2008-01-20Revert 1.25 and do not use _Q_INVALIDATE on timeout structures; beingMiod Vallat
subtly different from CIRCLEQ, it is possible, when emptying the whole timeout chain, to end up with CIRCQ_EMPTY being false, and bad things happen. Back to the drawing board...
2008-01-20debug kruftMarco Peereboom
2008-01-20Clean up comments.Joel Sing
2008-01-20Add temperature sensor.Mark Kettenis
2008-01-20Read EEPROM content the other way around (from start to end).Marcus Glocker
2008-01-20Adjust level 1 debug messages.Marcus Glocker
2008-01-20When uploading, correctly handle the case of an unquoted filename withDamien Miller
glob metacharacters that match a file exactly but not as a glob, e.g. a file called "[abcd]". report and test cases from duncan2nd AT gmx.de