summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* MFi386: adapt rev 1.19 (debugger fixes)peter2004-09-221-2/+10
|
* cnw (Xircom pccard) is built on amd64 and there isn't an obvious reasonpeter2004-09-221-1/+1
| | | | that I can see as to why it shouldn't work.
* Minor sync-up with i386. Catch up on de-quoting and de-counting afterpeter2004-09-221-14/+23
| | | | config changes.
* MFi386: add ispfw (except using correct device<tab><tab>ispfw format,peter2004-09-221-0/+1
| | | | <space><tab> is for the options line)
* Since "d" is an array of 32 bit values, it is morecsjp2004-09-211-1/+1
| | | | | | correct to change the cast from unsigned int to uint32_t. Pointed out by: luigi
* Hopefully fix alpha and sparc64 builds: on these architectures,ru2004-09-211-3/+4
| | | | | | | | | | libpthread is provided by src/lib/libc_r. Also, removed lib/bind from _generic_libs, "lib" will suffice. Also, removed redundant lib/bind dependency on lib/libpthread (as lib/bind is not in the _prebuild_libs, it's not needed). Prodded by: trhodes@ reporting that des@ is on the flight
* In a threaded process, don't kill off all the other threads until we have ajulian2004-09-211-11/+17
| | | | | | | reasonable chance that the eceve() is going to succeeed. I.e. wait until we've done the permission checks etc. MFC after: 1 week
* Improve netsend timing logic in various ways:rwatson2004-09-211-13/+78
| | | | | | | | | | | | - Centralize time comparison. - Check clock resolution to make sure it has enough granularity to implement the desired wait interval. - Keep track of how many times the timing loop has to spin waiting for the next send time; report statistics. - Add commented out warning about deadlines being missed when spinning. - Improve statistics reporting generally to provide a more useful summary of sender condition after a run.
* Switch from BIND 8 to BIND 9.des2004-09-2149-589/+5877
| | | | | | Submitted by: (in part) dougb@, trhodes@ Reviewed by: dougb@, trhodes@, re@ MFC after: 5 days
* Initialize the flags value properly. We used to do this in acpi_tz_all_off()njl2004-09-211-33/+2
| | | | | | | but that function has been removed. This avoids a potential unnecessary fan switch on boot. Also remove some commented out code. MFC after: 3 days
* Update copyright years.des2004-09-2110-10/+11
|
* Don't disable acpi in shutdown if we're panicing (panicstr != NULL). Thisnjl2004-09-211-1/+1
| | | | may help with double panics.
* Correct the capitalization of "nVidia".des2004-09-211-5/+5
|
* Group equivalent flags together and delete the `aliases' section.keramida2004-09-211-13/+8
| | | | | PR: docs/70856 Submitted by: Rostislav Krasny <rosti_bsd@yahoo.com>
* De support opening device nodes on CD9660 filesystems. They arephk2004-09-214-42/+18
| | | | | still visible, they can still be seen, but they cannot be opened. Use DEVFS for that.
* If a vnode has no v_rdev we cannot hope to answer FIODTYPE ioctl.phk2004-09-211-0/+2
|
* Add the sound device to the synopsis.simon2004-09-211-0/+1
| | | | Noticed by: ru
* Trap invalid sector size 0 in disk probe, refusing to add such awes2004-09-211-0/+4
| | | | | | | | device to the list. This prevents crashes on /0 errors in 'lsdev' et al. Reviewed-by: jhb@ MT5 after: RE approval
* Set default socket size for netreceive to 128k to reduce the chancesrwatson2004-09-211-1/+7
| | | | | of the buffer overflowing before netreceive can be scheduled to read the packets from the socket.
* - Month and weekday names should begin with lowercase latter.pjd2004-09-202-100/+100
| | | | | | | | - First part of long month names should use genitive. - Use more proper shortcuts, leaving the first 3 letters is not always correct. Submitted by: Bodek <bodek@blurp.org>
* Auto generate device listings for the snd_ess(4) driver.simon2004-09-203-0/+5
| | | | MFC after: 3 days
* Connect snd_ess(4) to the build.simon2004-09-201-0/+1
|
* Add manual page for snd_ess(4).simon2004-09-201-0/+60
| | | | | Submitted by: Atte Peltomaki <koston@iki.fi> MFC after: 3 days
* Force a redraw if all dists are selected so the checklist is updated.jhb2004-09-201-1/+1
| | | | | Submitted by: Rostislav Krasny rosti_bsd at yahoo dot com MFC after: 3 days
* - Add support for "paging" in stack trace output. That is, when you dojhb2004-09-207-17/+33
| | | | | | | | | | | | | a stack trace from ddb, the output will pause with a '--More--' prompt every 18 lines. If you hit Enter, it will print another line and prompt again. If you hit space it will output another page and then prompt. If you hit 'q' or 'x' it will abort the rest of the stack trace. - Fix the sparc64 userland stack trace to honor the total count of lines to print. This is useful if your trace happens to walk back onto 0xdeadc0de and gets stuck in an endless loop. MFC after: 1 month Tested on: i386, alpha, sparc64
* Remove unused macro.jhb2004-09-201-2/+0
|
* Add lib/tests.des2004-09-201-1/+4
|
* Document the AUTO setting for dumpdev.des2004-09-201-2/+7
| | | | MFC after: 4 weeks
* If $dumpdev is set to AUTO, use the first suitable swap partition listeddes2004-09-201-0/+10
| | | | | | in /etc/fstab, or print an error message if no suitable device was found. MFC after: 4 weeks
* Force commit to provider more detailed info about this change.pjd2004-09-200-0/+0
| | | | | | | | | | There is no need to skip providers with 0 sectorsize in taste routine, it is now forced by GEOM. Actually, it can even cause some problems, because GEOM requires sectorsize to be greater than 0 on first access, not on provider creation, so we can skip valid providers by doing this check in taste method. Requested by: scottl
* This is not needed anymore, it is forced in GEOM now.pjd2004-09-205-15/+0
| | | | | | | | | Actually, it can even cause some problems, because GEOM requires sectorsize to be more than 0 on first access, not on provider creation, so we can skip valid providers by doing this check here. Reported by: Divacky Roman <xdivac02@stud.fit.vutbr.cz> Sven Willenberger <sven@dmv.com>
* Don't forget to check defined() before testing the value.des2004-09-201-0/+1
|
* Make this use a standard bsd.subdir.mk.ru2004-09-201-6/+2
|
* Merged from sys/dev/sio/sio.c: more tty related changes.nyan2004-09-202-18/+20
|
* MFpc98: Check a pointer is NULL, remove unused variable.nyan2004-09-201-3/+4
|
* Merge the following from the English version:den2004-09-202-564/+347
| | | | | | | | 1.255 -> 1.257 hardware/common/dev.sgml 1.774 -> 1.778 relnotes/common/new.sgml Obtained from: The FreeBSD Russian Documentation Project MFC after: 2 days
* Merge the following from the English version:hrs2004-09-207-85/+39
| | | | | | | | | | 1.4 -> 1.6 relnotes/alpha/article.sgml 1.2 -> 1.4 relnotes/amd64/article.sgml 1.6 -> 1.7 relnotes/i386/Makefile 1.5 -> 1.7 relnotes/i386/article.sgml 1.2 -> 1.4 relnotes/ia64/article.sgml 1.2 -> 1.4 relnotes/pc98/article.sgml 1.4 -> 1.6 relnotes/sparc64/article.sgml
* Merge the following from the English version:hrs2004-09-2017-609/+286
| | | | | | | | | | | | | | | | | | | | 1.2 -> 1.3 hardware/Makefile.inc 1.6 -> 1.7 hardware/alpha/Makefile 1.4 -> 1.6 hardware/alpha/article.sgml 1.1 -> 1.2 hardware/amd64/Makefile 1.1 -> 1.3 hardware/amd64/article.sgml 1.3 -> 1.5 hardware/amd64/proc-amd64.sgml 1.4 -> 1.5 hardware/common/artheader.sgml 1.210 -> 1.256 hardware/common/dev.sgml 1.5 -> 1.6 hardware/i386/Makefile 1.4 -> 1.6 hardware/i386/article.sgml 1.2 -> 1.3 hardware/ia64/Makefile 1.3 -> 1.5 hardware/ia64/article.sgml 1.1 -> 1.2 hardware/pc98/Makefile 1.1 -> 1.3 hardware/pc98/article.sgml 1.3 -> 1.4 hardware/sparc64/Makefile 1.3 -> 1.5 hardware/sparc64/article.sgml 1.11 -> 1.12 hardware/sparc64/proc-sparc64.sgml
* MFen 1.36den2004-09-201-9/+1
|
* MFen 1.6den2004-09-201-3/+3
|
* CTASSERT that MSZIE is a power of 2 (otherwise dtom() breaks)brian2004-09-201-1/+4
| | | | | | | | | | Ask uma_zcreate() to align mbufs to MSIZE bytes (otherwise dtom() breaks) As it happens, uma_zalloc_arg() always returned mbufs aligned to MSIZE anyway, but that was an implementation side-effect.... KASSERT -> CTASSERT suggested by: dd@ Approved by: silence on -net
* Add support Nvidia nForce2(audio)sanpei2004-09-201-0/+4
| | | | | | PR: kern/71317 Submitted by: Mezz <mezz@freebsd.org> MFC after: 1 week
* trim trailing white space..jmg2004-09-201-2/+2
| | | | | | call the re mutex by it's name.. MFC after: 3 days
* das@ has a ACPI bios that lists 0x3f0-0x3f1, 0x3f2-0x3f3, 0x3f4-0x3f5imp2004-09-201-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | and 0x3f7. fdc_isa_alloc_resource() didn't work right in this case (it accessed FDOUT correctly due to an overflow of the first resource. It accesed FDSTS and FDDATA incorrectly via the second resource (which wound up accessing FDOUT and the tape register at 0x3f3) and badly for the CTL register (at location 0x3f4). This is a minimal fix that just 'eats' the first one if it covers two locations and has an offset of 0. This confusion lead the floppy driver to think there'd been a disk change, which uncovered a deadlock in the floppy/geom code which lead to a panic. These changes fix that by fixing the underlying resource problem, but doesn't address the potential deadlock issue that might still be there. This is a minimal fix so it can more safely be merged into 5 w/o risk for known working configurations (hence the use of the ugly goto, which reduces case 8 to case 6 w/o affecting cases 1-7). A more invasive fix that will handle more ACPI resource list diversity is in the pipeline that should kill these issues once and for all, while staying within the resources that we allocate. Tested/Reported by: das Reviewed by: njl MFC before: re->next_release_name(5.3-BETA5);
* Add support nForce3 250 audiosanpei2004-09-201-0/+4
| | | | | | PR: kern/71726 Submitted by: FUJIMOTO Kou <fujimoto@j.dendai.ac.jp> MFC after: 1 week
* Record a problem we can't workaround for now regarding duplicate interruptsnjl2004-09-201-0/+7
| | | | | because of links left enabled while in APIC mode. A large scale rework of irq links is underway by jhb@ which should fix this eventually.
* add '/* Panasonic products */' line(I removed it)sanpei2004-09-201-0/+1
|
* Fix compilation of vinum(4) when VINUMDEBUG is not defined.marius2004-09-202-2/+2
| | | | | | PR: 71341 Submitted by: Phil Budne <phil@tripadvisor.com> MT5 candidate.
* Correct value and description of the unused MK48TXX_WDAY_FT macro.marius2004-09-201-1/+1
|
* netsend uses an arbitrary maximum send rate to reject bogus arguments.rwatson2004-09-191-2/+4
| | | | | It was previously 1mpps; raise to 10mpps. While here, get the error message right.
OpenPOWER on IntegriCloud