summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add an ulgy hack so that warnings added by non-zero WARNS values won't beobrien2004-01-101-0/+3
| | | | | | used with the contrib/ gdtoa sources as they aren't WARNS-clean. Submitted by: ru
* - Unmanage pages allocated by contigmalloc1(). (There is no point inalc2004-01-101-6/+2
| | | | | having PV entries for these pages.) - Remove splvm() and splx() calls.
* New errata: Mention APIC problems and workarounds, NFSv4 client bug,bmah2004-01-101-2/+36
| | | | | | | | new TCP MSS size/rate limiting feature. Fix a typo. [1] Submitted by: Aniruddha Bohra <bohra at cs dot rutgers dot edu> [1]
* Remove now redundant and now conflicting declaration of sysarch(2).nectar2004-01-101-3/+1
| | | | | | Remove now unnecessary cast. Reported by: alpha tinderbox
* s/Muliple/Multipleschweikh2004-01-102-96/+92
| | | | Removed whitespace at EOL and EOF.
* New release notes: Changed some TCP tunable defaults, MSS sanitybmah2004-01-102-4/+38
| | | | | | | | checks and overload protection, OpenSSH 3.7.1p2. Use digi(4) entity. Bump copyright date.
* Keep up with sys/conf/ changes.ru2004-01-101-1/+1
|
* Clarify the behavior of ptrace(2) a little bit: the tracing processrwatson2004-01-101-0/+24
| | | | | | | | | | | | | | | must first attach to the traced process. If the tracing process exits without detaching, the traced process will be killed rather than continued. For the duration of the tracing session, the traced process is reparented to the tracing process (with resulting expected behaviors). It is permissible to trace more than one other process at a time. When using waitpid() to monitor the behavior of the traced process, signals are intercepted: they may optionally then be forwarded using ptrace(). Signals are generated normally by and for the process, but also by the tracing facility (SIGTRAP). Product of: Suffering Sponsored by: DARPA, AFRL
* More unparenthesized return values.des2004-01-101-1/+1
|
* Moved the code for :U and :L modifiers where it belongs, so thatru2004-01-101-32/+32
| | | | | the fallback for SysV (now in POSIX) variable substitution works for old_string arguments starting with 'U' or 'L'.
* Properly fix the FreeBSD copyright.ru2004-01-101-3/+3
| | | | Pointed by: scottl
* We need to discard `const'ness explicitly when invoking sysarch.nectar2004-01-101-1/+1
| | | | Reported by: sparc64 tinderbox via bde
* s/FreeBSD Inc./The FreeBSD Foundation/gru2004-01-101-4/+4
|
* Add manual page links from fsck_ufs.8 and fsck_4.2bsd.8 to fsck_ffs.8,simon2004-01-101-0/+1
| | | | | | since there are already the same links for the program binary. Suggested by: mat
* Fix serious ugliness introduced in 1.61, which leads to long delay in bootsobomax2004-01-101-5/+11
| | | | | | | | | | | | sequence when machine is started without attached USB mouse. Only do repeated attempts to re-open device if the usb module has been actually loaded. Also fix broken logic in doing delays between open attempts - do delays between attempts, not after each attempt. Due to previous behaviour being very annoying for notebook owners this is a good 5.2 MFC candidate. MFC after: 2 days
* Style: parenthesize return values.des2004-01-101-3/+3
|
* try rtinit() only when the route is not installed.ume2004-01-101-2/+5
| | | | | | | | this allows, e.g., duplicated attempts of 'ifconfig lo0 ::1' like for IPv4. Obtained from: KAME MFC after: 1 week
* Check that sa_len is the appropriate value in tcp_usr_bind(),truckman2004-01-101-0/+8
| | | | | | | | | | tcp6_usr_bind(), tcp_usr_connect(), and tcp6_usr_connect() before checking to see whether the address is multicast so that the proper errno value will be returned if sa_len is incorrect. The checks are identical to the ones in in_pcbbind_setup(), in6_pcbbind(), and in6_pcbladdr(), which are called after the multicast address check passes. MFC after: 30 days
* Add a somewhat redundant check on the len arguement to getsockaddr() totruckman2004-01-101-0/+2
| | | | | | | | | | avoid relying on the minimum memory allocation size to avoid problems. The check is somewhat redundant because the consumers of the returned structure will check that sa_len is a protocol-specific larger size. Submitted by: Matthew Dillon <dillon@apollo.backplane.com> Reviewed by: nectar MFC after: 30 days
* Don't execute the code in in6_ifdetach() that removes the link-localtruckman2004-01-101-7/+9
| | | | | | | | allnodes multicast route if the routing table has not been initialized. This avoids a panic during boot if an interface detaches before the routing table is initialized. Submitted by: sam
* in set{peer, sock}addr, do not convert the unspecifiedume2004-01-101-2/+2
| | | | | | | | address (::) to the mapped address form. PR: kern/22868 Obtained from: KAME MFC after: 3 days
* Restore closing of SMB find handle in smbfs_close().tjr2004-01-101-1/+8
|
* Remove the HACK section it breaks the older firmware and doesn't totallyambrisko2004-01-101-21/+0
| | | | fix the new firmware so remove it.
* Fix a panic when attempting a v4 op against a v3/v2-only server.alfred2004-01-101-10/+12
| | | | | | | It happens because rpcclnt_request is incorrectly returning 0 in the case of an rpc mismatch or auth error. Submitted by: Jim Rees <rees@umich.edu>
* Unmanage pages allocated by kmem_alloc(). (There is no point in having PValc2004-01-101-0/+1
| | | | entries for these pages.)
* Prevent a race condition between fork1() and whatever changes the pgrp bycognet2004-01-091-0/+1
| | | | | | | | | | setting the new process' p_pgrp again before inserting it in the p_pglist. Without it we can get the new process to be inserted in a different p_pglist than the one p2->p_pgrp points to, and this is not something we want to happen. This is not a fix, merely a bandaid, but it will work until someone finds a better way to do it. Discussed with: jhb (a long time ago)
* Remove duplicate __FBSDID().cognet2004-01-091-3/+1
| | | | Mark trm as depending on cam.
* Change sdp_open_local(3) API. It now takes a path to a control socketemax2004-01-096-60/+103
| | | | | | | | Teach sdpcontrol(8) how to talk to the local SDP server Update man pages s/u_int/uint Reviewed by: imp (mentor), ru
* Move the description of sbuf_delete() closer to the description ofdes2004-01-091-11/+13
| | | | sbuf_new(), and try to make them both a little clearer.
* Clean up the acpi announce message of trailing spaces.njl2004-01-091-3/+11
|
* Add missing manual page links for rman(9) and sysctl_add_oid(9).simon2004-01-091-0/+18
| | | | | Submitted by: Lukas Ertl <l.ertl@univie.ac.at> PR: docs/60088
* First 5.2-RELEASE errata, documenting some known issues in thebmah2004-01-091-1/+59
| | | | | | | release: xdm(1) black-and-white-ness, ACPI problems, ATA device problems, NFS floppy install requirements, pcm(4) vchan instabilities. Submitted by: scottl, truckman
* Update man page for \_OS* changes.njl2004-01-091-1/+6
|
* Expand the check for overriding the OS name to override _OS* (includingnjl2004-01-091-7/+9
| | | | | _OS_, _OS, and _OSI). This should fix this option for people who reported it not changing anything.
* Note that REPORT_LUNS should be implemented to work better with Linuxnjl2004-01-091-0/+1
| | | | and Windows as initiators.
* Enable autosense by default. This shouldn't hurt SPI and is requirednjl2004-01-091-1/+1
| | | | for FC.
* Bump the max number of initiators to 256 from 16. This is appropriate fornjl2004-01-091-3/+3
| | | | fibre channel and shouldn't hurt SPI.
* Disable the APIC when selecting the 'Safe Mode' option of the loader. Thisscottl2004-01-091-0/+1
| | | | will disable both APIC interrupt routing and SMP.
* Prepare libsdp(3) for the upcoming sdpd importemax2004-01-096-112/+190
| | | | | | Also while i'm here s/u_int/uint Reviewed by: imp (mentor), ru
* Add MLINK:brueffer2004-01-091-0/+1
| | | | ndis.4 -> if_ndis.4
* Correct typo in MLINKbrueffer2004-01-091-1/+1
|
* Add reference to miibus.4brueffer2004-01-096-0/+6
| | | | MFC after: 5 days
* device uhci0 -> device uhcibrueffer2004-01-091-2/+1
| | | | | | Remove reference to miibus.4, the driver doesn't use it. MFC after: 5 days
* kue(4) doesn't use miibus eitherbrueffer2004-01-091-3/+0
| | | | MFC after: 5 days
* Remove drivers that don't need miibus(4):brueffer2004-01-091-6/+21
| | | | | | | | | | | | | | | | o an o awi Add missing drivers: o axe o bfe o gx o lge o nge o re o sk MFC after: 5 days
* Provide sysarch(2) prototypes in the MD sysarch.h headers. While I'mnectar2004-01-0919-40/+20
| | | | | | | | | | at it, use the ANSI C generic pointer type for the second argument, thus matching the documentation. Remove the now extraneous (and now conflicting) function declarations in various libc sources. Remove now unnecessary casts. Reviewed by: bde
* KASSERT against no-op access requests.phk2004-01-091-0/+1
| | | | Submitted by: Pawel Jakub Dawidek <nick@garage.freebsd.pl>
* - Add the HP hn210e to the devices list.simon2004-01-091-1/+4
| | | | | | - Make the device list compact. MFC after: 1 week
* Re-add the FreeBSD RCS keyword for the benefit of mergemaster.nectar2004-01-091-0/+1
| | | | | PR: conf/50040 Requested by: Dimitry Andric <dim@xs4all.nl>
* Reduce TCP_MINMSS default to 216. The AX.25 protocol (packet radio)andre2004-01-091-4/+3
| | | | | is frequently used with an MTU of 256 because of slow speeds and a high packet loss rate.
OpenPOWER on IntegriCloud