Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - urndis_match() should support multiple interface descriptors. | 2012-06-20 | 3 | -47/+33 | ||
| | | | | | | | | - in urndis_attach() use the first interface descriptor that's different from the control interface as the data interface. from armani's colleague with some tweaks by me. kettenis@ sthen@ ok | |||||
* | Reflect the changes made by RFC 3542 | 2012-06-20 | 1 | -23/+36 | ||
| | | | | | From Peter J Philipp (pjp at centroid.eu) ok jmc@ | |||||
* | typo; netbsd -r1.10 | 2012-06-20 | 1 | -1/+1 | ||
| | ||||||
* | Handle PT_GET_THREAD_* | 2012-06-20 | 1 | -1/+2 | ||
| | | | | ok otto@ kettenis@ | |||||
* | CLOCK_* moved from sys/time.h to sys/_time.h | 2012-06-20 | 1 | -2/+2 | ||
| | | | | ok otto@ kettenis@ | |||||
* | make a list format more nicely; ok lum | 2012-06-20 | 1 | -3/+3 | ||
| | ||||||
* | initialise accept() backoff timer to avoid EINVAL from select(2) in | 2012-06-20 | 2 | -4/+4 | ||
| | | | | rekeying | |||||
* | tweak previous; ok markus | 2012-06-19 | 1 | -5/+5 | ||
| | ||||||
* | various small markup fixes; ok lum | 2012-06-19 | 1 | -11/+20 | ||
| | ||||||
* | Remove hidden options that are not needed any more, | 2012-06-19 | 1 | -5/+2 | ||
| | | | | from Remco <remco at d-compu.dyndns.org>. Thanks | |||||
* | avoid shell code errors | 2012-06-19 | 2 | -4/+4 | ||
| | | | | | unneeded eval okay jasper@ | |||||
* | Use calloc() instead of malloc() for allocating the disk stats. | 2012-06-19 | 1 | -3/+4 | ||
| | | | | Requested by deraadt. | |||||
* | sshd_config: extend Match to allow AcceptEnv and {Allow,Deny}{Users,Groups} | 2012-06-19 | 3 | -13/+32 | ||
| | | | | | this allows 'Match LocalPort 1022' combined with 'AllowUser bauer' ok djm@ (back in March) | |||||
* | use warn() instead of perror(), like the rest of the code does | 2012-06-19 | 1 | -7/+7 | ||
| | | | | from Liam J. Foy | |||||
* | simplify includes prereq/req order: | 2012-06-19 | 1 | -26/+16 | ||
| | | | | | | | | | | | | | - everything that has prereq will also do includes, add it late, so that gnu stuff (the only part with prereq) happens late. - new RUN_MAKE snippet, to be able to have the makefile magically decide between Makefile.bsd-wrapper and Makefile. So there's no longer any need to remember complicated rules: add it to RDIRS if it just wants make includes, add it to PRDIRS if it wants prereq too, and that's all. okay deraadt@, miod@ | |||||
* | for arithmetic expressions, note that: | 2012-06-19 | 2 | -4/+6 | ||
| | | | | | | | +A parameter that is NULL or unset evaluates to 0. original diff from robert peichaer this version from naddy | |||||
* | sync | 2012-06-19 | 3 | -0/+14 | ||
| | ||||||
* | Count should always start from zero. | 2012-06-19 | 1 | -4/+2 | ||
| | | | | | | Doesn't matter if we need to relocate or not. Makes sense to jasper@ | |||||
* | Set the appropiate return value on futex wait. | 2012-06-19 | 1 | -1/+2 | ||
| | | | | Okay jasper@ | |||||
* | Avoid eternal sleep. | 2012-06-19 | 1 | -3/+3 | ||
| | | | | | | | Sleep on the actual data address and not on the stack address of the pointer to the data. Okay jasper@ | |||||
* | Add extra argument validation for the futex syscall. | 2012-06-19 | 1 | -6/+31 | ||
| | | | | Okay jasper@ | |||||
* | - remove outdated comment, we already do an equivalent of linux' access_ok() | 2012-06-19 | 1 | -3/+1 | ||
| | | | | | | using copyin() anyway. ok pirofti@ | |||||
* | Implement linux_sys_tgkill. | 2012-06-19 | 2 | -3/+28 | ||
| | | | | | | | Nobody calls linux_sys_tkill anymore so code for that is not needed. If this will become an issue in the future a simple wrapper will fix that. Okay jasper@. | |||||
* | Regenerate. | 2012-06-19 | 4 | -23/+61 | ||
| | ||||||
* | Add dummies for the epoll and eventfd syscall families. | 2012-06-19 | 2 | -9/+17 | ||
| | | | | Okay jasper@ | |||||
* | Add socket type mask to filter out implementation specific flags. | 2012-06-19 | 2 | -3/+6 | ||
| | | | | | | | | | | | The newer glibc's, when creating a socket, add some higher bit flags to the type argument that are used for debug, statistics, profiling whatever. They are not useful and implementation specific. This is needed for DNS resolving, otherwise the nss library from glibc will always fail to do the right thing. Okay jasper@ | |||||
* | sync the descriptions of /etc/passwd; | 2012-06-19 | 2 | -6/+6 | ||
| | | | | | issue spotted by f5b help/ok schwarze | |||||
* | oops, forgot to install getdtablecount(2); noted by tedu | 2012-06-19 | 1 | -3/+3 | ||
| | ||||||
* | add libtool to base, okay deraadt@, jasper@, millert@... | 2012-06-19 | 14 | -2/+2249 | ||
| | | | | (as requested by matthieu@ so we can work on xenocara). | |||||
* | Improve debug output and fix some style. No functional change. | 2012-06-19 | 1 | -30/+39 | ||
| | ||||||
* | Change the pool_get() flags from WAITOK to NOWAIT. | 2012-06-19 | 1 | -4/+8 | ||
| | | | | | | | | | This avoids a potential lost-wakeup as pointed out by guenther@. Now the futex is locked all through the process and EAGAIN is returned on failure. Makes sense to guenther@. | |||||
* | There are five main sections, not four, since routing domain support was added. | 2012-06-19 | 1 | -3/+3 | ||
| | | | | From Rod Whitworth. | |||||
* | Fix punctuation and merge two paragraphs into one to make it read | 2012-06-19 | 1 | -14/+7 | ||
| | | | | | | better. feedback/ok jmc, ok haesbaert henning | |||||
* | Add more pathconf(2) variables from POSIX. | 2012-06-19 | 2 | -2/+43 | ||
| | | | | From FreeBSD via Brad; ok millert | |||||
* | s/empy/empty/ typo fix | 2012-06-18 | 1 | -3/+3 | ||
| | | | | thx Scott McEachern | |||||
* | Support larger-than-page-alignment requests in posix_memalign() by | 2012-06-18 | 2 | -23/+130 | ||
| | | | | | | overallocating and then releasing unneeded memory pages. ok otto | |||||
* | Do not try to get the description of an unexisting video format, | 2012-06-18 | 1 | -2/+2 | ||
| | | | | from Gregor Best. | |||||
* | Add a BACKUP FILES section. | 2012-06-18 | 1 | -1/+12 | ||
| | | | | | Suggested by jmc@ He will review further. | |||||
* | Actually write all the data to stdout/stderr. | 2012-06-18 | 1 | -3/+22 | ||
| | ||||||
* | Add a skeleton mode to tmux (called "control mode") that let's tmux | 2012-06-18 | 8 | -12/+198 | ||
| | | | | | | | commands be sent and output received on stdout. This can be used to integrate with other terminal emulators and should allow some other things to be made simpler later. More to come so doesn't do much yet and deliberately not documented. | |||||
* | Clarify description of -W. Noted by Steve.McClellan at radisys com, ok jmc | 2012-06-18 | 1 | -3/+3 | ||
| | ||||||
* | document ports-readmes special-case | 2012-06-18 | 1 | -2/+15 | ||
| | ||||||
* | Remove mention of 'three' key files since there are now four. From | 2012-06-18 | 2 | -7/+7 | ||
| | | | | Steve.McClellan at radisys com. | |||||
* | RSA instead of DSA twice. From Steve.McClellan at radisys com | 2012-06-18 | 1 | -3/+3 | ||
| | ||||||
* | correct sizeof usage. patch from saw at online.de, ok deraadt | 2012-06-18 | 1 | -2/+2 | ||
| | ||||||
* | Add ~/.mg.d to FILES. Reviewed by jmc@ | 2012-06-18 | 1 | -2/+4 | ||
| | ||||||
* | Tidy up bell code, from Thomas Adam. | 2012-06-18 | 1 | -36/+15 | ||
| | ||||||
* | fix potential use of uninitialized variable. | 2012-06-18 | 1 | -1/+2 | ||
| | | | | | | found with valgrind on -portable. ok gilles@ | |||||
* | Add a couple of NULL pointer checks to key binding functions, from | 2012-06-18 | 1 | -2/+12 | ||
| | | | | jspenguin on SF bug 3535531. | |||||
* | When using M-> Place cursor at the bottom of the window (minus 3 | 2012-06-18 | 1 | -4/+17 | ||
| | | | | lines) like emacs, instead of middle of page. |