summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update the comment about what NO_SWAPPING does.das2004-11-201-1/+1
| | | | Reviewed by: arch@
* Maintain the broken state of backwards compatibilty for a.out (anddas2004-11-203-6/+9
| | | | | | | PECOFF!) core dumps. None of the old versions of gdb I tried were able to read a.out core dumps before or after this change. Reviewed by: arch@
* We don't do U area swapping anymore, so update some comments. Also,das2004-11-201-5/+5
| | | | | | | prototype the new routine that creates a mock U area for a.out core dumps. Reviewed by: arch@
* Remove UAREA_PAGES and USPACE definitions. The definitions ofdas2004-11-201-9/+1
| | | | | | | | USPACE_SVC_STACK_TOP, USPACE_SVC_STACK_BOTTOM, USPACE_UNDEF_STACK_TOP, and USPACE_UNDEF_STACK_BOTTOM look wrong to me, so I'm leaving them alone. Reviewed by: arch@
* Remove some references to U area here while trying not to breakdas2004-11-201-4/+3
| | | | | | | anything. Someone with ARM hardware could do a lot more to untangle this code. Reviewed by: arch@
* Remove references to U area and garbage collect includes.das2004-11-204-13/+4
| | | | Reviewed by: arch@
* gcore(1) apparently still cares about a.out core dumps, so it stilldas2004-11-201-0/+2
| | | | | | needs to know that a 1-page U area is part of the dump format. Reviewed by: arch@
* Remove UAREA_PAGES.das2004-11-206-6/+0
| | | | Reviewed by: arch@
* U areas are going away, so don't allocate them. It's worrisome thatdas2004-11-202-6/+2
| | | | | | | | mp_machdep.c was using UAREA_PAGES to allocate something that isn't a U area, and that there seems to be an implicit assumption that the PCB is just past the end of the kernel stack. Reviewed by: arch@
* U areas are going away, so don't allocate one for process 0.das2004-11-2011-53/+6
| | | | Reviewed by: arch@
* Disable U area swapping and remove the routines that create, destroy,das2004-11-204-206/+0
| | | | | | copy, and swap U areas. Reviewed by: arch@
* Malloc p_stats instead of putting it in the U area. We should considerdas2004-11-203-12/+49
| | | | | | simply embedding it in struct proc. Reviewed by: arch@
* In preparation to remove U areas, don't refer to p_uarea in libkvm.das2004-11-201-1/+1
| | | | Reviewed by: arch@
* user.h is included only to get pcb.h, so use the latter directly instead.das2004-11-203-3/+2
|
* Bring signal(9) in sync with -current.jkoshy2004-11-202-40/+56
| | | | Reviewed by: ru (mdoc changes)
* Increase cnt.v_syscall and cnt.v_trap when needed.cognet2004-11-201-0/+3
|
* Do not emit a spurious warning when "directory" argumentru2004-11-201-1/+3
| | | | to "rmdir -p" is absolute, with one or more leading slash.
* Fixed "rmdir -p" that got broken by rev. 1.15.ru2004-11-201-6/+5
| | | | (This also fixes "rmdir -v /nonexistent".)
* Remove unused macro.glebius2004-11-191-3/+0
| | | | Approved by: julian (mentor)
* Document NO_NIS variable.bz2004-11-191-1/+6
| | | | | | Submitted by: Pawel Worach <pawel dot worach at telia dot com> Approved by: rwatson (mentor) MFC after: 1 week
* Cancel pending timeout before scheduling a new one. This fixesglebius2004-11-191-0/+1
| | | | | | item leak, I've introduced with previous change. Approved by: julian (mentor)
* Correct typo. Return ENXIO instead of EIO.emax2004-11-191-1/+1
|
* Man page for the HighPoint RocketRAID 182x driver.obrien2004-11-192-0/+83
| | | | Forgotten by: scottl
* Revert part of rev 1.57. The tag boundary is honored by splitting thescottl2004-11-191-9/+5
| | | | segment, not by bouncing.
* Revert part of rev 1.56. Tag boundaries are handled by splitting segments,scottl2004-11-191-9/+5
| | | | not through bouncing.
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-193-4/+4
|
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-191-1/+1
|
* Use statfs instead of getmntinfo(). This will make the procfs checkscsjp2004-11-191-9/+6
| | | | | | | play nicer in prisons. It also simplifies things. Reviewed by: rwatson Bumped into by: Jilles Tjoelker
* - Fix typo in portaudit reference.simon2004-11-191-2/+2
| | | | | | | - Bump document date for last commit. Pointed out by: ceri, ru Pointy hat to: simon
* Install the header for libmagic.obrien2004-11-192-1/+2
| | | | | PR: 73647 Submitted by: Uranus <uranus@it.muds.net>
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-193-13/+13
| | | | | PR: 73879 Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-194-26/+26
| | | | | PR: 73878 Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
* Make logic more readable.obrien2004-11-192-6/+6
|
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-197-21/+23
|
* Add the the Allied Telesyn AT-2700 familly.obrien2004-11-191-0/+1
|
* Place function comment above the right function.marks2004-11-191-7/+7
|
* Remove ntp_gettime.c which was a wrapper around sysctlbyname(3).marks2004-11-182-54/+1
| | | | | | | This is now a native system call. Reviewed by: imp, phk, njl, peter Approved by: njl
* Rebuild from compat/freebsd32/syscalls.master:1.43marks2004-11-182-2/+2
| | | | | Reviewed by: imp, phk, njl, peter Approved by: njl
* 32-bit FreeBSD ABI compatibility stubs from syscalls.master:1.179marks2004-11-181-1/+1
| | | | | Reviewed by: imp, phk, njl, peter Approved by: njl
* Rebuild from syscalls.master:1.179marks2004-11-185-2/+8
| | | | | Reviewed by: imp, phk, njl, peter Approved by: njl
* Add ntp_gettime(2) system call.marks2004-11-181-1/+1
| | | | | Reviewed by: imp, phk, njl, peter Approved by: njl
* Add system call implementation of ntp_gettime(2).marks2004-11-181-18/+43
| | | | | | | | Moved most of the work to ntp_gettime1(), which is now called by ntp_gettime() and ntp_sysctl(). Reviewed by: imp, phk, njl, peter Approved by: njl
* Add a couple of summary paragraphs at the head of mbuf_tags(9) torwatson2004-11-181-2/+29
| | | | | | | | indicate how m_tags might be used, and what their high level properties are. This may help developers using tags get a more clear picture before delving into the technical details of ABI cookies and API calls. Suggested by: Rene de Vries <rene at canyon dot xs4all dot nl>
* Add some useful target mode diagnostics for incoming commandsgibbs2004-11-181-7/+11
| | | | under the AHC_SHOW_TQIN debug flag.
* Revert to basing all timeout/timer values in ms rather than us. The switchgibbs2004-11-184-16/+26
| | | | | | | | | to us was to help out the Linux port, but really just invited overflow. In fact, the request sense timer was overflowing prior to this change making it much shorter than intended. aic_osm_lib.h: Be more careful about overflow in all timer/timeout primitives.
* - Document the DISABLE_VULNERABILITIES knob.simon2004-11-181-4/+6
| | | | | | | - Don't say this manual page is too long, it's not that long. - s/man page/manual page/g MFC after: 3 days
* Check in updated bthidd(8). This is still work in progress.emax2004-11-189-48/+874
|
* Add dropped implementation of ioctl for fifos.phk2004-11-181-1/+20
|
* Ok, first blunder: ioctls are not entirely unused on vnodes anymore :-)phk2004-11-181-0/+3
| | | | Add dropped call to VOP_IOCTL().
* -Add a note that currently two syntax styles for label element declarationcsjp2004-11-181-3/+16
| | | | | | | | | is supported. -Document the new more preferred syntax -Add examples for the new syntax -Add a note that the old syntax will be deprecated in the future. Reviewed by: rwatson
OpenPOWER on IntegriCloud