Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-05 | put in tags for ARC4 to please ben, who now has no excuses | Theo de Raadt | |
2001-08-04 | Move decision whether to make a new hash table or not to be after | Todd C. Miller | |
the open(). That way if the user opened with O_EXLOCK and another process has the .db locked we don't decide to zero hash before the locking process has had a chance to write to the database. This also makes the logic simpler since we can just fstat the fd and check for size == 0 && !O_RDONLY. Closes PR 1934. | |||
2001-08-04 | don't return on void. | Federico G. Schwindt | |
2001-08-04 | pthread_mutexattr_* manpage; from FreeBSD. | Federico G. Schwindt | |
2001-08-04 | There is not currently a usb(3) manpage, so comment out the Xr. | Hugh Graham | |
Spotted by Heikki Korpela. | |||
2001-08-04 | alphabetize device listing | Peter Valchev | |
2001-08-03 | This driver allows vlan sized frames on 905B, set IFCAP_VLAN_MTU on that chip | Chris Cappuccio | |
2001-08-03 | Fix logic for detecting 82558 and newer chips in pci; | Chris Cappuccio | |
This driver allows large frames for those chips so set IFCAP_VLAN_MTU for 82558+ | |||
2001-08-03 | Set IFCAP_VLAN_MTU, the Realtek chip does not discard/truncate large frames. | Chris Cappuccio | |
2001-08-03 | Set IFCAP_VLAN_MTU, this driver already allows vlan-size frames | Chris Cappuccio | |
2001-08-03 | Use IFCAP_VLAN_MTU and IFCAP_VLAN_HWTAGGING capabilities: | Chris Cappuccio | |
LINK0 disappears; we now set IFCAP_VLAN_HWTAGGING at ifnet->if_capabilities in the Ethernet driver for cards/drivers which support hardware tagging. MTU ambiguity disppears; we now set IFCAP_VLAN_MTU in the Ethernet driver when we know the chip will not truncate/discard vlan-sized frames. Only allow the MTU to be changed within the scope of the parent interface's MTU. (Here we also take into account IFCAP_VLAN_MTU) Propagate hardware-assisted IP/TCP/UDP checksumming flags to the vlan interface if the card supports hardware tagging (from NetBSD) | |||
2001-08-03 | Shupid me, bugtty is necessary... | Miod Vallat | |
2001-08-03 | Add back NUL termination of 'word' in complete() that was erroneously | Todd C. Miller | |
removed in strlcpy() conversion. Previously we were trying to strlcpy() a pointer that could be NULL. Now we check that the length != 0 and use memcpy() instead, then NUL terminate by hand to catch the other cases. Core dump noticed by fgs@ | |||
2001-08-03 | Note Acard support and bugs with AMD, OPTi | Chris Cappuccio | |
2001-08-03 | Update sp->fts_cur in fts_read() before returning NULL. This | Todd C. Miller | |
prevents a duplicate free() in fts_close(). From karls@inet.no with some other, similar cases added. | |||
2001-08-03 | from NetBSD: | Chris Cappuccio | |
Add support for Acard ATP850/860, Highpoint HPT370A, and ALi UDMA4/5 controllers Workaround some OPTi chipset bugs (opti_chip_map still disabled by default) | |||
2001-08-03 | sync | Chris Cappuccio | |
2001-08-03 | Acard IDE and SCSI controllers | Chris Cappuccio | |
2001-08-03 | Make all the low-profile configurations include conf/GENERIC, and | Miod Vallat | |
harmonize a bit. | |||
2001-08-03 | simplify previous fix (0-length mbuf in mbuf chain). from freebsd | Jun-ichiro itojun Hagino | |
2001-08-03 | typo; krapht@secureops.com | Theo de Raadt | |
2001-08-03 | Open files with O_NONBLOCK but turn off non-blocking mode for | Todd C. Miller | |
non-ttys. If write(2) returns EAGAIN just ignore the error and move on. This prevents a locked terminal from causing syslogd grief. If we ever want to support logging to a fifo this will probably have to be revisited. | |||
2001-08-03 | sync | Theo de Raadt | |
2001-08-03 | fix #include | Theo de Raadt | |
2001-08-03 | add MLINKS; ok rees@ | Jakob Schlyter | |
2001-08-03 | document sectok_friendly_open. fix sectoc_open arg. ok rees@ | Jakob Schlyter | |
2001-08-03 | Acknowledge VM's limitations. | Marc Espie | |
2001-08-03 | o Fix sectok_apdu() proto | Todd C. Miller | |
o s/sectok_scopen/sectok_open/ o Change the block of sectok_apdu options to a tagged list ress@ OK | |||
2001-08-03 | Typo; heko@iki.fi | Aaron Campbell | |
2001-08-03 | fix typo; jcs@rt.fm | Theo de Raadt | |
2001-08-03 | Move .include <bsd.obj.mk> right after bsd.own.mk. | Federico G. Schwindt | |
2001-08-03 | add man page | Jim Rees | |
2001-08-03 | first shot at a section 4 intro for powerpc, ok drahn | Peter Valchev | |
2001-08-03 | fix building w/o obj | Jakob Schlyter | |
2001-08-03 | Avoid warning when building with vga on isa without vga on pci; ok mickey@ | Thorsten Lockert | |
2001-08-03 | o) We always closes .Bl and .Bd tags; | Mike Pechkin | |
millert@ ok | |||
2001-08-03 | confgiuration -> configuration. | Federico G. Schwindt | |
2001-08-03 | o) We don't like .Pp before/after .Sh; | Mike Pechkin | |
o) .Nm always has argument in .Sh SYNOPSIS; o) We always closes .Bl and .Bd tags; millert@ ok | |||
2001-08-03 | proper vga_* handling; pointed out by tholo@ | Michael Shalayeff | |
2001-08-03 | o) Remove unneeded .Nm arguments; | Mike Pechkin | |
o) Sort SEE ALSO; o) Minor .Nm and .Nd fixes; o) Typo; millert@ ok | |||
2001-08-03 | improve usage(). ok markus@ | Jakob Schlyter | |
2001-08-03 | document smartcard options. ok markus@ | Jakob Schlyter | |
2001-08-02 | #include <sys/types.h> for linux | Jim Rees | |
2001-08-02 | do not exit loop even if m_len == 0. it is legal to have an mbuf with | Jun-ichiro itojun Hagino | |
m_len == 0 in mbuf chain. | |||
2001-08-02 | assure -> ensure | Hugh Graham | |
2001-08-02 | match updated prototype | Hugh Graham | |
2001-08-02 | plural agreement (singular) | Hugh Graham | |
2001-08-02 | fix diagnostic messages | Eric Jackson | |
from Dima Dorfman <dima@unixfreak.org> | |||
2001-08-02 | fix doc syntax | Eric Jackson | |
from Dima Dorfman <dima@unixfreak.org> | |||
2001-08-02 | Declare prompt_vPrintf as being printf-link when __GNUC__ is defined | brian | |