summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Turn back on GDB.obrien2002-06-291-2/+1
| | | | | gdbserver does not build, but I've gone about as far with GDB as I'm going to right now.
* Best guess at configurations for our other arches. (totally untested)obrien2002-06-293-0/+15
|
* Allow to compile and at least startup on sparc64.obrien2002-06-295-7/+33
|
* Remove a couple of __P() stragglers.peter2002-06-299-21/+21
|
* more caddr_t removal.alfred2002-06-299-35/+26
|
* Add another Intel chipset (i82562).silby2002-06-291-0/+1
| | | | | | PR: 39974 Submitted by: Morten Aaboe Jensen <morten@codemonkey.dk> MFC after: 1 day
* More caddr_t removal, make fo_ioctl take a void * instead of a caddr_t.alfred2002-06-2912-71/+66
|
* catch up with mextadd callback taking a void argument instead of a caddr_t.alfred2002-06-295-8/+8
|
* This commit was generated by cvs2svn to compensate for changes in r99005,obrien2002-06-2984-0/+3443
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of GDB 5.2.obrien2002-06-2984-0/+3443
| | | | | | | | | | These bits are taken from the FSF gdb_5_2-branch anoncvs repo on 27-June-2002 12:01:00 EDT.
* | catch up with ext_free prototype change.alfred2002-06-293-6/+6
| |
* | Bmake bits for GDB 5.2.obrien2002-06-2918-3213/+176
| |
* | - kernel core debugging for i386 (Mark Peek)obrien2002-06-293-1900/+1642
| | | | | | | | | | | | - thread debugging for i386 (Mark Peek) and alpha (Doug Rabson) Submitted by: mp,dfr
* | Note that this is a modified version of GDB.obrien2002-06-291-1/+1
| |
* | Use the stock source.obrien2002-06-291-1210/+1527
| |
* | Best that I can tell, we've never used these files.obrien2002-06-2928-12056/+0
| |
* | More caddr_t removal.alfred2002-06-298-32/+32
| | | | | | | | Change struct knote's kn_hook from caddr_t to void *.
* | nuke more instances of caddr_talfred2002-06-291-23/+19
| |
* | m_extadd takes a void (*freef)(void *, void *) now, not aalfred2002-06-291-1/+1
| | | | | | | | void (*freef)(caddr_t, void *).
* | remove or replace caddr_t with void.alfred2002-06-283-36/+33
| | | | | | | | make the mbuf external free function take a void * rather than caddr_t.
* | nuke caddr_t.alfred2002-06-284-26/+23
| |
* | change struct socket -> so_pcb from caddr_t to void *.alfred2002-06-281-1/+1
| |
* | Remove unneeded casts to caddr_t.alfred2002-06-282-62/+62
| |
* | change f_data field in struct file from caddr_t to void *.alfred2002-06-281-1/+1
| |
* | Simplify TERM handling since now libutil not overwrites existen TERM for "term"ache2002-06-281-3/+1
| |
* | document that the pipe fo_stat routine doesn't need locks because it'salfred2002-06-281-0/+4
| | | | | | | | | | | | a read operation. Requested by: rwatson
* | In namei(), we use a NULL thread for uio_td when doing a VOP_READLINK().jhb2002-06-284-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | nfs_readlink() calls nfs_bioread() which passes in uio_td as the thread argument to nfs_getcacheblk(). In nfs_getcacheblk() we dereference the thread pointer to get a process pointer to pass to nfs_sigintr(). This obviously results in a panic. :) Rather than change nfs_getcacheblk() to check if the thread pointer is NULL when calling nfs_sigintr() like other callers do, change nfs_sigintr() to take a thread as the last argument instead of a process so none of the callers have to care if the thread is NULL or not.
* | Add two new submodes to the AES encryption method.phk2002-06-281-11/+121
| | | | | | | | | | | | This method is now suitable for encrypting swap spaces. Sponsored by: DARPA & NAI Labs.
* | Add a module for src/tools/regression (`regression').jmallett2002-06-281-0/+1
| | | | | | | | | | | | | | | | | | Add a MAINTAINERS line for the regression module, specifically referring to src/tools/regression/usr.bin, right now, but applicable to other things, to make clear that I am willing to help write new tests. The framework is all modularised now, so it is easy to write new tests, etc., and since I'd like to see tests for more and more things as bugs get fixed, it seems to be the right thing to do to stand up and offer to help people write tests.
* | Improve the VOP locking assertsjeff2002-06-282-5/+24
| | | | | | | | | | | | | | - Add vfs_badlock_print to control whether or not we print lock violations - Add vfs_badlock_panic to control whether we panic on lock violations Both default to on to mimic the original behavior if DEBUG_VFS_LOCKS is on.
* | In vn_mkdir(), use vrele() instead of vput() on the parent directoryiedowse2002-06-282-2/+18
| | | | | | | | | | | | | | | | | | | | | | vnode in the case that the target exists and is the same vnode as the parent (i.e. "mkdir ."). The namei() call does not leave the vnode locked in this case even though you might expect it to. This bug was mostly harmless in practice because unlocking an already unlocked vnode currently does not trigger any panics or warnings. Reviewed by: jeff
* | One possible code path for syncache_respond() is:jlemon2002-06-281-1/+7
| | | | | | | | | | | | | | | | | | | | syncache_respond(A), ip_output(), ip_input(), tcp_input(), syncache_badack(B) Which winds up deleting a different entry from the syncache. Handle this by not utilizing the next entry in the timer chain until after syncache_respond() completes. The case of A == B should not be possible. Problem found by: Don Bowman <don@sandvine.com>
* | Clean up vn_rdwr locking.jeff2002-06-281-6/+12
| | | | | | | | | | - Do shared locks on read. - Only do vn_{start,finished}_write when writing.
* | Fix a case where a vnode got explicitly unlocked after the pointer to itgreen2002-06-281-1/+1
| | | | | | | | | | | | got set to NULL. Revision 1.355: in the box
* | Include 'sshd' to the lists of forbidden users.maxim2002-06-282-0/+2
| | | | | | | | Reviewed by: cvs-committers
* | Add additional field 'overwrite' to login_vars. It mainly needed to handleache2002-06-281-10/+11
| | | | | | | | | | "term" according to manpage, i.e. not overwrite it, if already present in environment.
* | Make sigpending and sigsuspend account for signals that are pending ondeischen2002-06-286-15/+81
| | | | | | | | | | | | the process as well as pending on the current thread. Reported by: Andrew MacIntyre <andymac@bullseye.apana.org.au>
* | Add a wrapper for pselect() in order to make it a cancellation point.deischen2002-06-286-0/+165
| | | | | | | | Prompted by: wollman
* | Remove a GCC-specific command-line option. We should be using WARNS=nmarkm2002-06-281-1/+1
| | | | | | | | for this stuff.
* | Mention that we're checking kernel log messages, even if there'sbrian2002-06-281-2/+2
| | | | | | | | | | | | | | no output. PR: 39618 MFC after: 1 week
* | Refer to utilities, not commands, for consistency with env(1), nice(1), etc.tjr2002-06-282-8/+8
| |
* | Don't use SignalBundle if it's not setbrian2002-06-281-3/+6
| | | | | | | | Submitted by: Federico G. Schwindt <fgsch@olimpo.com.br>
* | Document the fairly obvious effects of the PATH environment variable.tjr2002-06-283-1/+25
| |
* | Discourage use of env(1)'s "-" flag by moving its description to thetjr2002-06-282-6/+8
| | | | | | | | Compatibility section of the manual page.
* | Complain about (and fix) misformatted RADIUS attributes rather than silentlybrian2002-06-281-2/+6
| | | | | | | | fixing them.
* | When a RADIUS server is being used, don't use MPPE unless the RADIUSbrian2002-06-281-6/+19
| | | | | | | | server says it's ok.
* | Fix warning.dfr2002-06-281-1/+1
| | | | | | | | Reviewed by: luigi
* | bring Makefile up to date with new ipfwjulian2002-06-281-1/+1
| | | | | | | | Submitted by: luigi
* | Fix a botched flag clear operation. Rumor has it that this also fixesscottl2002-06-281-1/+1
| | | | | | | | | | | | | | the funky-volume-settings-on-startup problem. Reviewed by: the channel that shall not be named MFC after: 7 days
* | Overwrite "term" from login.conf(5) for any known TERMache2002-06-281-2/+9
| |
OpenPOWER on IntegriCloud