summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-29regenDamien Bergamini
2009-07-29PCI ids for Atheros AR9287 (PCI and PCIe).Damien Bergamini
2009-07-29Linksys WUSB54GC v3Damien Bergamini
2009-07-29add Linksys WUSB54GC v3 which is a run(4) RT2070 (802.11b/g only).Damien Bergamini
2009-07-29Add an additional heuristic to work out the current session when run from theNicholas Marriott
command line. The name of all slave ptys in the server is known, so if the client was run on a tty, look for any sessions containing that tty and use the most recently created. This is more reliable than looking at $TMUX if windows have been moved or linked between sessions.
2009-07-29Rename struct hdrtype to msgtype which is a better name and can be used evenNicholas Marriott
when struct hdr disappears.
2009-07-29- clean up the hardware listJason McIntyre
- remove unneccessary .Pp
2009-07-29syncTheo de Raadt
2009-07-29Taking account of the "s, 22 not 24 is the maximum length of #T in status-rightNicholas Marriott
to prevent the date being cut off.
2009-07-29apply patch for https://www.isc.org/node/474 since jakob does notTheo de Raadt
appear to be around.
2009-07-28syncTheo de Raadt
2009-07-28regenStuart Henderson
2009-07-28add Cicada CS8244 10/100/1000 PHY, from Brad.Stuart Henderson
2009-07-28Garbage-collect softc member stge_if_flags, unused since if_stge.c r1.46.Stuart Henderson
From Brad.
2009-07-28introduce daemon_record_message() and needed glue in queue_shared.c toGilles Chehade
atomically create a mailer daemon out of a message. it is unreferenced for now, this commit makes no functional change.
2009-07-28Use strcmp() for string comparison not ==Jonathan Gray
ok jacekm@
2009-07-28Plug a memory leak when calling rtable_add(0) multiple times. Fixing thisClaudio Jeker
even though adding an already existing routing table is not allowed. Leak found by blambert@, fix by myself. OK blambert@
2009-07-28slightly change how makemap parses its lines so that we consider #Gilles Chehade
as a comment only when it starts a line or is preceded by whitespaces. fixes a bug that was reported to me twice and which i ran into, ok jacekm@
2009-07-28Add bsd.mp to MDEXTMiod Vallat
2009-07-28Install interface addresses of other routers (LA bit set or 128 prefixlen)Claudio Jeker
as router type and not as a network. From stsp@
2009-07-28More fallout from the r1.31 commit. This time PID and the fd got swapped.Claudio Jeker
Again from stsp@
2009-07-28Running 'ospf6ctl show' twice caused ospf6d to fatal. Cause was a missing -Claudio Jeker
when passing -1 as fd to the imsg call. No frogs for eric@ and pyr@ From stsp@
2009-07-28Track renamed struct member (r1.15 of ospf6d/ospf6.h) to fix compilation.Claudio Jeker
From stsp@
2009-07-28Final pieces of mode key rebinding: bind-key and unbind-key now accept a -tNicholas Marriott
argument to modify a table.
2009-07-28document scalbln, scalblnf, scalblnlMartynas Venckus
2009-07-28remove core / tilde C. it's useless, doesn't work, never has beenMartynas Venckus
documented, ^\ should be used instead. ok millert@
2009-07-28Walter Haidinger reported to me that couple of Alfa AWUS036H adaptersMartynas Venckus
he has work; ok jsg@
2009-07-28revert the avoidance of the mbuf copy for the icmp errors (r1.165)David Gwynne
some greater care must be taken to ensure the mbuf generated for icmp errors is a good copy.
2009-07-28indentGilles Chehade
2009-07-28- Don't access VPD even if hardware advertised the capability.Kevin Lo
It seems that some revisions of the controllers hang while accessing the VPD. Because VPD access routine is now unused, nuke it. - Let TWSI reload EEPROM if VPD capability is detected. Reloading the EEPROM will also set the Ethernet address, so age(4) now reads AGE_PAR0 and AGE_PAR1 register to get the Ethernet address. This removes removes a lot of hacks and enhance readability a lot. - Double PHY reset timeout as it takes more time to take the PHY out of power-saving state. - Explicitly check power-saving state by checking undocumented PHY registers. If link is not up, poke undocumented registers to take PHY out of power-saving state. This is the same thing done by the Linux driver. - Don't rely on auto-clearing feature of master reset bit, just wait 1ms and check idle status of MAC. From FreeBSD via Brad.
2009-07-28add missing bit to correctly spot loops in all cases.Gilles Chehade
at the moment we only break out of the loop, but do not generate mailer daemon, this will come soon. ok pyr@, tested by me with help from gui at iroqwa dot org
2009-07-28Recommit rev. 1.446 it is again possible to use DSCP names in tos and settosClaudio Jeker
statements.
2009-07-28the firmwares are once again distributedTheo de Raadt
2009-07-28Bring back rev. 1.560:Claudio Jeker
Make it possible to use DiffServ Code Point in the TOS fields. Requested by deraadt@
2009-07-28this is happier if it pulls in a few more includesTheo de Raadt
2009-07-28gem(4) + gentbi(4) do fit; requested by bradTheo de Raadt
2009-07-28Enable ti(4), tested by myself OK deraadt@Claudio Jeker
2009-07-28typo. OK deraadt@Claudio Jeker
2009-07-28document rnewprocp; based on a diff from Vladimir KirillovJason McIntyre
help/ok art
2009-07-28timeout_add -> timeout_add_msecBret Lambert
ok jsg@
2009-07-28timeout_add -> timout_add_msecBret Lambert
ok jsg@ claudio@
2009-07-28do not leak pf_rule_item_pl items in pf_test_rule() whenHenning Brauer
1) at least one match rule matched the packet and 2) we do not create state found by me while fixing the pool_get problem, ok dlg
2009-07-28check that pool_get actually gives us memory in pf_test_rule.Henning Brauer
introduced by yours truly (no idea how that could happpen), problem found by sthen the hard way, fix by me. ok dlg
2009-07-28Using the buf pointer returned from incore is a really bad idea.Artur Grabowski
Even if we know that someone safely holds B_BUSY and will not modify the buf (as was the case in here), we still need to be sure that the B_BUSY will not be released while we fiddle with the buf. In this case, it was not safe, since copyout can sleep and whoever was writing out the buf could finish the write and release the buf which could then get recycled or unmapped while we slept. Always acquire B_BUSY ourselves, even when it might give a minor performance penalty. thib@ ok
2009-07-28Accept and print "Enter" and "Escape" for keys rather than C-m and C-[.Nicholas Marriott
2009-07-28Replace "XXX ? from linux" with a descriptive comment. From Brad.Stuart Henderson
2009-07-28The firmware is an array of u_int32_t and differs between architectures.Claudio Jeker
From now on install the tigon firmware in little endian byte order and swap it acordingly in the driver. Correctly calculate the length of the FW in the build tool -- now my fiber cards no longer have issues to establish link on bootup. Please put this in deraadt@ On big endian archs (sparc64, macppc) the firmware file needs to be updated.
2009-07-28Next step towards customisable mode keys: build each default table of keys intoNicholas Marriott
a named tree on start and use that for lookups. Also add command to string translation tables and modify list-keys to show the the mode key bindings (new -t argument).
2009-07-28If select-layout is not given an argument, repply the last layout used in theNicholas Marriott
window, if any.
2009-07-28print the chipset name in the dmesg so it is possible to tellKevin Lo
whether this is an L1E or L2E chipset. From Brad