summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Regenerateobrien2003-01-131-1/+3
|
* - Unbreak world. I did not notice that libkvm was still used in some placesjeff2003-01-132-7/+6
| | | | | | to access the pctcpu. This will have to be sorted out more later as the new scheduler requires a procedural interface for this data. A more complete solution will follow.
* Correct an off-by-one error in the calculation of the number of interruptbenno2003-01-131-1/+1
| | | | resources we're managing.
* Lock the stream before calling __sfileno() to retrieve the file descriptor.tjr2003-01-131-2/+10
| | | | 1003.1-2001 requires that fileno() behave as if it locks the stream.
* Add missing word to "Return Values" section.tjr2003-01-131-0/+1
|
* Bow to the whining masses and change a union back into void *. Retaindillon2003-01-1351-243/+213
| | | | | removal of unnecessary casts and throw in some minor cleanups to see if anyone complains, just for the hell of it.
* Make vm_page_alloc() return PG_ZERO only if VM_ALLOC_ZERO is specified.alc2003-01-121-4/+5
| | | | | | | | | | The objective being to eliminate some cases of page queues locking. (See, for example, vm/vm_fault.c revision 1.160.) Reviewed by: tegge (Also, pointed out by tegge that I changed vm_fault.c before changing vm_page.c. Oops.)
* MFen: Add `id' attribute to <sect1>.hrs2003-01-129-27/+28
| | | | | | | | | | | | 1.9 -> 1.11 early-adopter/article.sgml 1.10 -> 1.12 errata/article.sgml 1.124 -> 1.126 hardware/common/dev.sgml 1.3 -> 1.5 hardware/common/intro.sgml 1.3 -> 1.5 hardware/i386/proc-i386.sgml 1.1 -> 1.3 hardware/ia64/proc-ia64.sgml 1.2 -> 1.4 hardware/pc98/proc-pc98.sgml 1.7 -> 1.9 hardware/sparc64/proc-sparc64.sgml 1.474 -> 1.476 relnotes/common/new.sgml
* Merge the following from the English version:hrs2003-01-123-58/+123
| | | | | | | | | | 1.1 -> 1.2 hardware/pc98/proc-pc98.sgml 1.122 -> 1.124 hardware/common/dev.sgml 1.5 -> 1.7 hardware/sparc64/proc-sparc64.sgml Submitted by: Hideyuki KURASHINA <rushani@jp.FreeBSD.org> References: [doc-jp-work 581]
* Add code to make md(4) a GEOM device driver instead of relying inphk2003-01-121-4/+134
| | | | | | the disk mini-layer. This is currently not enabled.
* Partial support for the nVidia nForce2 chipset's on-board Broadcom/Altima PHYobrien2003-01-124-0/+7
| | | | | | | and 3com MAC. Specifications for the Altima PHY are available at: http://www.altimacom.com/products/ac101L.html Submitted by: Mikko S. Hyvarinen <morphy@morphy.iki.fi>
* Merge the following from the English version:hrs2003-01-121-152/+171
| | | | | | | 1.424 -> 1.444 relnotes/common/new.sgml Submitted by: Hideyuki KURASHINA <rushani@jp.FreeBSD.org> References: [doc-jp-work 577]
* - Move ke_pctcpu and ke_cpticks into the scheduler specific datastructure.jeff2003-01-122-17/+30
| | | | | This will prevent access through mechanisms other than the published interfaces.
* Forced commit; the previous commit's message should have been:roam2003-01-120-0/+0
| | | | | | | | | Add 'id' tags to all <sect1> sections to ensure a sensible naming scheme for the generated HTML documents. Translators: no content changes. Discussed with: bmah and udo on -doc
* /tmp/msgroam2003-01-1216-31/+31
|
* Shift things around a bit in preparation for future evilness.phk2003-01-121-43/+48
|
* Fix struct iovec documentation to match reality.mike2003-01-122-2/+2
| | | | Submitted by: Craig Rodrigues <rodrigc@attbi.com>
* MFbed: translation updateue2003-01-121-3/+3
| | | | hardware/sparc64/proc-sparc64.sgml: 1.6 -> 1.7
* Allowing nent < 0 in aio_suspend() and lio_listio() is just asking fortjr2003-01-121-2/+2
| | | | trouble. Return EINVAL instead.
* Remove "XXX undocumented" comment from lio_listio().tjr2003-01-121-1/+1
|
* Add a manual page for the lio_listio() syscall. Still needs a bittjr2003-01-122-1/+177
| | | | of polishing.
* Make compile cleanly when USB_DEBUG is defined.imp2003-01-121-1/+2
|
* vm_fault_copy_entry() needn't clear PG_ZERO because it didn't passalc2003-01-121-3/+0
| | | | VM_ALLOC_ZERO to vm_page_alloc().
* vm_hold_load_pages() needn't clear PG_ZERO because it didn't passalc2003-01-121-1/+0
| | | | VM_ALLOC_ZERO to vm_page_alloc(). (PG_ZERO is clear by default.)
* Fix the named script to find the correct pid file for themtm2003-01-122-2/+3
| | | | | | | | | | | | named(8) daemon by providing a new rc.conf knob: named_pidfile that defaults to the path specified in the system-installed named.conf(5). Approved by: markm (mentor) Reviewed by: dougb Noticed by : Galen Sampson <galen_sampson@yahoo.com> Dan Pelleg <daniel+bsd@pelleg.org> PR: conf/46402 MFC: 2 weeks (with re@ approval)
* It turns out that we do not need to add a new ioctl to unbreak adillon2003-01-122-0/+43
| | | | | | | | | | | | | default-to-deny firewall. Simply turning off IPFW via a preexisting sysctl does the job. To make it more apparent (since nobody picked up on this in a week's worth of flames), the boolean sysctl's have been integrated into the /sbin/ipfw command set in an obvious and straightforward manner. For example, you can now do 'ipfw disable firewall' or 'ipfw enable firewall'. This is far easier to remember then the net.inet.ip.fw.enable sysctl. Reviewed by: imp MFC after: 3 days
* Merged from sys/isa/fd.c revision 1.244.nyan2003-01-122-0/+6
|
* Change struct file f_data to un_data, a union of the correct structdillon2003-01-1251-213/+231
| | | | | | | | | | pointer types, and remove a huge number of casts from code using it. Change struct xfile xf_data to xun_data (ABI is still compatible). If we need to add a #define for f_data and xf_data we can, but I don't think it will be necessary. There are no operational changes in this commit.
* Note that the 1E is the 1 Enterprise.obrien2003-01-111-1/+1
|
* Make iso.1 more readable.obrien2003-01-111-4/+8
|
* Bail out of fd_clone() if the parsed unit number doesn't match ourjoerg2003-01-112-0/+6
| | | | | | | | | | expectation. This solves the problem, where in a constellation with two (or more) drives, an attempt is made to access a device name for that device using a historic partition letter, like /dev/fd1c. This is supposed to create a symlink to the master device, but previously, the link was always created to /dev/fd0, even if the request was for fd1*.
* Add support for the Intel 82820 UP-only AGP bridge.anholt2003-01-112-0/+8
| | | | | | PR: 41466 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> MFC after: 1 week
* In vm_page_alloc(), fuse two if statements that are conditioned on the samealc2003-01-111-8/+3
| | | | expression.
* Cleanup the formatting from the last commit, convert everything todillon2003-01-111-8/+21
| | | | a more human-readable 'kilobytes' instead of pages.
* FBSDIDize and clean up whitespace nits.des2003-01-111-30/+25
|
* Read sanpei's mind, and unbreak the build.des2003-01-111-2/+3
|
* Change to correct card entry. RATOC REX-R280 is 10Base-T Ether Card,shiba2003-01-111-1/+1
| | | | RATOC REX-9530 is SCSI2 Card.
* Regen.shiba2003-01-111-3/+10
|
* RATOC REX-R280(10Base-T Ether Card) and REX-9530(SCSI2 Card) haveshiba2003-01-111-1/+4
| | | | same product id. So use CIS info(PCCARD_CISTPL_VERS_1).
* Fix kernel build.mux2003-01-111-1/+1
| | | | Pointy hats to: dillon, Hiten Pandya <hiten@unixdaemons.com>
* Don't restrict MBR sectorsize to 512 bytes.phk2003-01-111-20/+23
| | | | Test data provided by: Andrey Koklin <aka@veco.ru>
* MFbed: translation updateue2003-01-118-355/+308
| | | | | | | | | | | hardware/alpha/proc-alpha.sgml: 1.51 -> 1.52 hardware/common/dev.sgml: 1.119 -> 1.124 hardware/pc98/proc-pc98.sgml: 1.1 -> 1.2 hardware/sparc64/Makefile: 1.1 -> 1.3 hardware/sparc64/article.sgml: 1.2 -> 1.3 hardware/sparc64/proc-sparc64.sgml: 1.4 -> 1.6 installation/common/trouble.sgml: 1.10 -> 1.11 relnotes/common/new.sgml: 1.467 -> 1.473
* Don't count mbufs with m_type == MT_HEADER or MT_OOBDATA as control datatjr2003-01-113-6/+14
| | | | | in sballoc(), sbcompress(), sbdrop() and sbfree(). Fixes fstat() st_size reporting and kevent() EVFILT_READ on TCP sockets.
* Make 'sysctl vm.vmtotal' work properly using updated patch from Hiten.dillon2003-01-115-5/+31
| | | | | | | (the patch in the PR was stale). PR: kern/5689 Submitted by: Hiten Pandya <hiten@unixdaemons.com>
* Implement missing fpgetround() and fpsetround().marcel2003-01-113-2/+84
|
* Add support for Corega FEtherII CB-TXD (CardBus 100M/10M).sanpei2003-01-112-4/+14
| | | | Fix typo (Coreaga->Corega)
* correct printf formatsam2003-01-111-1/+1
| | | | Noticed by: alpha tinderbox
* Reset the channel in attach if its not the console.jake2003-01-111-0/+7
|
* Add symlink support to devfs_rule_matchpath(). This allows the userdd2003-01-111-1/+2
| | | | to unhide symlinks as well as hide them.
* Major bugfixes for large memory and fast systems.scottl2003-01-114-67/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aac.c: Re-arrange the interrupt handler to optimize the common case of the adapter interrupting us because one or more commands are complete, and do a read across the pci bus to ensure that all posted status writes are flushed. This should close a race that could cause command completion interrupts to be lost. Follow the spec a bit closer when filling out command structures. Enable the Fast Response feature to eliminate the need for the card to DMA successfull command completions back into host memory. Tell the controller how much physical memory we have. Without this there was a chance that our DMA regions would collide with the memory window used by the cache on the controller. The result would be massive data corruption. This seemed to mainly affect systems with >2GB of memory. Fix a few whitespace problems. aac_debug.c: Add an extra diagnostic when printing out commands. aac_disk.c: Add extra sanity checks. aacreg.h: Prepare for making this 64-bit clean by reducing the use of enumeration types in structures. Many thanks to Justin Gibbs for helping track these down.
OpenPOWER on IntegriCloud