summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-01-15delint wrt return values, including some missing BN returnOtto Moerbeek
values checks.
2006-01-15cope with the int vs long changes to size_tTheo de Raadt
2006-01-15correction from deraadtJason McIntyre
2006-01-15- add descriptions for 'pzidle' and 'kmapent' fields in vmstat display.Niall O'Higgins
ok jmc@
2006-01-15back out previous - imaxabs is already listed;Jason McIntyre
2006-01-15If the log file is invalid/incompatible, try to rename the bad log fileCan Erkin Acar
and continue with a new name instead of suspending. ok mcbride@
2006-01-15Print cache instructions correctly.Miod Vallat
2006-01-15syncTheo de Raadt
2006-01-15Comment alipm (and spell out power management for piixpm while I'm there).Mark Kettenis
2006-01-15Simplify SYNOPSIS.Mark Kettenis
2006-01-15wbenv(4)Mark Kettenis
2006-01-15wbenv(4), a driver for the Winbond W83L784R/5R/5TS-L hardware monitor.Mark Kettenis
2006-01-15Fix typo.Mark Kettenis
2006-01-15fix dma mapping of tx ring.Damien Bergamini
2006-01-15In iic_exec don't fail immediately if bus is already busy. It might beAlexander Yurchenko
running a BIOS' transfer so wait a bit and try again.
2006-01-15Sync with piixpm: allow driver to continue to work in polling modeAlexander Yurchenko
if it failed to install interrupt handler.
2006-01-15Simplify interrupt handler installing code.Alexander Yurchenko
2006-01-15regenJonathan Gray
2006-01-15The RCJ part of 88E1111-RCJ is the package the ic comes in whichJonathan Gray
may not be always correct for the id so don't mention it.
2006-01-15syncTheo de Raadt
2006-01-15Add comments to show which printf/scanf formats match which typesTodd C. Miller
2006-01-15Update {PRN,SCN}*PTR defines to match types changesTodd C. Miller
2006-01-15Do not put HZ in the kernel configuration file anymore, and let the kernelMiod Vallat
decide by itself: Quadra-style machines with A/UX style interrupts and clock at level 6 will use 100Hz now, while other machines will remain at 60Hz.
2006-01-15Fix reading of volume IDPedro Martelletto
2006-01-15typoPedro Martelletto
2006-01-14Move udf_disklabelspoof() to udf_subr.c, no functional changePedro Martelletto
2006-01-14Small step in supporting the Adj-RIB-In additionaly to the Local-RIB.Claudio Jeker
First step is to define two flags F_LOCAL and F_ORIGINAL. These flags are used to distinguish prefix in the Local-RIB and those in the Adj- RIB-In. Adapt prefix API and add additional checks so that no Adj-RIB- In prefixes get mistakenly selected. Currently no F_ORIGINAL prefixes are created but this may change soon. Looks good Henning.
2006-01-14Detect more Winbond chips.Mark Kettenis
"Of course!" deraadt@
2006-01-14Xr imaxabs()Todd C. Miller
2006-01-14Give UDF a chance of working on big-endian architectures, okay miod@Pedro Martelletto
2006-01-14Properly handle failure binding to a local interface (using the -bOtto Moerbeek
option). Problem found by David Hill <dhill at mindcry dot org>; ok millert@
2006-01-14Add a -q flag to reduce output a la newfs, and print the raw device we areMiod Vallat
operating on instead of ``growfs'' (a la newfs as well). ok millert@ pedro@
2006-01-14Move isa-specific members of struct lm_softc into lm_isa.c.Mark Kettenis
2006-01-14Better UDF name extraction code, which will not forget to report errors inMiod Vallat
some cases; also silence a few udf messages unless option DIAGNOSTIC. Tests and tweaks and ok pedro@
2006-01-14Rename nslm7x.c into lm78.c and nslm7xvar.h into lm78var.h, and clean upMark Kettenis
lm78var.h. Now that I've completely rewritten the driver, replace copyright with my own. suggested by deraadt@
2006-01-14syncTheo de Raadt
2006-01-14Add a comment.Alexander Yurchenko
2006-01-14Fix INTX_MIN limits; the minus sign got dropped by accident whenTodd C. Miller
I was converting the values frm decimal to hex.
2006-01-14fix the .Fn line; ok millertJason McIntyre
2006-01-14Some improvements:Alexander Yurchenko
- use gpio_pin_caps() while configuring pins - try to deal not only with open-drain outputs
2006-01-14- give rate to rx radiotapDamien Bergamini
- read TSF high 32bit word before low 32bit word to avoid wraparounds
2006-01-14- give rate to rx radiotapDamien Bergamini
- swap rssi/rate fields in ural_rx_desc
2006-01-14Add gpio_pin_caps() method to provide pin capabilities.Alexander Yurchenko
2006-01-14tweaks;Jason McIntyre
2006-01-14Add gpioiic(4).Alexander Yurchenko
2006-01-14Add gpioiic(4) man page.Alexander Yurchenko
2006-01-14Revert 1.12 and go back to 32K MAXPHYS; 64k MAXPHYS exposes subtle bugsMiod Vallat
and is not reliable enough.
2006-01-14- the allmulti target initially enables all multicast mode so don't botherBrad Smith
checking the IFF_ALLMULTI flag. - clean up vr_encap() a bit. From: Andrey Matveev <evol at online dot ptt dot ru>
2006-01-14document why we avoid: set -- `getopt optstring $*`Jason McIntyre
2006-01-14update the example and synopsis so that we are checking theJason McIntyre
exit value of getopt itself, not `set'; example merged from current freebsd page; problem reported by nordin; ok millert