summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-18syncTodd T. Fries
2008-09-18Introduce the infrastructure required to support hardware VLAN tagChristian Weisgerber
stripping: Add a field to the mbuf pkthdr to hold the tag and an mbuf flag that tells if the tag is valid. Inspired by FreeBSD. Struct packing suggested by kettenis@. csum_flags is now 16 bits. Adapt to this in the drivers. ok reyk@, henning@
2008-09-18Rework the drm locking to be at least halfway sane. The freebsd codeOwain Ainsworth
held a lock over all driver ioctls in order to be ``mpsafe''. Stop lying to ourselves for a start. This code is not fully mpsafe, and should not pretend to be so. Put the locking around where it should, and rely on biglock for the rest. This will need to be fixed, but avoids some of the horrible that we have right now. Tested by many over a long time and several iterations.
2008-09-18unbreak for gcc2 archs; declaration before code!Todd T. Fries
2008-09-18add -A to SYNOPSIS;Jason McIntyre
2008-09-18remove unused variableCharles Longeau
sure henning@
2008-09-18fix potential use of uninitialized valueCharles Longeau
Found by LLVM/Clang Static Analyzer. ok claudio@
2008-09-18document -A and include in usageOtto Moerbeek
2008-09-18Add a flag to print amap usage.Artur Grabowski
otto@ ok
2008-09-18Redesign of the powerpc interrupt architecture, use true levels intead ofDale Rahn
blocking specific interrupts. Needs signficant testing to prove that one remaining elusive bug has been squashed.
2008-09-17Solve m_free problem with a not correctly configured pflow interfaceJoerg Goltermann
leading to a kernel crash reported in PR5930 OK claudio@ henning@
2008-09-17fix whitespacesJoerg Goltermann
ok henning@
2008-09-17remove dead stores and newly created unused variables.Charles Longeau
fix potential use of uninitialized value in trunk_port_ioctl() function. Found by LLVM/Clang Static Analyzer. ok mpf@ henning@
2008-09-17Also update the NVIDIA PCI id for the i386 copy of this code.Brad Smith
2008-09-17catch up with renamed Nvidia PCI IDChristian Weisgerber
2008-09-17- when merging a file, add a key to see a diff between the merged fileAntoine Jacoutot
and the new or old one requested by todd@ months ago "I like the idea" fgsch@, "should be in" todd@
2008-09-17Remove the unsupported media types explicitly listed in the switch casesBrad Smith
for MII_MEDIACHG. The default case will catch these media types. ok jsg@
2008-09-17try getlogin() to get the real username when comitting files as root.Reyk Floeter
this gives better information in log messages when the user logged in with a different uid and used sudo or su to become root. matches the behaviour of gcvs except that we don't fallback to LOGNAME or USER since getlogin() should not lie. ok tobias@
2008-09-17Update for renaming of ATI IXP to SB.Brad Smith
2008-09-17ATI IXPx00 -> SBx00Brad Smith
2008-09-17Update for renamed ATI PCI ids.Brad Smith
2008-09-17regenBrad Smith
2008-09-17rev 1.1369 changed the SB200 entries to use the IXPx00 naming schemeBrad Smith
for consistency with the other entries already there. Revert that change. Also change the other entries for the SBx00 chipsets from using IXPx00 to using SBx00. IXPx00 was a code name used by ATI in addition to the SBx00 product name. As of SB700 and newer the IXPx00 name has been dropped plus SBx00 are more well known. requested by jsg@ awhile ago.
2008-09-17remove dead stores and newly created unused variables.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok henning@ mpf@
2008-09-17regenBrad Smith
2008-09-17- Fix a typo, Rebotics -> RoboticsBrad Smith
- Replace tabs with spaces as separator for two NVIDIA entries NVIDIA part from Antti Harri <iku at openbsd dot fi>
2008-09-17regenBrad Smith
2008-09-17Remove some duplicate NVIDIA entries and touch up some of the namesBrad Smith
to make the naming more consistent.
2008-09-17Garbage collect unused variable from sys_rec structure.Joel Sing
ok miod@
2008-09-17Unbreak com@ioc probing.Joel Sing
ok miod@
2008-09-16remove d_cbrt, dcbrt, d_sqrt. ok millert@Martynas Venckus
2008-09-16typo: is -> if. ok millert@Martynas Venckus
2008-09-16gc unused files, the functions are in libc. ok millert@Martynas Venckus
2008-09-16remove another dead store.Charles Longeau
spotted by markus@ ok henning@ mpf@
2008-09-16Terminate printing of auxilliary vector upon reaching the first AT_NULL.Mark Kettenis
2008-09-16Make this compile if !MULTIPROCESSOR.Brad Smith
ok kettenis@
2008-09-16Add support for reading ELF auxilliary vectors.Mark Kettenis
ok kurt@
2008-09-16Add PIOD_READ_AUXV, a way to get the ELF auxilliary vector through ptrace(2).Mark Kettenis
ok miod@
2008-09-16remove dead stores and newly created unused variables.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok miod@ art@
2008-09-16- remove some unneeded headersJasper Lievisse Adriaanse
with and ok jsing@
2008-09-16netstat statistics for pflow(4) via pseudo familyJoerg Goltermann
ok cluadio@ henning@
2008-09-16fix whitespace/tab typosJoerg Goltermann
ok henning@ claudio@
2008-09-16SMP ddb support, with some feedback from kettenis.Dale Rahn
2008-09-15this driver uses three dma segments; play, record, calibrate.Jacob Meuser
instead of using a linked list to describe the dma segments use three distinct pointers. also, this driver only needs 1 buffer descriptor for each dma segment, since each buffer descriptor can handle as many samples as each segment can hold. makes the code a little easier to read and allows us to free the calibration buffer when we're done with it. idea originally from ratchov@ a while back. tested by ratchov@ and myself. ok ratchov@
2008-09-15remove dead stores and newly created unused variables.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok mpf@ looks good mk@ ok henning@
2008-09-15Sync with dhcpd. Do not use < 0 to check for failed syscalls use == -1Claudio Jeker
instead. OK henning@
2008-09-15When checking if a syscall like open(), ioctl() or writev() failed compareClaudio Jeker
directly against -1 and do not use a < 0 test. OK henning@
2008-09-15add missing header needed by strlen().Charles Longeau
ok millert@
2008-09-15Similar to route(8) change mask rtm->rtm_priority with RTP_MASK to showClaudio Jeker
correct values. OK henning@
2008-09-15Mask rtm->rtm_priority with RTP_MASK before printing so that the priority isClaudio Jeker
correctly shown even if the route is flagged RTP_DOWN. OK henning@