summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Correctly document the order of argumentskientzle2005-01-082-2/+2
| | | | | | to archive_read_open and archive_write_open. Thanks to: Antony Dovgal
* Clear the error buffer on entrykientzle2005-01-081-0/+1
| | | | | | | to archive_read_next_header so the next error doesn't just get appended. MFC after: 7 days
* Cast to intmax_t when using %jd format.pjd2005-01-081-1/+1
| | | | MFC after: 3 days
* More fixes to the copyright notice.hsu2005-01-082-2/+2
| | | | Submitted by: Ken Smith <kensmith@cse.Buffalo.EDU>
* Cleanup usr.sbin/fd* so they can compile under WARNS=6.delphij2005-01-088-35/+39
| | | | | | | | | | | | | | | | | | | | | | | | fdcontrol/fdcontrol.c: - Add const constraint to an intermediate value which is not supposed to be changed elsewhere. fdread/fdread.c: - Use _devname in favor of devname to avoid name conflicit. - -1 is less than any positive number so in order to get the block to function, we should get the block a little earlier. - Cast to remove signed when we are sure that a return value is positive, or is compared with an positive number (tracknumber of a floppy disk is not likely to have UINT_MAX/2 anyway) fdread/fdutil.c: - Use more specific initializer fdwrite/fdwrite.c: - Use static on format_track since it's not referenced in other places. - Use const char* to represent string constant. Bump WARNS accordingly.
* Follow style.Makefile(5):delphij2005-01-081-1/+1
| | | | | | WARNS comes before CFLAGS This reduces diff against my local branch.
* This change adds reliability for Ethernet trunks built with ng_one2many:glebius2005-01-082-0/+37
| | | | | | | | | | - Introduce another ng_ether(4) callback ng_ether_link_state_p, which is called from if_link_state_change(), every time link is changed. - In ng_ether_link_state() send netgraph control message notifying of link state change to a node connected to "lower" hook. Reviewed by: sam MFC after: 2 weeks
* Fix typo, function name pthread_rwlock_timedrwlock should bedavidxu2005-01-081-1/+1
| | | | pthread_rwlock_timedwrlock.
* [NO]MAN -> NO_[MAN].trhodes2005-01-081-3/+3
| | | | Bump doc date.
* In total violation of at least 4 sections in the ACPI spec, some systemsnjl2005-01-081-19/+26
| | | | | | | | | place device objects in \ (in this case, PCI links.) Work around this by starting our probe from \. To avoid attaching system scope objects, explicitly skip them. (I think it's an ACPI-CA bug that \_SB and \_TZ have device and thermal object types.) Thanks to pjd@ for testing. MFC after: 2 weeks
* Break out of loop earlier if it is not timeout.davidxu2005-01-081-1/+1
|
* Change the USB keyboard example to use /dev/ukbd0 instead of /dev/kbd1.brooks2005-01-081-2/+2
| | | | | | This example caused me to incorrectly believe that you must use the generic device nodes when you can in fact use either. It's often better to use the driver specific node.
* When ukbd0 arrives, attach to /dev/ukbd0 rather then /dev/kbd1 sincebrooks2005-01-081-1/+1
| | | | kbd1 might be something else.
* Annotate that pfs_exit() always acquires and releases two mutexes forrwatson2005-01-081-0/+4
| | | | | every process exist, even if procfs isn't mounted. And one of those mutexes is Giant. No immediate thoughts on fixing this.
* In acct_process(), do a lockless read of acctvp to see if it's NULLrwatson2005-01-081-1/+12
| | | | | | | | before deciding to do more expensive locking to account for process exit. This acceptable minor race avoids two mutex operations in that highly common case of accounting not being enabled. MFC after: 2 weeks
* Elminate 1 LOR (actually a recursive mutex grab) involving ipfilter wheredarrenr2005-01-081-25/+2
| | | | | we loop through all the list of NICs (struct ifnet), holding the lock on it and then do a name lookup with ifunit() whilst holding it.
* In kern_wait(), let the compiler copy the rusage structure rather thanrwatson2005-01-081-1/+1
| | | | an explicit bcopy() -- it probably does a better job.
* Remove the LSI MegaRAID SATA 150-2, this is a SiL 3112 based software RAIDbrueffer2005-01-081-2/+0
| | | | | | | device. Submitted by: Martin Nilsson <martin@gneto.com> MFC after: 3 days
* Fix copyright notice.hsu2005-01-082-2/+2
|
* Revert local experiment which leaked into commit.phk2005-01-071-1/+1
|
* Fix compilation of DEVICE_POLLING code.phk2005-01-072-6/+6
|
* Document slot specific location for base I/O board on AS600.wilko2005-01-071-1/+4
| | | | Thanks to: Charles Smeijer for getting me my AS600.
* Reorganize the DESCRIPTION section, using .Bl lists to separate thekeramida2005-01-071-47/+56
| | | | | | | | | descriptions of items from each other and have related things appear in the same nesting 'level'. The .Fn function/macro, and bump document date. Reviewed by: jkoshy
* Note that fdisk is not used on Alpha.wilko2005-01-071-5/+3
| | | | | | Remove outdated info on install media. Submitted by: "William H. Magill" <magill@mcgillsociety.org>
* Comment typo.keramida2005-01-071-1/+1
| | | | | PR: kern/75923 Submitted by: Matthew D. Fuller <fullermd@over-yonder.net>
* Fix support for machines with default MP Table configurations:jhb2005-01-071-18/+71
| | | | | | | | | | | | | | | | | | | | | | | | | - Fix the MP Table pci bridge drivers to not probe the configuration table unless we actually have one. Machines using a default configuration do not have such a table. - Only allow default configuration types of 5 (ISA + PCI) and 6 (EISA + PCI) as the others are not likely to work. Types 1 through 4 use an external APIC (probably with 80486 processors) which we certainly do not support, and type 7 uses an MCA bus which has not been tested with the new MP Table code. - Correct the fact that the single I/O APIC in a default configuration has an ID of 2, not 0. - Fix off by one errors in setting the bus types from the default_data[] arrays for default configurations. - Explicitly configure each of the 16 interrupt pins on the sole I/O APIC when using a default configuration. This is especially helpful for type 6 (EISA + PCI) since the EISA interrupts need to have their polarity programmed based on the values in the ELCR. Much thanks to the submitter and tester who endured several rounds of testing to get this fixed. MFC after: 1 week Tested by: Georg Schwarz georg dot schwarz at freenet dot de
* Finish src part VFS_INIT.9 removal. Need to check www/.maxim2005-01-071-1/+0
|
* The `timep' argument of utime() is not an array of structs.keramida2005-01-071-1/+7
| | | | | | | Make sure we don't confuse the reader by claiming it is. PR: docs/75615 Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp>
* The .Fn macro.keramida2005-01-071-2/+4
|
* The .Fn macro and addition of .Fa in the tag width of thekeramida2005-01-071-5/+12
| | | | argument description list.
* - The .Fn macro and description of the `struct statfs' type of `sbp'.keramida2005-01-071-4/+61
| | | | | | - List of struct statfs fields that are related to file systems, much like the list in stat.2 for the userlevel `struct stat'. - Bump document date.
* Fix the derivation of the GEOM name from the specified device name byrse2005-01-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | complementing the existing special case of a not existing /dev prefix with the recognition of an already existing /dev prefix. This implicitly solves the following two issues related to working on GEOM devices /dev/foo/bar (which have the GEOM provider name "foo/bar") with the expected commands like "bsdlabel /dev/foo/bar": 1. the error "Geom not found" when trying to write or edit the BSD label (because previously the incorrect GEOM name "bar" instead of "foo/bar" was derived from "/dev/foo/bar"). 2. the multiple times reported "magically introduced" partition offset of 63 blocks and the resulting errors like "partition extends past end of unit" and "partition c doesn't start at 0!". This implicitly resulted because bsdlabel(8) determines the "MBR offset" via GEOM and (intentionally) silently falls back to an offset of 0 if it could not be queried (which is the case if the name was incorrectly derived). Usually (at least on PCs) the offset for the first slice is 63 blocks and bsdlabel(8) automatically subtracts them from the absolute offsets in the read on-disk BSD label, resulting in the display of an effective offset of 0. If the GEOM query fails, the assumed offset of 0 is subtracted and an incorrect effective offset of 63 is displayed and tried to be worked upon. Reviewed by: pjd MFC after: 1 week
* The .Fn macro, document `flags' argument & bump document date.keramida2005-01-071-4/+9
|
* WARNS=6 cleanup. This includes:delphij2005-01-072-8/+10
| | | | | | | - Apply __unused on unused parameters - Use const where suitable - Use PRIu64 instead of the deprecated %q - Bump WARNS to 6
* Trim excessively verbose sentence.keramida2005-01-071-1/+1
|
* The .Fn macrokeramida2005-01-071-4/+8
|
* Move the description of MNT_FORCE closer to mntflags and use a .Blkeramida2005-01-071-8/+13
| | | | | | list for the valid flag values. This way, if VFS_UNMOUNT(9) supports more flags in the future, adding a single list item is going to be easy and all the flags are going to be in one place.
* The .Fn macro.keramida2005-01-071-4/+8
|
* There is no VFS_INIT(9).keramida2005-01-071-54/+0
| | | | Approved by: phk
* The VFS_MOUNT() macro expects only 2 arguments in the nmount worldkeramida2005-01-071-15/+10
| | | | | | (since revision 1.173 of src/sys/sys/mount.h). Update its prototype, the argument list description and bump the date.
* Link a couple of missing manpagesguido2005-01-071-0/+2
| | | | | Submitted by: Hideyuki KURASHINA <rushani@FreeBSD.org> MFC after: 1 week
* Use a .Bl -tag list instead of plain .Pp paragraphs for describing thekeramida2005-01-071-12/+16
| | | | | | macro arguments expected by SYSCALL_MODULE(). MFC after: 3 days
* Fix time-travel bug.keramida2005-01-071-1/+1
| | | | Noticed by: krion
* Avoid overusing "these" by breaking a long sentence in 2 smaller ones.keramida2005-01-071-2/+4
| | | | MFC after: 3 days
* Convert the descriptions of module versions to an explicit list andkeramida2005-01-071-3/+11
| | | | | | | note that these versions numbers refer to moddepend, not the current module. MFC after: 3 days
* Syntax nit.keramida2005-01-071-2/+2
| | | | MFC after: 3 days
* Introduce bus_dmamap_load_mbuf_sg(). Instead of taking a callback arg, thisscottl2005-01-075-26/+111
| | | | | | | cuts to the chase and fills in a provided s/g list. This is meant to optimize out the cost of the callback since the callback doesn't serve much purpose for mbufs since mbuf loads will never be deferred. This is just for amd64 and i386 at the moment, other arches will be coming shortly.
* Fix typo from previous commit.scottl2005-01-071-0/+1
|
* Update manual page after adding 'fts_bignum' field.pjd2005-01-071-1/+24
| | | | | Submitted by: Peter Jeremy <PeterJeremy@optushome.com.au> MFC after: 5 days
* Add a default driver to attach to the "hidden" scsi channels of the Dellscottl2005-01-071-0/+62
| | | | | PERC 3 controllers. This is needed to keep the PM code from powering them down.
OpenPOWER on IntegriCloud