summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-11-13cwd() function so that further changes to internal storage won't matterMarc Espie
that much.
2004-11-13move borked_installation over to common routines, prepare it forMarc Espie
Update.
2004-11-13Eliminate a structure member introduced via NetBSD, now superfluous.Kenneth R Westerback
2004-11-13Eliminate more cruft that crept in during FreeBSD -> NetBSD -> OpenBSDKenneth R Westerback
travels. Simplify create_dmamem/free_dmamem api.
2004-11-12updateJean-Francois Brousseau
2004-11-12store a ref to cwd instead of cwd itself, allowing it to be shared.Marc Espie
2004-11-12parse libspec better, With this, vreaddir can find libraries.Marc Espie
2004-11-12avoid even more calls to canonpath.Marc Espie
2004-11-12stop storing fullname, recompute it dynamically instead.Marc Espie
2004-11-12do catfile manually, e.g., avoid several calls to canonpath.Marc Espie
2004-11-12be saner wrt directory creation during pkg updates:Marc Espie
don't disturb existing objects if they're not directories, create them better if they don't exist.
2004-11-12The flag to re-filter pf-generated packets was set wrong by synproxyDaniel Hartmeier
for ACKs. It should filter the ACK replayed to the server, instead of of the one to the client. Thanks to Daniel Polak for testing.
2004-11-12don't store hexdigest internally.Marc Espie
2004-11-12commented out atwMichael Shalayeff
2004-11-12#atuTheo de Raadt
2004-11-12Functions to extract log messages from files and query users for themJean-Francois Brousseau
2004-11-12file not usedTheo de Raadt
2004-11-12some missing includes, from Joerg Sonnenberger <joerg@britannica.bec.de>Henning Brauer
2004-11-12Update to sudo 1.6.8p2Todd C. Miller
2004-11-12support SIOCG80211BSSID SIOCS80211CHANNEL SIOCG80211POWER; from daanTheo de Raadt
2004-11-12cleanup prototypesTheo de Raadt
2004-11-12Don't use the IRIX workaround for relocs. Seems to break reloc count inPer Fogelstrom
some shared libs and we don't need any workaround in OpenBSD.
2004-11-12typos from joel gudknecht;Jason McIntyre
help/ok hshoexer@
2004-11-12mention `s';Jason McIntyre
from aleksander piotrowski; ok henning@ deraadt@ millert@
2004-11-12add wdt(4)'s ddb(4) warning to BUGS;Jason McIntyre
original diff from michael knudsen; ok jaredy@
2004-11-12typo: comparations -> comparisonsJean-Francois Brousseau
2004-11-12Show file specifications as optional last arguments to the commit,Jean-Francois Brousseau
diff and update commands
2004-11-12print address, this is not a debug pieceTheo de Raadt
2004-11-12computed fullname.Marc Espie
2004-11-11use from_installation and forget.Marc Espie
2004-11-11use ether_ifdetach; from daanTheo de Raadt
2004-11-11simplify debug printf mechanism, with various levels of verbosity moreTheo de Raadt
in tune with what one needs when debugging; from daan
2004-11-11strlcpyTheo de Raadt
2004-11-11forget packing-lists after deleting the package (avoid out-of-memory errorMarc Espie
when deleting large sets of packages).
2004-11-11stuff that needs to be done.Marc Espie
2004-11-11typo; bad krwTheo de Raadt
2004-11-11TyposMiod Vallat
2004-11-11oopsMarc Espie
2004-11-11strchr("whatever", 0) returns non NULL. From Patrick Latifi.Otto Moerbeek
ok deraadt@ millert@
2004-11-11some fixes for beeing compatible with gcc3 as noticed by some people.Reyk Floeter
thanks to Joerg Sonnenberger and Nathan Binkert.
2004-11-11fp regs alsoPer Fogelstrom
2004-11-11- Fix Yukon ram sizing.Brad Smith
- Keep tx queue running by kicking the tx bmu repeatedly. - Handle if_timer a bit better. From NetBSD ok deraadt@
2004-11-11Somewhat improve single-stepping.Mark Kettenis
ok pefo@, miod@
2004-11-11First attempt. Frame digging is tricky since 'jr ra' instructionsPer Fogelstrom
used to sync functions start are now (with gcc3) all over the code. Need to think about some other way to figure out the frame size from looking for the right sp adjust instruction.
2004-11-11rev 1.71Brad Smith
Add some special case code to fix a problem with the BCM5704 in TBI (fiber) mode. The 5704 apparently has some s00p3r s33kr1t registers for setting the advertisement of pause frame ability (i.e flow control) when in autoneg mode. If we don't set these registers correctly, we may not be able to negotiate a proper link with some switches. (Symptom is that the NIC reports the link as up (PCS synched) but no traffic can be exchanged.) rev 1.73 Commit patch to supress spurious link change events. Apparently, with copper NICs, a link change event is posted whenever MII autopolling is toggled off and on, which happens whenever someone calls bge_miibus_readreg() or bge_miibus_writereg() to access the PHY registers. This means anytime someone called the SIOCGIFMEDIA ioctl on a bge interface, the link would reset. Even a simple "ifconfig bge0" would do it, though other apps like dhclient or the PPPoE daemon could trigger it as well. An obvious symptom of this problem is lots of "bgeX: gigabit link up" messages appearing on the console for no apparent reason. Through experimentation, I determined that when a real link change event occurs, the BGE_MIMODE_AUTOPOLL in the BGE_MI_MODE register is always set, so now if we have a copper NIC and an link change event occurs and the BGE_MIMODE_AUTOPOLL bit is clear, we ignore the event. Note that this does not apply to the original BCM5700 chip since we use a different method for sensing link changes with that chip (the status block method was broken), nor to fiber optic NICs since they don't use the GMII PHY access registers. From FreeBSD ok deraadt@
2004-11-11syncTheo de Raadt
2004-11-11Unbreak peer_localaddr() because Link Local Addresses reported byClaudio Jeker
getifaddrs() have the scope id added to the address and so fuck up in the compare later. This part has bin stolen from ifconfig/ifconfig.c and shows the beauty of IPv6. Thank you KAME. disgusting but OK henning@
2004-11-11Unbreak link local IPv6 sessions by setting the correct scope_id inClaudio Jeker
addr2sa. OK henning@
2004-11-11Don't hardcode the prefix table to the IPv4 one, especially if there isClaudio Jeker
already code to select the correct tree by AF.
2004-11-11Pass the copied as-path attributes to the filter function and not theClaudio Jeker
original. Affected code is currently still unreachable.