Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-05 | gremlins keep putting tiny KNF violations in my code in the hope I don't | Henning Brauer | |
spot 'em | |||
2007-03-05 | better error msg | Henning Brauer | |
2007-03-05 | loop over the list calling prefix_aggregate until nothing can be aggregated | Henning Brauer | |
any more. since aggregated entries might be further aggregatable... shaves of another 1200 lines (of ~16900) from the generated ruleset for my AS | |||
2007-03-05 | Add some HAL functions. | Reyk Floeter | |
From madwifi-old-openhal via Nick Kossifidis (mickflemm at gmail dot com) Bump copyright while I'm here. | |||
2007-03-05 | don't make everything a sync once we see one, reset this once | Bob Beck | |
we save the entry. ok reyk@ | |||
2007-03-05 | lint happiness | Henning Brauer | |
2007-03-05 | unused vars, lint | Henning Brauer | |
2007-03-05 | nuke annoying debug log | Bob Beck | |
ok henning@ | |||
2007-03-05 | Make spamlogd log inbound/outbound like it did before. | Bob Beck | |
ok henning@ | |||
2007-03-05 | in prefix_aggregate(), when we look at two neighbor prefixes, see wether | Henning Brauer | |
they can be expressed as one with shorter prefixlen. if so, adjust the first prefix accordingly and return 1 so the second gets removed. shrinks the ruleset for my AS from 19533 to 16892 rules. | |||
2007-03-05 | do the prefix masking in network byte order | Henning Brauer | |
2007-03-05 | sort out more specifics and mark the less specific covering them in a way | Henning Brauer | |
that the resulting rule allows more specifics. i. e. 10.0.0.0/16, 10.0.1/24, 10.0.128/17 -> prefix 10.0.0.0/16 prefixlen <= 24 implementation: sort prefixes per AS by address family, prefix, prefixlen. for every entry, check wether the prefix with the previous entry's mask applied matches the previous entry's prefix & mask. Only move the previous pointer forward if not so. Fill the holes we create in the process on the fly; shrink the array afterwards. shrinks the generated filters for our AS from over 100k to under 20k lines. | |||
2007-03-05 | switch to whois.radb.net. The RIPE whois server shows problems, indefinately | Henning Brauer | |
hanging connection for a specific query (which works find against radb, investigating with ripe pplz), and ripe doesn't mirror some important RRs like ALTDB. | |||
2007-03-05 | do not strip the header for expect, hash, and log actions. | Reyk Floeter | |
since we have a tristate in relay_handle_http(), use nicer return codes defined to make it better readble (no function change). | |||
2007-03-05 | remove jumbo frame support by replacing MEXTALLOC with MCLGET, and | Reyk Floeter | |
simplify the VLAN code. this will close PR 5356 (system panics under high load). From claudio@ who is currently not around to commit this fix tested and ok by mcbride@, reyk@, todd@, Paul Hirsch, and brad | |||
2007-03-05 | store a maxlen with each prefix. if that is set, this prefix covers | Henning Brauer | |
multiple route objects (i. e. is the result of maksing out longer prefixes or aggregation we'll do later). if maxlen is > prefixlen, generate rules accordingly (prefixlen <= maxlen) | |||
2007-03-05 | If tty-timestamping is requested, but no PPS signal is present, output a | Marc Balmer | |
warning message and unconditionally set the sensor state to WARNING. discussed with otto, ckuethe; ok otto, "i like it" ckuethe | |||
2007-03-05 | prevent re-use of shit in pbuf from previous rules | Henning Brauer | |
2007-03-05 | add a reminder about the extra attach function | David Gwynne | |
2007-03-05 | add space for a match and attach routine to the device list, so particular | David Gwynne | |
controllers can specify extra code to run at match or attach time. use this on jmicron controllers to restrict attaching to ahci on pci function 0 (high functions are normal pciide style controllers), and to do the CCR tweaking to enable ahci. | |||
2007-03-05 | Recognise ATAPI device signatures. | Christopher Pascoe | |
2007-03-05 | spacing | Theo de Raadt | |
2007-03-05 | revert unintentional MAXCON change back to 800, accidentally did last | Bob Beck | |
commit with the U of A value, which may not be safe on all GENERICs with an unmodified kern.maxfiles | |||
2007-03-04 | Make sure a bpf device can only be opened once. | Can Erkin Acar | |
Previously the descriptor was locked only after an interface is set, leading to a race condition. Reported by Jon Steel < jon.steel at esentire com > tested by otto@, looks correct deraadt@ | |||
2007-03-04 | memory leak found by coverity; Jim Razmus | Theo de Raadt | |
2007-03-04 | delete sunos junk; Jim Razmus | Theo de Raadt | |
2007-03-04 | Clear the display so that the lines don't get overwritten with | Deanna Phillips | |
hotplugged devices. Noticed by, similar fix proposed, mbalmer - Add missing CVS tag; constantine - Handle SENSOR_S_UNSPEC (do nothing for now). All discussed with Constanine and mbalmer; ok mbalmer. | |||
2007-03-04 | correct include order | Theo de Raadt | |
2007-03-04 | rename struct prefix -> irr_prefix | Henning Brauer | |
2007-03-04 | store prefixes in binary format. we'll need that for aggregation. | Henning Brauer | |
discussed with pyr | |||
2007-03-04 | Fix another panic in bcw_phy_init() for sparc64. Now firmware loads | Marcus Glocker | |
and radio initializes on sparc64, too. | |||
2007-03-04 | for import rules, filter by source-as too | Henning Brauer | |
2007-03-04 | store peer AS numerically | Henning Brauer | |
2007-03-04 | pass pointer to struct policy_item down to print_rule() instead of 3 of its | Henning Brauer | |
members | |||
2007-03-04 | document include, and comments | Henning Brauer | |
stolen from hostapd.conf.5 | |||
2007-03-04 | fix output format. spent too much time with RPSL... | Henning Brauer | |
2007-03-04 | Oops, bring back pmap_collect1() and the check for pmap_kernel() in | Miod Vallat | |
pmap_collect() as we do an explicit pmap_collect(pmap_kernel()) in dire memory situations. | |||
2007-03-04 | Fix bcw_gpio_init(); Before we can write to the GPIO control register, | Marcus Glocker | |
we must switch back to the common core. Found because sparc64 panics on this (I start to like sparc64 :). | |||
2007-03-04 | Make bcw_change_core() conform to other functions. | Marcus Glocker | |
2007-03-04 | Limit knowledge of splfoo() return values, and use mac68k_machine.via1_ipl | Miod Vallat | |
instead of hardcoded 1; this gets us rid of unnecessary polls on machines running with A/UX interrupts. | |||
2007-03-04 | Invoke adb_cuda_autopoll() and leave polling mode after all initialization | Miod Vallat | |
commands are set; also add a delay between adb_intr_cuda() and adb_soft_intr() while polling, as this seems to be necessary on some models; ok gwk@ drahn@ | |||
2007-03-04 | Fix non AHCI_DEBUG build. | Christopher Pascoe | |
2007-03-04 | Replace empty ahci_ata_{probe,cmd} stubs with ones that do something. | Christopher Pascoe | |
Mostly from dlg@ | |||
2007-03-04 | Include port number in debug messages, where appropriate. | Christopher Pascoe | |
Clean up some whitespace problems. | |||
2007-03-04 | If INSTALL.<arch> isn't present at the given set location, give the | Kenneth R Westerback | |
user a chance to bail out before selecting sets to install. Just in case the user ended up in the wrong directory. Suggested by beck@, feedback from various. "emphatic ok" beck@ "go for it" deraadt@ | |||
2007-03-04 | Fix panic caused by bcw_leds_switch_all() because reading from wrong | Marcus Glocker | |
register. Noted while testing on sparc64. | |||
2007-03-04 | Now actually activate ports and try to detect devices. | Christopher Pascoe | |
2007-03-04 | Save BIOS configured parameters over reset. Always enable staggered spin-up. | Christopher Pascoe | |
Don't clean interrupt status now - have to flush individual ports' status first. | |||
2007-03-04 | Add support for enabling/disabling port activity, and soft/port resets. | Christopher Pascoe | |
2007-03-04 | Add support for issuing a (polled) command. | Christopher Pascoe | |