summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-10-03pull form ragge's repo:Otto Moerbeek
Pass -g onto linker. From Laurent Desnogues.
2007-10-03pull from ragge's repo: man page diffs from Igor SobradoOtto Moerbeek
2007-10-03On i386, use PCB_SAVECTX flags to distinguish between state saved by a normalMark Kettenis
context switch, and state saved by savectx(). This makes backtraces from kernel crash dumps work much better.
2007-10-03Add pcb_flags member to 'struct pcb', and set PCB_SAVECTX on contexts savedMark Kettenis
by savectx(). ok art@, miod@
2007-10-02stop messing with lgetc to please hoststated's check/expect.Pierre-Yves Ritschard
instead move some of the logic in yylex and do hoststated specific translations into hoststated.c ok gilles@
2007-10-02sort the hardware list;Jason McIntyre
2007-10-02fix format and typeGilles Chehade
ok otto@
2007-10-02Process patterns containing $ end ^ (but not as last or first char)Otto Moerbeek
using regcomp() instead of fastcomp(). ok millert@
2007-10-02handles zero-sized strings that fgets can returnCharles Longeau
properly removes trailing newline removes an unused variable correctly counts line number "looks ok" ray@ markus@
2007-10-02Add Apple Airport Extreme devices.Marcus Glocker
From brad@, OK jsg@
2007-10-02add missing MLINKS section for iic(9); 'please commit this!' jmc@Constantine A. Murenin
2007-10-02mention the 88E804x Fast Ethernet chipsets.Brad Smith
ok dlg@
2007-10-02fix a libpthread PANIC in seekdir(3) caused by a recursive mutex lock.Kurt Miller
remove the recursive lock in __seekdir() and ensure all callers properly lock dd_lock prior to calling. reported and tested by bernd@ okay marc@ tedu@
2007-10-02Use kinfo_proc2 instead of kinfo_proc.Mark Kettenis
ok art@
2007-10-02pcc knows _Bool. ok beck@ miod @millertOtto Moerbeek
2007-10-02add initial support for the Marvell PCIe Yukon FE+ Fast Ethernet chipsets.Brad Smith
Inspired by similar changes to the Linux sky2 driver. Tested by dunceor, Schoeberle Daniel, moritz@ and brad@ on existing known working adapters. These chipsets are not actually available in hardware yet. ok dlg@
2007-10-02In vr_attach() only touch the VR_STICKHW register if the adapterBrad Smith
is found to have PCI power management capability. It has been found that unconditionally touching this register with the original VIA Rhine chipset, which does not have power management capability, and due to the shorter width of the IO addess space, it is possible for the vr(4) driver to do bad things with hw with IO address space adjacent to a vr(4) adapter. Tested by a few users, brad@ and jmc@. ok dlg@
2007-10-02clean up merged code.Pierre-Yves Ritschard
2007-10-02regenBrad Smith
2007-10-02add new Intel E1000 and 10Gb PCIe PCI ids.Brad Smith
Most of the ids were from FreeBSD though the quad port blade id came from the Linux E1000 driver. ok dlg@
2007-10-02Fiddle Sun traditional disklabel recognition to eliminate union andKenneth R Westerback
associated field access defines. This reverts most changes to dev/sun/disklabel.h without eliminating new functionality. Fix comments to line up and fit on 80 column line, making both tsi@ and I feel better. Simplify logic in disksubr.c. No semantic change. Tested & ok tsi@.
2007-10-02Apply (with slight variants) this elimination of bzero() with M_ZERO:Kenneth R Westerback
- if ((mapstore = malloc(mapsize, M_DEVBUF, - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL) + if ((mapstore = malloc(mapsize, M_DEVBUF, (flags & BUS_DMA_NOWAIT) ? + (M_NOWAIT | M_ZERO) : (M_WAITOK | M_ZERO))) == NULL) return (ENOMEM); - bzero(mapstore, mapsize);
2007-10-01sort the fields in manual page in the same order as in fstat output;Igor Sobrado
use the same name for fields in the manual page and command output; while here, fix spacing millert@ has observed that this change makes the header fields consistent with what is the output by NetBSD and FreeBSD too ok millert@
2007-10-01Spacing.Marcus Glocker
2007-10-01Fix `bogus xmit rate setup' panic, which mostly happened while associatingMarcus Glocker
to an 11b AP due to not correct initialized tx rates.
2007-10-01Add NUMBER to hoststated's lexer, very similar to what has gone inPierre-Yves Ritschard
in the other daemons recently. Prompted and based on work by deraadt@ proofread and ok gilles@
2007-10-01pull form ragge's repo:Otto Moerbeek
__builtin_va* support.
2007-10-01pull fro ragge's repo:Otto Moerbeek
-C support for cc and deljumps optimization; both by Stefan Kempf
2007-10-01Last of the really easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'Kenneth R Westerback
where obvious.
2007-10-01More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...' whereKenneth R Westerback
obvious.
2007-10-01More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...' whereKenneth R Westerback
obvious.
2007-10-01remove rate_fb variable as it always gets set to the same valueJonathan Gray
as rate anyway.
2007-10-01Sync .nd with other parts of hoststated, prompted by jmc@Pierre-Yves Ritschard
2007-10-01kill some remaining debug that snuk in.Pierre-Yves Ritschard
2007-10-01Print the MAC address.Jonathan Gray
2007-10-01Disable default debug setting, make tx power map printing debug only.Jonathan Gray
2007-10-01Backout NUMBER to string conversion.Marco Pfatschbacher
Requested by deraadt@
2007-10-01keep lines < 80.Pierre-Yves Ritschard
2007-10-01more btoc -> atopMartin Reindl
2007-10-01Use uint_* consistent.Marcus Glocker
Agreed with jsg@
2007-10-01typos in comment; from Pierre RiteauOtto Moerbeek
2007-10-01fix alot of whitespace problems...Esben Norby
2007-10-01More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'.Kenneth R Westerback
2007-09-30Spacing.Marcus Glocker
2007-09-30Shows the real size of a register in the hex define.Marcus Glocker
OK jsg@
2007-09-30Don't count interrupts with state "not of interest".Marcus Glocker
From Oleg Safiullin. OK jsg@
2007-09-30Move intrpending array into 'struct cpu_info'.Mark Kettenis
2007-09-30while rdr'ing port spamd to portsmtpis perfectly valid, it is at leastHenning Brauer
a bit confuzzling, so swap. From: Olli Hauer <ohauer@gmx.de>
2007-09-30Add support for the high-resulution timer found in the GPS170PCI card.Marc Balmer
Thanks for otto@ for looking at the time calculations
2007-09-30compare of constants outside type rangeOtto Moerbeek