Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-30 | If we can't allocate a struct sem_undo w/o sleeping, use PR_WAITOK | Todd C. Miller | |
but then check to see that one with our struct proc was not allocated in the meantime. | |||
2002-12-30 | o add Keith Moon's birthday (already have his death) | Todd C. Miller | |
o add John Entwistle's birth and death OK mickey@ | |||
2002-12-30 | use err vs. errx and display function; from Owl. ok fgsch@ | Kevin Steves | |
2002-12-30 | include function in error; from Owl. ok fgsch@ | Kevin Steves | |
2002-12-30 | correct return code check; from Owl. ok fgsch@ | Kevin Steves | |
2002-12-30 | Don't forget to copyout the time at which statistics got cleared. | Cedric Berger | |
2002-12-30 | put bin dirs before sbin dirs in PATH for consistency with other cron scripts | Todd C. Miller | |
2002-12-30 | sync protos with dlfcn.h; prompted by niekze AT yahoo DOT com | Todd C. Miller | |
2002-12-30 | really count the number of deleted tables - obvious fix. | Cedric Berger | |
2002-12-30 | Add $OpenBSD$ tag. | Thierry Deval | |
Thanks to Clarie Wouter (rimshot at pandora point be) | |||
2002-12-30 | Update. | Thierry Deval | |
2002-12-30 | Some cleanup. | Thierry Deval | |
Re-work the SBP2 data manipulation to support concurrent node accesses. (That data manipulation MUST go into SBP2 code, eventually) | |||
2002-12-30 | Implement the reconnect callback. This will be called whenever an SBP2 node's | Thierry Deval | |
node_id changes, following a BusReset (happens when you add/remove a device to/from the FireWire chain). Re-work the ORB management to support concurrent node accesses. | |||
2002-12-30 | As we still don't have a data_page_dir support yet, transfers of more than | Thierry Deval | |
65535 bytes blocks silently broke. So limit ourself to 32k blocks, for now. That mistake gave us the false impression that huge transfers were fast. They usually resulted of 0-byte transfers. Fast indeed :-( Now, we have real data going through. | |||
2002-12-30 | Some devices have bad ConfigROM crc, but contain valid Unit entries. | Thierry Deval | |
So just ignore, and continue the auto-configuration. | |||
2002-12-30 | Remove stray 'hosts' on the nat-rule production in BNF, found by | Daniel Hartmeier | |
Benjamin M.A. Robson. | |||
2002-12-30 | Make the callbacks entry non-constant. | Thierry Deval | |
2002-12-30 | Do not mention NFS as a possible tarballs source when the installation media | Miod Vallat | |
does not support NFS mounts. | |||
2002-12-30 | Re-design fwohci_hadler_set() to use a new key3. | Thierry Deval | |
That new key will be used for Request handlers to discriminate the requests by nodes. Key3 will also get the lenght field specifier... (may still change) Add an implementation for a BusReset callback that will be called whenever a node's node_id changes. This will allow us to work with more than one device at the same time... | |||
2002-12-30 | remove Intersil Mini-PCI from here as well; prompted by miod@. | Federico G. Schwindt | |
2002-12-30 | Argh, removed the wrong one. | Todd C. Miller | |
2002-12-30 | this was removed from the sendmail distribution some time ago | Todd C. Miller | |
2002-12-30 | proper HOSTAP_FLAGS_BITS; from merith@vantronix.net | Michael Shalayeff | |
2002-12-30 | add update-plist | Marc Espie | |
okay pval@ | |||
2002-12-30 | KNF | Henning Brauer | |
2002-12-30 | Avoid setting optind to 0 since in GNU getopt() that means the same | Todd C. Miller | |
as optreset in BSD getopt. This actually simplifies things a bit. espie@ OK | |||
2002-12-30 | KNF | Henning Brauer | |
2002-12-29 | Mention $user_id, like $user_ip. | Daniel Hartmeier | |
2002-12-29 | Make pfctl -a name -sr/-sn show all rules of all rulesets within the | Daniel Hartmeier | |
anchor. From discussion with Michael Lucas. ok henning@ | |||
2002-12-29 | Set a macro $user_id to the user name, just like $user_ip is already set | Daniel Hartmeier | |
to the IP address. From discussion with Michael Lucas. ok henning@ | |||
2002-12-29 | Fix a couple of cases where semutot was not getting decremented and | Todd C. Miller | |
one where semtot was not getting incremented. | |||
2002-12-29 | o pass a random value as the second arg to ftok() | Todd C. Miller | |
o call semget() with IPC_EXCL This fixes a problem whereby multiple concurrent copies of the regress test could use the same key and stomp over themselves, leading one to falsely believe there is a kernel bug. | |||
2002-12-29 | Add support for radix tables for source and destination of PF rules. | Cedric Berger | |
ok dhartmei@, mcbride@, henning@ | |||
2002-12-29 | fix buf allocation; partoff may be a NULL too | Michael Shalayeff | |
2002-12-29 | check -DCLEANUP compilation | Marc Espie | |
2002-12-29 | Synch comment with code | Marc Espie | |
2002-12-29 | another | Henning Brauer | |
2002-12-29 | Don't define EOF In ctype.h, some 3rd party code checks whether or | Todd C. Miller | |
not EOF is defined to determine if stdio.h has been included. Instead, use __EOF which should be OK wrt namespace safety. | |||
2002-12-28 | More direct explanation of where the port number and protocol number to name | Ryan Thomas McBride | |
mappings come from. ok dhartmei@ henning@ | |||
2002-12-28 | fix C++ semantics. | Marc Espie | |
Found by Andrew Pinski <pinskia@physics.uc.edu> Works with gcc-current and Tendra C++ now. | |||
2002-12-28 | fix calloc's. also check for errors; fixes PR/3043. | Federico G. Schwindt | |
2002-12-28 | No matter what I do, typos in parition always make their apparition. | Miod Vallat | |
2002-12-27 | Update some scrub tests with the "log" keyword. | Ryan Thomas McBride | |
2002-12-27 | Since pf_norm.c looks at rule.log to see if it should log packets being | Ryan Thomas McBride | |
dropped due to scrub violations, this adds the ability to set this in pf.conf. ok henning@ | |||
2002-12-27 | Bugfix and better error handling: | Ryan Thomas McBride | |
- set rpool.cur in DIOCCHANGERULE - check to make sure rpool.list is not empty if we're doing translation or routing other than fastroute ok dhartmei@ henning@ | |||
2002-12-27 | Fixups for pf_route and pf_route6. | Ryan Thomas McBride | |
- pull the route-to ifp from the current pf_pooladdr (not the last one) with stateful rules - remove unnecessary PF_ACPY and PF_AZERO ok dhartme@ on pf_route version, pf_route6 is the same. | |||
2002-12-27 | Use model control capability to distinguish 8 from 16 line models, | Hugh Graham | |
and don't ttymalloc lines we don't have. CXA16 in DHV-11 mode is probably still not correct. | |||
2002-12-27 | Handle binat-anchor rules in pf_match_translation(), they don't have a | Daniel Hartmeier | |
redirection target address. Reported by Michael Lucas. ok mcbride@ | |||
2002-12-27 | Initialize rt_ifp in newly allocated pf_state objects to NULL. | Daniel Hartmeier | |
Solves the crashes in pf_route() with -current. Reports from Michael Lucas and Bjorn Runaker. | |||
2002-12-27 | add _spamd pseudo-account; ok deraadt@ | Dan Harnett | |