Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-05 | Add some (currently unused) MD pmap flags to be used for pushing in | Owain Ainsworth | |
parameters such as cacheability, which is too different per-arch to be MI. discussed with miod, kettenis and art. ok miod@, art@. | |||
2009-02-05 | Fix slight logic error in a previous commit. | Owain Ainsworth | |
2009-02-05 | KNF, and remove a debug printf I missed. | Owain Ainsworth | |
2009-02-05 | KNF, no change to behaviour. | Owain Ainsworth | |
2009-02-05 | Merge the static block allocation code from {i915,radeon}_mem.c into | Owain Ainsworth | |
non-static code that's shared between both. While i'm here convert them to TAILQ. Eventually, both of these will die, but until then I'd rather shave the space in the kernel. Tested on radeon and intel. | |||
2009-02-04 | update the default socket paths, to reflect recent aucat changes | Alexandre Ratchov | |
2009-02-04 | if there are too many connections, stop acceping new ones rather | Alexandre Ratchov | |
than exit()ing with ``too many open files'' fatal error | |||
2009-02-04 | Some systems that claim to be ACPI 2.0 apparently don't provide an XSDT | Mark Kettenis | |
address. Make the code fall back on the RSDT on those systems. From Joerg Niendorf <p3y80@internode.on.net>. Fixes PR 5986. | |||
2009-02-04 | Make m_copyback() a lot smarter. Make it use all of the last mbuf | Claudio Jeker | |
(M_TRAILINGSPACE()) and allocate one cluster if needed (instead of chaining many mbufs). Somewhat needed for the rl(4) fix to ensure that the ethernet header is in one mbuf for sure. Tested by landry@ and myself | |||
2009-02-04 | Do not use m_pullup() because it aligns the data to a word boundary | Claudio Jeker | |
resulting in unaligned IP headers (because it aligns the ethernet header). Found the hard way by landry@ on sparc64. | |||
2009-02-04 | Tag ld.so as an OpenBSD binary/library. | Mark Kettenis | |
ok kurt@, drahn@, miod@ | |||
2009-02-04 | Tag ELF shared libraries as OpenBSD. | Mark Kettenis | |
ok kurt@, drahn@, miod@ | |||
2009-02-04 | explain that it's ok if we get a slightly different rate than | Alexandre Ratchov | |
the one we asked for, from Thomas Pfaff <tpfaff(at)tp76.info> with tweaks from jmc@ | |||
2009-02-04 | document server mode with help from jmc@ | Alexandre Ratchov | |
2009-02-04 | Mention PA7000 (PCXS) support; only model 720 has been tested so far, but | Miod Vallat | |
models 705, 710, 730 and 750 are expected to work as well. | |||
2009-02-04 | Handle PCXS data protection traps. Unlike other PA1.1 chips, there is a | Miod Vallat | |
single trap code for alignment and protection faults, so we have to figure out which kind of problem we are facing. ok kettenis@ | |||
2009-02-04 | On systems with split BTLB, do not bother trying to insert DBTLB entries, | Miod Vallat | |
as PDC will lie to us pretending it did while it didn't. ok kettenis@ | |||
2009-02-04 | On systems with viper memory controllers, always print its revision, | Miod Vallat | |
and allow asp interrupts to pass through even if not revision 0. ok kettenis@ | |||
2009-02-04 | Unify memory size reports a bit more: always report size in MB, and report | Miod Vallat | |
reserved memory on alpha and hppa on its own line (as done on sgi). | |||
2009-02-04 | daemonize when in server mode, suggested by many | Alexandre Ratchov | |
ok jakemsr | |||
2009-02-04 | Programs have no direct access do the device file descriptor. So, if | Alexandre Ratchov | |
the programs calls execvp(2), the new image can't use the device, which stays open, so other programs get EBUSY. Set the close-on-exec flag to avoid this. ok jakemsr | |||
2009-02-04 | gollo@ thought the timeouts were a little short, and indeed, they are off by ↵ | Ted Unangst | |
1000. (not much real effect, you can only sleep so short any way) | |||
2009-02-03 | in server mode, create /tmp/aucat-userid/ directory with | Alexandre Ratchov | |
permissions 0700, and create sockets in it. This prevents one local user to eavesdrop or disturb audio programs of other users. if you're using the ``-s socket'' option with an absolute path as argument, please update it to use a socket name. requested by many, bits from jakemsr and otto ok jakemsr | |||
2009-02-03 | add missing headers needed by wait() | Charles Longeau | |
ok rainer@ | |||
2009-02-03 | Reflect MPLS kernel changes. Operations are stored now in rt_mpls field. | Michele Marchetto | |
ok claudio@ laurent@ | |||
2009-02-03 | Use our own flags to set the operations and not RTF_PROTOX. | Michele Marchetto | |
Switch the padding field into a MPLS one in rt_msghdr to store relevant informations. OK claudio@ laurent@ | |||
2009-02-03 | Correctly update kernel and mfc when change in routing table happens. | Michele Marchetto | |
ok norby@ | |||
2009-02-03 | In Intra-Area-Prefix LSAs, set the LA-bit for all prefixes of 128-bit | Stefan Sperling | |
length, regardless of interface type. Allowed by RFC5340 and ok claudio@ | |||
2009-02-03 | We don't need anything other than link-local addresses and | Stefan Sperling | |
global-scope prefixes in iface->ifa_list. ok claudio@ | |||
2009-02-03 | Formatting fixes. | Stefan Sperling | |
2009-02-03 | Free TSS on the stack of the dead process. | Mike Belopuhov | |
In order to do that we have to remove all sleeping parts: sleeping memory allocation and a sleeping lock. Thus we're moving this code to the spinning lock (mutex) and getting rid of the GDT grow code. Downside is that now we're pre-allocating 64kb of memory per CPU from the start, but this might be optimized in future. This also unifies GDT code and MAXGDTSIZ define across i386 and amd64. With help from mickey. ok toby, art | |||
2009-02-03 | regen | Kevin Lo | |
2009-02-03 | add Buffalo WLI-U2-SG54HG | Kevin Lo | |
ok damien@ | |||
2009-02-03 | the prevalence of multi-core laptops revealed that taking the cpu average is | Ted Unangst | |
a poor way to adjust performance. Even with a cpu pegged, apmd is quite slow to react. Change things to consider min idle time, not average. Mostly from a diff by Laurence Tratt | |||
2009-02-02 | tweak the synopsis and usage, lladdr is not an optional argument. | Igor Sobrado | |
jmc@ might further improve on it, if needed. ok mbalmer@ | |||
2009-02-02 | remove unused function and macros, due to the lastest commit | Charles Longeau | |
ok rainer@ | |||
2009-02-02 | Refer to the filename, not manpage, when explaining where ethers entries are. | Marc Balmer | |
2009-02-02 | Clarify .Nd | Marc Balmer | |
2009-02-02 | Can wake up several machines in one invocation. | Marc Balmer | |
2009-02-02 | deals with shaddy repositories from backwards countries that implement | Marc Espie | |
nlist incorrectly. as diagnosed by kili@ | |||
2009-02-02 | Fix typo, from Joao Salvatti <salvatti@gmail.com>. | Marc Balmer | |
2009-02-02 | pedantic fixes: remove wrong token pasting. | Marc Espie | |
Reduces drastically the number of warnings one gets when compiling old library with newer preprocessor. tests and okay miod@ | |||
2009-02-02 | Initialize a few variables to prevent spurious "may be used uninitialized" | Darren Tucker | |
warnings from newer gcc's. ok djm@ | |||
2009-02-01 | Move variable declarations around to compile with gcc 2 | Miod Vallat | |
2009-02-01 | Nuke whitespace at EOL. | Miod Vallat | |
2009-02-01 | embellish the output of bgpctl(8). | Igor Sobrado | |
ok claudio@ | |||
2009-02-01 | Revert 1.28, rumoured to cause problems on some machines. | Miod Vallat | |
2009-02-01 | fix typo | Simon Bertrang | |
ok miod@ | |||
2009-02-01 | Fix the logic in mbus_add_mapping() to correctly handle requests spanning | Miod Vallat | |
more than one flex ``tile'', when the first one is already mapped. Some sti(4) devices have such requests. ok kettenis@ | |||
2009-02-01 | Save the text mode color palette upon startup, and restore it when | Miod Vallat | |
switching consoles or when X11 exits. Almost all other operating systems do this, and thus do not suffer from palette bugs in some X11 drivers. From FreeBSD. |