Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-02-22 | avoid sign extension for %b | Michael Shalayeff | |
2001-02-22 | ELF uses more than 5 vmcmds by default, so grow the default vmcmd set size | Artur Grabowski | |
to 8. At the same time it seemed like a good idea to avoid to always malloc a new vmcmd array, so put the default sized array into struct exec_vmcmd_set. We might want to make a linked list of vmcmd arrays or exec_vmcmd_sets instead of reallocating them some time in the future, but right now this seems like a waste of time. | |||
2001-02-21 | Latest soft updates from FreeBSD/Kirk McKusick | Constantine Sapuntzakis | |
Snapshot-related code has been commented out. | |||
2001-02-20 | Add M_ZERO option to malloc. Causes malloc to return a zero'ed buffer. | Constantine Sapuntzakis | |
Used by the new soft updates code | |||
2001-02-20 | use void * consistently in vfs_mount and sys_mount. ok @art | assar | |
2001-02-19 | Indentation nit. | Artur Grabowski | |
2001-02-19 | When doing an assertion for phz, just do it once when we set phz, | Artur Grabowski | |
not once per process. | |||
2001-02-19 | Fix LOCKDEBUG compile. | Artur Grabowski | |
2001-02-19 | Clean up spl handling. | Artur Grabowski | |
2001-02-16 | typo (incidentally, removed a bogus -k in the cvs file, the update | Marc Espie | |
will trigger $OpenBSD$ fill-in) | |||
2001-02-14 | make sure we do not pass shared M_EXT mbuf. will avoid | Jun-ichiro itojun Hagino | |
possible shared mbuf overwrite if we use bridge/multicast/loopback/whatever. sync with kame | |||
2001-02-13 | More sane spl handling. Don't just assume that we're called at spl0. | Artur Grabowski | |
2001-02-13 | No need to cast splx to (void). | Artur Grabowski | |
2001-02-13 | Use MIN, not min when counting the pages we steal. | Artur Grabowski | |
min is a function taking u_int arguments and we are counting signed longs here. | |||
2001-02-13 | KNF | Theo de Raadt | |
2001-02-12 | Check if softdep is enabled for this fs before calling softdep's | Federico G. Schwindt | |
fsync; art@ ok. | |||
2001-02-10 | new symbol handling in ddb for ELF, there is still a problem with hangman on ↵ | Niklas Hallqvist | |
alpha though.. | |||
2001-02-09 | return error from soaccept() upwards. part of accept(2) fix against RST | Jun-ichiro itojun Hagino | |
right after handshake. | |||
2001-02-08 | do not print stuff when not verbose | Michael Shalayeff | |
2001-02-07 | return ECONNABORTED, if the socket (tcp connection for example) | Jun-ichiro itojun Hagino | |
is disconnected by RST right before accept(2). fixes NetBSD PR 10698/12027. checked with SUSv2, XNET 5.2, and Stevens (unix network programming vol 1 2nd ed) section 5.11. | |||
2001-02-06 | spelling and KNF. | Federico G. Schwindt | |
2001-02-05 | only attach pseudo-device if it's counter is above zero; deraadt@, maja@ ok | Michael Shalayeff | |
2001-02-05 | If kernel is compile with support for DDB add a ddb command to enter | Mats O Jansson | |
ddb from boot -c. -moj | |||
2001-02-04 | Add support for pseudo devices. Based on the new code in config. | Mats O Jansson | |
N.B. this change requires the kernel to be configured with a new config since it need new information from ioconf.c. -moj ok @deraadt | |||
2001-02-03 | Do a check for the OpenBSD note before doing any emulation probes. | Artur Grabowski | |
This way OpenBSD will be explicitly treated first and not handled as a fallback. This should speed archs with many emulations. | |||
2001-01-31 | add kern.cp_time sysctl, to be used by various things | Theo de Raadt | |
2001-01-29 | Allow syscall aliasing to allow for multiple linux syscalls to be mapped | jasoni | |
to the same native syscall. To quote Jaromir's NetBSD commit if the third argument in syscall.conf matches [a-z0-9_], use it as a function alias instead of the function name in { ... } - from NetBSD, deraadt@ ok. | |||
2001-01-25 | spelling | Todd T. Fries | |
2001-01-24 | KGDB for i386 from NetBSD via niklas, with tweaks and accommodations. | Hugh Graham | |
Tested by various, vetted by mickey & theo. | |||
2001-01-23 | when the peer is disconnected before accept(2) is issued, | Jun-ichiro itojun Hagino | |
do not return junk data in mbuf (= sockaddr on accept(2)'s 2nd arg). set the length to zero. behavior checked with bsdi and freebsd. partial solution to NetBSD PR 12027 and 10698 (need more investigation). | |||
2001-01-22 | NATIVE_ELF -> NATIVE_EXEC_ELF (just some leftovers) | Artur Grabowski | |
2001-01-17 | do not call extent_print() unless DDB || DIAGNOSTIC | Theo de Raadt | |
2001-01-16 | Indentation nit. | Artur Grabowski | |
2001-01-16 | Add a check for MNT_NOEXEC that was in exec_elf.c but not here. | Artur Grabowski | |
I am not sure if it is necessary, but it will not hurt either. | |||
2001-01-15 | update from netbsd: | Jason Wright | |
several fixes with regards to boundary cases and other fixes | |||
2001-01-04 | Return a kmembuckets structure, rather than individual items, since they may be | Angelos D. Keromytis | |
out of sync between consecutive calls of sysctl(3). | |||
2001-01-04 | sysctl_quad/sysctl_rdquad, and "malloc" node in kern sysctl | Angelos D. Keromytis | |
2001-01-04 | sysctl_malloc() | Angelos D. Keromytis | |
2001-01-01 | 2001 | Aaron Campbell | |
2000-12-14 | NATIVE_ELF -> NATIVE_EXEC_ELF (this is what userland uses and | Artur Grabowski | |
what is defined in machine/exec.h | |||
2000-12-05 | Bring in fresh pool from NetBSD. Some improvements and fixes. | Artur Grabowski | |
2000-11-21 | support for kernel events on vnodes, from jlemon@freebsd.org, okay art@ | Niels Provos | |
2000-11-18 | better permission check; okay art@, millert@ | Niels Provos | |
2000-11-17 | calculate timeouts correctly, simpler. | Niels Provos | |
2000-11-17 | correct timersub | Niels Provos | |
2000-11-16 | rcsid; fix comment; lots of bad tabs and spaces | Michael Shalayeff | |
2000-11-16 | sync | Niels Provos | |
2000-11-16 | support kernel event queues, from FreeBSD by Jonathan Lemon, | Niels Provos | |
okay art@, millert@ | |||
2000-11-10 | Change the ktrace interface functions from taking the trace vnode to taking the | Artur Grabowski | |
traced proc. The vnode is in the proc and all functions need the proc. | |||
2000-11-10 | seperate -> separate, okay aaron@ | Niels Provos | |