Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-10 | IPI implementation. Bits and pieces from NetBSD, but the interface has been | Mark Kettenis | |
changed to free up another 64-bit word in the interrupt transaction. This means we have two 64-bit words available for arguments, which means we probably don't need to pass arguments through structures. | |||
2007-09-10 | When selecting cylinder groups as candidates for new directory creation | Thordur I. Bjornsson | |
make sure that theres a minimum amount of free blocks in that cylinder group by tweaking the minbfree calculation. Without this, cylinder groups with no free blocks could be chosen which resaults in expensive searches for free blocks each time a new file is created in the directory. Tweak the calculation of minifree (minimum free inodes) in the same way. Also decrease the maxcontigdirs as the file system fills up to lessen the chance of directory clusters overflowing the available space in the cylinder group. From FreeBSD (Rev 1.116 of sys/ufs/ffs/ffs_alloc.c); ok miod@ | |||
2007-09-10 | Lock the vnode in ffs_unmount() before passing it too vinvalbuf() | Thordur I. Bjornsson | |
and VOP_CLOSE() since both of them expected it too be locked. ok art@ | |||
2007-09-10 | point to new 2.14.1.15 firmware (-current only). | Damien Bergamini | |
2007-09-10 | fix boot code maximum size. | Damien Bergamini | |
2007-09-10 | fix interrupts processing and scan command + cleanup | Damien Bergamini | |
2007-09-10 | - add support for 802.11 headers with various sizes (will be required | Damien Bergamini | |
for EDCA support). - remove an unused function. - fix scan command. - detect if the hardware radio switch is on instead of failing in the calibration of the thermal sensor with an obscure message. | |||
2007-09-10 | Pass a real ipl level to add_nubus_intr(), and make sure the interrupt | Miod Vallat | |
handler is invoked with spl raised to the given level, otherwise all nubus interrupts are processed at level 2. | |||
2007-09-10 | more MALLOC/FREE -> malloc/free and M_ZERO changes | Gilles Chehade | |
ok pyr@ | |||
2007-09-10 | Use erealloc3() in more_aliases() instead of malloc/realloc. | Todd C. Miller | |
2007-09-10 | remove my addition of portnumber for rsh in CVSROOT. | Joris Vink | |
while it sounds like a "good" idea some people convinced me otherwise. mostly because this breaks compat with GNU cvs. | |||
2007-09-10 | Introduce a md pmap hook, pmap_remove_holes(), which is supposed to mark | Miod Vallat | |
the holes a MMU may have from a given vm_map. This will be automagically invoked for newly created vmspaces. On platforms with MMU holes (e.g. sun4, sun4c and vax), this prevents mmap(2) hints which would end up being in the hole to be accepted as valid, causing unexpected signals when the process tries to access the hole (since pmap can not fill the hole anyway). Unfortunately, the logic mmap() uses to pick a valid address for anonymous mappings needs work, as it will only try to find an address higher than the hint, which causes all mmap() with a hint in the hole to fail on vax. This will be improved later. | |||
2007-09-10 | if more than 5 consecutive beacons are lost, reinitialize sensitivity | Damien Bergamini | |
state machine. | |||
2007-09-10 | only send a sensitivity update command when the settings have changed. | Damien Bergamini | |
2007-09-10 | cleanup. no binary change. | Damien Bergamini | |
2007-09-10 | Make function pointer calls look all alike; from Holger Mikolon. | Miod Vallat | |
No change in generated code. | |||
2007-09-10 | Make sure we don't skip the code which sends the QUIT command to the CDDB | Chad Loder | |
server and validates the returned track names. Unreachable code spotted by lint. OK krw@, deraadt@, espie@ | |||
2007-09-10 | more M_ZERO usage. | Federico G. Schwindt | |
2007-09-10 | Proper use of fseek/fseeko macros. | Tobias Stoeckmann | |
OK joris@, otto@ | |||
2007-09-10 | Allow port specification in our CVSROOT which is used for our | Joris Vink | |
ssh connection to our server. Example: joris@somehost.com:2222:/cvs OK tobias@ | |||
2007-09-10 | add support for relaying DNS traffic (with a little bit of packet | Reyk Floeter | |
header randomization). this adds an infrastructure to support UDP-based protocols. ok gilles@, tested by some | |||
2007-09-10 | Properly display list of commands in default 80 column terminal. | Tobias Stoeckmann | |
OK joris@ | |||
2007-09-10 | typo in message, from Mark Lumsden. | Otto Moerbeek | |
2007-09-10 | Fixed segmentation fault that occured during .cvsrc parsing if an invalid | Tobias Stoeckmann | |
cvs command has been specified. Spotted by Mathias De Belder <mathias at woei dot be> who also supplied a patch, although I took his second suggestion. OK joris@ | |||
2007-09-10 | optional flags must be sorted and enclosed in single brackets, | Igor Sobrado | |
as style(9) suggests; usage() should be a function; minor KNF fix ok otto@ | |||
2007-09-10 | Fix setting up the multicast filter. Fixes PR 5474. | Mark Kettenis | |
"looks right" deraadt@ | |||
2007-09-10 | If 44.1kHz sample rate isn't supported, use 48kHz instead. | Deanna Phillips | |
2007-09-10 | initialize sc_outports->master and sc_inports->master. Fixes "set failed" | Alexandre Ratchov | |
errors when running audioctl(1) on devices without master controls ok jakemsr@ | |||
2007-09-10 | Add command verbs, a mixer target and mixer controls for EAPD control. | Deanna Phillips | |
Some codecs, like the AD1984 found in x60s, need this in order for the speakers to work. New mixer items with names *.eapd will show up for codecs that need it and that are using the generic functions. From kent@netbsd | |||
2007-09-10 | Some pin widgets default to off, so make sure they're all enabled, not | Deanna Phillips | |
just the bidirectional ones. This could fix some no-sound problems on codecs using the generic functions. Code from kent@netbsd | |||
2007-09-10 | Set bidirectional pins to output, ignoring what the codec says is | Deanna Phillips | |
their purpose, since that's often incorrect. This should solve some no-sound problems for codecs using the generic functions. From kent@netbsd | |||
2007-09-09 | use strcspn to properly overwrite '\n' in fgets returned buffer | Charles Longeau | |
ok moritz@ gilles@ | |||
2007-09-09 | Make sure ptrace(2) cannot change any priviliged bits in the Machine State | Mark Kettenis | |
Register. Fixes PR 5574. From Stefan Kempf. ok deraadt@ | |||
2007-09-09 | Added support for checkout -p with local repository. | Tobias Stoeckmann | |
OK joris@ | |||
2007-09-09 | Add lint stubs for the longjmp family of functions which are defined in | Otto Moerbeek | |
assembly on all platforms. ok deraadt@ | |||
2007-09-09 | Silence erroneous "environ used, but not defined" lint warning by | Otto Moerbeek | |
providing a stub. ok deraadt@ | |||
2007-09-09 | add string length arguments to some functions, and do not copy a string | Theo de Raadt | |
buffer to itself; checked by jsg and kettenis and others | |||
2007-09-09 | Add firmware control block structure. | Marco Peereboom | |
2007-09-09 | From Pierre Riteau: | Ray Lai | |
Sync ident behavior with GNU RCS: - return 1 to the shell if any file could not be opened. - print an empty line after processing a file unless we couldn't open it (and not for the last one). OK niallo. | |||
2007-09-09 | Mention -q in compatibility section. | Ray Lai | |
OK jmc. | |||
2007-09-09 | Move redundant prompt/fgets/sscanf lines into a function with | Ray Lai | |
appropriate checks, changing sscanf to strtonum in the process. Initial diff from Charles Longeau. OK moritz and chl. | |||
2007-09-09 | Have rlog exit 1 if any of the files could not be opened. | Ray Lai | |
Don't mention -q flag, which is there for compatibility. From Pierre Riteau. OK joris for first part, OK niallo and jmc for second. | |||
2007-09-09 | The obvious bzero/memset -> M_ZERO changes. | Kenneth R Westerback | |
2007-09-09 | thmc vs tmhc screwup | Theo de Raadt | |
2007-09-09 | /enet apparently maps to mc0; gwk ok | Theo de Raadt | |
2007-09-09 | Add a few missing bits to include/cpu.h required for MULTIPROCESSOR kernels. | Mark Kettenis | |
2007-09-09 | better printing code, fixing certain properties; reported by kettenis, | Federico G. Schwindt | |
tested by him and Johan Mson Lindman. ok kettenis. | |||
2007-09-09 | Make fpproc per-cpu. This turns fpproc into a macro, so adjust fpu/fpu.c | Mark Kettenis | |
to avoid collisions. | |||
2007-09-09 | check fgets return value | Charles Longeau | |
use strcspn to properly overwrite '\n' in fgets returned buffer with help and ok from moritz@ and ray@ | |||
2007-09-09 | Only clear the message header if it is called from a sysctl walk. This | Claudio Jeker | |
unbreaks RTM_GET. Problem reported by fkr@ |