summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-05tweaks;Jason McIntyre
2008-12-05- smtpctl utility to control the smtpd, don't expect too much yet as it isGilles Chehade
just an empty clone of relayctl with the glue needed to have it exchange imsg with smtpd correctly. code mostly by pyr@, reviewed by chl@ and I a while ago.
2008-12-05- last part of the new queue code: the runner process (unprivileged andGilles Chehade
chrooted) is now in charge of doing the scheduling of deliveries, and the dispatching of messages to MDA and MTA. queue process only does inserts/updates/removals from the queue and can no longer be so busy that it delays answers to imsg from smtp server.
2008-12-05- fix Albert Hofmann's name and add his deathJacob Meuser
- add Ken Kesey's birth/death ok sthen@
2008-12-05add ethertype and tcpdump support for VLAN stacking (QinQ) withStuart Henderson
type number 0x88a8 specified by 802.1ad. from reyk on misc@. "ok, go for it" dlg
2008-12-05enable 9k frames on the "jumbo" ringDavid Gwynne
2008-12-05Garbage collect now unused field in the softc struct again.Brad Smith
2008-12-04enable to large clusters again now that arts put the pool allocator forDavid Gwynne
them in again.
2008-12-04Don't hardcode the bus_space_tag to use, grab if from pci_attach_argsOwain Ainsworth
like you're supposed to. Makes this file slightly less horrible. ok kettenis@, "yes" deraadt@.
2008-12-04- in session_read(), set EV_WRITE if we are going to send a "transactionGilles Chehade
failed" error. found by Jacek Masiulaniec <jacekm@dobremiasto.net>
2008-12-04*sigh* unbreak the tree.Owain Ainsworth
Some old diff snuck into this change.
2008-12-04Declare printf-style functions with __attribute__((format(printf,x,x)))Chad Loder
and fix some of the errors caught by this. Part of a general push to make yyerror() -Wformat clean throughout the tree.
2008-12-04cosmetic changes:Reyk Floeter
- log table changes in sync_table() if "log updates" is enabled. before we only logged these changes in debug mode when running relayd in foreground. - type in a log message
2008-12-04Revert ppc intr stuff. Make socppc compile again. -mojMats O Jansson
2008-12-04Fix "fp_save ipi didn't" panic, and move i386/amd64 closer in the process.Tobias Weingartner
Positive test results by a handful of people. Ok kettenis@
2008-12-04Move the bus_dma generic functions out of the far-too-podgy machdep.c andOwain Ainsworth
into bus_dma.c (a-la amd64). Discussed with art and toby in coimbra. Ok mikeb.
2008-12-04- allow smtpd to build againGilles Chehade
2008-12-04move smtpd build to smtpd subdir so we can traverse to newaliases and makemapTodd T. Fries
ok gilles@
2008-12-04Put back the support for pools > PAGE_SIZE. This time the compare functionArtur Grabowski
works and there's even some sanity checks that it actually returns what we expect it to return.
2008-12-04fix typo in the dwFrameInterval commentYojiro Uo
2008-12-04add 2 more camerasYojiro Uo
2008-12-04syncTheo de Raadt
2008-12-04another that works for sureTheo de Raadt
2008-12-04tidy up the list a little, and add missing .El;Jason McIntyre
2008-12-04some basic cleanup;Jason McIntyre
2008-12-04... but without the debug codeTheo de Raadt
2008-12-04correctly display information for each of the mbuf cluster pools (whichTheo de Raadt
have different sizes) ok dlg
2008-12-04regenBrad Smith
2008-12-04typo.Brad Smith
2008-12-04Add some more Intel GM45 MCH PCI id's.Brad Smith
2008-12-04- when in state S_DATACONTENT, do not disable EV_READ if the last line weGilles Chehade
read is empty, instead return and only disable EV_READ when we read "."
2008-12-04Don't have anything after #endif.Ray Lai
Caught by pcc. OK martynas
2008-12-04Add initial support for the ICH9 IGP M and ICH9 IGP M AMT chipsets.Brad Smith
For now the chunk in em_detect_gig_phy() is a hack to get things going until it can be figured out why exactly the PHY id is not probed properly. Based on a diff from jcs@ via ckuethe@ ok kettenis@
2008-12-04- when doing the session timeout lookup, do not remove the last sessionGilles Chehade
that timed out twice.
2008-12-04dont need this bit of whitespaceDavid Gwynne
2008-12-04- fix event masking for DATA and make DATA look more like MAIL and RCPTGilles Chehade
with regard to communication with queue process (one state before sending imsg, another state when imsg has returned). this fixes an issue that I observed when clients send DATA and content without even looking at server replies.
2008-12-04start documenting vscsi(4)David Gwynne
2008-12-04document that the Option GlobeTrotter 3G Quad / 3G Quad Plus andFelix Kronlage
Vodafone Mobile Connect 3G are driven now by umsm(4) instead of ubsa(4)
2008-12-04move Option GlobeTrotter 3G Quad / 3G Quad Plus and theFelix Kronlage
Vodafone Mobile Connect from ubsa(4) to umsm(4) as these should work better with that driver. discussed with yuo@, jsg@ and deraadt@.
2008-12-04move Sierra Wireless MC8775 to the list of known supported, sawFelix Kronlage
it working at OpenCON. Anydata A2502 has been reported to work too, so list it accordingly. Sort list correctly alphabetically.
2008-12-04obvious 'missing space' typo in message, ok gilles@ krw@Ian Darwin
2008-12-03switch bge over to using MCLGETI when allocating mbufs for the rx ring.David Gwynne
tested by many including henning@ sthen@ naddy@ krw@ robert@ jmc@ jsg@ weerd@ and ingo schwarze on a variety of machines include i386, amd64, alpha, and sparc64.
2008-12-03add vscsi(4), a virtual scsi controller that passes all scsi requests up toDavid Gwynne
userland for handling. this is to scsi what tun(4) is for networks. this is going into the tree so i can work on some crazy scsi stuff, but its not being enabled since it is useless unless you're working on some crazy scsi stuff.
2008-12-03Get size of the struct cardslot_event, not the function cardslot_event.Ray Lai
Found by pcc. OK deraadt.
2008-12-03- smtpd's db maps are incompatible with sendmail's and needs a distinctGilles Chehade
makemap utility, this is needed for virtual users support amongst other things. links to smtpd's aliases.c and only provides a frontent to parse map descriptions. contains code from pyr@, chl@ and I. Should have also been imported with smtpd.
2008-12-03smtpd's aliases db is incompatible with sendmail's and requires a distinctGilles Chehade
newaliases utility. newaliases links to the aliases.c file from smtpd and only provides a frontend to parse aliases file. contains code from pyr@, chl@ and I, it should have been imported with smtpd.
2008-12-03clarify GPIO device specification. with input from jmc; ok mbalmer@ jmc@Kevin Steves
2008-12-03typo; from hyjialJason McIntyre
2008-12-03delete unused prototype, from lint; ok mbalmer@Kevin Steves
2008-12-03- these were used to debug the previous queue scheduler, they are no longerGilles Chehade
needed and aren't referenced anywhere any longer