Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-08 | allow for xfs; ok miod | Todd T. Fries | |
2003-02-08 | When creating > 1 files with mktemp(1), make sure that if the creation | Peter Valchev | |
of the n'th (n>1) file fails, the previous ones get removed before exit(1) Idea by jason; ok millert deraadt | |||
2003-02-08 | fix /tmp races; this no longer leaves files around. ok millert jason henric | Peter Valchev | |
2003-02-08 | Obey calling convention and use the right opcode (fabss -> fabsd); Fabulous... | Jason Wright | |
(based on netbsd pr 20140) | |||
2003-02-08 | sync | Theo de Raadt | |
2003-02-08 | typo | Theo de Raadt | |
2003-02-07 | More paranoia, make sure temp file owner matches real uid. | Todd C. Miller | |
2003-02-07 | Don't write log message to console unless we are unable to connect to | Todd C. Miller | |
syslogd. Noticed by marc@; OK by marc@ and deraadt@ | |||
2003-02-07 | typos; | Jason McIntyre | |
2003-02-06 | sync | Theo de Raadt | |
2003-02-06 | minor tweaks; raj@cerias.purdue.edu | Theo de Raadt | |
2003-02-06 | undo broken fix for #387, fixes #486 | Markus Friedl | |
2003-02-06 | use common elf.sc instead of own hppaobsd.sc, catch up w/ dale's elf work ↵ | Michael Shalayeff | |
for hppa; drahn@ lots of helps and ok | |||
2003-02-06 | make pf.conf 0600 by default | Henning Brauer | |
discussed and agreed theo and daniel | |||
2003-02-06 | include isp firmware on some sparc64 media; and resize the media that is | Theo de Raadt | |
too small | |||
2003-02-06 | allow to read some directories itself | Jakob Schlyter | |
2003-02-06 | fix races in rename/symlink; from Tony Finch; ok djm@ | Markus Friedl | |
2003-02-06 | support 'ProxyCommand none'; bugzilla #433; binder@arago.de; ok djm@ | Markus Friedl | |
2003-02-06 | missing call to setproctitle() after authentication; ok provos@ | Markus Friedl | |
2003-02-05 | regen | Michael Shalayeff | |
2003-02-05 | compaq pci hot plug controller | Michael Shalayeff | |
2003-02-05 | sync | Jason Wright | |
2003-02-05 | add cavium and nitrox xl | Jason Wright | |
2003-02-05 | real ram disk root entry | Michael Shalayeff | |
2003-02-05 | regen | Michael Shalayeff | |
2003-02-05 | add ws* devices; fries@ ok | Michael Shalayeff | |
2003-02-05 | grok sti type wsdisplay | Michael Shalayeff | |
2003-02-05 | Add knob for getting at the "output level bit", supposedly changes the | Jason Wright | |
full scale outputs between 2.8Vpp and 2.0Vpp for line. | |||
2003-02-05 | implement a few wsdisplay ioctls. comment on the putchar implementation | Michael Shalayeff | |
2003-02-05 | wsdisplay type for sti | Michael Shalayeff | |
2003-02-05 | WORKAROUND: use a volatile to get around a compiler or fp emulation bug | Theo de Raadt | |
(jason says he will look into this later) | |||
2003-02-05 | in clearbits only flush the pte if it has changed. bits/bit in testbit | Michael Shalayeff | |
2003-02-05 | missed one during ansification | Henning Brauer | |
2003-02-05 | Fix "pass out dup-to (tun0 1.1.1.1) inet6 all" error message | Cedric Berger | |
Allow "pass out dup-to tun0 all" ok mcbride@ henning@ | |||
2003-02-05 | Remove the confusing and more-or-less unnecessary temporary | Ryan Thomas McBride | |
struct pf_pooladdr *cur. It was being used incorrectly in the round-robin case, which meant that the previous address was being selected, rather than the reall current one. ok dhartmei@ | |||
2003-02-05 | Simplify more. | Cedric Berger | |
2003-02-05 | typos; isakmpd(8) ok niklas@, mailwrapper(8) help kjell@ | Jason McIntyre | |
2003-02-05 | Simplify. | Cedric Berger | |
2003-02-05 | simplify ProxyCommand parsing, remove strcat/xrealloc; ok henning@, djm@ | Markus Friedl | |
2003-02-05 | Do not scare ppl too much. | Cedric Berger | |
Suggested by camield@ | |||
2003-02-05 | Get rid of the pops: | Jason Wright | |
- interrupt is called when the block has been DMA'd... since LASI seems to include a FIFO this is -not- the same as block completion which we have to poll for. Luckily the FIFO is deep enough that polling in the interrupt handler seems to work. - This probably breaks capture, but I'll fix that when I get up tomorrow. (committed to the tune of Fugazi's "Waiting Room") | |||
2003-02-05 | clean up the testall target | Marco S Hyman | |
2003-02-05 | AARRGGH! 2nd try, handle the case where from_fd == to_fd in ↵ | Marco S Hyman | |
_thread_fd_table_dup | |||
2003-02-05 | handle the case where from_fd == to_fd in _thread_fd_table_dup | Marco S Hyman | |
2003-02-05 | add stdfiles test for proper fd handling | Marco S Hyman | |
2003-02-05 | thread fd handling, part 2. Don't mung file flags until forced | Marco S Hyman | |
to notice that the file exists. This fixes a problem where an application may think a file was in non-block mode because the threads kernel played with the flags. Also fix a stupid error introduced in the last commit -- the threaded version of dup and dup2 were foobared. Bad marc. | |||
2003-02-05 | - combine 16 bit le/be functions | Jason Wright | |
- clean up format switch | |||
2003-02-05 | Set the network mask to all 1's if no address is specified for a | Ryan Thomas McBride | |
route-to/dup-to/reply-to rule. Keeps round-robin from incrementing through the entire address space. ok dhartmei@ | |||
2003-02-05 | LLADDR macro doesn't work here, so copy mac into the softc directly. | Hugh Graham | |
2003-02-04 | Part 1 of thread fd handling fixes. In the new scheme fd_table_entries | Marco S Hyman | |
for dup-ed fds are shared to ensure proper flag handling. A refcnt was added to control when entries should be freed. Specific changes: close: don't free entry unless refcnt is zero dup: rewrite to use new function _thread_fd_table_dup dup2: rewrite to use new function _thread_fd_table_dup fcntl: use _thread_fd_table_dup uthread_fd: initialize thread fd table, searching for dup-ed fds. Add function to share _thread_fd_table entries when an fd is dup-ed. uthread_init: make it readable. Call fd init functions. All current regression tests plus the mysql torture test pass. The new stdfiles regression test fails (I/O redirection problem). Part 2 is intended to fix that problem |