summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-09-24add pgt(4).Brad Smith
2006-09-24No point in checking for a NULL ifi after we've used it. Plus ifi isKenneth R Westerback
set once in main() and used everywhere without further checks. From Matthew R. Dempsky via tech@
2006-09-24do not suggest that !expression and (expression) (without spaces) is valid;Jason McIntyre
"from sander bos, with credit to peter bex" ok otto
2006-09-24revert for now, this breaks stuff elsewhere...Marc Espie
2006-09-24use .Fx and .Ox;Jason McIntyre
2006-09-24syncTheo de Raadt
2006-09-24Zap LFS, okay deraadt@Pedro Martelletto
2006-09-23syncMarcus Glocker
2006-09-23Add TRENDnet TEW-429UB A.Marcus Glocker
2006-09-23correct author chunkTheo de Raadt
2006-09-23delete blank line; Paul StoeberTheo de Raadt
2006-09-23syncTheo de Raadt
2006-09-23In pgt_media_status() also DPRINTF if the rate == 0.Marcus Glocker
2006-09-23Update media state correctly.Marcus Glocker
ok claudio@
2006-09-23fix a bug where the logic was reversedKurt Miller
2006-09-23If fgetln() != NULL, len == 0 is impossible, so remove check.Ray Lai
OK otto@ and jaredy@.
2006-09-23typo, remove reference to lfsPedro Martelletto
2006-09-22missed B_GATHERED bits removalMichael Shalayeff
2006-09-22Remove B_GATHERED, okay thib@Pedro Martelletto
2006-09-22variant of Socket 10/100 CF+ ethernet card.Federico G. Schwindt
from Andrew Smith (asmith at tranquility dot fsbusiness dot co dot uk)
2006-09-22Get rid of (unused) MACH_CLASSP580 and flatten MACH_CLASSxxx values.Miod Vallat
2006-09-22Dump memory above 4GB correctly.Miod Vallat
2006-09-22Part 1 of file descriptor race and deadlock corrections.Kurt Miller
File status flags should be shared for dup'ed file descriptors. However fd_table_entry's should not be shared for dup'ed file descriptors so they can be independently be closed without interfering with dup'ed fd's. - split out file status flags into its own structure fs_flags to manage sharing of status flags between dup'ed file descriptors. - when duplicating a fd, initialize a new fd_table_entry for the new fd, but share the status flags via status_flags. - consolidate the code that sets the underlying system fd to be non-blocking to a new function _thread_fs_flags_init() - consolidate the code that sets the underlying system fd back to blocking into a new function _thread_fs_flags_replace() This change is needed as a prerequisite to the coming race and deadlock corrections. okay marc@
2006-09-22Check return value of authunix_create_default(); from bret lambertOtto Moerbeek
with some guidance by me; ok jaredy@
2006-09-22add blocked_close, blocked_dup2, close_race and dup2_raceKurt Miller
2006-09-22Test dup2() racing with other threads using the same fileKurt Miller
descriptor.
2006-09-22Test close() racing with other threads using the same fileKurt Miller
descriptor.
2006-09-22Test dup2() racing with other threads using the same fileKurt Miller
descriptor, with some of them blocking on data that will never arrive.
2006-09-22Test close() racing with other threads using the same fileKurt Miller
descriptor, with some of them blocking on data that will never arrive.
2006-09-22regenBrad Smith
2006-09-22add a few more Intel 5000 series and 6321ESB chipset PCI ids.Brad Smith
2006-09-22regenPedro Martelletto
2006-09-22Put the LFS syscall stubs back in, turns out libc is unable to buildPedro Martelletto
without those, even though they're currently not implemented
2006-09-22Back out change in rev 1.15 of to allow whitespace to separate aTodd C. Miller
flag from its optional argument if permutation is disabled. The idea was that since "r:" would match "-r foo" then "r::" should match "-r foo" too as long as we know that things have not been reshuffled. Unfortunately, this causes incompatibilities with GNU getopt_long when the POSIXLY_CORRECT environment variable is set. OK deraadt@
2006-09-22Remove reference to LFS, okay deraadt@Pedro Martelletto
2006-09-22regenPedro Martelletto
2006-09-22Remove LFS system calls from here tooPedro Martelletto
2006-09-22remove the :dc: is always set behavior (use cua devices or /etc/remoteJason Wright
entries to override); ok deraadt awhile ago.
2006-09-22regenPedro Martelletto
2006-09-22Remove LFS system callsPedro Martelletto
2006-09-22Unplug LFS from VFSPedro Martelletto
2006-09-22- explain diff_options (which i renamed from "diff options")Jason McIntyre
- sync usage() ok xsa
2006-09-22Remove lfs_cleanerd and mount_lfsPedro Martelletto
2006-09-22- document which parts need to be packet filtered, and whyJason McIntyre
- move example ruleset into a more logical order - correct the if-bound example (spotted by hshoexer) help/ok markus hshoexer
2006-09-22add the Marvell Yukon 88E8056 PCI idBrad Smith
2006-09-22regenBrad Smith
2006-09-22- add the Marvell Yukon 88E8056 PCI idBrad Smith
- YUKON_3 -> YUKON_8055 (Marvell Yukon 88E8055)
2006-09-22regenSteven Mestdagh
2006-09-22add new nvidia graphics cardSteven Mestdagh
ok mickey marco
2006-09-22typo in err(); from bret.lambert@gmail.com, thanks!Hans-Joerg Hoexer