Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-10 | enable urtw(4) | Kevin Lo | |
ok jsg@ | |||
2009-03-10 | remove IBSS and HostAP modes since these aren't advertised in ic->ic_caps | Kevin Lo | |
pointed out by jsg@ | |||
2009-03-10 | Add ips_intrds() function to be able to disable interrupts on hardware. | Alexander Yurchenko | |
2009-03-10 | Limit registers space size to some reasonable value. | Alexander Yurchenko | |
2009-03-10 | ascribe copyright to code taken from OpenSSH, pointed out by deraadt | Jacek Masiulaniec | |
2009-03-10 | do not give an example which implies people should put their hostname on | Theo de Raadt | |
127.0.0.1 or ::1 lots of discussion with many, but ok krw | |||
2009-03-09 | run external mda directly, not via sh -c; this steals addargs() API | Jacek Masiulaniec | |
from OpenSSH; ok gilles@ | |||
2009-03-09 | Initial stab at a driver for FFB3/XVR-1000. It seems to work fine, but without | Mark Kettenis | |
acceleration it is a tad bit slow, so leave this disabled for now. | |||
2009-03-09 | Provide more dependencies for binutils to build with make -j on a.out | Miod Vallat | |
platforms; ok espie@ kettenis@ | |||
2009-03-09 | Needed dependencies for make -j to behave correctly, backported from gcc 3; | Miod Vallat | |
ok espie@ | |||
2009-03-09 | Completely rework command processing: | Alexander Yurchenko | |
- use separate callbacks to finish scsi and raid management commands; - for raid management commands use dedicated dma-safe buffer; - remove unused run queue; The main goal of these changes is to fix a bug showing up on the lpinto's machine where READCONF command fails because it needs more than 1-page buffer and the buffer was not contiguos and controller doesn't support scatter-gather for raid management commands. | |||
2009-03-09 | Switch mvme88k to timecounters. | Miod Vallat | |
2009-03-09 | Clarify comment in namei(): the code commented doesn't check if the | Bret Lambert | |
path being looked up *is* a symlink, it checks if it *is not* a symlink and returns the vnode looked up in that case. ok thib@ | |||
2009-03-09 | Drop ALIAS_TEXT, plain maps got implemented in a different way; ok gilles@ | Jacek Masiulaniec | |
2009-03-09 | correct .Dt; from Tim van der Molen | Jason McIntyre | |
2009-03-09 | Make the DIOCSETIFFLAG, DIOCSETLIMIT, and DIOCSETTIMEOUT ioctls | Ryan Thomas McBride | |
transactional, closing PRs 4941 and 5910. Minor flag day, requires rebuild of userland tools that use struct pfi_kif. ok henning deraadt | |||
2009-03-09 | add hunk that should have been included in rev. 1.12, fixes occasional | Jacek Masiulaniec | |
crash; ok gilles@ | |||
2009-03-09 | Do not start printing device info before attachment succeeded. | Stefan Sperling | |
ok claudio@ | |||
2009-03-09 | add basic support for outgoing authentication (AUTH PLAIN over ssl) which | Gilles Chehade | |
can be turned on by adding "enable auth" to a "relay via" rule. this made me rework the mx resolution so that it is done by the mta process and not the runner process anymore. | |||
2009-03-08 | Fix dmesg output for child devices not configured (e.g. lpt on RAMDISK). | Miod Vallat | |
2009-03-08 | adapt example to reflect a recent change in parse.y | Gilles Chehade | |
2009-03-08 | supporting delivery to a mbox that's not in _PATH_MAILDIR is not supported, | Gilles Chehade | |
if someone comes with good rationale why this is needed, we'll consider it, meanwhile it's more work than it looks like and it brings a lot of pain. discussed with jacekm@ and deraadt@ | |||
2009-03-08 | when operating in enqueue mode, it was easy to make smtpctl fatal() by | Gilles Chehade | |
writing a small app that sent out of order imsg's. prevent this by use of a state machine and read event masking. issue spotted by jacekm@, temporary fix by me. there are ideas around this, but we want to experiment them a bit and they are low priority. | |||
2009-03-08 | g/c now unused extern declaration for avail_end | Martin Reindl | |
ok miod@ | |||
2009-03-08 | shrink struct message a bit by removing a couple fields which are no longer | Gilles Chehade | |
used and by moving the rcpt count in struct session where it really belongs while at it, remove some unused splay tree generation in mfa | |||
2009-03-08 | ~/.forward files handling was fixed recently so that it is the privileged | Gilles Chehade | |
process that does the opening, this commit does some cleanup, and fixes a bug I experienced today which was caused by a use-after-free. I did some testing to make sure a user cannot cause smtpd to deadlock, or loop, with broken setups (self-referencing forwards/aliases, empty files, broken files...), but if you are playing with aliases/forwards PLEASE let me know of any bug you run into. | |||
2009-03-08 | Move more z8536 defines from MVME188 specific code to the MI header and use it. | Miod Vallat | |
2009-03-08 | Remove #ifdef'd code which had a TODO comment essentially asking | Stefan Sperling | |
"Do we need anything fancy to determine whether *-prefix-LSAs are self-originated?" The answer is "No, we don't, see section 4.6 of RFC5340." ok claudio@ | |||
2009-03-08 | If a session leader exists s_leader is set to NULL, so don't dereference it | Mark Kettenis | |
unconditionally. ok miod@ | |||
2009-03-08 | Add support for Geyser2 devices from NetBSD and fix some Geyser1 devices that | Robert Nagy | |
can be found in iBook G4 12". Remove references for LCD panel sizes because the same device can be found on different sized laptops and it has nothing to do with the trackpad. Introduce a type variable that stores the device type: FOUNTAIN, GEYSER1 or GEYSER2. This value helps deciding some of the device parameters and it gets printed in the dmesg instead of the panel size. Introduce "mouse button emulation" on multi-touch trackpads just like in macos, so it's not needed to bind mouse buttons to the keyboard anymore: Tap two fingers + mouse button = 3rd mouse button = right click Tap three fingers + mouse button = 2nd mouse button = middle click Discussed with and ok: miod@ and maja@ | |||
2009-03-07 | No need to spam log with 'unable to alloc CCB' messages now that | Kenneth R Westerback | |
NO_CCB is in place and the I/O is retried rather than discarded. So move the message inside a #ifdef CAC_DEBUG. Noticed by jbg@. | |||
2009-03-07 | Make sure the scsi_xfer timeout is set up before the command may complete; | Miod Vallat | |
similar fix to osiop. | |||
2009-03-07 | When allocating memory in bus_dmamem_alloc() with uvm_pglistalloc(), do not | Miod Vallat | |
try to be smart for the address range, uvm_pglistalloc() is smart enough nowadays. | |||
2009-03-07 | No need to register a soft interrupt for softclock, it's done in MI code. | Miod Vallat | |
2009-03-07 | GENERIC.MP is now stable on MVME197DP. | Miod Vallat | |
2009-03-07 | Get rid of rde_nbr structure as it is no more needed in RDE to make | Michele Marchetto | |
routing decisions. ok claudio@ | |||
2009-03-07 | Our gcc doesn't provide __builtin_memmove(), so replace it by memmove(). | Landry Breuil | |
Slipped in when fixing libstdc++ for gtk2mm, spotted the hard way when porting nemiver. ok espie@ | |||
2009-03-07 | tweak code to use same comparison operations as PackageNames. | Marc Espie | |
so the "special code" to handle weird suffixes and epoch names (v*) finally comes into operation. regress tests still pass, I still expect some breakage... | |||
2009-03-07 | introduce versionspecs as a derivative object from version. | Marc Espie | |
Allows an operator such as <=. also overrides the compare operator for the pnum part, because specifically, in pkgspecs, if the pnum is not specified, it stands for "any pnum will do"... yes, that's hairy... | |||
2009-03-07 | regen | Jonathan Gray | |
2009-03-07 | Mobility Radeon HD 3400 from Eric JACQUOT and some | Jonathan Gray | |
additional entries from submitted dmesgs. | |||
2009-03-07 | Misc cleanups, remove dead code | Jordan Hargrave | |
Normalized api for conversion/concatenation ok marco@ | |||
2009-03-07 | aac now supports SAS controllers, mention this in Nd. | Alexander Yurchenko | |
from brad | |||
2009-03-07 | "Numer of " -> "Number of ". Typo from r1.1. | Kenneth R Westerback | |
2009-03-07 | Make sure pd2 has a pointer to the icmp header in the payload; fixes | Ryan Thomas McBride | |
panic seen with some some icmp types in icmp error message payloads. Reported by david@ and insan.praja@gmail.com | |||
2009-03-07 | Add lsa_find_tree() to allow searching for LSAs in a specific LSA tree. | Stefan Sperling | |
We had code marked XXX searching an LSA tree manually using RB_FIND(), switch it over to lsa_find_tree(). Make lsa_find() use the new function, too, to avoid code duplication. ok claudio@ | |||
2009-03-06 | missing prototype | Gilles Chehade | |
2009-03-06 | introduce map_dblookup() which allows us to query db maps for plain entries | Gilles Chehade | |
and catch (and warn) about invalid map types. | |||
2009-03-06 | make_plain() deals with a c-string, val->size should contain the nul-byte | Gilles Chehade | |
or we will truncate the last character of every value we store in a map. | |||
2009-03-06 | fix a bug in the generation of plain maps which would cause the value not | Gilles Chehade | |
to be correctly inserted into the map. |