Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-18 | Indentation nit. | Artur Grabowski | |
2007-07-18 | hw.sensors is a tree, so describe/expand it as such; 'put it in' jmc@ | Constantine A. Murenin | |
2007-07-18 | Don't drop outgoing packets in case of a congested input queue. | Marco Pfatschbacher | |
OK markus@, mcbride@, "sounds reasonable" henning@ | |||
2007-07-18 | eliminate duplicate code to open lease file and just open at | Kevin Steves | |
startup; ok krw@ henning@ | |||
2007-07-18 | Fix uninitialised variable 'sum' in single-processor idle calculation. | Ryan Thomas McBride | |
ok ckuethe, sturm | |||
2007-07-18 | Support -r for the export command. | Xavier Santolaria | |
2007-07-18 | - document the fact that mkfontscale is now run as well as mkfontdir and | Antoine Jacoutot | |
fc-cache for @fontdir ok kili@ espie@ | |||
2007-07-17 | Add missing '};' to end struct declaration. Compiles again. | Kenneth R Westerback | |
2007-07-17 | more places where the difference between the hardware sample size | Jacob Meuser | |
and the userland sample size matters. there may be different sample size factors for play and record, so use the appropriate factor when userland sets the blocksize. the reported blocksize, hiwat and lowat are only for the play buffer. IMO, it would be good to report the record blocksize, hiwat and lowat as well, but that is another issue. tested with emu(4) and an auvia(4) modified to only do stereo in hardware. | |||
2007-07-17 | emu(4) works on sgi. | Jacob Meuser | |
requested by jsg@ the digital out port is obscured by the small PCI card access slot on the moosehead case, but we don't support the digital ports anyway | |||
2007-07-17 | Forgot this part about rlog not needing the Directory request to be sent. | Xavier Santolaria | |
2007-07-17 | Correct function name in error string. | Xavier Santolaria | |
2007-07-17 | Simplify the way we check wether the issued command is `log' or `rlog'. | Xavier Santolaria | |
Input and OK ray@. | |||
2007-07-17 | remove m68k gcc workaround now that the gcc fix is in; ok miod@ | Todd C. Miller | |
2007-07-17 | rmoev the macppc workaround, now that isset() and friends use expressions | Otto Moerbeek | |
that gcc likes better | |||
2007-07-17 | rewrite isset() and friends to use shifts and masks instead of divide | Otto Moerbeek | |
and modulo. generates smaller code and circumvents bugs seen on macppc and mac68k. ok deraadt@ art@ miod@ | |||
2007-07-17 | sync swapon usage(); from Igor Zinovik | Jason McIntyre | |
2007-07-17 | do not try to list which options go with -p: the list is currently out of | Jason McIntyre | |
date, and even if i update it, it will obsolete itself if we add or remove options. it works when it makes sense, like it should. after a request from Igor Zinovik | |||
2007-07-17 | ident/ansify/de-register | Jasper Lievisse Adriaanse | |
2007-07-17 | document "pid"; based on a diff from Kristaps Dzonsons | Jason McIntyre | |
ok otto | |||
2007-07-17 | typo; from Stephan A. Rickauer | Jason McIntyre | |
2007-07-17 | Do not send the Directory request when using the rlog command. | Xavier Santolaria | |
OK joris@. | |||
2007-07-17 | comment snicky usage of strchr | Marc Espie | |
2007-07-17 | - the data in the read buffer, that was put there by the hardware, | Jacob Meuser | |
may not be the same sample size as what userland is to receive. account for the discrepency between the sample sizes when comparing how much to copy out with what userland expects. - only copy out the part of the buffer that is in the format userland expects. emu(4) can now record with all encodings it claims to be able to. that is, dd if=/dev/audio of=foo does as audio(4) says (monaural mu-law) and does it correctly. AFAIKS, the only other driver that sets a read factor is uaudio(4), and that depends on what the hardware supports. tested on i386, amd64 and sgi with 3 different emu(4) cards | |||
2007-07-17 | when looping through an array and advancing your pointer to the array | Jacob Meuser | |
2x on each loop, only loop .5x times fixes hard hangs on i386 and "hiccups" on sgi when these functions are used through e.g. dd if=/dev/audio of=foo, since mulaw is the default encoding. the commit history wrt this code is interesting. I am responsible for introducing this braindamage to OpenBSD ... and note that linear16_to_linear8_[lb]e had it right ... | |||
2007-07-17 | sync usage(); from Tobias Stoeckmann | Jason McIntyre | |
2007-07-16 | HW_SENSORS was never really a 'struct', and nowadays it is definitely a 'node' | Constantine A. Murenin | |
2007-07-16 | under HW_SENSORS, mention <sys/sensors.h>, similarly to KERN_SYSVIPC.*; ok jmc | Constantine A. Murenin | |
2007-07-16 | sizeof long double == sizeof double, deal with it; ok kettenis | Jason Wright | |
2007-07-16 | typo | Pierre-Yves Ritschard | |
also found by Kevin Steves | |||
2007-07-16 | use fatal and not err, the message would get lost. | Pierre-Yves Ritschard | |
found by Kevin Steves <stevesk (at) pobox dot com> | |||
2007-07-16 | Remove dead code and fix incorrect comment. From Igor Zinovik. | Todd C. Miller | |
2007-07-16 | No need to include <sys/param.h> or <errno.h>. Also reorder includes | Todd C. Miller | |
while here. Adapted from a diff by Igor Zinovik. | |||
2007-07-16 | Replace bunches of nops with the ITLBNOPFIX macro, which generates fewer | Miod Vallat | |
nops unless we compile for early RM7000 flavours, which we usually don't do. | |||
2007-07-16 | On exit from switch_exit(), do not bother saving context and immediately | Miod Vallat | |
jump into the scheduler loop. | |||
2007-07-16 | Do not reenabled interrupts when processing a ddb trap, for bad things may | Miod Vallat | |
happen; from NetBSD | |||
2007-07-16 | Change idle_mask to be made of the cop0 SR bits unshifted and the cop0 IC bits | Miod Vallat | |
shifted, instead of the other way around; this shaves a few instructions. | |||
2007-07-16 | The logic determining the value of rl_eewidth for the 9346 and 9356 | Todd C. Miller | |
eeproms was backwards. This resulted in a bogus MAC address being read from the eeprom on certain cards. From FreeBSD. OK pvalchev@ | |||
2007-07-16 | oops, missed a bit from tobias' diff - add "usage: " to usage(); | Jason McIntyre | |
from Tobias Stoeckmann | |||
2007-07-16 | sync usage(); from Tobias Stoeckmann | Jason McIntyre | |
2007-07-16 | Backport a gcc3 fix: | Miod Vallat | |
* cse.c (cse_end_of_basic_block): Don't return the end of a basi block reached by a branch if we're not going to actually process this block | |||
2007-07-16 | fix percentage computation of wrapping numbers; from Willem Dijkstra | Otto Moerbeek | |
via henning@ with a twist by me | |||
2007-07-16 | Do not display the `Working file:' line if the issued command is `rlog'. | Xavier Santolaria | |
Matches GNU's behaviour. OK joris@. | |||
2007-07-16 | fix sensor_task_unregister description to reflect reality; ok dlg | Constantine A. Murenin | |
2007-07-15 | fix typo: s/sensorsdev/sensordev/ | Constantine A. Murenin | |
2007-07-15 | lcd(4) | Mark Kettenis | |
2007-07-15 | lcd(4); a driver for the front panel LCD display found on the four-digit | Mark Kettenis | |
B/C/J-class workstations, and many server systems. This is still work in progress; for now it only displays that the machine is running OpenBSD. Not enabled yet. | |||
2007-07-15 | Add PDC_CHASSIS_INFO and associated structures. | Mark Kettenis | |
2007-07-15 | Delete BUGS section; support for serial and parallel ports is there now. | Mark Kettenis | |
2007-07-15 | Delay switching to the real serial console until we attach the serial device. | Mark Kettenis | |
The variety of different serial devices is just too big to make a decision up front. This should make the second serial port on four-digit B/C/J-class workstation work as a serial console too. ok miod@ |