summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add the -n option, which automatically answers "no" to the overwrite question.johan2002-07-234-12/+35
| | | | | | | PR: 7828 Suggested by: Daniel O'Connor <doconnor@gsoft.com.au> Approved by: sheldonh (mentor) MFC after: 2 weeks
* Don't forget to recalculate the IP checksum of the originalru2002-07-232-8/+24
| | | | | | | IP datagram embedded into ICMP error message. Spotted by: tcpdump 3.7.1 (-vvv) MFC after: 3 days
* Add an ICMP protocol handler, partly based on LBL's traceroute 1.4 .fenner2002-07-222-4/+57
| | | | Submitted by: dcs
* Don't shrink socket buffers in tcp_mss(), application might have alreadyru2002-07-222-4/+8
| | | | | | | configured them with setsockopt(SO_*BUF), for RFC1323's scaled windows. PR: kern/11966 MFC after: 1 week
* Actually use gen_prep() and gen_check(), instead of udp_prep() andfenner2002-07-221-3/+3
| | | | udp_check(), for unknown protocols.
* Revert last commit. Sorry for breaking thingstrhodes2002-07-221-10/+10
|
* integrate from p4 repo:imp2002-07-221-9/+16
| | | | | | | | | | o Honor NE2000DVF_{AX88190,DL10019} flags by setting the ED_FLAGS_xxxx flag. o Mark linksys combo_ecard as ax88190 o Set the type_str to AX88190 for the ax88190 cards. This fixes ax88190 based cards, for the most part, but doesn't seem to fix the mii based dl10019 cards (aka linksys cards).
* Three minor changes:imp2002-07-221-14/+15
| | | | | | 1) Add support for compaq cpq 10/100 card (a rebadged ce3) 2) Minor protection for failure on vendor lookup 3) Minor style(9) nits.
* MFC: Fix some grammar, greater reduce diffs to HEADtrhodes2002-07-223-21/+13
|
* Remove unneeded caddr_t casts.alfred2002-07-221-5/+5
|
* Fix the transfer size calculation.sos2002-07-221-1/+1
|
* Sync with the spl changes in -stable.sos2002-07-222-2/+6
| | | | Add start of support for DVD+RW.
* Update the tags handling a bit, which makes support for thesos2002-07-223-83/+72
| | | | | older IBM DTTA series of drives possible. Update error handling a bit now we are here.
* Cleanup:alfred2002-07-222-285/+134
| | | | | Define a debug printf macro rather than wrapping all calls to printf with #ifdefs.
* use IPV6_V6ONLY instead of non standard IPV6_BINDV6ONLY.ume2002-07-221-4/+2
| | | | Approved by: gad
* add -4 and -6 option to be able to specify an address family.ume2002-07-223-4/+22
| | | | | Requested by: matusita MFC after: 1 week
* This commit was generated by cvs2svn to compensate for changes in r100519,ru2002-07-221-182/+0
| | | | which included commits to RCS files with non-trunk default branches.
* Update for GNU texinfo 4.2.ru2002-07-223-140/+107
|
* Merge texinfo 4.2 changes onto the trunk.ru2002-07-221-3/+5
|
* Use stock (FSF) version of this file.ru2002-07-221-66/+140
|
* This commit was generated by cvs2svn to compensate for changes in r100513,ru2002-07-2241-1952/+2809
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of stripped down GNU texinfo 4.2ru2002-07-2243-2021/+2954
| |
* | Change struct vmspace->vm_shm from void * to struct shmmap_state *, thisalfred2002-07-222-4/+4
| | | | | | | | removes the need for casts in several cases.
* | Remove caddr_t.alfred2002-07-224-43/+38
| |
* | Surround prototypes with __BEGIN_DECLS / __END_DECLS.des2002-07-221-0/+4
| | | | | | | | | | PR: misc/40399 MFC after: 3 days
* | sync comment with reality. IN6P_BINDV6ONLY -> IN6P_IPV6_V6ONLY.ume2002-07-221-1/+1
| |
* | do not refer to IN6P_BINDV6ONLY anymore.ume2002-07-222-8/+1
| | | | | | | | | | Obtained from: KAME MFC after: 1 week
* | remove caddr_t from fo_ioctl callsalfred2002-07-221-2/+2
| |
* | remove caddr_talfred2002-07-221-9/+8
| |
* | use IPV6_V6ONLY instead of non standard IPV6_BINDV6ONLY.ume2002-07-226-17/+10
| | | | | | | | MFC after: 1 week
* | sin6_len is not an address family. I believe this doesn'tume2002-07-221-1/+1
| | | | | | | | break compatibility with POSIX.1-2001.
* | - Remove unnecessary break statement.robert2002-07-221-2/+1
| | | | | | | | | | - Move a label to a syntactically correct place to keep gcc from warning.
* | Initialize sockbits variable with FD_ZERO, to avoid passing a fd_setkan2002-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | with random garbage in lower bits corresponding to stdin, stdout and stderr to select(2). This fixes the problem with nfsd sometimes getting stuck in a tight select(2) loop eating 100% CPU time. Reviewed by: iedowse Approved by: obrien
* | Fix typo: corrisponds -> correspondsfanf2002-07-221-1/+1
| |
* | Add device(power/sleep button and lid) wake function from sleeping state.iwasaki2002-07-224-5/+174
| | | | | | | | | | | | | | This is required for some Thinkpad (and maybe VAIO) machines to wake the system up from sleep. Currently partially implemented, more complete implementation will come later.
* | Set VAPPEND in open mode when O_APPEND is specified as an argument torwatson2002-07-223-0/+6
| | | | | | | | | | | | | | | | | | | | | | open() of fhopen(). Currently this has no actual affect due to the treatment of VAPPEND in vaccess() and vaccess_acl() as a subset of VWRITE, but when MAC comes in, MAC will distinguish the two. Note: if any file systems are cutting their own permission models, they may wish to now take this into account. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* | - Use MAXLOGNAME - 1 rather than UT_NAMESIZE.robert2002-07-221-3/+2
| | | | | | | | - Remove the inclusion of <utmp.h>.
* | - Use MAXLOGNAME - 1 instead of UT_NAMESIZE.robert2002-07-221-11/+5
| | | | | | | | - Do not pretend there is something like '/etc/utmp'.
* | s,/usr/include,${INCLUDEDIR},ru2002-07-221-1/+1
| |
* | This commit was generated by cvs2svn to compensate for changes in r100490,bp2002-07-222-5/+25
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import smbfs 1.4.5. This release intended to fix problem with iconvbp2002-07-222-5/+25
| | | | | | | | | | | | | | | | | | library. MFC after: 1 week
* | | Pre-wire the output buffer so that sysctl_kern_function_list() doesn'ttruckman2002-07-221-0/+1
| | | | | | | | | | | | block in SYSCTL_OUT() while holding a lock.
* | | Provide a way for sysctl handlers to pre-wire their output buffer beforetruckman2002-07-222-0/+18
| | | | | | | | | | | | | | | they grab a lock so that they don't block in SYSCTL_OUT() with the lock being held.
* | | Fix one RFC 959 incompliance:yar2002-07-221-3/+30
| | | | | | | | | | | | | | | | | | | | | | | | Double double-quotes in a PWD result if they appear in the directory pathname. PR: misc/18365 MFC after: 1 week
* | | Copy cis strings into the kernel.imp2002-07-222-9/+15
| | |
* | | Copy manufacturer and version string into the kernel, and copy it toimp2002-07-223-2/+10
| | | | | | | | | | | | | | | | | | the slot info. This brings OLDCARD's API much closer to NEWCARD and will allow moving more information into the kernel from pccard.conf for common drivers (ed).
* | | Don't allow "||" or "&&" to be the first tokens of a command.tjr2002-07-221-0/+1
| | | | | | | | | | | | | | | PR: 40386 MFC after: 2 weeks
* | | Correct syntax error, remove the unescaped newline between "||" and thetjr2002-07-221-4/+2
| | | | | | | | | | | | | | | | | | | | | command it is intended to test. pdksh and bash caught this syntax error, sh(1) did not behave as intended. PR: 40386
* | | Teach discretionary access control methods for files about VAPPENDrwatson2002-07-224-43/+43
| | | | | | | | | | | | | | | | | | | | | and VALLPERM. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* | | Add VALLPERM, which is a mask of all the access control request permissionrwatson2002-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | bits for vnodes passed to vaccess() and friends. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
OpenPOWER on IntegriCloud