Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-25 | Update the libpthread section. | Brad Smith | |
ok matthew@ sthen@ | |||
2012-09-25 | Remove mentioning of the -pthread flag. | Brad Smith | |
Discussed with matthew@ guenther@ kettenis@ ok matthew@ sthen@ | |||
2012-09-25 | Stop the space char completing a file name. This mimics more recent | lum | |
versions of emacs. kjell and jasper@ agree. | |||
2012-09-25 | make const arguments const, and static functions static. | Eric Faurot | |
ok chl@ | |||
2012-09-25 | need inttypes.h | Eric Faurot | |
from millert@ | |||
2012-09-25 | lost preposition "in" | Otto Moerbeek | |
2012-09-25 | Make sure we send MSIs to the primary CPU like we do on amd64. | Stuart Henderson | |
This is a fixed version reinstating the previous commit, fix from Christian Ehrhardt, same fix from brad@. | |||
2012-09-25 | Add minimal support for gen7/ivy bridge in inteldrm. | Jonathan Gray | |
Like gen6/sandy bridge this is enough to manage memory but does not attempt to setup the rings. ok kettenis@ | |||
2012-09-25 | Remove unused acpi locking code. | Paul Irofti | |
To be replaced with higher level C routines once we settle for a common consistent set of atomic operations across platforms. Discussed with and okay by deraadt@ and kettenis@. | |||
2012-09-25 | Reduce the diff between amd64/stand and i386/stand, requested by deraadt@. | Pascal Stumpf | |
These create essentially the same bootblocks, so the build system should not be diverging too much, or at least easily diffable. There is still a lot of work to be done here, but this is the low-hanging fruit. ok jsing@ | |||
2012-09-25 | Add notification for input from a pane, from George Nachman. | Nicholas Marriott | |
2012-09-25 | Fix search forward so it can match strings on the last line, SF bug | Nicholas Marriott | |
3571114 from "LiJunLe". | |||
2012-09-25 | add npppd, and clean up a few Xrs while here; | Jason McIntyre | |
2012-09-24 | Add control_write_buffer, from George Nachman. | Nicholas Marriott | |
2012-09-24 | Use pgrp of pty fd not pid of immediate child when recovering current | Nicholas Marriott | |
working directory (like current process). From Marcel Partap. | |||
2012-09-24 | Use ACS characters for choose-tree arrows based on diff from Romain | Nicholas Marriott | |
Francoise. | |||
2012-09-24 | spaces -> tabs | Eric Faurot | |
2012-09-23 | Make setenv(3) consistent with unsetenv(3), giving EINVAL if passed | Jeremy Evans | |
an empty name, NULL pointer, or a name containing an '=' character. OK millert@, guenther@ | |||
2012-09-23 | uint32_t is the integer type defined in stdint.h | Marc Espie | |
u_int32_t is historical BSD stuff. fix to match the manpage, namely #include <stdint.h> as a prerequisite. okay millert@ | |||
2012-09-23 | Allow route -T 3 add to create a table even if the table does not exist | Claudio Jeker | |
yet. This is the only way to create alternate routing tables. Reminded by and OK jsg@ | |||
2012-09-23 | Enable graceful restart by default. The only way to find out if it works for | Claudio Jeker | |
real. After discussion with sthen@, henning@ and deraadt@. It can be disabled per neighbor with "announce restart no". | |||
2012-09-23 | Remove /usr/X11R6/lib/X11/config/ | Matthieu Herrb | |
2012-09-22 | gcc2 doesn't like unnamed fields. make this compile on vax again. | Marc Espie | |
"looks right" deraadt@ | |||
2012-09-22 | last stage of rfc changes, using consistent Rs/Re blocks, and moving the | Jason McIntyre | |
references into a STANDARDS section; | |||
2012-09-22 | various fixes; ok yasuoka | Jason McIntyre | |
2012-09-22 | revert previous, breaks the tree | Stuart Henderson | |
2012-09-21 | Do not pass the username to forwards_get() which does not have to care about | Eric Faurot | |
this. Instead, set the username on the expand context, and copy it on the expand nodes as they are inserted. ok gilles@ | |||
2012-09-21 | wrap expandtree into a "struct expand". | Eric Faurot | |
ok gilles@ | |||
2012-09-21 | Make sure we send MSIs to the primary CPU like we do on amd64. | Mark Kettenis | |
Based on a diff from Christian Ehrhardt. | |||
2012-09-21 | add register aliases "fp" and "AT" as available on Tru64 and Linux; ok miod@ | Christian Weisgerber | |
2012-09-21 | move struct lka_session definition in lka_session.c | Eric Faurot | |
ok gilles@ | |||
2012-09-21 | Add a log_envelope() function that log envelope status in a uniform way. | Eric Faurot | |
It automagically adds an rcpt=<user@domain> field if "dest" differs from the original "rcpt". The function takes an "extra" parameter that allows to add some specific info depending on the context. ok gilles@ | |||
2012-09-21 | Fix handling of filenames containing escaped globbing characters and escape | Darren Tucker | |
"#" and "*". Patch from Jean-Marc Robert via tech@, ok djm. | |||
2012-09-21 | Fix improper handling of absolute paths when PWD is part of the completed | Darren Tucker | |
path. Patch from Jean-Marc Robert via tech@, ok djm. | |||
2012-09-21 | Move ruleset_match() prototype to smtpd.h and make the envelope const. | Eric Faurot | |
Adapt a lot of functions in chain to use const args where required. ok gilles@ | |||
2012-09-21 | zap lint remains | Marc Espie | |
2012-09-21 | file descriptor accounting for relays: track how many connections to | Sebastian Benoit | |
backend servers are unopened and reserve fds for them. ok reyk@, "don't wait" deraadt@ | |||
2012-09-21 | various tweaks; | Jason McIntyre | |
2012-09-21 | vax, found by fries@ | Marc Espie | |
2012-09-21 | major overhaul of the way make handle jobs, inspired by dpb: | Marc Espie | |
instead of forking a "job" per target, and having that job further fork separate commands, have make maintain a list of jobs, indexed by pid of currently running commands, and handle process termination continuation-style. This has lots of benefits: - make is responsible for most printing, so we no longer need pipes nor job control: make -j jobs see the tty. - no more special-casing for jobs that don't really execute anything. - unify code for make -jn and make -B, including signal handlers and job waiting. So make -n, make -q, +cmd now run commands in the same way in all cases. - unified more accurate error-reporting, as make knows precisely which command failed. Commands are tagged with their lines, and we display failing commands in silent mode. - fine-grained "expensive" command handling (recursion limiter). Do it per-command instead of per-target. Moreover, signal response is now simpler, as we just block the signals in a small critical sections, test for events, and sigpause (thanks a lot to guenther@ and millert@), so running make is now almost always paused without any busy-waiting. Thanks to everyone who tested and gave input. | |||
2012-09-20 | Fix a pair of typos in comments. | Bret Lambert | |
ok claudio@ | |||
2012-09-20 | bump revision | Reyk Floeter | |
2012-09-20 | various fixes; ok yasuoka | Jason McIntyre | |
2012-09-20 | Now that none of our installation media runs off the swap area, don't bother | Miod Vallat | |
accounting for an hyperthetical miniroot filesystem in swap. ok deraadt@ | |||
2012-09-20 | add more sensor types to sensor framework. | Yojiro Uo | |
- Pressure (10^-3 Pa) - distance (10^-6 m) - acceleration (10^-6 m/s^2) ok deraadt@ reyk@ | |||
2012-09-20 | The current code in ospf6d kroute tries to read the scope of the | Alexander Bluhm | |
route from the gateway's scope id. That does not work as the kernel provides the scope id via the kame hack instead of the sin6_scope_id field of the sockaddr_in6. Call recoverscope() to fix that. OK claudio@ | |||
2012-09-20 | pfsync_cancel_full_update needs to restore carp demotions since | Mike Belopuhov | |
it's cancelling the bulk update and can leave the machine in a demoted state. bug was noticed by benno, who was kind enough to verify that the fix is working fine. ok mpf, benno | |||
2012-09-20 | Nuke M_80211_NODE #define which mapped to M_DEVBUF and use M_DEVBUF directly. | Stefan Sperling | |
ok henning | |||
2012-09-20 | add uoak* devices; | Jason McIntyre | |
2012-09-20 | tweak previous; | Jason McIntyre | |