Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-22 | Remove unused VM_MAX_KERNEL_BUF define. | Miod Vallat | |
2010-11-22 | create devices for fstab entries that are using the disklabel UID notation too | Alexander Hall | |
ok krw@, jsing@ | |||
2010-11-22 | SCSI devices are assumed to be T_FIXED unless they say otherwise. | Kenneth R Westerback | |
cd(4) did not believe any T_FIXED device was its responsibility. Thus when a USB CD forgot to mention that it is T_REMOV, it appeared as uk(4). Make cd(4) accept even T_FIXED devices that claim to be T_CDROM or T_WORM. Noticed and fix tested by Rene Maroufi. Closes PR #6513. | |||
2010-11-22 | allow weird practices such as ftp_proxy='' instead of unset altogether | Marc Espie | |
because, apparently, that's what they do in the 3rd world. | |||
2010-11-22 | Update example disk partition info to more current reality. Noticed | Kenneth R Westerback | |
by and diff from Roberth via tech@. ok jmc@ | |||
2010-11-21 | adding timer randomness in ioctl doesn't really help and looks suspicious. | Ted Unangst | |
ok deraadt | |||
2010-11-21 | Refactor internals of private key loading and saving to work on memory | Damien Miller | |
buffers rather than directly on files. This will make a few things easier to do in the future; ok markus@ | |||
2010-11-21 | Properly handle when uhci_alloc_sqh() fails to allocate memory in | Matthew Dempsky | |
uhci_device_setintr(). ok jakemsr@ | |||
2010-11-21 | honour $TMPDIR for client xauth and ssh-agent temporary directories; | Damien Miller | |
feedback and ok markus@ | |||
2010-11-21 | the posix regex mistake is here to stay. ok deraadt | Ted Unangst | |
2010-11-20 | throw some yields into the pf table code so it doesn't lock up the kernel. | Ted Unangst | |
ok deraadt henning | |||
2010-11-20 | typo | Miod Vallat | |
2010-11-20 | Change wsdisplay_kbdinput() to get an aray of keysym_t and a count, instead of | Miod Vallat | |
a single keysym_t at a time - this means tty sanity checks will only happen once. Introduce wsdisplay_rawkbdinput() for raw mode input, since raw input is a byte array. As a bonus this allows us to skip the `is this a KS_GROUP_Ascii value' test in that case. | |||
2010-11-20 | Replace all mentions of sc_base.me_dispdv with sc_displaydv. The latter is a | Miod Vallat | |
short #define for the former, and seeing both forms in this file is confusing. | |||
2010-11-20 | This is a first step towards getting rid of avail_start and avail_end in the | Miod Vallat | |
kernel, currently limited to low-hanging fruit: these variables were used by bus_dma to specify the range in which to allocate memory, back when uvm_pglistalloc() was stupid and would not walk the vm_physseg[]. Nowadays, except on some platforms for early initialization, these variables are not used, or do not need to be global variables. Therefore: - remove `extern' declarations of avail_start and avail_end (or close cousins, such as arm physical_start and physical_end) from files which no longer need to use them. - make them local variables whenever possible. - remove them when they are assigned to but no longer used. | |||
2010-11-20 | Make sure we do not overrun the memory ranges array, should the booter | Miod Vallat | |
give us more ranges than we expect. | |||
2010-11-20 | At first I intended to make this use mktemp for its temporary file, but since | Miod Vallat | |
we don't really use this script, let's rm it. ok deraadt@ millert@ | |||
2010-11-20 | Check uvm_km_alloc() return values; pmap_fork() will currently panic, | Miod Vallat | |
while i386_set_ldt() can fail gracefully. To be improved eventually. From mpech@ sometime ago. ok deraadt@ kettenis@ | |||
2010-11-20 | Remove unnecessary empty <machine/psl.h> files on arm-based platforms. | Miod Vallat | |
2010-11-20 | Do not attempt to include <machine/psl.h> when including this file from | Miod Vallat | |
assembly code (_KERNEL && _LOCORE) | |||
2010-11-20 | __attribute__((packed)) -> __packed. The ioprbs.c chunk was commented out, and | Miod Vallat | |
uncommenting it is intentional. ok deraadt@ | |||
2010-11-20 | Add CAVEATS section documenting error handling caveats. | Stefan Sperling | |
tweak and ok jmc, tedu | |||
2010-11-20 | Explain how to start a rebuild in a more obvious way and add an example. | Stefan Sperling | |
help and ok marco@ jsing@ jmc@ | |||
2010-11-20 | Missing splx() in hil_thread(). This turned out to be harmless due to the | Miod Vallat | |
way this code works (always ends up in tsleep eventually), but it never hurts to be correct. | |||
2010-11-20 | remove bs_list occurrences. fixes panic on destroy. | Federico G. Schwindt | |
ok from the m guild: mikeb@ miod@ mpf@ | |||
2010-11-20 | some more installboot cleanup from gapz@dud-t.org | Theo de Raadt | |
2010-11-20 | /tmp/cvsaGVL4U | Marc Espie | |
2010-11-20 | clean up cases of ;; | Theo de Raadt | |
2010-11-19 | typo; from ilya a. kovalenko <shadow () oganer ! net> | Mike Belopuhov | |
2010-11-19 | miscellanous->miscellaneous | Miod Vallat | |
2010-11-19 | mahine->machine | Miod Vallat | |
2010-11-19 | regen | Miod Vallat | |
2010-11-19 | Sync MAKEDEV against conf.c, and both against GENERIC. | Miod Vallat | |
2010-11-19 | Sync usb device list with macppc. | Miod Vallat | |
2010-11-19 | Add urio, uscanner and pseudo-device hotplug. | Miod Vallat | |
2010-11-19 | Add urio and uscanner. | Miod Vallat | |
2010-11-19 | add pseudo-device hotplug. | Miod Vallat | |
2010-11-19 | - drop dhcp group from interfaces which did not go UP and got | Alexander Hall | |
an ip address - do the same on startup of the install/upgrade too - do NOT do it unconditionally on all dhcp'd interfaces, since we use the group to retain state. ok krw@, deraadt@ | |||
2010-11-19 | Do not allow malloc() to wait in uhci_device_setintr(), instead check for | Miod Vallat | |
failure and return USBD_NOMEM, callers will do TRT. ok jakemser@ deraadt@ kettenis@ tedu@ | |||
2010-11-19 | Make KERN_CPTIME return an avarage number of ticks across all CPUs | Mike Belopuhov | |
tedu agreed with an idea, tested by Luis Useche and me; ok deraadt | |||
2010-11-19 | gapz@dud-t . org noted that sparc64 installboot crashes if the bootblock is | Theo de Raadt | |
zero-sized. Apply similar fixes to installboot for other architectures. | |||
2010-11-19 | Use regular double quotes ("") in the MAILTO example so we don't | Todd C. Miller | |
suggest something that is a syntax error. OK jmc@ | |||
2010-11-19 | Another "I'm the world's smallest" "No, this is me!" player: | Damien Bergamini | |
- TRENDnet TEW-648UBM | |||
2010-11-19 | More ultra-{micro,nano,pico,femto,atto,zepto,yocto} wifi dongles: | Damien Bergamini | |
- Digitus DN-7042 - Solwise NET-WL-UMD-606N | |||
2010-11-19 | Prevent dhcpd(8) from trying to listen on interfaces that don't have a | Antoine Jacoutot | |
valid broadcast (e.g. pflog0). "no objection" krw@, ok claudio@ | |||
2010-11-19 | Fix the "SSL error:host(blah)!=cert(*.blah)-Continue? (y)" error when going | Federico G. Schwindt | |
to sites using wildcard certs (i.e. github.com). Adapted from lynx 2.8.7. deraadt@ ok. | |||
2010-11-18 | do not run makedev for a uid; ok krw | Theo de Raadt | |
2010-11-18 | Declare pmap_proc_iflush() in <uvm/uvm_pmap.h> unless <machine/pmap.h> | Miod Vallat | |
provides an inline version of it. | |||
2010-11-18 | Make sure readdir cookies are actually allocated with the correct size | Miod Vallat | |
(in case eventually we change their type from u_long to something else), and do not truncate them to 32 bits in the ntfs code. ok tedu@ | |||
2010-11-18 | Sync the LIBFOO defines with the current set of libraries we build and | Miod Vallat | |
install. Also define LIBARCH on arm platforms. ok millert@ deraadt@ |