summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Add symmetric crypto support for the 7955 and 7956.sam2003-10-083-41/+159
| | | | | | | | | | | | | | | | | | Note performance is currently suboptimal. Submitted by: Rajesh Vaidyanath <RVaidyanath@hifn.com>
* | | Include <sys/smp.h> for the prototype of smp_rendezvous().marcel2003-10-081-0/+1
| | |
* | | - fix typo in comments.ume2003-10-0821-637/+402
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - style. - NULL is not 0. - some variables were renamed. - nuke unused logic. (there is no functional change.) Obtained from: KAME
* | | make kernel_sysctl()'s args match its prototype in order to fix thegallatin2003-10-081-1/+1
| | | | | | | | | | | | alpha build
* | | Removed "Gerat" which is a typo of "Great".schweikh2003-10-081-1/+1
| | | | | | | | | | | | Added FreeBSD ID.
* | | Correct definition for 1000/tcp and 1000/udp, sync withbms2003-10-081-2/+2
| | | | | | | | | | | | | | | | | | <URL:http://www.iana.org/assignments/port-numbers>. Submitted by: Roman Newhauser <roman@bellavista.cz>
* | | Add port assignment for Subversion, as perbms2003-10-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | <URL:http://www.iana.org/assignments/port-numbers>. PR: conf/54371 Submitted by: Roman Newhauser <roman@bellavista.cz> MFC after: 1 week
* | | Revision 1.61 changed the allocation of buffer 'buf' in DoFile() frommarcel2003-10-081-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the stack to the heap to work around a problem on ia64. Now, roughly 16 months and two compiler updates later, it isn't an issue anymore in the sense that putting a 1M buffer on the stack just works and we don't actually need to work around anything anymore. However, since there's no advantage or need to put the buffer on the stack (again), this change merely removes the XXX comment describing that there's an explicit reason for the heap allocation. Hence, this change is a functional no-op. PR: ia64/38677
* | | (dacleanup, dasysctlinit): Defend against calling sysctl_ctx_free onthomas2003-10-081-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | an uninitialized sysctl_ctx, using flag DA_FLAG_SCTX_INIT. This prevents a panic encoutered with some umass units that probe correctly but fail to attach. Same problem, and same fix, as scsi_cd.c rev. 1.86. Reviewed by: njl, ken
* | | Lock the destination object in vm_fault_copy_entry().alc2003-10-081-2/+7
| | |
* | | Retire vm_page_copy(). Its reason for being ended when peter@ modifiedalc2003-10-083-20/+7
| | | | | | | | | | | | | | | | | | pmap_copy_page() et al. to accept a vm_page_t rather than a physical address. Also, this change will facilitate locking access to the vm page's valid field.
* | | Create a .snap directory mode 770 group operator in the root of eachmckusick2003-10-081-1/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filesystem that is checked in background. Create the snapshot in this directory rather than in the root. There are two benefits: 1) For terabyte-sized filesystems, the snapshot may require many minutes to build. Although the filesystem will not be suspended during most of the snapshot build, the snapshot file itself is locked during the entire snapshot build period. Thus, if it is accessed during the period that it is being built, the process trying to access it will block holding its containing directory locked. If the snapshot is in the root, the root will lock and the system will come to a halt until the snapshot finishes. By putting the snapshot in a subdirectory, it is out of the likely path of any process traversing through the root and hence much less likely to cause a lock race to the root. 2) The dump program is usually run by a non-root user running with operator group privilege. Such a user is typically not permitted to create files in the root of a filesystem. By having a directory in group operator with group write access available, such a user will be able to create a snapshot there. Having the dump program create its snapshot in a subdirectory below the root will benefit from point (1) as well. Sponsored by: DARPA & NAI Labs.
* | | Xircom Wireless Ethernet card is a rebadged Cisco 340, but with aimp2003-10-081-0/+1
| | | | | | | | | | | | | | | | | | different vendor id/product id. Submitted by: Keith Davis
* | | sync to 1.73imp2003-10-081-1/+4
| | |
* | | Xircom Wireless ethernetimp2003-10-081-0/+1
| | | | | | | | | | | | Submitted by: Keith Davis
* | | Fix some comments for last commit.davidxu2003-10-082-10/+8
| | |
* | | Complete cancellation support for M:N threads, check cancelling flag whendavidxu2003-10-084-138/+314
| | | | | | | | | | | | | | | | | | | | | thread state is changed from RUNNING to WAIT state and do some cancellation operations for every cancellable state. Reviewed by: deischen
* | | Use thread lock instead of scheduler lock to eliminate lock contentiondavidxu2003-10-082-36/+42
| | | | | | | | | | | | | | | | | | for all wrapped syscalls under SMP. Reviewed by: deischen
* | | must lock route when the caller provided a route but notsam2003-10-071-2/+4
| | | | | | | | | | | | | | | | | | | | | an interface; otherwise the subsequent unlock blows up Suffered by: Marcel Moolenaar <marcel@xcllnt.net> Supported by: FreeBSD Foundation
* | | indentume2003-10-071-1/+1
| | |
* | | style and indent. no functional change.ume2003-10-071-40/+34
| | | | | | | | | | | | Obtained from: KAME
* | | - fix typo in comment.ume2003-10-0711-326/+281
| | | | | | | | | | | | | | | | | | - style. Obtained from: KAME
* | | nuke unused CTL_IPV6PROTO_NAMES macro.ume2003-10-071-47/+0
| | |
* | | insure local variable is initialized prior to usesam2003-10-071-1/+1
| | |
* | | nuke unused ICMPV6CTL_NAMES and KEYCTL_NAMES macros.ume2003-10-072-41/+1
| | |
* | | Retrocomputing alternate history....wollman2003-10-071-0/+20
| | |
* | | return(code) -> return (code)ume2003-10-072-3/+3
| | | | | | | | | | | | Obtained from: KAME
* | | (cdcleanup): Defend against calling sysctl_ctx_free before the sysctl_ctxthomas2003-10-071-12/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | has been initialized. (cdsysctlinit): Set flag CD_FLAG_SCTX_INIT after sysctl_ctx has been initialized. This resolves a panic encountered when a cd drive is sucessfully probed but fails to attach. Reviewed by: ken
* | | Give more correct params to busdma_*sos2003-10-071-8/+9
| | |
* | | Improve timeout handling and reporting.sos2003-10-071-6/+22
| | |
* | | Properly get out of transaction() if setting up the transfer fails.sos2003-10-071-15/+19
| | |
* | | In case we loose a device during reset in reinit() finish offsos2003-10-071-3/+22
| | | | | | | | | | | | the request with error instead of loosing it.
* | | Improve regression test with an image file which must work.phk2003-10-072-2/+3316
| | |
* | | Autoload kernel module if necessary.phk2003-10-071-0/+9
| | | | | | | | | | | | Submitted by: mr
* | | Interior decoration changes.phk2003-10-073-47/+44
| | |
* | | Assign keycodes for Power, Sleep and Wake keys.fjoe2003-10-072-0/+18
| | | | | | | | | | | | Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru>
* | | Add XXX'ed temporary bounce-buffering.phk2003-10-071-6/+37
| | |
* | | Card type stuff was backwards, so assume io for the moment. mem needsimp2003-10-071-6/+2
| | | | | | | | | | | | a lot of help and with luck bms will help me fix that.
* | | Include pccard/pccard_cis.h here tooimp2003-10-073-3/+6
| | |
* | | remove obsolete quirks for cardbus cis. none have proven to be needed.imp2003-10-071-25/+3
| | |
* | | Add new file for definitions of CIS. We can share this with cardbus.imp2003-10-071-0/+203
| | | | | | | | | | | | | | | the filename isn't that bad, because all of these are defined in the PC Card standard :-)
* | | o move the cis tuple definitions into a common file.imp2003-10-077-306/+27
| | | | | | | | | | | | | | | | | | o minor optimization of cardbus_cis processing. Remove a bunch of generic entries that are handled by generic. o no longer need the card_get_type stuff.
* | | These aren't needed anymoreimp2003-10-071-3/+0
| | |
* | | Polish last fortune.wilko2003-10-061-2/+2
| | | | | | | | | | | | Suggested by: nate
* | | Remove prototype for decode_tuple_copy() which was axed in the lastjhb2003-10-061-3/+0
| | | | | | | | | | | | revision to fix compile.
* | | 'Upon the release of the second version'wilko2003-10-061-0/+12
| | | | | | | | | | | | | | | Suggested that this is fortune material: rene@tunix.nl MFC after: 2 weeks
* | | Add a warning about the safe(4) driver's experimental status.bmah2003-10-062-0/+10
| | | | | | | | | | | | Submitted by: sam
* | | Fix a bug in variable parsing code that could cause a segfault.ru2003-10-061-2/+6
| | | | | | | | | | | | | | | PR: bin/46203 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
* | | remove the cardbus cis reading code. nobody ever used it and it hasimp2003-10-062-111/+0
| | | | | | | | | | | | locking issues down to the api level.
* | | return(code) -> return (code)ume2003-10-0622-408/+403
| | | | | | | | | | | | (reduce diffs against KAME)
OpenPOWER on IntegriCloud