summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* MFC:Søren Schmidt2001-02-251-0/+6
| | | | | | | document new ATA options. Notes: svn path=/stable/4/; revision=73044
* MFC:Søren Schmidt2001-02-252-109/+227
| | | | | | | | | | | | | | | | | | | | New option -m to select multisession mode. WARNING: until now all disks was closed as multisession disks, this is no longer the case, if the -m option isn't used disks are closed as singlesession. The reason is that some drives wont close a disk with one large image on in multisession mode, probably because it "knows" that a new session wont fit on the media resonably. Also update burncd with new stuff from various places that I've collected and modified to my taste, its actually amasing how many thinks up the same enhancements (none mentioned none forgotten): Allow '-' to be used as filename for using stdin. Add 'l' option to take a list of image files from 'filename' Notes: svn path=/stable/4/; revision=73042
* MFC:Søren Schmidt2001-02-2515-114/+165
| | | | | | | | | | | | | | | | | | | | | | | Get the ata drive in sync with -current to the following versions: ata-all.c 1.102 (minus 1.100) ata-all.h 1.37 ata-disk.c 1.92 ata-disk.h 1.31 ata-dma.c 1.57 ata-raid.c 1.10 ata-raid.h 1.4 atapi-all.c 1.63 (minus 1.62) atapi-all.h 1.32 atapi-cd.c 1.76 (minus progress stuff) atapi-cd.h 1.22 (minus progress stuff) atapi-fd.c 1.57 atapi-fd.h 1.13 atapi-tape.c 1.49 atapi-tape.h 1.14 Notes: svn path=/stable/4/; revision=73041
* MFC:Søren Schmidt2001-02-251-4/+7
| | | | | | | add type to blank ioctl, and session to disk_close ioctl. Notes: svn path=/stable/4/; revision=73040
* MFC:Søren Schmidt2001-02-251-0/+1
| | | | | | | Add ATA_ENABLE_WC option Notes: svn path=/stable/4/; revision=73039
* MFC: r1.17, avoid overflowing array on stack.Gary Jennejohn2001-02-251-1/+1
| | | | Notes: svn path=/stable/4/; revision=73038
* MFC: r1.124, delayed ack fix.Jonathan Lemon2001-02-251-5/+11
| | | | Notes: svn path=/stable/4/; revision=73032
* MFC: fix bibliographic references.Dag-Erling Smørgrav2001-02-252-6/+10
| | | | Notes: svn path=/stable/4/; revision=73024
* [MFC]Noriaki Mitsunaga2001-02-251-12/+5
| | | | | | | | 1.2->1.3: Remove unused #includes. 1.3->1.4: Use <sys/queue.h> macro APIs. Notes: svn path=/stable/4/; revision=73009
* [MFC] 1.2->1.3Noriaki Mitsunaga2001-02-251-1/+0
| | | | | | | select() DKI is now in <sys/selinfo.h>. Notes: svn path=/stable/4/; revision=73008
* alter sndbuf_clear to clear 1 byte at a time instead of 2.Cameron Grant2001-02-251-19/+9
| | | | | | | | | | this fixes the panics that have been observed with sb16 cards and certain wav files where sndbuf_clear was asked to clear an odd number of bytes- a condition that *should* never occur and i'm still investigating. however, this fixes the symptom for now. Notes: svn path=/stable/4/; revision=73002
* don't compile the initialised data generated by the kobj system into eachCameron Grant2001-02-241-1/+0
| | | | | | | | | | | module, otherwise each module gets its own copy of the method descriptors. this results in the upper layer code being unable to find the implementation of any method in any object, which is a bad thing. this commit makes newpcm drivers as modules actually work under 4.x Notes: svn path=/stable/4/; revision=72998
* MFC: Clean up RST ratelimiting (1.51 in HEAD).Bosko Milekic2001-02-244-38/+85
| | | | | | | Submitted by: Mike Silbersack <silby@silby.com> Notes: svn path=/stable/4/; revision=72997
* MFC: In the SCSI_NO_SENSE_STRINGS case, properly fill the table with theJustin T. Gibbs2001-02-241-1/+1
| | | | | | | | | | asc and ascq pair rather than asc, asc. PR: 25291 Submitted by: Stephen Ferrari <sferrari@yahoo.com> Notes: svn path=/stable/4/; revision=72993
* MFC: stop yes/no buttons from jumping around.Jordan K. Hubbard2001-02-241-19/+11
| | | | Notes: svn path=/stable/4/; revision=72987
* MFC: have accept return ECONNABORTED for sockets which are now gone.Jonathan Lemon2001-02-242-6/+16
| | | | Notes: svn path=/stable/4/; revision=72983
* MFC:Jesper Skriver2001-02-244-29/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/sys/netinet/in_pcb.c rev 1.78 src/sys/netinet/in_pcb.h rev 1.36 src/sys/netinet/tcp_subr.c rev 1.91 src/sys/netinet/udp_usrreq.c rev 1.86 Without this a attacker sending ICMP messages, where the attached IP header (+ 8 bytes) has the address and port numbers == 0, would have the ICMP message applied to all sessions. The changes broken down: - remove 0 as a wildcard for addresses and port numbers in src/sys/netinet/in_pcb.c:in_pcbnotify() - add src/sys/netinet/in_pcb.c:in_pcbnotifyall() used to notify all sessions with the specific remote address. - change - src/sys/netinet/udp_usrreq.c:udp_ctlinput() - src/sys/netinet/tcp_subr.c:tcp_ctlinput() to use in_pcbnotifyall() to notify multiple sessions, instead of using in_pcbnotify() with 0 as src address and as port numbers. - remove check for src port == 0 in - src/sys/netinet/tcp_subr.c:tcp_ctlinput() - src/sys/netinet/udp_usrreq.c:udp_ctlinput() as they are no longer needed. - move handling of redirects and host dead from in_pcbnotify() to udp_ctlinput() and tcp_ctlinput(), so they will call in_pcbnotifyall() to notify all sessions with the specific remote address. Approved by: kris Inspired by: NetBSD Notes: svn path=/stable/4/; revision=72982
* remove old unified sb8/sb16 driver. it isn't used anymore.Cameron Grant2001-02-241-937/+0
| | | | Notes: svn path=/stable/4/; revision=72966
* Correct CS20 section.Wilko Bulte2001-02-231-5/+6
| | | | | | | Reviewed by: Peter Petrakis <peter.petrakis@api-networks.com> Notes: svn path=/stable/4/; revision=72963
* ispell-ify ..Wilko Bulte2001-02-231-41/+41
| | | | Notes: svn path=/stable/4/; revision=72961
* MFC: fix typo/compiler warningBill Paul2001-02-231-1/+1
| | | | Notes: svn path=/stable/4/; revision=72957
* MFC: (rev 1.16) Fix broken -L for short locale names.Ruslan Ermilov2001-02-231-0/+2
| | | | Notes: svn path=/stable/4/; revision=72944
* MFC: make ``groff -man'' work again for both man(7) and mdoc(7) manpages.Ruslan Ermilov2001-02-235-10/+15
| | | | Notes: svn path=/stable/4/; revision=72943
* MFC: 1.83Alfred Perlstein2001-02-231-1/+1
| | | | Notes: svn path=/stable/4/; revision=72934
* MFC: 120 seconds -> 180 secondsBrian Somers2001-02-221-1/+1
| | | | Notes: svn path=/stable/4/; revision=72926
* MFC the aac man pageScott Long2001-02-222-6/+6
| | | | | | | Noticed by: anders@codefactory.se Notes: svn path=/stable/4/; revision=72913
* MFC: 'anonymous' instead of 'ftp'; sort referencesDag-Erling Smørgrav2001-02-221-10/+18
| | | | Notes: svn path=/stable/4/; revision=72902
* MFC: 'anonymous' instead of 'ftp'Dag-Erling Smørgrav2001-02-221-3/+2
| | | | Notes: svn path=/stable/4/; revision=72901
* MFC: revision 1.13: Off by one error in reading mmap data.Wolfram Schneider2001-02-221-1/+2
| | | | Notes: svn path=/stable/4/; revision=72883
* merge up to rev 1.39Wolfram Schneider2001-02-221-16/+19
| | | | Notes: svn path=/stable/4/; revision=72882
* MFC: we have gone the way of of=/dev/fd0 instead of of=/dev/rfd0.Daniel C. Sobral2001-02-221-4/+2
| | | | Notes: svn path=/stable/4/; revision=72874
* MFC: Use macros from sys/queue.h and take advantage of M_ZERO flag.Boris Popov2001-02-226-15/+11
| | | | Notes: svn path=/stable/4/; revision=72870
* MFC: 1.102 kern_sysctl.c 1.88 sysctl.hJohn Baldwin2001-02-222-14/+14
| | | | | | | | Fixes for the dynamic sysctl macros to handle dynmaically generated names and to add a few needed 'const's. Notes: svn path=/stable/4/; revision=72869
* MFC: Use macros from sys/queue.h and take advantage of M_ZERO flag.Boris Popov2001-02-221-5/+4
| | | | Notes: svn path=/stable/4/; revision=72868
* MFC: Take advantage of M_ZERO flag.Boris Popov2001-02-222-5/+2
| | | | Notes: svn path=/stable/4/; revision=72867
* MFC: Use macros from sys/queue.hBoris Popov2001-02-222-3/+3
| | | | Notes: svn path=/stable/4/; revision=72866
* MFC: Remove unused includes.Boris Popov2001-02-221-2/+0
| | | | Notes: svn path=/stable/4/; revision=72865
* MFC: Option -N do not requires an argumentBoris Popov2001-02-221-2/+2
| | | | Notes: svn path=/stable/4/; revision=72863
* Remove unused #includeBoris Popov2001-02-221-1/+0
| | | | Notes: svn path=/stable/4/; revision=72862
* MFC: use SLIST* macro instead of accessing fields directly.Boris Popov2001-02-222-6/+6
| | | | Notes: svn path=/stable/4/; revision=72861
* MFC: use M_ZERO flag.Boris Popov2001-02-221-6/+3
| | | | Notes: svn path=/stable/4/; revision=72860
* Convert three instances of 8 spaces to tabs, one as a MFC, and two toJohn Baldwin2001-02-221-3/+3
| | | | | | | | minimize diffs with -current due to cut 'n' paste bogons in a previous MFC. Notes: svn path=/stable/4/; revision=72858
* MFC: make it clearer that rtadvd.conf is optional (configs areHajimu UMEMOTO2001-02-222-59/+66
| | | | | | | | | | grabbed from kernel). rtadvd.conf.5: 1.4->1.5 rtadvd.conf: 1.2->1.3 Notes: svn path=/stable/4/; revision=72856
* MFC: realpath(1) will first appear in FreeBSD 4.3.Ruslan Ermilov2001-02-221-1/+1
| | | | Notes: svn path=/stable/4/; revision=72854
* MFC: all recent mdoc(7) fixes.Ruslan Ermilov2001-02-225-43/+46
| | | | Notes: svn path=/stable/4/; revision=72852
* MFC: Restore a print_sense=FALSE that got nuked by accident in last delta.Matt Jacob2001-02-221-0/+1
| | | | Notes: svn path=/stable/4/; revision=72851
* MFC: ABI dependent MINSIGSTKSZ.Marcel Moolenaar2001-02-2213-12/+31
| | | | | | | | | | | | Maintain forward compatibility on the -stable branch by not doing an MFC of the machine dependent MINSIGSTKSZ. This guarantees that binaries compiled on systems that include this MFC will run on older systems. Reviewed by: gallatin Notes: svn path=/stable/4/; revision=72848
* MFC: Give some additional DNS black hole possibilities as comments.Gregory Neil Shapiro2001-02-221-1/+3
| | | | Notes: svn path=/stable/4/; revision=72840
* MFC: Reset MPPE_MasterKeyValid when the bundle closesBrian Somers2001-02-229-70/+109
| | | | | | | | | | | | Don't try to negotiate MPPE when CHAP81 hasn't been agreed Don't drop to state DATALINK_READY when we close a link that never actually opened Tone down some MPPE diagnostics Various man page fixes Handle sa_len == 0 from accept() Notes: svn path=/stable/4/; revision=72834
* MFC: Deal with RADIUS accounting failures gracefullyBrian Somers2001-02-221-19/+33
| | | | Notes: svn path=/stable/4/; revision=72833