Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-27 | Regenerate | Philip Guenthe | |
2009-11-27 | Add setrdomain() and getrdomain() system calls. Committing now to | Philip Guenthe | |
catch the libc major bump per request from deraadt@ Diff by reyk. ok guenther@ | |||
2009-11-27 | Don't forget to fill region from the cache with junk if needed in one case; | Otto Moerbeek | |
from Fabien Romano and Jonathan Armani | |||
2009-11-27 | No need to clear a mmapped region; from Fabien Romano and Jonathan | Otto Moerbeek | |
Armani | |||
2009-11-27 | Move MB_LEN_MAX into the machine-independent sys/limits.h header, | Philip Guenthe | |
rather than defining it separately for each architecture. Also set it to 4, to accommodate for future UTF-8 support (rfc3629). Diff by stsp, committing to catch the libc major bump ok kettenis@, guenther@ | |||
2009-11-27 | Add a signal for librthread to use for interthread ASTs for cancelation | Philip Guenthe | |
and suspension. "get it in" deraadt@, tedu@, cheers by others | |||
2009-11-27 | Convert thrsleep() to an absolute timeout with clockid to eliminate a | Philip Guenthe | |
race condition and prep for later support of pthread_condattr_setclock() "get it in" deraadt@, tedu@, cheers by others | |||
2009-11-27 | Convert thrsigdivert to (almost) be sigtimedwait by adding siginfo_t | Philip Guenthe | |
and struct timespec * argument. sigtimedwait is just a one line wrapper after this. "get it in" deraadt@, tedu@, cheers by others | |||
2009-11-27 | Change threxit() to take a pointer to a pid_t to zero out from the | Philip Guenthe | |
kernel so that librthread can detect when a thread is completely done with its stack without need a kqueue. The dying thread moves itself to a GC list, other threads scan the GC list on pthread_create() and pthread_join() and free the stack and handle once the thread's thread id is zeroed. "get it in" deraadt@, tedu@, cheers by others | |||
2009-11-27 | Bump the libc major for the post-h2k9 string of ABI changes and additions | Philip Guenthe | |
(rthreads, MB_LEN_MAX, rdomains) | |||
2009-11-27 | fix some spacing issues in the copyright; permission granted | Jason McIntyre | |
from the authors, henning and gollo from Brad Tilley | |||
2009-11-27 | sync german translations with recent C.msg changes | Stefan Sperling | |
"Reads ok" mk@ | |||
2009-11-27 | Print outer ipv6 addresses for encapsulated packets only if tcpdump | Alexander Bluhm | |
is run with -v. This behavior is analog to ipv4. ok mpf@ todd@ | |||
2009-11-27 | ci->ci_curprocpaddr must initialized before cpu1 get into cpu_switchto(). | Takuya ASADA | |
ok miod@ | |||
2009-11-27 | Add a couple of comments. | Nicholas Marriott | |
2009-11-27 | typo in documentation; missing full stop. | Igor Sobrado | |
from Dawe. | |||
2009-11-27 | benefical -> beneficial; from Brad Tilley | Jason McIntyre | |
2009-11-27 | atomic counter increment for SMP. | Takuya ASADA | |
ok jsing@ | |||
2009-11-26 | Visual (and on some machines, audio) feedback while the machine is | Mike Larkin | |
resuming via calls to aml _SST method. This also makes the "moon" LED on thinkpads to blink during resume and cease when resume is completed. ok pirofti@ | |||
2009-11-26 | Now IPI can interrupt to clock interrupt handler. | Takuya ASADA | |
It prevents deadlock with TLB shootdown and clock interrupt. ok miod@ | |||
2009-11-26 | Silence dhclient by immediately exiting if the interface doesn't exist | Kenneth R Westerback | |
or can't return important flags via ioctl. Excess verbiage pointed out by deraadt@. ok henning@ | |||
2009-11-26 | This doesn't need to be u_int. | Nicholas Marriott | |
2009-11-26 | - let this compile again. | Jasper Lievisse Adriaanse | |
ok jsing@ | |||
2009-11-26 | Make types clearer and lint happier. | Nicholas Marriott | |
2009-11-26 | Fix type - attributes should be u_char not int. | Nicholas Marriott | |
2009-11-26 | Change paranoia check to check for <= 0 and to avoid warning. | Nicholas Marriott | |
2009-11-26 | Tidy up various bits of the paste code, make the data buffer char * and add | Nicholas Marriott | |
comments. | |||
2009-11-26 | Continue rather than returning if not a mouse key, to avoid hanging on any | Nicholas Marriott | |
function key... | |||
2009-11-26 | fix copy & paste error: IMSG_MTA_RESUME --> IMSG_MDA_RESUME | Charles Longeau | |
ok gilles | |||
2009-11-26 | Reset the wakeup vector to ensure that we don't resume on reboot. | Mike Larkin | |
Temporarily disabled for debugging purposes, but can be turned on if needed. ok deraadt@ | |||
2009-11-26 | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to | Nicholas Marriott | |
the rest to reduce lint output. | |||
2009-11-26 | Don't try to be clever and mix tag queueing mechanisms. Few if any | Kenneth R Westerback | |
disks actually do queueing correctly. Keep it SIMPLE. Fixes naddy@'s magic DNES disks on siop even if dlg@'s new midlayer is active. ok marco@, tested by naddy@. | |||
2009-11-26 | Rename a variable to something more helpful. | Nicholas Marriott | |
2009-11-26 | do not pull acpi_wakecode.o into RAMDISKS | Theo de Raadt | |
2009-11-26 | move gcu* to near what it is used by | Theo de Raadt | |
2009-11-26 | Get a u_char from the string, otherwise it isn't possible to enter \0377 as it | Nicholas Marriott | |
is mistaken for EOF (doh). Also drop an unused argument. | |||
2009-11-26 | grammar; | Jason McIntyre | |
2009-11-26 | If the EC is in burst mode use the fast delay to meet the requirements | Theo de Raadt | |
of the spec, instead of using tsleep and screwing up. from canacar, ok kettenis jsing pirofti | |||
2009-11-26 | sync snmp_imsg_hdr with imsg_hdr and unbreak the snmp trap interface | Reyk Floeter | |
2009-11-26 | Fix an issue where 82573L based em(4) devices had long latencies on the | Dariusz Swiderski | |
recieved packets. fix from intel drivers, via Brad ok claudio@, deraadt@ | |||
2009-11-26 | em_stop() removes IFF_RUNNING flag, so we should rely on the IFF_UP being set | Dariusz Swiderski | |
ok deraadt@ | |||
2009-11-26 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-11-26 | allow USB xfer requests to use up to 16 frames per xfer, depending on | Jacob Meuser | |
blocksize | |||
2009-11-26 | greatly reduce latency and kill some XXXs: | Jacob Meuser | |
* reduce number of outstanding USB xfers: 6 -> 3 * reduce number of USB frames per xfer: 10 -> 2 * if the device uses wMaxPacketSize frame sizes that are longer than 1 ms, allow 1 frame per xfer * instead of making blocksizes big enough to hold all outstanding xfers, just make it big enough to hold one xfer * calculate blocksizes a little better * be more careful to let the upper layer know exactly when a block has been moved in/out of the upper layer buffer ok ratchov | |||
2009-11-26 | Handle the possibility of partial mouse reads, and fix a comment while here. | Nicholas Marriott | |
2009-11-26 | sync description with .Nd macro in dc(4). | Igor Sobrado | |
2009-11-26 | Emulate il1, dl1, ich1 to run (albeit slowly) with vt100 feature set. | Nicholas Marriott | |
2009-11-26 | magical fix for a fault which reliably brings my firewalls down. i think | David Gwynne | |
not having sks and sks set to NULL causes random memory to be pool_put(). ok deraadt@ jsing@ | |||
2009-11-26 | initialize cpu_info correctly. | Takuya ASADA | |
ok miod@ | |||
2009-11-26 | unbrak previous | Dariusz Swiderski | |
ok deraadt@ |