summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add the "wordexp" shell built-in command which will be used to implementtjr2002-12-263-0/+24
| | | | the POSIX wordexp() function.
* When resuming after a system suspend, re-issue the UHCI_CMD_MAXPiedowse2002-12-261-0/+1
| | | | | | | | | | command in case this setting was not saved. Since bandwidth reclamation (-current only) often results in bus activity continuing to the end of every frame, most transfers would fail with IOERROR if this setting is missed. Reviewed by: n_hibma MFC after: 1 week
* Set %bx register instead of %di register, see vbe3.0, page 45.davidxu2002-12-261-1/+1
|
* MFS: Split export list.ru2002-12-261-6/+27
|
* Cosmetic change. s/Firewire/FireWire/.simokawa2002-12-266-10/+10
|
* Replace ntohl() with ntohs() because orb_hi is u_int16_t.simokawa2002-12-261-1/+1
|
* Disable radix node locking for sysctl until we fix the sysctl infrastructurehsu2002-12-261-5/+5
| | | | to not sleep.
* firewire.csimokawa2002-12-265-36/+36
| | | | | | | | | | | | | | | - Fix permission of device node. fwochi.c, fwohcireg.h - Detect phy access failure correct way. - Set root hold-off bit before initiating bus reset. This should fix the problem with VIA6306. fwohcivar.h - Fix over-allocation of array. (fwohcivar.h) sbp.c - Return CAM_DEV_NOT_THERE rather than CAM_TID_INVALID to prevent retry.
* Clarify the distinction between the Proclamation of the Province ofgrog2002-12-252-1/+2
| | | | South Australia and the date of the Proclamation Day holiday.
* Typo in function name.ru2002-12-251-4/+4
|
* I'm not sure what was the problem at the time of revision 1.37ru2002-12-251-11/+0
| | | | | | | | when julian@ added it, but the commented out code had at least one bug -- not freeing the allocated mbuf. Anyway, this comment no longer applies as of revision 1.67, so remove it.
* Range-check the address family parameter passed in to the sysctl handler.hsu2002-12-251-0/+2
| | | | Submitted by: ru
* Revision 1.67 changes correspond to CSRG revision 8.3.1.1 changes.ru2002-12-251-1/+1
|
* If the caller of rtrequest*(RTM_DELETE, ...) asked for a copy ofru2002-12-254-39/+10
| | | | | | the entry being removed (ret_nrt != NULL), increment the entry's rt_refcnt like we do it for RTM_ADD and RTM_RESOLVE, rather than messing around with 1->0 transitions for rtfree() all over.
* A month after pst@ has committed his revision 1.8, it wasru2002-12-251-3/+6
| | | | incorporated by UCB as revision 8.5. Do a diff reduction.
* Ensure that the made-up inode number for a Unix domain socket is persistent.hsu2002-12-251-1/+1
|
* Validate inp to prevent an use after free.hsu2002-12-243-2/+29
|
* Flush vop_refreshlabel() definition, since it is no longer used.rwatson2002-12-241-9/+0
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* - Hold the page queues lock around calls to vm_page_flag_clear().alc2002-12-242-0/+4
|
* Spelling: s/then/than/ where appropriate.ru2002-12-249-16/+16
|
* Require privilege to flush the signal cache on if_an and if_wi 802.11rwatson2002-12-242-0/+6
| | | | | | cards. Reviewed by: imp (if_wi)
* o De-anonymity dummynet(4) and ipfw(4) messages, prepend themmaxim2002-12-242-45/+47
| | | | | | by 'dummynet: ' and 'ipfw: ' prefixes. PR: kern/41609
* mdoc(7) police: Deal with self-xrefs.ru2002-12-2447-83/+85
|
* Fix usbd.conf parsing: fgetln(3) returns a string without terminatingmaxim2002-12-241-1/+1
| | | | | | | NUL character so do not expect it. PR: bin/46489 MFC after: 1 week
* White-space changes.phk2002-12-245-43/+42
|
* Check NULL pointer to avoid SIGSEGVdavidxu2002-12-241-1/+2
|
* - Hold the page queues lock around calls to vm_page_wakeup() andalc2002-12-242-4/+16
| | | | vm_page_flag_clear().
* - Hold the page queues lock around vm_page_wakeup().alc2002-12-243-3/+10
|
* SMP locking for radix nodes.hsu2002-12-2411-23/+99
|
* Various language tweaks.trhodes2002-12-241-17/+17
| | | | | PR: 45604 Submitted by: Chris Pepper <pepper@rockefeller.edu>
* - Change the way the direct mapped region is implemented to be generallyjake2002-12-235-108/+220
| | | | | | | | | | | | | | | | | | | | | useful for accessing more than 1 page of contiguous physical memory, and to use 4mb tlb entries instead of 8k. This requires that the system only use the direct mapped addresses when they have the same virtual colour as all other mappings of the same page, instead of being able to choose the colour and cachability of the mapping. - Adapt the physical page copying and zeroing functions to account for not being able to choose the colour or cachability of the direct mapped address. This adds a lot more cases to handle. Basically when a page has a different colour than its direct mapped address we have a choice between bypassing the data cache and using physical addresses directly, which requires a cache flush, or mapping it at the right colour, which requires a tlb flush. For now we choose to map the page and do the tlb flush. This will allows the direct mapped addresses to be used for more things that don't require normal pmap handling, including mapping the vm_page structures, the message buffer, temporary mappings for crash dumps, and will provide greater benefit for implementing uma_small_alloc, due to the much greater tlb coverage.
* Add a new ftp mirror in Ireland which offers a service over IPv6.dwmalone2002-12-232-0/+8
| | | | | MFC after: 1 week Reviewed by: ume
* Move the declaration of the socket fileops from socketvar.h to file.h.phk2002-12-233-22/+14
| | | | | This allows us to use the new typedefs and removes the needs for a number of forward struct declarations in socketvar.h
* Make it work -current style.julian2002-12-231-1/+1
|
* Make ng_fec.c compile again since Sam's changes.julian2002-12-231-5/+8
| | | | Submitted by: Hiten Pandya (hiten@unixdaemons.com)
* Outdent the string rather than use concatenation.phk2002-12-232-4/+4
|
* Detediousficate declaration of fileops array members by introducingphk2002-12-235-76/+64
| | | | typedefs for them.
* Change the chip description from "DFE-550TX" to "DL10050".phk2002-12-232-4/+4
| | | | | The DL10050 chip is used on the 550TX and 580TX cards, probably others as well.
* - Hold the page queues lock around vm_page_wakeup().alc2002-12-232-0/+8
|
* s/sokqfilter/soo_kqfilter/ for consistency with the naming of allphk2002-12-234-4/+4
| | | | other socket/file operations.
* - Hold the kernel_object's lock around vm_page_insert(..., kernel_object,alc2002-12-231-0/+2
| | | | ...).
* - Hold the kernel_object's lock around vm_page_alloc(kernel_object,...).alc2002-12-231-0/+6
| | | | - Hold the page queues lock around vm_page_wakeup().
* Make preprocessor support more generic by passing all command-line optionskbyanc2002-12-233-50/+32
| | | | | | | | | | after -p except for the last (the ruleset file to process) to the preprocessor for interpretation. This allows command-line options besides -U and -D to be passed to cpp(1) and m4(1) as well as making it easier to use other preprocessors. Sponsored By: NTT Multimedia Communications Labs MFC after: 1 week
* Document protection bits.trhodes2002-12-231-0/+16
| | | | | PR: 46252 Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
* - Move to array based indexing for TX/RX descriptor/buffer managementpdeuskar2002-12-233-545/+526
| | | | | | | | | - Added support for ITR (interrupt throttle register). This feature is available on adapters based on 82545 and above - Fixed problem with vlan support when traffic has priority bits set. (kern/45907) PR: kern/45907 MFC after: 1 week
* Bring the diskless manual page more up-to-date. It still needs a lot of work.dillon2002-12-231-88/+157
|
* Fixed the abuses of .Ql visible on stderr in troff mode.ru2002-12-2315-86/+86
| | | | PR: docs/37176
* mdoc(7) police: fixed the misplaced .Bl call.ru2002-12-231-1/+1
|
* mdoc(7) police: markup nits.ru2002-12-231-19/+31
|
* mdoc(7) police: removed gratuitous .Pp call.ru2002-12-231-1/+0
|
OpenPOWER on IntegriCloud