summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix typo in commentmiod2013-06-041-2/+2
|
* remove orphaned macrosmiod2013-06-041-5/+1
|
* link subdirtedu2013-06-042-3/+3
|
* missed a space in the latin passphrase.tedu2013-06-041-3/+3
|
* Remove remaining references to HIBERNATE_COPY_PAGE. It was effectivelymlarkin2013-06-044-9/+5
| | | | | | | | removed at n2k13 but a few errant references still remained. No functional change. Spot tested by my on i386 and amd64 UP environments, no regressions seen. noticed by deraadt@
* tests for bcrypt_pbkdf_test.ctedu2013-06-042-0/+136
|
* revert. check is < 1, not < 0.tedu2013-06-041-1/+3
|
* oops, rounds is unsigned nowtedu2013-06-041-3/+1
|
* Cpu topology for AMD64.haesbaert2013-06-042-2/+132
| | | | | | | | | | | This adds information about smt id (thread), core id and package id (socket) to amd64. ci_smt_id, ci_core_id, ci_pkg_id should be followed by other archictectures and core relying on them should be under ARCH_HAVE_CPU_TOPOLOGY. ok tedu@
* I screwed up and forgot to commit this new file :(claudio2013-06-041-0/+316
|
* Fix "\" escape handling in read_string().krw2013-06-042-44/+34
| | | | Problem noted, fix tested and ok sthen@.
* fix pexpsthen2013-06-041-1/+2
|
* A couple of style/comment fixes from FreeBSD, with input frommikeb2013-06-041-14/+7
| | | | David Imhoff. No functional change.
* Substitute a couple of magic numbers with newly added PCIEmikeb2013-06-041-3/+3
| | | | DCTL flag defines. Now with the right defines, doh!
* Substitute a couple of magic numbers with newly added PCIEmikeb2013-06-041-5/+5
| | | | DCTL flag defines. No binary change.
* restore code commented out while debugging. From pedroespie2013-06-041-2/+2
|
* fix include guard locations (from pedro)espie2013-06-042-8/+8
|
* we are at 5.3.3 now.eric2013-06-041-2/+2
|
* fix use-after-free in debug traceseric2013-06-041-4/+4
|
* tweak previous;jmc2013-06-041-3/+2
|
* \-1;jmc2013-06-041-3/+3
|
* Use a simpler typedef to avoid depending upon <sys/types.h>; repairs librthreadmiod2013-06-041-2/+2
| | | | build.
* Add tests for raw IP divert. Set effective user ID to 0 only duringbluhm2013-06-0411-43/+94
| | | | privileged operations for raw sockets and bind any.
* remove some incredible lies about overlapping buffersderaadt2013-06-042-22/+10
| | | | ok guenther
* Update pathconf handling for -current..brad2013-06-041-11/+5
| | | | | | | | - Remove _PC_PATH_MAX, _PC_PIPE_BUF and _PC_SYNC_IO. - Add _PC_TIMESTAMP_RESOLUTION. - Change _PC_FILESIZEBITS from using "sizeof(off_t) * CHAR_BIT" to returning 64. With input from and Ok guenther@
* Introduce the 'ldpctl show discovery' commandclaudio2013-06-043-3/+52
| | | | Diff by Renato Westphal
* Speed-up the session establishment processclaudio2013-06-042-2/+13
| | | | | | | | | | * Send an extra Hello message before attempting to connect to a remote peer to guarantee that it formed an adjacency with us as well; * Don't wait for the first timeout to send the first Hello message. Both tricks together will allow for fast session establish since with both optimizations passive role neighbors can open the connection immediatly by sending and receiving the hellos at the same time as the TCP session. From Renato Westphal
* Always accept TCP connection requests and identify to which neighborclaudio2013-06-049-113/+144
| | | | | | | | it belongs only _after_ receiving an Initialization message containing the information we need. Before an Initialization message is received, the TCP connection shouldn't be associated with any neighbor/adjacency. Therefor refactor that part into a own module. From Renato Westphal
* Tiny typo. "Just commit" -- claudio@ian2013-06-041-3/+3
|
* Add more ttys needed for virtual consoles.mpi2013-06-041-1/+12
| | | | ok deraadt@, miod@
* Add support for virtual consoles, based on previous work done by kettenis@mpi2013-06-043-20/+30
| | | | | | for inteldrm(4). ok miod@, kettenis@
* regentedu2013-06-041-2/+2
|
* Adjust to the latest changes on the ctl_iface structclaudio2013-06-041-11/+13
| | | | From Renato Westphal
* Cleanup ctl commands and remove unused variables inherited from ospfdclaudio2013-06-043-49/+13
| | | | From Renato Westphal
* Remove unused includes, constify cfattach and other small cleanings.mpi2013-06-042-31/+15
|
* Implement support for adjacencies and targeted hellosclaudio2013-06-0415-202/+464
| | | | | | Refactor adjacencies out of the neighbor handling so that it is possible to have more complex topologies with targeted sessions. From Renato Westphal
* Since we now have shm_{open,unlink}(), add the S_TYPEIS{MQ,SEM,SHM}()guenther2013-06-041-1/+8
| | | | | | macros that are mandated by POSIX ok matthew@ tedu@
* Move function declaration where they belong.mpi2013-06-042-18/+14
|
* Do not pretend mapping the MMIO region when in fact we don't andmpi2013-06-043-42/+34
| | | | clean some related code.
* Spacing.mpi2013-06-042-29/+29
|
* Properly implement the exponential backoff timer on session initializationclaudio2013-06-045-12/+37
| | | | | | | | | | | | | | | | According with the section 2.5.3 of RFC 5036, an LSR must throttle its session setup retry attempts with an exponential backoff in situations where Initialization messages are being NAK'd (because of disagreements on session parameters). It doesn't mention using this procedure for TCP connection failures. With that said, start the inactive delay timer only after receiving an appropriate notification message. When playing the active role of the initialization process, throttle the session setup retry attempts by not connecting to the remote peer. When playing the passive role, throttle the session setup retry attempts by delaying the processing of the received Initialization message. Diff by Renato Westphal, adjusted by myself
* Add RCS ids.pirofti2013-06-046-0/+12
|
* Fix a bunch of "variable 'foo' set but not used." warnings emitted by newer GCC.brad2013-06-041-10/+13
| | | | ok matthew@ kurt@
* Minor adjustments in the initialization FSMclaudio2013-06-044-65/+60
| | | | | | | | | | | | | * Remove the unused NBR_EVT_DOWN event; * Print the FSM transitions before performing the appropriate actions. In this way nested calls to nbr_fsm() won't print the state transitions in reverse order; * When playing the active role of the initialization process, transition from NBA_STA_PRESENT to NBR_STA_INITIAL before going to NBR_STA_OPENSENT; * Call session_shutdown() on nbr_ktimeout() to remove duplicated code; * Notify the lde process when a neighbor is deleted (discovery timeout); * Fix a few memory leaks on nbr_del(). Diff from Renato Westphal.
* Minor adjustments in the startup of the lde and ldpe processesclaudio2013-06-042-10/+10
| | | | | | | The 'ldpd_process' variable should be set as soon as possible in the initialization of each process. In that way if something goes wrong in the initialization we will know in which process the problem happened. Diff by Renato Westphal
* supress errors that would occur if bioctl is missing or is run with anhalex2013-06-041-2/+2
| | | | unsupported disk as argument (e.g. wd*)
* fix some minor issues before proceeding with the remaining patches fromclaudio2013-06-044-19/+11
| | | | Renato Westphal. Diff by Renato Westphal
* syncderaadt2013-06-0424-20/+115
|
* There's no reason to have a separate structure to hold and duplicatempi2013-06-033-46/+15
| | | | | | | the raster display data. Simplify this by using only one pointer to a struct rasops_info, the one in vga_config. While here remove unused fields from vga_config.
* Stop doing pipex ioctl if no tunnel interface is configured.yasuoka2013-06-031-14/+24
|