summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-10-13From ospfd: Funny typo, it is fib not fip so adjust function name.Claudio Jeker
2007-10-13Funny typo, it is fib not fip so adjust function name.Claudio Jeker
2007-10-13Enable interrupts in secondary processors before invoking cpu_switchto(),Miod Vallat
rather the expecting it to do this for us.
2007-10-13It is no longer necessary to fiddle with spl in cpu_idle_{enter,leave} nowMiod Vallat
that proc_trampoline has been fixed.
2007-10-13Be sure to spl0() in proc_trampoline, so that kernel threads start at IPL_NONE.Miod Vallat
2007-10-13There is no need to fiddle with spl in cpu_idle_{enter,leave}, actually.Miod Vallat
2007-10-13Remove leftovers art forgot to prune...Miod Vallat
2007-10-13Add Yukon-2 PHY powerdown bits.Mark Kettenis
2007-10-13sync.Marc Balmer
2007-10-13Add two Gude time signal station receivers.Marc Balmer
2007-10-13Do not attempt to work on more than SHMMAXPGS pages, makes this run unmodifiedMiod Vallat
on vax.
2007-10-13Fix cpu_exit() comments to be more closer to reality.Miod Vallat
2007-10-13Do not splhigh() before invoking sched_exit(), sched_exit() will do it better.Miod Vallat
2007-10-13Various typos in comments; Joel SingMiod Vallat
2007-10-13add the AR5416 and AR5418 device IDs (needs some more testing)Reyk Floeter
2007-10-12fix typo in _telldir_unlocked function prototype, to avoid warning.Charles Longeau
while there, put all function prototypes in header file. ok kurt@
2007-10-12Fix broken build. Reported by Gregory McGarry on pcc-list.Stefan Kempf
ok otto@
2007-10-12use __progname where neededJasper Lievisse Adriaanse
ok otto@
2007-10-12From master repo:Stefan Kempf
> Add zero checks when dividing or taking modulo. ok otto@
2007-10-12From master repo:Stefan Kempf
> Document -X flag. ok otto@
2007-10-12fix va_arg in conditional expressions; from ragge@Otto Moerbeek
2007-10-12The newer single chip Atheros wireless chipsets like the AR5424,Reyk Floeter
AR2423 etc. are mostly compatible to the AR5212 but use a different algorithm to set the 2GHz RF channel, that's why they didn't work in OpenBSD. I figured out that the channels were set with an offset, setting channel 11 in the driver caused the hardware to set channel 5 etc. Because I didn't figure out the pattern to fix the algoritm yet, I fixed it in a workaroundish way by defining a small "table" with offsets for the 11b channels to get the right results. For example, if we want to set channel 11 (2462MHz), we add an offset of -30MHz, and feed the result (2432MHz ^= channel 5) into the unmodified AR5212/AR5112 RF setup function. Long description for a commit message, but it needed some time to figure it out. It is still not perfect, needs some more work, and it doesn't work in all cases; but it allows to use newer chipsets in 11b mode restricted to 1 or to 2Mbit/s. 11a mode seems to work without problems so far.
2007-10-12Silence some lint(1) warningsBret Lambert
ok pyr@
2007-10-12Sanitize the output of "show interface detail".Esben Norby
2007-10-12Properly format the output of "show interface".Esben Norby
In order to make room for the longer IPv6 addresses in the output, the two collumns nc and ac must go. Neighbor and Adjacent Neighbor Count is still avalable in "show interface detail". ok claudio@
2007-10-12Controller for the recently imported ospf6d(8) daemon.Esben Norby
Currently simple stuff like show interface works. Not yet connected to the builds. ok claudio@
2007-10-12rewrite of constant expression evaluation; taking into accountOtto Moerbeek
signed vs unsigned and shortcutting of && and || ok ragge@
2007-10-12regenBrad Smith
2007-10-12Add some more Intel em(4) PCI ids.Brad Smith
From FreeBSD ok dlg@
2007-10-11There is no need to support interface em0:<IP> anymore. Remove most of theClaudio Jeker
code the rest will be reused somehow.
2007-10-11No need to store the interface mask. An interface represents a link and isClaudio Jeker
only addressed via its link local address. All networks on top of it are handled separately via type 8 Link-LSA.
2007-10-11probe for Winbond W83793G; tested by jon.steel@esentire.com; suggestions/ok ↵Constantine A. Murenin
deraadt@
2007-10-11OSPFv3 runs on links not on networks so there is no need for a mask in theClaudio Jeker
hello protocol. Kill no longer needed code.
2007-10-11In OSPFv3 auth crypt is no longer (actually all the auth code is gone) soClaudio Jeker
kill crypt_seq_num as well.
2007-10-11Disable some code that is currently far from working and results in frequentClaudio Jeker
session resets because of bad packets. With this it seems we survive the hello and database exchange phases. A closer look at the DR and BDR calculation is still needed.
2007-10-11Make BGE_JUMBO_FRAMELEN big enough to include vlan tag. Fixes problems withMark Kettenis
receiving jumbo frames on bge(4). ok krw@
2007-10-11The person that came up with the glorious idea to define a 24bit field shouldClaudio Jeker
be hanged and shot. Add a ntohl() around the area_ospf_options() call.
2007-10-11Last commit added way to much stuff. Revert the readd of global options.Claudio Jeker
2007-10-11area_ospf_options() should return the options in network byte order.Claudio Jeker
2007-10-11From ospfd:Claudio Jeker
Bye bye global ospf options. OSPF options are per area (at least the one flag that we set). So introduce a area_ospf_options() function that will return the correct flags for each area. This makes stub area support a lot easier. Don't check for OSPF_OPTION_E in the parent. OSPF_OPTION_E is per area and so the parent process has no way to know if it should redistribute or not.
2007-10-11From ospfd:Claudio Jeker
Do not overload nbr->options with the dd exchange bits. nbr->options is used by the hello protocol. Instead add a dd_more flag that is used together with (the renamed) dd_master flag.
2007-10-11use RRSIG instead of SIG for DNSSEC. ok djm@Jakob Schlyter
2007-10-11treat usb vendor/product names as a locator, and have usbd_print handle it,Theo de Raadt
so that it shows up before the :. as a result, all the usb devices do not need to have name printing code anymore. all this now works and prints nicely because usbd_probe_and_attach() is serialized. ok kettenis
2007-10-11serialize usbd_probe_and_attach(); only let one usb device be match'd andTheo de Raadt
attached at a time; ok kettenis
2007-10-11syncTheo de Raadt
2007-10-11Add device ID used by Commell MP-954GPSStuart Henderson
ok deraadt@
2007-10-11enable puc(4) for GENERIC on armishStuart Henderson
ok deraadt@
2007-10-11When walking the tree yo find _PRT methods, check whether the device isMark Kettenis
actually enabled and functioning. Similar to what we do for _INI. ok weingart@, beck@
2007-10-11next step in the yylex unification: handle quoted strings in a nicer fashionTheo de Raadt
as found in hoststated, and make all the code diff as clean as possible. a few issues remain mostly surrounding include support, which will likely be added to more of the grammers soon. ok norby pyr, others
2007-10-11Bye bye global ospf options. OSPF options are per area (at least the oneClaudio Jeker
flag that we set). So introduce a area_ospf_options() function that will return the correct flags for each area. This makes stub area support a lot easier. OK norby@