Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-04-06 | virgin perl 5.6.0 | Todd C. Miller | |
1999-04-29 | perl5.005_03 | Todd C. Miller | |
1999-04-29 | perl5.005_03 | Todd C. Miller | |
1999-04-29 | perl5.005_03 | Todd C. Miller | |
1996-08-19 | Import of Perl 5.003 into the tree. Makefile.bsd-wrapper and | Jason Downs | |
config.sh.OpenBSD are the only local changes. | |||
2014-03-24 | replace bzero with memset | David Gwynne | |
2014-03-24 | Passing MSG_DONTROUTE to sendto() here has no effect since SO_DONTROUTE | Martin Pieuchot | |
is only implemented for IPv4. Just remove it. Tested by and ok florian@ | |||
2014-03-24 | Remove commented out MSG_DONTROUTE flag. No object change. | Martin Pieuchot | |
ok florian@ | |||
2014-03-24 | Stop monitoring apache files. | Antoine Jacoutot | |
ok florian@ jung@ sthen@ | |||
2014-03-24 | Add /var/unbound/dev/log, it isn't needed for initial startup because Unbound | Stuart Henderson | |
opens the log before chrooting, but this handles the case where syslogd is restarted during Unbound's runtime. | |||
2014-03-24 | - add an EXIT STATUS section | Jason McIntyre | |
- more consistent STANDARDS blurb - -nosplit in AUTHORS ok stsp | |||
2014-03-24 | Warn the user if there is a missing mountpoint parameter. | Sylvestre Gallon | |
ok ajacoutot@, tedu@, pelikan@ | |||
2014-03-24 | rework mpii to use tasks instead of scsi_tasks for sas event handling. | David Gwynne | |
scsi_tasks are still backed by workq, and i dont like having to allocate storage to defer work. sas events that cause hotplug events are queued in the softc to be handled by a single task that loops on the queue for work. think levelled interrupts. this has a side effect that interrupts are necessary to enumerate devices for attachment. i wrote this toward the end of last year, but thought it best to wait for 5.5 unlock. | |||
2014-03-24 | sync | Theo de Raadt | |
2014-03-24 | use htolemXX and lemtohXX in the scsi_cmd paths. | David Gwynne | |
apart from the flags handling in sgls, this shrinks the io hot path on sparc64 and powerpc a lot. its pretty much the same on i386/amd64/alpha. | |||
2014-03-24 | mpi scatter gather lists are 24 bytes long and next to each other in | David Gwynne | |
memory. that means you cant do 8 byte loads and stores on the sg_addr member cos it wont be 8 byte aligned half the time which makes strict alignment archs (ie, the fun ones ones) upset. annotate the sge as being 4 byte aligned. replace the sg_addr member with sg_addr_lo and sg_addr_hi. replace htole64 assignment of the sg addr with a wrapper that does the right thing with a couple of htolem32 calls. generated code shrinks again. | |||
2014-03-24 | The kernel isn't involved in times(3); <sys/times.h> should never be | Philip Guenther | |
included there | |||
2014-03-24 | sync | Theo de Raadt | |
2014-03-24 | factor out the setting of the request context field so mpi_start does it | David Gwynne | |
on behalf of all its callers. use htolem32 and lemtoh32 to handle the message context. both save bytes. | |||
2014-03-24 | Update to match header | Philip Guenther | |
2014-03-24 | Enable SQLITE_ENABLE_FTS3_PARENTHESIS | James Turner | |
ok landry@ okan@ | |||
2014-03-24 | Merge conflicts | James Turner | |
2014-03-24 | Bump major to 27, regen .pc and header with new version info. Remove | James Turner | |
left over file. | |||
2014-03-24 | Merge conflicts | James Turner | |
2014-03-24 | Update sqlite to 3.8.4. A list of changes are available here: | James Turner | |
http://sqlite.org/changes.html. Tested in a bulk and ok landry@ | |||
2014-03-24 | annotate some packed structures with the alignment the hardware | David Gwynne | |
requires and the driver provides. without this gcc assumes the alignment of these structures is 1, which leads to some horrible asm. this is particularly interesting when reading stuff from the myx_status struct (like the txdone count) which needs to be atomic. doing byte reads and shifting them into a word in registers isnt atomic. its also probably a bit slow. specifying the alignment fixes this. deraadt@ warned me about this maybe 8 years ago. | |||
2014-03-24 | nothing after the irq ack posting relies on it being ordered. | David Gwynne | |
2014-03-24 | Split the API: struct ucred remains the kernel internal structure while | Philip Guenther | |
struct xucred becomes the structure for syscalls (mount(2) and nfssvc(2)). ok deraadt@ beck@ | |||
2014-03-24 | oops, merge error | Ted Unangst | |
2014-03-23 | more bm excision | Ted Unangst | |
2014-03-23 | clear stack variables, suggested by djm | Ted Unangst | |
2014-03-23 | Remove the MD4 functions. | Christian Weisgerber | |
"A collision attack published in 2007 can find collisions for full MD4 in less than two hash operations." ok deraadt@, man pages ok jmc@ | |||
2014-03-23 | some improvements suggested by djm. | Ted Unangst | |
use better constant for salt size. always copy ":" to gerror, in case somebody is dumb enough to overwrite it timingsafe_bcmp before somebody whines about strcmp | |||
2014-03-23 | two functions don't need to be exported | Ted Unangst | |
2014-03-23 | minimal change to implementation of bcrypt to not require static globals. | Ted Unangst | |
add some friendlier functions. move the classic static data api into wrapper functions. a few more changes to come... | |||
2014-03-23 | remove the never used bm string functions | Ted Unangst | |
2014-03-23 | c11 compliance: remove gets() | Ted Unangst | |
2014-03-23 | major++ in preparation for coming changes | Ted Unangst | |
2013-09-21 | Update sqlite to 3.8.0.2. A list of changes are available here: | James Turner | |
http://sqlite.org/changes.html. Tested in a bulk and ok landry@ ok espie@ | |||
2014-03-23 | Point people to the bugs@ archives on marc.info. | Brian Callahan | |
ok tedu@ | |||
2014-03-23 | security doesn't check ftpusers any more; reminded by jmc | Stuart Henderson | |
2014-03-23 | don't check ftpusers in security(8), from gsoares@, ok afresh1@ schwarze@ | Stuart Henderson | |
2014-03-23 | Skip leading escape sequences in man_deroff(). Helps indexing of | Ingo Schwarze | |
some manuals containing overzealous escaping in their NAME section. | |||
2014-03-23 | Unbreak after last commit. | Miod Vallat | |
2014-03-23 | Unhook librt stub. It's causing too much breakeage to the ports tree. | Matthias Kilian | |
Prodded by espie@. | |||
2014-03-23 | Finally give powerpc PIE. Remaining bugs on socppc fixed by kettenis@. | Pascal Stumpf | |
"I think you should do this switch right away" deraadt@ | |||
2014-03-23 | put a pointer to the "incompatibilities with lex and posix" into STANDARDS | Jason McIntyre | |
(big thanks to whoever took the trouble to write that one!), and while there fix a couple of typos in said section; | |||
2014-03-23 | Initialize additional BATs (IBAT4-IBAT7 and DBAT4-IBAT7). The rb600 firmware | Mark Kettenis | |
has these enabled and this leads to memory corruption that (surprisingly) only shows up when running PIE. | |||
2014-03-23 | Retire the old concat() function. | Ingo Schwarze | |
For .Sh, i wasn't even needed at all. For .Dd, .Nm, and .Os, use the new mdoc_deroff() instead. This gets rid of the last limited-size static buffers in this file, hence eliminates the last explicit MANDOCERR_MEM throwers here, and it shortens the code by 50 lines. | |||
2014-03-23 | Change struct mbr signature field type from 'unsigned short' to | Kenneth R Westerback | |
'u_int16_t' to be consistant with disklabel.h's struct dos_mbr. |