summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replaced an ugly hack to selectively disable warningsru2004-01-112-3/+3
| | | | | | | in contributed sources with just a hack made possible by bsd.sys.mk,v 1.33. This is better because it just nulls out the warning flags rather than adding gcc(1) specific -w option to CFLAGS.
* Add Audigy support.obrien2004-01-112-95/+532
| | | | | | I started with a year-old patch by Orlando Bassotto <orlando.bassotto@ieo-research.it>, and ported it to 5.2-CURRENT along with fixing the problems working with pre-Audigy cards.
* Put the warning flags to where they belong (into CWARNFLAGS).ru2004-01-111-10/+10
| | | | | This allows us to easily override them when necessary, e.g., to selectively disable warnings in libc/ contributed sources.
* Print the correct pointer in a KASSERT.phk2004-01-111-1/+1
| | | | Submitted by: Pawel Jakub Dawidek <nick@garage.freebsd.pl>
* MFi386: revision 1.583.nyan2004-01-112-0/+6
|
* The ida module is not needed for pc98.nyan2004-01-111-1/+1
|
* '-DPC98' is not needed.nyan2004-01-111-4/+0
|
* ida(4) module. PCI only for now.mdodd2004-01-112-0/+10
|
* Remove long dead code, specifically, code related to munmapfd().alc2004-01-113-28/+0
| | | | (See also vm/vm_mmap.c revision 1.173.)
* Add support for subtractive decoding bridges. These bridges pass allimp2004-01-112-159/+128
| | | | | | | | | | | | | | | | | | | signals to addresses to the child busses. Typically, ProgIf of 1 means a subtractive bridge. However, Intel has a whole lot of ones with a ProgIf of 80 that are also subtractive. We cope with these bridges too. This eliminates hw.pci.allow_unsupported_io_range because that had almost the same effect as these patches (almost means 'buggy'). Remove the bogus checks for ISA bus locations: these cycles aren't special and are only passed by transparent bridges. We allow any range to succeed. If the range is a superset of the range that's decoded, trim the resource to that range. Otherwise, pass the range unchanged. This will change the location that PC Card and CardBus cards are attached. This might bogusly cause some overlapping allocation that wasn't present before, but the overlapping fixes need to be in the pci level. There's also a few formatting changes here.
* Release audit device major number reservation. The new auditrwatson2004-01-111-1/+0
| | | | | | implementation writes directly to a file, similar to the Darwin, Solaris, and whoever else implementations, rather than buffering through a pseudo-device.
* This commit was generated by cvs2svn to compensate for changes in r124361,obrien2004-01-111-10/+19
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import emu10k1.h from version 1.0.1 of the ALSA driver.obrien2004-01-111-10/+19
| | | | | | | | | | ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.1.tar.bz2 or http://www.alsa-project.org/alsa/cvs/alsa-kernel/include/emu10k1.h
* | Include "opt_cpu.h" and related #ifdef's for SSE so that pagezero()alc2004-01-111-0/+8
| | | | | | | | actually includes the call to sse2_pagezero().
* | When not creating a core dump due to resource limits specifyingrwatson2004-01-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | a maximum dump size of 0, return a size-related error, rather than returning success. Otherwise, waitpid() will incorrectly return a status indicating that a core dump was created. Note that the specific error doesn't actually matter, since it's lost. MFC after: 2 weeks PR: 60367 Submitted by: Valentin Nechayev <netch@netch.kiev.ua>
* | Remove EMUDEBUG [un]def. This should be done in the Makefile.obrien2004-01-111-1/+0
| |
* | Problem:rwatson2004-01-111-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When an NFS server is port-scanned nfsd sometimes exits. This has happened 3 times the last few weeks. Nfsd has been written to exit when accept(2) fails. Unfortunately accept can sometimes make a "normal" return with errno ECONNABORTED and in this case nfsd exits prematurely. Solution: Check for ECONNABORTED (and also EINTR, since nfsd uses signals) and continue. Submitted by: Bjoern Groenvall <bg@sics.se> PR: 61084
* | MF-p4/diff reduction:imp2004-01-111-1/+0
| | | | | | | | Eliminate trailing blank line in this file.
* | Update the diskless(8) documentation to indicate that the use of therwatson2004-01-101-7/+24
| | | | | | | | | | | | | | | | | | kernel BOOTP options is *not* required if the boot loader can pass network configuration information to the kernel using the kernel environment. As such, PXE doesn't require them. However, the NFS options are required in the kernel (previously not documented). Tripped over by: des
* | 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
OpenPOWER on IntegriCloud