aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Update the st(4) and sd(4) references to sa(4) and da(4) respectively,Neil Blakey-Milner2000-07-123-5/+5
| | | | | | | | | | maintaining order, were the references ordered already. PR: reminded by 19647 Submitted by: reminded by Jens Schweikhardt <schweik@noc.dfn.de> Notes: svn path=/head/; revision=63021
* Fix a rather nasty latency problem that occurs with single tcp sessionsBrian Somers2000-07-121-11/+17
| | | | | | | thorough an MP setup with only a single link. Notes: svn path=/head/; revision=63020
* o Other half of Sheldon's patch to fix initattr arguments, mistakenlyRobert Watson2000-07-121-0/+3
| | | | | | | | | forgotten due to minimal sleep. Thanks! Submitted by: sheldonh Notes: svn path=/head/; revision=63019
* o update extattrctl man page to reflect obligatory arguments to initattrRobert Watson2000-07-121-2/+2
| | | | | | | | | -r and -w arguments Submitted by: sheldonh Notes: svn path=/head/; revision=63018
* Now that the HTTP code supports timeouts, we don't need to use alarm()Dag-Erling Smørgrav2000-07-121-16/+29
| | | | | | | | | | around the call to fetchStat(). Catch SIGINT, and rework the signal handling so it doesn't skimp on the cleanup after a timeout or interrupt. Also, don't just bail out after a timeout; there may be more files to fetch. Notes: svn path=/head/; revision=63015
* Detect and handle comment lines in master.passwd files.David Nugent2000-07-121-0/+10
| | | | | | | PR: bin/19664 Notes: svn path=/head/; revision=63014
* Fully document the HTTP authorization feature.Dag-Erling Smørgrav2000-07-121-12/+18
| | | | | | | Update the BUGS section to reflect the HTTP rewrite. Notes: svn path=/head/; revision=63013
* Extensive rewrite of the HTTP code. The new code is significantly cleaner andDag-Erling Smørgrav2000-07-121-446/+685
| | | | | | | | | | | more robust, and somewhat more efficient. It also handles authorization and redirects properly, and supports timeouts like the FTP code. Many thanks to Umemoto-san for his assistance with IPv6 support, both here and in other parts of libfetch. Notes: svn path=/head/; revision=63012
* Backed out a part of previous commit. The function name conflicts.Yoshihiro Takahashi2000-07-122-4/+4
| | | | | | | Pointed out by: haro@tk.kubota.co.jp (Munehiro Matsuda) Notes: svn path=/head/; revision=63011
* Add support for Intel's i810 chipset with integrated graphics. AnDoug Rabson2000-07-1210-9/+1039
| | | | | | | | | | associated patch to XFree86 allows the X server to work with this chipset on FreeBSD. Additional work will include porting the Linux 3D driver. Submitted by: Ruslan Ermilov <ru@FreeBSD.org> Notes: svn path=/head/; revision=63010
* This in essence completes the receive path.Poul-Henning Kamp2000-07-121-118/+427
| | | | Notes: svn path=/head/; revision=63009
* Backout previous commit.Jeroen Ruigrok van der Werven2000-07-121-1/+1
| | | | | | | (Mental note: don't forget -rRELENG_4 next time.) Notes: svn path=/head/; revision=63007
* MFC: fix some output cosmetics so that the finger -s output is properlyJeroen Ruigrok van der Werven2000-07-121-1/+1
| | | | | | | lined up Notes: svn path=/head/; revision=63006
* Rework the stats code to avoid code duplication.Dag-Erling Smørgrav2000-07-121-13/+16
| | | | | | | | | Fix a bug where the stats code would print the expected size instead of the number of bytes received. Fix the reading code so it'll support partial reads. Notes: svn path=/head/; revision=63005
* Ensure that block and character devices as well as fifo's and socketsKirk McKusick2000-07-123-0/+18
| | | | | | | | | | | | all have zero length. A non-zero length panic's the kernel when one of these is deleted. PR: 19426 Submitted by: Ian Dowse <iedowse@maths.tcd.ie> Reviewed by: dwmalone@FreeBSD.org Notes: svn path=/head/; revision=63003
* correct rtentry reference count in in6_ifloop_request().Jun-ichiro itojun Hagino2000-07-121-3/+5
| | | | | | | | if you reconfigure inet6 too much, the reference count can go into negative by mistake. KAME in6.c 1.98 -> 1.99. Notes: svn path=/head/; revision=63001
* o Correct getopt() argument so that initattr -r and -w take an additionalRobert Watson2000-07-121-1/+1
| | | | | | | | | | | | argument via optarg. This corrects a segfault when initattr is invoked with either of these two arguments. Not sure how this got broken given that in the original patches it was fine -- presumably a merging mistake. Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=62995
* Don't call syslog() without a format string.Kris Kennaway2000-07-121-1/+1
| | | | Notes: svn path=/head/; revision=62992
* Add Xircom CompactCard Ethernet CFE-10 1.00.Warner Losh2000-07-121-0/+8
| | | | | | | | | | Seems to work great in the type II cf<->pccard adapter that came with the card. Others have reported with different chipsets for the pccard bridge that additional support is needed to make this card work with the 3.3 volts it needs. Notes: svn path=/head/; revision=62991
* Don't call fprintf() without a format string.Kris Kennaway2000-07-121-1/+3
| | | | Notes: svn path=/head/; revision=62990
* Don't call syslog() without a format string.Kris Kennaway2000-07-125-8/+8
| | | | Notes: svn path=/head/; revision=62989
* Don't call warn() without a format string.Kris Kennaway2000-07-123-3/+3
| | | | Notes: svn path=/head/; revision=62988
* Don't assume that any ISA device that fails to probe is a PnP device,John Baldwin2000-07-121-9/+11
| | | | | | | | | | | | | | | | instead, use the bus_print_child_* functions to display the error message. Also, since this is more of a warning than an error, hide it behind bootverbose. Similarly, if isa_assign_resources() fails to allocate resources to a device, use bus_print_child_header() instead of device_printf(), and display the resources that could not be allocated if bootverbose is true. Approved by: msmith Help from: mdodd Notes: svn path=/head/; revision=62987
* Don't call err() without a format string.Kris Kennaway2000-07-122-3/+3
| | | | Notes: svn path=/head/; revision=62986
* Brain fault, forgot to update ffs_snapshot.c with the new calling conventionKirk McKusick2000-07-121-4/+5
| | | | | | | for vn_start_write. Notes: svn path=/head/; revision=62985
* Don't call syslog() without a format string.Kris Kennaway2000-07-121-1/+1
| | | | Notes: svn path=/head/; revision=62984
* Don't call err() without a format string.Kris Kennaway2000-07-111-1/+1
| | | | Notes: svn path=/head/; revision=62983
* Use fetch_putln()Dag-Erling Smørgrav2000-07-111-11/+5
| | | | Notes: svn path=/head/; revision=62982
* Add _fetch_putln()Dag-Erling Smørgrav2000-07-112-6/+30
| | | | Notes: svn path=/head/; revision=62981
* Don't call printf without a format string.Kris Kennaway2000-07-111-1/+1
| | | | Notes: svn path=/head/; revision=62980
* Spelling (embedd to embed) fix and change a comma to a semicolon.Daniel Harris2000-07-111-2/+2
| | | | Notes: svn path=/head/; revision=62979
* Add some missing articles (as in a, an, the).Daniel Harris2000-07-111-4/+4
| | | | Notes: svn path=/head/; revision=62978
* Allow a ``timeout secs'' filter option to let specific packet typesBrian Somers2000-07-1110-212/+295
| | | | | | | | | | | | | | | effect the idle timer in different ways. Submitted by: Stefan Esser <se@freebsd.org> With adjustments by me to document the option in the man page and to give the same semantics for outgoing traffic as incoming. I made the style more consistent in ip.c - this should really have been done as a separate commit. Notes: svn path=/head/; revision=62977
* Add snapshots to the fast filesystem. Most of the changes supportKirk McKusick2000-07-1152-446/+2536
| | | | | | | | | | | | | | | | | | | | | | | the gating of system calls that cause modifications to the underlying filesystem. The gating can be enabled by any filesystem that needs to consistently suspend operations by adding the vop_stdgetwritemount to their set of vnops. Once gating is enabled, the function vfs_write_suspend stops all new write operations to a filesystem, allows any filesystem modifying system calls already in progress to complete, then sync's the filesystem to disk and returns. The function vfs_write_resume allows the suspended write operations to begin again. Gating is not added by default for all filesystems as for SMP systems it adds two extra locks to such critical kernel paths as the write system call. Thus, gating should only be added as needed. Details on the use and current status of snapshots in FFS can be found in /sys/ufs/ffs/README.snapshot so for brevity and timelyness is not included here. Unless and until you create a snapshot file, these changes should have no effect on your system (famous last words). Notes: svn path=/head/; revision=62976
* Array of long support.Poul-Henning Kamp2000-07-111-4/+10
| | | | | | | Submitted by: Ian Dowse <iedowse@maths.tcd.ie> Notes: svn path=/head/; revision=62975
* Add attribute memory setup warningsDuncan Barclay2000-07-111-37/+86
| | | | Notes: svn path=/head/; revision=62974
* Storing to a pointer is (effectively) atomic; no need to protect thisMark Murray2000-07-114-20/+4
| | | | | | | | | | with splhigh(). However, the entropy-harvesting routine needs pretty serious irq-protection, as it is called out of irq handlers etc. Clues given by: bde Notes: svn path=/head/; revision=62969
* Clean up warning about undeclared function by declaring softdep_fsyncKirk McKusick2000-07-112-0/+5
| | | | | | | | | in mount.h instead of ffs_extern.h. The correct solution is to use an indirect function pointer so that the kernel does not have to be built with options FFS, but that will be left for another day. Notes: svn path=/head/; revision=62968
* I think I need to move the newly static variables to the random_stateMark Murray2000-07-112-12/+10
| | | | | | | | | structure; remind myself in the cooments. Also regroup all the Yarrow variables at the top of the variable list; they are "special". (no functional change). Notes: svn path=/head/; revision=62967
* Document that basic authorization now kinda works.Dag-Erling Smørgrav2000-07-111-16/+20
| | | | Notes: svn path=/head/; revision=62966
* Rework the authorization code.Dag-Erling Smørgrav2000-07-111-78/+83
| | | | | | | | | Only send absolute URI if connected to a proxy, since Apache doesn't always understand absolute URIs. Clean up some of the debugging output. Notes: svn path=/head/; revision=62965
* Clean up the debugging outputDag-Erling Smørgrav2000-07-112-12/+3
| | | | Notes: svn path=/head/; revision=62964
* Use lstat(2) instead of stat(2) when deciding if we should fastcopyDavid Malone2000-07-111-1/+1
| | | | | | | | | | a file. This fixes moving symlinks across partitions. PR: 17847 Reviewed by: bde Notes: svn path=/head/; revision=62963
* Remove irq 13 from the list of valid IRQs. It is used by the math co andWarner Losh2000-07-111-1/+1
| | | | | | | | is therefore unavailable. Also, IRQ13 isn't connected to the pcic chip on most laptops. Notes: svn path=/head/; revision=62962
* Merge latest cards from my laptop:Warner Losh2000-07-111-1/+17
| | | | | | | | | | | | o The Shining PMIDE-ASC card is also used in Road Warrior's Bullet Drive, so add that to the comments. o Eiger Lab's fujitsu based ethernet card: EPX-10BT (thanks to Ryan Losh for donating the card to the cause). o Add place holder entry for the 3Com Megahertz 3CXEM556. It doesn't work yet, but that will change in time. Notes: svn path=/head/; revision=62961
* Reserve 149 for the TAP device. Look for it in a source tree near youNick Sayer2000-07-111-0/+1
| | | | | | | soon. Notes: svn path=/head/; revision=62959
* Fix 'telnet -X sra' coredumpNick Sayer2000-07-112-2/+6
| | | | | | | PR# 19835 Notes: svn path=/head/; revision=62958
* Get the security script to list the indoe numbers of the suid files.David Malone2000-07-111-1/+1
| | | | | | | | | | | | | I've seen some script kiddie tools out there that fake the timestamps but don't preserve the inode number. Note - this will cause a lot of output the first time it is run! PR: 18947 Reviewed by: Sheldon Hearn <sheldonh@uunet.co.za> Notes: svn path=/head/; revision=62956
* add Planex FNW-3600-TX 16bit FastEthernet DirectDockMIHIRA Sanpei Yoshiro2000-07-111-0/+8
| | | | | | | Obtained from: [bsd-nomads:13991] reported by Akihiro IIJIMA <aki@jp.FreeBSD.org> Notes: svn path=/head/; revision=62955
* Install accept_filter.9Jeroen Ruigrok van der Werven2000-07-111-1/+1
| | | | | | | Forgotten by: alfred Notes: svn path=/head/; revision=62953