summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Initialize vfslocked correctly early enough for MAC to compile.jeff2005-05-031-5/+4
| | | | | | | | - Fix one place where we explicitly drop Giant! Pointy hat to: me Submitted by: Max Laier Warned by: Tinderbox
* Cleanup for getgrouplist(3):delphij2005-05-031-8/+6
| | | | | | | | - Use /*- instead of /* for copyright section - Include unistd.h for prototype of it - Sort and separate includes as described in style(9) - ANSIfy the function defination - Use const for the traversing iterator
* fix signed/unsigned comparison warnings.ume2005-05-031-5/+5
| | | | Obtained from: NetBSD
* Include paths.h for prototype of getbootfile(3).delphij2005-05-031-0/+2
|
* - move to SCHED_4BSD per jeffr's comments on SCHED_ULE's stategrehan2005-05-031-5/+4
| | | | | | - enable MSDOSFS - ehci is stable on the powerbook - modules have been working for a long time.
* - Add a new object flag "OBJ_NEEDSGIANT". We set this flag if thejeff2005-05-034-4/+14
| | | | | | | underlying vnode requires Giant. - In vm_fault only acquire Giant if the underlying object has NEEDSGIANT set. - In vm_object_shadow inherit the NEEDSGIANT flag from the backing object.
* - Set the v_object pointer after a successful VOP_OPEN(). This isn't ajeff2005-05-031-1/+2
| | | | | | | perfect solution as the lower vm object can change at unpredictable times if our lower vp happens to be on another unionfs, etc. Submitted by: Oleg Sharoiko <os@rsu.ru>
* - Don't restrict the softdep stats to DEBUG kernels, they cost nothing tojeff2005-05-031-11/+7
| | | | | | | | | export. This was happening anyway since this file manually sets DEBUG. - Add a sysctl for the number of items on the worklist. - Use a more canonical loop restart in softdep_fsync_mountdev, it saves some code at the expense of a goto and makes me worry less about modifying a variable that should be private to the TAILQ_FOREACH_SAFE macro.
* - Remove two mtx_asserts that can incorrectly trigger ifjeff2005-05-031-4/+0
| | | | | | | | devstat_end_transaction is called from a fast interrupt. Presently there is no way for mtx_assert to determine that we're not executing in a real thread context. Submitted by: jhusted@isilon.com
* - A vnode may have made its way onto the free list while it was beingjeff2005-05-031-0/+2
| | | | | | | vgone'd. We must remove it from the freelist before returning in vtryrecycle() or we may get a duplicate free. Reported by: kkenn
* - Use namei to acquire Giant for VFS if it is necessary. Drop the explicitjeff2005-05-031-9/+7
| | | | | | Giant acquisition. - Remove GIANT_REQUIRED in the few remaining cases; the vm and vfs have both been locked.
* - Use NAMEI to pickup Giant if we need it in fpcheckstd().jeff2005-05-031-4/+5
|
* - Neither of our image formats require Giant now that the vm and vfs havejeff2005-05-032-4/+0
| | | | been locked.
* Reshape the dma code to be a bit more flexible so it can cope withsos2005-05-038-329/+289
| | | | | | | new HW that has new and different demands. Fix a few nits in former commit in this cleanup crusade. Sponsored by: pair.com
* Properly mask off the status bits when checking to see if the ccb is stillscottl2005-05-031-1/+1
| | | | | | | valid to process. This was causing deferred commands to be rejected due to their extra status flag. MFC After: 3 days
* The driver looks like it can create valid 64-bit scatter-gather lists, soscottl2005-05-031-4/+4
| | | | | | | don't restrict it to a 32-bit address space. Also use the correct busdma flags for the SRB memory area. MFC After: 3 days
* The kthread is disabled at this time, so don't try to wake it up onscottl2005-05-031-0/+2
| | | | | | shutdown. This fixes a panic on reboot. MFC After: 3 days
* Put gnome-lite and kde-lite on disc2 for ia64. The full gnome and kdemarcel2005-05-031-4/+8
| | | | | | packages is causing the disc2 ISO to overflow in excess of 100MB. MFC after: 2 days
* Remove only the packages sub-directory before recreating it. Do notmarcel2005-05-031-1/+1
| | | | | | | | | remove the whole disc treei structure. This allows one to specify the disc trees created by a prior release build (under R/cdrom) as the destination without destroying the contents. This better integrates with release building and makes further automation easier. MFC after: 2 days
* Allow specifying which INDEX file to use by setting PKG_INDEX. By defaultmarcel2005-05-031-3/+5
| | | | | | | | the INDEX file is taken from the package source tree as defined by the PKG_TREE variable. This change allows using the (possibly incomplete) packages on pointyhat. MFC after: 2 days
* Fix some busdma API violations in the dumpsys handler.scottl2005-05-021-2/+7
| | | | MFC After: 3 days
* Enabke mkuzip(1) on amd64.sobomax2005-05-021-0/+1
| | | | Submitted by: Matteo Riondato <rionda@gufi.org>
* Make WARNS=6 clean, which should make it compiling on amd64.sobomax2005-05-022-4/+4
| | | | Submitted by: Matteo Riondato <rionda@gufi.org>
* Make brandelf(1)'s -t "ABI format" case insensitive, as the ABI valuegreen2005-05-021-1/+1
| | | | | | | | | given is looked up in a table and no longer stored literally in the header. Submitted by: Divacky Roman <xdivac02@stud.fit.vutbr.cz PR: 80499 MFC After: 1 month
* Don't copy the NFSMNT_* flags into struct statfs's f_flags field,iedowse2005-05-021-1/+0
| | | | | | | | | | | as they have no connection with the expected MNT_* flags. This bug was exposed 18 months ago when the assignments to f_flags in vfs_syscalls.c were moved to before the VFS_STATFS() call. It was fixed in the CSRG source 10 years ago, but we never picked up that change. PR: kern/80390 MFC after: 1 week
* Use static for static variables. This fixes gcc4 build.delphij2005-05-021-3/+2
|
* Use socklen_t in place of socket operations, instead of intdelphij2005-05-021-2/+2
|
* Document the device burncd uses by default.brueffer2005-05-021-1/+10
| | | | | Submitted by: Christoph Mallon <christoph.mallon@gmx.de> MFC after: 3 days
* add targets for ipnodes.byname and ipnodes.byaddr which carriesume2005-05-021-0/+38
| | | | | IPv6 addresses. these targets are off by default, and these are built when there is /var/yp/ipnodes.
* Include systat.h for cmdtab, to make gcc4 happy.delphij2005-05-021-0/+1
|
* Cleanups for gcc4:delphij2005-05-023-4/+3
| | | | | | | | - Use socklen_t for socket functions - Remove an unnecessary extern - Signed/unsigned cleanups Reviewed by: harti
* Consistently use signed char so gcc4 won't complaindelphij2005-05-021-1/+1
|
* WARNS=6 and gcc4 cleanup:delphij2005-05-021-15/+15
| | | | | | - Use const where necessary - Use __unused where applicable - Rename variables that is conflicit with global definations
* Neaten usage message.jkoshy2005-05-021-1/+1
|
* include stdarg.h for va_listdelphij2005-05-021-0/+1
|
* Make gcc4 happy by making consistent signedness.delphij2005-05-021-1/+1
|
* fix typo in previos commit.ume2005-05-021-2/+2
|
* teach IPv6 to async DNS resolver in ypserv:ume2005-05-023-27/+61
| | | | | - query AAAA RR on ipnodes.byname query. - query .ip6.arpa. on ipnodes.byaddr query.
* fixed a possible reference to a broken memorysuz2005-05-021-1/+1
| | | | MFC after: 1 day
* Always attach a subdisk even if no valid metadata found.sos2005-05-021-1/+2
| | | | This allows the disks to be used later in a raid create.
* Remove GIANT_REQUIRED from vmspace_exec().alc2005-05-021-1/+0
| | | | Prodded by: jeff
* New release notes: musycc gone, new ndis(4) driver generation/loadbmah2005-05-022-0/+36
| | | | mechanism, bsnmp 1.9, libz 1.2.2.
* the 3rd argument of getsockname() should be socklen_t*.ume2005-05-022-2/+4
| | | | Submitted by: stefanf
* Since it is not possible for curthread to be NULL in this context,csjp2005-05-021-4/+2
| | | | | | | | drop the check+initialization for a straight initialization. Also assert that curthread will never be NULL just to be sure. Discussed with: rwatson, peter MFC after: 1 week
* New release notes: IPFilter 4.1.8, tcsh 6.14.00.bmah2005-05-022-0/+12
|
* Fix a few grammos and style nits here and there.bmah2005-05-022-26/+26
|
* Make caesar and pom WARNS 6 clean. While there, use prototypes everywhere.stefanf2005-05-014-14/+9
| | | | PR: 62456
* Remove lame and ineffectual attempt to fix ipf breakage of tenderbox.imp2005-05-011-1/+0
|
* MFen 1.845-1.849delphij2005-05-011-3/+72
| | | | Obtained from: The FreeBSD Simplified Chinese Project CVS
* Add convenience APIs pmc_width() and pmc_capabilities() to -lpmc.jkoshy2005-05-0114-349/+796
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Have pmcstat(8) and pmccontrol(8) use these APIs. Return PMC class-related constants (PMC widths and capabilities) with the OP GETCPUINFO call leaving OP PMCINFO to return only the dynamic information associated with a PMC (i.e., whether enabled, owner pid, reload count etc.). Allow pmc_read() (i.e., OPS PMCRW) on active self-attached PMCs to get upto-date values from hardware since we can guarantee that the hardware is running the correct PMC at the time of the call. Bug fixes: - (x86 class processors) Fix a bug that prevented an RDPMC instruction from being recognized as permitted till after the attached process had context switched out and back in again after a pmc_start() call. Tighten the rules for using RDPMC class instructions: a GETMSR OP is now allowed only after an OP ATTACH has been done by the PMC's owner to itself. OP GETMSR is not allowed for PMCs that track descendants, for PMCs attached to processes other than their owner processes. - (P4/HTT processors only) Fix a bug that caused the MI and MD layers to get out of sync. Add a new MD operation 'get_config()' as part of this fix. - Allow multiple system-mode PMCs at the same row-index but on different CPUs to be allocated. - Reject allocation of an administratively disabled PMC. Misc. code cleanups and refactoring. Improve a few comments.
OpenPOWER on IntegriCloud