summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-02add the NVIDIA MCP77/79 ids.Brad Smith
ok jsg@ dlg@
2008-01-02correct the comment in agp_map_aperture().Brad Smith
ok owa@ dlg@
2008-01-02return with ENOTTY instead of EINVAL for unknown ioctl requests.Brad Smith
ok claudio@ krw@ dlg@
2008-01-02Accept BPF_MUL as a valid instruction in bpf_validate() also improveCan Erkin Acar
the comments. Based on diff from Guy Harris
2008-01-01In the alpha allocate_stack builtin, only trigger stack probes if not runningMiod Vallat
OpenBSD or VMS, or -fstack-check; this was missed when disabling stack checks a few months ago. ok kettenis@
2008-01-01Implement an MP-safe rw_cas() based upon the casx instruction; ok kettenis@Miod Vallat
2008-01-01Match on Cougar boards, and try to drive them like Jaguars on steroids. OnMiod Vallat
wide Cougars, use one command queue per target and disable lun support, so that we do not overflow the board's memory; and since we are behaving as a Jaguar, do not do tagged queuing or synchronous transfer negotiation. Tested on two MVME328XT-2 (4220 and second revision artwork 4220) narrow Cougar-I (but wide external connectors), but probes fail with select timeout so far; I could not get various Motorola BUG to probe devices on these boards either, so we're even (and maybe both my boards are toast, but I won't bet money on this).
2008-01-01simplify BUGS; ok miodJason McIntyre
2008-01-01Add devices 11b rateset. Add/Adjust comments.Marcus Glocker
2008-01-01syncTheo de Raadt
2008-01-01Oops. Missed a couple of unnecessary 'DL_GETPOFFSET()+DL_GETPSIZE() >Kenneth R Westerback
ending_sector' tests and one superfluous editor_countfree(). Rectify a few comments.
2008-01-01Update the notice about the daughterboard, and also mention the driverMiod Vallat
doesn't attach to the MVME328XT (i.e. rebadged 4220, while MVME328S is a rebadged 4210).
2008-01-01A potpourri of bugfixes:Miod Vallat
- switch back to a fixed queue number allocation, but keep the rotating command queue entries. Force openings to 1 because of this. - make sure to mark the queue as ready before invoking scsi_done(), which could trigger a request for the same target. - allocate a command queue and an IOPB at the same time, instead of using two routines and ugly queue pointer arithmetic. This makes the daughterboard work, as long as the first scsi chain is not empty.
2008-01-01Fix display of overlapping partitions to account for larger size and offsetKenneth R Westerback
fields.
2008-01-01Welcome to the jungle of 2008.Miod Vallat
2008-01-01Typo in comment about cpio_endwr() fixed.Tobias Stoeckmann
OK otto@
2008-01-01get_size() no longer allows DL_GETPSIZE()+DL_GETPOFFSET >Kenneth R Westerback
ending_sector, so no need to check for this condition after calling get_size().
2008-01-01Shorten and simplify code, eliminate ability to assign arbitrary sizesKenneth R Westerback
to existing FS_BOOT and FS_UNUSED partitions via -E, tighten up error verbiage. Feedback from jsing@. ok millert@.
2008-01-01No watchdog operations if device is not running.Marcus Glocker
2008-01-01More constant naming for some defines.Marcus Glocker
2008-01-01Tune TX descriptor so we can successfully set some TX rates. CouldMarcus Glocker
do transfers between 1.3MB/s - 2MB/s. Though still unreliable because we have random TX watchdog timeouts.
2008-01-01Allow PermitRootLogin in a Match block. Allows for, eg, permitting rootDarren Tucker
only from the local network. ok markus@, man page bit ok jmc@
2008-01-01put lii(4) in the right place;Jason McIntyre
2008-01-01If rcp -p encounters a pre-epoch timestamp, use the epoch which isDarren Tucker
as close as we can get given that it's used unsigned. Matches recent change to scp.c, prompted by djm@
2008-01-01If scp -p encounters a pre-epoch timestamp, use the epoch which isDarren Tucker
as close as we can get given that it's used unsigned. Add a little debugging while there. bz #828, ok djm@
2008-01-01Updated moduli file; ok djm@Darren Tucker
2008-01-01spaces -> tabs from my previous commitDarren Tucker
2008-01-01syncTheo de Raadt
2008-01-01provide a thing for use with %b to show which xa flags are set.David Gwynne
2008-01-01- make arc4random*() functions thread safe. Use a custom spinlock functionKurt Miller
instead of the generic pthread macros since free(3) uses __arc4_getbyte() when freeing small sized allocations and the generic pthread macros call malloc(3). - eliminate passing pointers to a static variable with global scope (rs) for additional code clarity and reduction. - shlib minor bumps for libc and libpthread due to new functions. From andreas@ with some bits from me. okay tedu@ marc@ w/some spot checking from millert@
2007-12-31fix nameTheo de Raadt
2007-12-31syncTheo de Raadt
2007-12-31new productTheo de Raadt
2007-12-31re-order product list slightlyTheo de Raadt
2007-12-31new umsm productTheo de Raadt
2007-12-31Xr liiTheo de Raadt
2007-12-31crank maxusers a little bitTheo de Raadt
2007-12-31enable upgt & lii. both have issues, and will need to be fixed inTheo de Raadt
time, but it is better to have people be FORCED to try to use them, and then more people can decide to get involved. if a driver is in-tree, but people don't even know it exists, how would they get involved? they just plain would not.
2007-12-31On some machines we get hotplug interrupts when they're resumed, so don'tMark Kettenis
rescan the pci bus if it already has devices attached to it. Make sure we clear the list of attached devices when we receive a surprise removal interrupt. Fixes kurt@'s T43. ok miod@, krw@
2007-12-31Reset partition size as well as partition offset before asking forKenneth R Westerback
another, valid, set while adding a partition. Lost in r1.119 when we switched to DL_SETP* defines.
2007-12-31we must reset the poll timeout to INFTIM when receiving the IMSG_SETTIMEHenning Brauer
because otherwise the poll timeout will stay at SETTIME_TIMEOUT (15s) forever unless we time out waiting for the first reply with -s spotted by Aaron Riekenberg <aaron.riekenberg@gmail.com>
2007-12-31Keep running the scancode translation state machine even when the keyboardMiod Vallat
is set to raw mode, but only feed decoded events to wscons if non-raw mode. Then, as an exception to this, pass the audio control keys events to wscons even if in raw mode, so that the in-kernel mixer control code can perform its work. The event is also seen by the raw event consumer (i.e. the X server). Requested and tested by many...
2007-12-31if our node doesn't have a lineno/fname, inherit from `used' node.Marc Espie
This lets suffix rules finally print out where they come from...
2007-12-31When in inetd mode, have sshd generate a Protocol 1 ephemeral serverDarren Tucker
key only for connections where the client chooses Protocol 1 as opposed to when it's enabled in the server's config. Speeds up Protocol 2 connections to inetd-mode servers that also allow Protocol 1. bz #440, based on a patch from bruno at wolff.to, ok markus@
2007-12-31use OpenBSD rcs id'sJasper Lievisse Adriaanse
2007-12-31a basic manpage for lii. im sure jmc will need to fix this, but its a startDavid Gwynne
2007-12-31use the same trick as for perl to make sure manpages get built laterMarc Espie
2007-12-31lii(4) is a driver for the atheros l2 ethernet chip as found on the asusDavid Gwynne
eeepc. unfortunately it doesnt work, but its going into the tree so it can be worked on. if anyone wants to have a go at it, please do. this driver was written by Quentin Garnier for NetBSD
2007-12-31Enable gbe(4) and mkbc(4) now that we have early console support.Joel Sing
ok miod@
2007-12-31Significantly improve the gbe(4) driver, including:Joel Sing
- Internal restructure to separate code paths. - Add support for early console. This allows for gbe(4) to takeover were the ARCBios leaves off (if we should do so). - Add support for 8bpp and 16bpp colour depths. As a result, we also have support for colourmaps. We now use 8bpp as the default. - Add mmap() support, enabling wsfb to operate correctly. - Correct initial origin problem that occurred occasionally. ok miod@. tested by jasper@.