summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Improve spec to spec comparison output.phk2004-06-141-3/+20
|
* Document -d flagphk2004-06-141-0/+4
|
* Add support for more linux ioctls.phk2004-06-142-2/+117
| | | | | | | | I've had this sitting in my tree for a long time and I can't seem to find who sent it to me in the first place, apologies to whoever is missing out on a Contributed by: line here. I belive it works as it should.
* Make fdisk initialize the first instead of the last slice by default.phk2004-06-141-3/+3
|
* Remove disable_on_poweroff and our pre-sync shutdown handler. Disablingnjl2004-06-141-30/+1
| | | | | of GPEs is now done in acpi_shutdown() and so we no longer need the option of disabling ACPI in the poweroff case.
* Clean up acpi_probe_order() a bit and clarify some comments.njl2004-06-141-9/+19
|
* Unbreak non-ALTQ kernel linking. I forgot about tbr_dequeue.mlaier2004-06-141-1/+1
| | | | | | | | | In the end drivers should be building with ALTQ checks by default, but for now build them with the old macros for non-ALTQ kernels. Note: Check new features w/ LINT *and* w/ LINT minus the new feature. Found-by: rwatson
* Don't probe/attach in the ACPI_DEBUG case.njl2004-06-141-2/+1
|
* Use the new API for acpi_MatchHid(). The difference between ACPI_HANDLEnjl2004-06-144-6/+10
| | | | and device_t isn't caught by the compiler.
* Update for newsletter V-9 (which brings with it an orthographywollman2004-06-141-0/+13
| | | | problem) and V-10 (which does not affect us at all).
* Use .Dv instead of .Li for all the RLIMIT_* constants.das2004-06-141-11/+11
| | | | Requested by: ru
* Introduce pmap locking to many of the pmap functions. There is more toalc2004-06-142-0/+35
| | | | come later.
* Use __FBSDID().obrien2004-06-143-3/+13
|
* Language tweak in explaining the mouse wheel's functionality.obrien2004-06-141-2/+2
|
* The majority of FreeBSD/amd64 machines are SMP, so use ADAPTIVE_MUTEXESobrien2004-06-131-0/+1
| | | | by default to improve performance.
* #if out an old leftover in the KAME code. opt_cpu.h is no longer useful heremlaier2004-06-131-0/+2
| | | | | | and breaks build on some arch. Found-by: tinderbox
* Add support to ACPI to manage its own resources. Previously, resourcenjl2004-06-1310-101/+246
| | | | | | | | | | | | | | | | | allocation was passed up to nexus. Now, we probe sysresource objects and manage the resources they describe in a local rman pool. This helps devices which attach/detach varying resources (like the _CST object) and module loads/unloads. The allocation/release routines now check to see if the resource is described in a child sysresource object and if so, allocate from the local rman. Sysresource objects add their resources to the pool and reserve them upon boot. This means sysresources need to be probed before other ACPI devices. Changes include: * Add ordering to the child device probe. The current order is: system resource objects, embedded controllers, then everything else. * Make acpi_MatchHid take a handle instead of a device_t arg. * Replace acpi_{get,set}_resource with the generic equivalents.
* Note when this driver 1st appeared in FreeBSD besides NetBSD.obrien2004-06-131-0/+2
|
* Document RLIMIT_AS. While here, correct an insertion sort error.das2004-06-131-5/+8
|
* Add PCI identifier for Dell modified SBLive! cardobrien2004-06-131-0/+9
| | | | Submitted by: Joseph Dunn <joseph@magnesium.net>
* Make this header a little bit more XSI-compliant:das2004-06-131-8/+22
| | | | | | | | | | | - Define type rlim_t and struct timeval. This makes autoconf happier. (PR: 62388) - Add RLIMIT_AS, which is an alias for our RLIMIT_VMEM. - structs orlimit and loadavg, as well as macros CP*, should only appear if __BSD_VISIBLE. - Use underscored versions of int32_t and fixpt_t in case <sys/types.h> is not included. - Document areas of non-conformance.
* Add __fixpt_t to _types.h, and typedef __fixpt_t fixpt_t in types.h.das2004-06-132-1/+3
|
* Prevent the loss of a PG_M bit through an SMP race in pmap_ts_referenced().alc2004-06-132-2/+2
|
* What world have we come to when even style(9) isn't unfailable:le2004-06-131-1/+1
| | | | correct style nit in an example.
* Include vm/vm_param.h to pull in KERNBASE now. This should fix theimp2004-06-132-0/+2
| | | | pc98 tinderbox breakage.
* Update for include/altqmlaier2004-06-131-1/+3
| | | | Reminded-by: ru
* Add MAC framework bits to the output path.dfr2004-06-131-0/+6
|
* Simplify conditional compilation logic some.obrien2004-06-131-11/+15
|
* Remove dead or unneeded code, e.g., spl calls.alc2004-06-131-32/+1
|
* style.Makefile(5)obrien2004-06-131-2/+2
|
* Remove advertising clause.dfr2004-06-131-4/+0
|
* Pass the correct argument to ncr53c9x_timeout()scottl2004-06-131-5/+5
|
* Suggest a full build-/installworld instead of just installincludes.mlaier2004-06-131-2/+2
| | | | Requested-by: ru
* Sync up with KAME. The main change is to try to avoid exposingdwmalone2004-06-131-56/+36
| | | | | | | exposing information about the endianness and alighment requirements in the packets sent by traceroute6. Obtained from: KAME
* Fix unterminated RCSID.bms2004-06-131-1/+1
| | | | Submitted by: Liam J. Foy
* Assorted markup, grammar, and spelling fixes.ru2004-06-1315-359/+490
|
* Cast printf'ed values to intmax_t.obrien2004-06-131-3/+3
|
* Bump __FreeBSD_version for ALTQ. Also put some notes in UPDATING regardingmlaier2004-06-132-1/+7
| | | | the ABI break.
* Associate a device_t with an ACPI_HANDLE. This make AcpiWalkNamespace morenjl2004-06-132-0/+21
| | | | | useful. If ACPI-CA allowed null object handlers, we wouldn't need the placeholder function.
* Link ALTQ to the build and break with ABI for struct ifnet. Please recompilemlaier2004-06-1320-18/+302
| | | | | | | | | | | | your (network) modules as well as any userland that might make sense of sizeof(struct ifnet). This does not change the queueing yet. These changes will follow in a seperate commit. Same with the driver changes, which need case by case evaluation. __FreeBSD_version bump will follow. Tested-by: (i386)LINT
* Use NG_FREE_MSG() instead of FREE().phk2004-06-131-1/+1
|
* Remove a stale reference to %Ef and %EF from a comment.stefanf2004-06-131-2/+2
|
* Add the capacity for the rfc1490 node to handle cisco style encasulationjulian2004-06-133-25/+177
| | | | | | which is often used alongside rfc1490 in frame relay links. Submitted by: Gleb Smirnoff <glebius@cell.sick.ru>
* Add configuration rom entries for IP over firewire.dfr2004-06-132-0/+28
|
* To support the promiscuous mode udav(4) driversanpei2004-06-131-0/+24
| | | | | PR: kern/67862 Submitted by: WATANABE Shingo <nabe@nabechan.org>
* Paranoia, WARNS fixes and lint.markm2004-06-131-19/+19
|
* Be smarter about printing non-ethernet link-level addresses.dfr2004-06-131-3/+13
|
* Add a new driver to support IP over firewire. This driver is intended todfr2004-06-138-1/+1921
| | | | | | | | conform to the rfc2734 and rfc3146 standard for IP over firewire and should eventually supercede the fwe driver. Right now the broadcast channel number is hardwired and we don't support MCAP for multicast channel allocation - more infrastructure is required in the firewire code itself to fix these problems.
* Get rid of UMA zones and instead allocate all ecb's up front and track themscottl2004-06-132-25/+48
| | | | | | | | | | | | | | | | | | in a TAILQ. Re-arrange some of the ecb elements so that they can stay stable through alloc/free cycles while the rest get bzero'd. - Use the tag_id from the ecb rather than fro the ccb. The latter is only for target mode. - Honor the ccb flags for tag_action when deciding whether to do a tagged or untagged transaction. - Re-arrange autosense completion so that it works correctly in failure cases. - Turn on the PI_TAG_ABLE flag so that CAM will send us tagged transactions. This enables tagged queueing in the driver.
* make code less broken, only try to create unit 0 since there can onlyjmg2004-06-131-2/+4
| | | | | | | be one, this will help prevent multipling devices if this driver is ever loaded/unloaded multiple times... Prodded by: julian
OpenPOWER on IntegriCloud