dragonfly.git
20 years agoAdd support for building dependent modules automatically by
Joerg Sonnenberger [Tue, 16 Mar 2004 19:16:36 +0000 (19:16 +0000)]
Add support for building dependent modules automatically by
specifying KLD_DEPS.

Idea and initial implemenation from Hiten.

20 years agoGive the VFS initialisation functions an update:
Hiten Pandya [Tue, 16 Mar 2004 18:42:35 +0000 (18:42 +0000)]
Give the VFS initialisation functions an update:

* Use a better fix for revision 1.3 of vfs_init.c (ours).
  I have integrated the change from FreeBSD's vfs_init.c
  revision 1.59.  Serious issues are fixed with this
  change and a much more cleaner way of handling disappearing
  VFS operation vectors.  At least vfs_opv_numops are
  allocated and recycled as appropriate.  The number of
  pre-allocated vfs_opv_numops can be changed at boot time
  by a tunable.  $FreeBSD$ ID tag updated accordingly.

  NOTE: this *removes* the temporary fix committed my dillon@
  a few days ago, by giving it a more cleaner solution.

* Use M_VNODE instead of M_TEMP for storing VFS buffers and
  vectors.

* Document the functions in this file to make it easier
  for file system implementors.

* Cleanup unused variables in vfs_add_vnops().

* Use M_ZERO instead of malloc+bzero.

* Do not panic when a VFS operation is not available,
  instead return EOPNOTSUPP.  This is better because
  the error value can be passed up by the system calls
  instead of giving an obscure panic about unavailable
  VFS operation.  One can run into this when a VFS op
  call is made when no filesystem supports that
  particular op.  A similar change was made by Peter
  Wemm in FreeBSD's sys/kern/vfs_init.c.

* Better document the various stages of vfs_opv_recalc().

Note, our value of the minimum number of available VFS operation
vectors is `96' at the moment, since a few tests show that the
previous code initialised to values of between 53-60.  The default
probably can be tuned a little bit better; although tunable access
is available at boot to `vfs.opv_numops'.

Reviewed by: Matt Dillon

20 years agomain() more typically uses 'char **argv' instead of 'char *argv[]'. Remove
Matthew Dillon [Tue, 16 Mar 2004 18:09:32 +0000 (18:09 +0000)]
main() more typically uses 'char **argv' instead of 'char *argv[]'.  Remove
the requirement that an empty line be inserted in function definitions without
local variables (the requirement is actually that NO empty line be inserted).
Revamp the documentation on when and when not to use braces around
substatements.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
Additional-changes-by: dillon
20 years agoSeparate chroot() into kern_chroot(). Rename change_dir() to checkvp_chdir()
Matthew Dillon [Tue, 16 Mar 2004 17:53:53 +0000 (17:53 +0000)]
Separate chroot() into kern_chroot().  Rename change_dir() to checkvp_chdir()
and reorganize the code to avoid doing weird things to the passed vnode's
lock and ref count in deep subroutines (which lead to buggy code).

Fix a bug in chdir()/kern_chdir() (the namei data was not being freed in all
cases), and also fix a bug in symlink() (missing zfree in error case).

Submitted-by: Paul Herman <pherman@frenchfries.net>
Additional-work-by: dillon
20 years agoMerge FreeBSD's rev. 1.81:
Joerg Sonnenberger [Tue, 16 Mar 2004 16:58:16 +0000 (16:58 +0000)]
Merge FreeBSD's rev. 1.81:

o add IF_*bps macros for netbsd compatibility
o add interface capabilities for vlan use and to signal jumbo frame support

Reviewed by:many
Approved by:re

20 years agoFix loading of the SMBFS kernel module. The KMODDEPS line in the SMBFS
Hiten Pandya [Tue, 16 Mar 2004 07:45:59 +0000 (07:45 +0000)]
Fix loading of the SMBFS kernel module.  The KMODDEPS line in the SMBFS
Makefile generated incorrect (read fake) symbols; the build system was
pretty satisified but kldload was not and returned ENOEXEC.

Instead, add a Makefile for libiconv as it is supposed to be, because
SMBFS requires it as a module dependency.

Note, the SMBFS module needs to be recompiled for it to work, and the
libiconv KLD needs to be built using the newly added Makefile.  Also
rebuild 'libmchain'.

20 years agoIntegrate the remaining parts of the network interface aliasing
Hiten Pandya [Mon, 15 Mar 2004 22:39:37 +0000 (22:39 +0000)]
Integrate the remaining parts of the network interface aliasing
functionality.  While I am there, bring in some of the fixes
made to FreeBSD's ifconfig.

Update the $FreeBSD$ ID tag accordingly.

20 years agoIntegrate remaining part of the network interface aliasing
Hiten Pandya [Mon, 15 Mar 2004 22:37:41 +0000 (22:37 +0000)]
Integrate remaining part of the network interface aliasing
functionality.  This is the kernel part.

20 years agonextsoftcheck (which is a really aweful interrupt interlock hack) needs to
Matthew Dillon [Mon, 15 Mar 2004 20:23:48 +0000 (20:23 +0000)]
nextsoftcheck (which is a really aweful interrupt interlock hack) needs to
be volatile.

20 years agoThe kernel realloc() does not support M_ZERO, assert the case.
Matthew Dillon [Mon, 15 Mar 2004 20:22:54 +0000 (20:22 +0000)]
The kernel realloc() does not support M_ZERO, assert the case.

20 years agoAdd a new function ether_ifattach_bpf which can be used by NICs not using
Joerg Sonnenberger [Mon, 15 Mar 2004 20:08:40 +0000 (20:08 +0000)]
Add a new function ether_ifattach_bpf which can be used by NICs not using
the default arguments for bpfattach for dlt and hdrlen. ether_ifattach
calls this routine and provides the old standard arguments to keep the API.

This call can be used instead of the multiple BPF interfaces mess in the
coming generic 802.11 layer.

Fix I4B's isppp by using the new call.

20 years agoANSIfication, K&R cleanups, 'register' removal.
Matthew Dillon [Mon, 15 Mar 2004 18:10:29 +0000 (18:10 +0000)]
ANSIfication, K&R cleanups, 'register' removal.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoAdd a Makefile stub to build ep as a module.
Matthew Dillon [Mon, 15 Mar 2004 17:19:19 +0000 (17:19 +0000)]
Add a Makefile stub to build ep as a module.

Submitted-by: Dheeraj Reddy <dheerajs@comcast.net>
Taken-From: FreeBSD-5

20 years agoAdd a Makefile stub to build pccard as a module.
Matthew Dillon [Mon, 15 Mar 2004 17:16:23 +0000 (17:16 +0000)]
Add a Makefile stub to build pccard as a module.

Submitted-by: Dheeraj Reddy <dheerajs@comcast.net>
Taken-From: FreeBSD-5

20 years agoPartial merge from FBsd-5, code to make some PCCARDs work under NEWCARD.
Matthew Dillon [Mon, 15 Mar 2004 17:15:18 +0000 (17:15 +0000)]
Partial merge from FBsd-5, code to make some PCCARDs work under NEWCARD.

Submitted-by: Dheeraj Reddy <dheerajs@comcast.net>
Taken-From: FreeBSD-5

20 years agoMove a drain output call to before a dirty block check instead of after
Matthew Dillon [Mon, 15 Mar 2004 16:27:04 +0000 (16:27 +0000)]
Move a drain output call to before a dirty block check instead of after
to make all dirty buffers visible.

Submitted-by: Max Khon <fjoe@FreeBSD.org> for FreeBSD-4.x
Reviewed-by: Kirk McKusick <mckusick@beastie.mckusick.com>
20 years agoCode cleanup, remove 'register' and (void) casts. No functional changes.
Matthew Dillon [Mon, 15 Mar 2004 16:24:22 +0000 (16:24 +0000)]
Code cleanup, remove 'register' and (void) casts.  No functional changes.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoSome drivers depend on the link layer address in ac_enaddr.
Joerg Sonnenberger [Mon, 15 Mar 2004 08:25:50 +0000 (08:25 +0000)]
Some drivers depend on the link layer address in ac_enaddr.
Temporary save a copy of lla there too until all drivers some been
converted.

Idea from FreeBSD.

20 years agoDo not free the old VFS vector when recomputing the vectors. If a module
Matthew Dillon [Mon, 15 Mar 2004 06:10:51 +0000 (06:10 +0000)]
Do not free the old VFS vector when recomputing the vectors.  If a module
is loaded which causes the vectors to recompute, the v_op on existing
vnodes can wind up pointing to freed memory.  This fix does cause a memory
leak, and is a hack, but it's better then crashing.

Taken-from: FreeBSD-5

20 years agoWhen detaching UMASS, abort all the pipes before detaching the sim. Note
Matthew Dillon [Mon, 15 Mar 2004 05:45:19 +0000 (05:45 +0000)]
When detaching UMASS, abort all the pipes before detaching the sim.  Note
sim detachment path is:  umass_cam_detach_sim -> xpt_bus_deregister ->
cam_sim_free.  If there is anything pending as of the cam_sim_free() bad
things will happen.

20 years agoWhen deregistering a bus, pending device bus scan timeouts are not deleted
Matthew Dillon [Mon, 15 Mar 2004 05:43:52 +0000 (05:43 +0000)]
When deregistering a bus, pending device bus scan timeouts are not deleted
and pending ccb's are not necessary aborted/processed prior to the sim
potentially being destroyed.  Adjust AC_LOST_DEVICE to release any pending
timeouts (and it should also restart the command queue).  This may interlock
against the detaching device (e.g. UMASS) having set a flag in its softc
that causes all future commands to fail immediately.  Note that we have to
also run any pending ISRs synchronously before xpt_bus_deregister() can
safely return.

When freeing a device queue, print a warning if the device queue contains
active commands.  If a device queue is freed while holding active commands
all sorts of bad things can happen, including the machine locking up on
boot while waiting for CAM to finish scanning its SCSI busses.

20 years agoThe cam_sim structure was being deallocated unconditionally by device
Matthew Dillon [Mon, 15 Mar 2004 03:05:11 +0000 (03:05 +0000)]
The cam_sim structure was being deallocated unconditionally by device
driver detach routines.  The problem with this is that part of the CAM
bus structure may still be active (for example, with pending timeout()'s),
and even though the bus, target, and device is freed, since the sim IS
freed any accesses through the sim will hit 0xdeadc0de.  This case most often
occurs with USB UMASS devices.

20 years agoDo some M_WAITOK<->M_INTWAIT cleanups. Code entered from userland, such as
Matthew Dillon [Mon, 15 Mar 2004 02:27:57 +0000 (02:27 +0000)]
Do some M_WAITOK<->M_INTWAIT cleanups.  Code entered from userland, such as
device open and device ioctl, generally use M_WAITOK, while low level
structures such as the capacity structure are allocated using M_INTWAIT.

20 years agoThe cam_sim structure was being deallocated unconditionally by device
Matthew Dillon [Mon, 15 Mar 2004 01:10:45 +0000 (01:10 +0000)]
The cam_sim structure was being deallocated unconditionally by device
driver detach routines.  The problem with this is that part of the CAM
bus structure may still be active (for example, with pending timeout()'s),
and even though the bus, target, and device is freed, since the sim IS
freed any accesses through the sim will hit 0xdeadc0de.  This case most often
occurs with USB UMASS devices.

The CAM_XPT and CAM_SIM layer has been revamped.  CAM_DEV_UNCONFIGURED is now
accounted for in the device->refcount, and the cam_sim structure is now
ref-counted as well.  Additionally, the cam_simq* code which handles the
device queues has been revamped to refcount as well, so shared device queues
(raid and multi-channel devices) are not free()'d before all references have
gone away.

scsi_low free'd its cam_sim twice.  Fixed.

USB was improperly using M_NOWAIT.  All M_NOWAIT instances have been renamed
to M_INTWAIT.

20 years agoTurn TDF_SYSTHREAD into TDF_RESERVED0100 since the flag is never used
Hiten Pandya [Sun, 14 Mar 2004 20:54:02 +0000 (20:54 +0000)]
Turn TDF_SYSTHREAD into TDF_RESERVED0100 since the flag is never used
and such a flag is not required.

Discussed with:  Matt Dillon

20 years agoRemove BPF_MTAP definition
Joerg Sonnenberger [Sun, 14 Mar 2004 17:12:05 +0000 (17:12 +0000)]
Remove BPF_MTAP definition

20 years agoBPF has been in the kernel for ages and is supported by all NICs but I4B.
Joerg Sonnenberger [Sun, 14 Mar 2004 15:36:54 +0000 (15:36 +0000)]
BPF has been in the kernel for ages and is supported by all NICs but I4B.

This removes the second argument of ether_ifattach and ether_ifdetach as
done by sam in FreeBSD's rev. 1.130 of net/if_ethersubr.c.

Add an argument for the link layer address to ether_ifattach as done by
is in NetBSD's rev 1.21.4.1 of the same file.

Adjust if_ef.c based on FreeBSD's version of that file.

Remove the now unused ETHER_BPF_[UN]SUPPORTED define from ethernet.h.

20 years agoRemove unused BSDI I4B interface
Joerg Sonnenberger [Sun, 14 Mar 2004 15:19:54 +0000 (15:19 +0000)]
Remove unused BSDI I4B interface

20 years agoRemove macro definitions for BPF_MTAP
Joerg Sonnenberger [Sun, 14 Mar 2004 14:37:39 +0000 (14:37 +0000)]
Remove macro definitions for BPF_MTAP

20 years agoFix warning about missing prototyp for psignal
Joerg Sonnenberger [Sun, 14 Mar 2004 14:35:23 +0000 (14:35 +0000)]
Fix warning about missing prototyp for psignal

20 years agoDe-perlify.
Eirik Nygaard [Sun, 14 Mar 2004 13:47:12 +0000 (13:47 +0000)]
De-perlify.

Submitted by: Dheeraj Reddy <dheerajr@comcast.net>
Obtained from: FreeBSD

20 years agoCorrect typo in comment.
Hiten Pandya [Sun, 14 Mar 2004 11:04:12 +0000 (11:04 +0000)]
Correct typo in comment.

20 years agoIfdef out unused variable.
Jeffrey Hsu [Sun, 14 Mar 2004 08:26:31 +0000 (08:26 +0000)]
Ifdef out unused variable.

20 years agoMake tcp_drain() per-cpu.
Jeffrey Hsu [Sun, 14 Mar 2004 08:21:53 +0000 (08:21 +0000)]
Make tcp_drain() per-cpu.

20 years agoMake tcp_drain() per-cpu.
Jeffrey Hsu [Sun, 14 Mar 2004 07:57:26 +0000 (07:57 +0000)]
Make tcp_drain() per-cpu.

20 years ago * Remove ``register'' keywords.
Eirik Nygaard [Sat, 13 Mar 2004 21:08:39 +0000 (21:08 +0000)]
 * Remove ``register'' keywords.
 * Convert K&R-style function declarations to ANSI-style.

Submitted by: Chris Pressey <cpressey@catseye.mine.nu>

20 years agoUpdate libcr with recent libc updates.
Eirik Nygaard [Sat, 13 Mar 2004 19:46:56 +0000 (19:46 +0000)]
Update libcr with recent libc updates.

20 years agoAdd BPF_TAP and BPF_MTAB macros from FreeBSD
Joerg Sonnenberger [Sat, 13 Mar 2004 19:18:56 +0000 (19:18 +0000)]
Add BPF_TAP and BPF_MTAB macros from FreeBSD

20 years agoAdd convient functions for the bus interface: child_present,
Joerg Sonnenberger [Sat, 13 Mar 2004 14:38:22 +0000 (14:38 +0000)]
Add convient functions for the bus interface: child_present,
child_pnpinfo_str, child_location_str.

From FreeBSD.

20 years agoMerge from FreeBSD 5:
Joerg Sonnenberger [Sat, 13 Mar 2004 12:39:56 +0000 (12:39 +0000)]
Merge from FreeBSD 5:

Add some handy macros to remove e.g. const from a pointer.

20 years agoFix a bunch of NFS races. These races existed in FreeBSD 4.x but are more
Matthew Dillon [Sat, 13 Mar 2004 03:13:53 +0000 (03:13 +0000)]
Fix a bunch of NFS races.  These races existed in FreeBSD 4.x but are more
likely to occur now due to the additional thread switching that DragonFly
performs when doing things like sending UDP packets.  Three bugs are
being fixed:

* nfs_request() adds the request to the nfs_timer queue before doing initial
  processing (e.g. transmission) of the request.  The initial transmission of
  the request will race between nfs_request and nfs_timer, potentially causing
  the congestion window calculation (nm_sent) to be bumped twice instead of
  once.  This eventually closes the congestion window permanently and
  causes the NFS mount to freeze.  (Additionally the request could be
  transmitted twice unnecessarily, also fixed).

* Updates to rep->r_flags and nmp->nm_sent were not being properly protected
  against nfs_timer due to splsoftclock() being released too early.  All
  such accesses are now protected.

* nfs_reply() depends on nfs_rcvlock to do an interlock check to see if the
  request has already been replied, but nfs_rcvlock() only does this if it
  cannot immediately get the receiver lock.  The problem is that the NFS
  code in between request transmission and nfs_reply() can block, potentially
  allowing a reply to be returned to another nfsiod.  The NFS receiver winds
  up getting stuck waiting for a reply that has already been returned.
  nfs_rcvlock() now unconditionally checks to see if the reply has already
  occured before entering the loop.

20 years agoIn an rfork'd or vfork'd situation where multiple processes are sharing
Matthew Dillon [Fri, 12 Mar 2004 23:09:37 +0000 (23:09 +0000)]
In an rfork'd or vfork'd situation where multiple processes are sharing
the same vmspace, and one process goes zombie, the vmspace's vm_exitingcnt
will be non-zero.  If another process then forks or execs the exitingcnt will
be improperly inherited by the new vmspace.  The solution is to not copy
exitingcnt when copying to a new vmspace.

Additionally, for DragonFly, I also had to fix a few cases where the upcall
list was also being improperly inherited.

Heads-up-by: Xin LI <delphij@frontfree.net>
Obtained-From: Peter Wemm <peter@wemm.org> (FreeBSD-5)

20 years agoAdd userland UDF support based on mount_cd9660
Joerg Sonnenberger [Fri, 12 Mar 2004 22:46:25 +0000 (22:46 +0000)]
Add userland UDF support based on mount_cd9660

20 years agoMerge the kernel part of UDF support from FreeBSD 5.
Joerg Sonnenberger [Fri, 12 Mar 2004 22:38:15 +0000 (22:38 +0000)]
Merge the kernel part of UDF support from FreeBSD 5.

This doesn't include the iconv hocks and makes use of M_WAITOK everywhere.

20 years agoThe free(9) implementation based on the slab allocator doesn't handle
Joerg Sonnenberger [Fri, 12 Mar 2004 22:29:21 +0000 (22:29 +0000)]
The free(9) implementation based on the slab allocator doesn't handle
the special case of freeing NULL anymore. Make this behaviour explicit
by adding a panic and adjusting the man page.

20 years agoThink before commit and remove some more cruft
Joerg Sonnenberger [Fri, 12 Mar 2004 22:21:12 +0000 (22:21 +0000)]
Think before commit and remove some more cruft

20 years agoAdd a short cut for DVD_INVALIDATE_AGID to simplify the rest
Joerg Sonnenberger [Fri, 12 Mar 2004 22:19:08 +0000 (22:19 +0000)]
Add a short cut for DVD_INVALIDATE_AGID to simplify the rest

20 years agoInitialize all fields in MALLOC_DEFINE and VFS_SET to fix warnings.
Joerg Sonnenberger [Fri, 12 Mar 2004 22:05:53 +0000 (22:05 +0000)]
Initialize all fields in MALLOC_DEFINE and VFS_SET to fix warnings.

20 years agoInitialize the interface name for if_de
Joerg Sonnenberger [Fri, 12 Mar 2004 15:42:49 +0000 (15:42 +0000)]
Initialize the interface name for if_de

20 years agoCollapse the if(...) block in pim_stats added by my previous commit
Hiten Pandya [Fri, 12 Mar 2004 11:29:51 +0000 (11:29 +0000)]
Collapse the if(...) block in pim_stats added by my previous commit
and nuke an `error' variable.

Discussed with: Dag-Erling Smorgrav <des at freebsd.org>

20 years agoUse M_INTWAIT and M_WAITOK instead of M_NOWAIT within the USB bus
Matthew Dillon [Fri, 12 Mar 2004 03:43:06 +0000 (03:43 +0000)]
Use M_INTWAIT and M_WAITOK instead of M_NOWAIT within the USB bus
infrastructure.  For the system to operate as expected, allocations
done in this layer have to be reliable.

20 years agoChange M_NOWAIT to M_INTWAIT or M_WAITOK. CAM does a mediocre job checking
Matthew Dillon [Fri, 12 Mar 2004 03:24:43 +0000 (03:24 +0000)]
Change M_NOWAIT to M_INTWAIT or M_WAITOK.  CAM does a mediocre job checking
for NULL returns from malloc() and even when it does it generally causes
the device operation to fail instead of retrying, resulting in unacceptable
behavior.  M_NOWAIT semantics allow NULL to be returned during normal system
operation.  This is especially true in DragonFly.

Also remove much of the code that previously checked for NULL.  By using
M_INTWAIT or M_WAITOK, malloc() will panic rather then return NULL.  Only
the addition of M_NULLOK allows a blocking malloc() to return NULL, and we
do not use that flag in CAM.

Add M_ZERO to a number of malloc()'s and remove subsequent bzero()'s, and
add M_ZERO to a few mallocs (primarily for the read capacity data structure)
that did not bother zeroing out the structure before.  While the data is
supposed to be overwritten read-capacity is often quite fragile due to the
SCSI simulation layer, so we do not take any chances.

20 years agoUse info->td instead of curthread in ffs_reload_scan1(); although
Hiten Pandya [Thu, 11 Mar 2004 20:17:36 +0000 (20:17 +0000)]
Use info->td instead of curthread in ffs_reload_scan1(); although
info->td will be curthread in this case anyway, but purely for
uniformity.

Discussed with:  Matthew Dillon

20 years agoReplace a manual check for a VMIO candidate with vn_canvmio() under
Hiten Pandya [Thu, 11 Mar 2004 20:14:46 +0000 (20:14 +0000)]
Replace a manual check for a VMIO candidate with vn_canvmio() under
VFS_BIO_DEBUG.

This silences an annoying warning in getblk() when VMIO'ing on a
VDIR (directory) vnode; this happens due to vmiodirenable sysctl
being set to `1'.

Discussed with:  Matthew Dillon

20 years agoUse local cpu tcbinfo
Joerg Sonnenberger [Thu, 11 Mar 2004 17:22:52 +0000 (17:22 +0000)]
Use local cpu tcbinfo

20 years agoMega mdoc(7) update:
Hiten Pandya [Thu, 11 Mar 2004 12:29:00 +0000 (12:29 +0000)]
Mega mdoc(7) update:

* Introduce a .Dx macro, for meaning `DragonFly'.

* Use the .Dx macro where we mean `DragonFly' and
  revert to using .Fx where we mean `FreeBSD'.

* Update various sentences, paragraphs to be in
  context with DragonFly, and mention FreeBSD as
  required in HISTORY sections.

* Fix mdoc(7) markup wherever possible.

* Use .Fx wherever possible, and minimize the use
  of FreeBSD in favour of .Fx.  Do the same for
  `OpenBSD' and `NetBSD' by using `.Ox' and `.Nx'
  respectively.

* Correct a confusion of `FreeBSD' is `DragonFly'
  left by a previous commit to some of the manual
  pages, by using the appropriate .Dx/.Fx entities.

NOTE: contrib/ and other manual pages such as sysintall(8)
manual pages are left untouched, because the former should
not be modified directly and the latter has reached
'End of Life' stage.

Submitted by:
Aaron Malone <aaron@munge.net>, Hiten Pandya <hmp@backplane.com>

20 years agoLinux emulation system call update.
Hiten Pandya [Thu, 11 Mar 2004 09:53:19 +0000 (09:53 +0000)]
Linux emulation system call update.

Implement exit group of system calls needed for newer glibc binaries.
The system calls are just wired to exit(2) right now, because we do
not support Linux threading semantics very well.

The update actually originated from OpenBSD, which then went into
FreeBSD -HEAD CVS branch.

Obtained from: Rahul Siddharthan and Kip Macy (old version)

20 years agoConvert the code to ANSI style, and remove 'register' keywords.
Hiten Pandya [Thu, 11 Mar 2004 09:38:59 +0000 (09:38 +0000)]
Convert the code to ANSI style, and remove 'register' keywords.

No functional changes.

Submitted by: Chris Pressey <cpressey@catseye.mine.nu>
              (cpressey->commit_count++)

20 years agogdb was unable to obtain backtraces of pure threads. Change the 'proc'
Matthew Dillon [Wed, 10 Mar 2004 23:26:45 +0000 (23:26 +0000)]
gdb was unable to obtain backtraces of pure threads.  Change the 'proc'
command to take either a pid or a thread pointer (no longer a proc pointer),
and add hacks to calculate the stack pointer and frame pointer for switched
out pure threads (which do not use the PCB structure).

20 years agoANSIfication, remove 'register' and 'auto' use, convert K&R procedure decls.
Matthew Dillon [Wed, 10 Mar 2004 18:27:28 +0000 (18:27 +0000)]
ANSIfication, remove 'register' and 'auto' use, convert K&R procedure decls.
Fix one bug where getc() was being called on a FILE returned by fdopen()
before the a FILE was checked for NULL.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoAllow %e, %E, %f, %g, %G formats to work without producing an error code.
Matthew Dillon [Wed, 10 Mar 2004 18:19:23 +0000 (18:19 +0000)]
Allow %e, %E, %f, %g, %G formats to work without producing an error code.

Taken-from: FreeBSD printf.c/1.27
Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoMinor documentation adjustments.
Matthew Dillon [Wed, 10 Mar 2004 18:18:13 +0000 (18:18 +0000)]
Minor documentation adjustments.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agodislabel -> 16 partitions work addendum: MAKEDEV now understands and
Matthew Dillon [Wed, 10 Mar 2004 18:16:14 +0000 (18:16 +0000)]
dislabel -> 16 partitions work addendum: MAKEDEV now understands and
generates the new partition names, and now understands the bit we stole
from the slice in order to expand the number of paritions in the minor
number generation.

20 years agoANSIfication, convert K&R procedure declarations and remove 'register'.
Matthew Dillon [Wed, 10 Mar 2004 17:54:16 +0000 (17:54 +0000)]
ANSIfication, convert K&R procedure declarations and remove 'register'.
No operational changes.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoFix spelling mistake, s/itnerrupts/interrupts/.
Hiten Pandya [Wed, 10 Mar 2004 13:04:40 +0000 (13:04 +0000)]
Fix spelling mistake, s/itnerrupts/interrupts/.

20 years agoExplain some of the instruction details in more depth.
Matthew Dillon [Wed, 10 Mar 2004 06:35:22 +0000 (06:35 +0000)]
Explain some of the instruction details in more depth.

Submitted-by: Rahul Siddharthan <rsidd@online.fr>
Additional-edits-by: Matthew Dillon
20 years agoAllow the nominal NFS io block size to be set with a sysctl vfs.nfs.nfs_io_size
Matthew Dillon [Wed, 10 Mar 2004 02:07:52 +0000 (02:07 +0000)]
Allow the nominal NFS io block size to be set with a sysctl vfs.nfs.nfs_io_size
and default it to the largest possible block size (32K), regardless of the
network transfer size settings.  nfs_iosize() is no longer based on the
network transfer size but is matched against the maximum data block size
for the protocol and transport (8K for NFSv2, 16K for NFSv3/UDP, 32K for
NFSv3/TCP).  Adjust statfs() reporting to suit.

This should improve performance over high bandwidth connections, primarily
by causing the client to use larger buffer cache buffers (16K or 32K instead
of 8K prior to this commit), and also improving read-ahead (which goes by
blocks).  In particular, while the largest network transfer size over UDP
is 16K, the largest transfer size of TCP is 32K, so TCP ought to reap the
largest reward w/ this commit.

Delay retrieval of mountpoint attributes until the mountpoint is actually
accessed or a df() occurs.

Submitted-by: Hiten Pandya <hmp@backplane.com>, and Matthew Dillon
20 years agoRemove a debug printf added with the last commit.
Joerg Sonnenberger [Tue, 9 Mar 2004 21:39:59 +0000 (21:39 +0000)]
Remove a debug printf added with the last commit.

20 years agoWhile converting ATA to use MPIPE allocations, ata_dmaalloc was changed
Joerg Sonnenberger [Tue, 9 Mar 2004 21:38:05 +0000 (21:38 +0000)]
While converting ATA to use MPIPE allocations, ata_dmaalloc was changed
to allocate the DMA buffer directly without checking if it already is.
Since atapi_queue_cmd and ad_start doesn't check this and the DMA buffer
is only freed from ad_free, ad_detach and atapi_detach, the MPIPE was
exhausted very soon. The calls the ata_dmafree has been removed in revision
1.9.

This adds an additional check wether a DMA buffer is already allocated and
reuses that instead.

20 years agoClarify strange ipfw byte ordering convention.
Jeffrey Hsu [Tue, 9 Mar 2004 21:21:54 +0000 (21:21 +0000)]
Clarify strange ipfw byte ordering convention.

Consulted with: Luigi Rizzo <rizzo@icir.org>

20 years agoncpus2 must be initialized to 1 in the UP case. ncpus2_mask and ncpus2_shift
Matthew Dillon [Tue, 9 Mar 2004 18:05:27 +0000 (18:05 +0000)]
ncpus2 must be initialized to 1 in the UP case.  ncpus2_mask and ncpus2_shift
remain 0 in the UP case (cpu selection mask for one cpu always selects cpu #0).
This fixes a bug introduced by recent network commits, correcting a boot-time
panic on UP systems in in_pcblookup_hash().

20 years agoAdjust IPFW to use M_WAITOK instead of M_NOWAIT. The M_NOWAIT flag on
Hiten Pandya [Tue, 9 Mar 2004 15:00:06 +0000 (15:00 +0000)]
Adjust IPFW to use M_WAITOK instead of M_NOWAIT.  The M_NOWAIT flag on
DragonFly is very explicit about its behavior, which can result in a
panic.

Only spl protected calls are using M_NOWAIT.

Submitted by: Craig Dooley <craig@xlnx-x.net>

20 years agoFix violating usage of M_DONTWAIT in calls to malloc() by replacing
Hiten Pandya [Tue, 9 Mar 2004 14:57:18 +0000 (14:57 +0000)]
Fix violating usage of M_DONTWAIT in calls to malloc() by replacing
them with M_NOWAIT.

Submitted by: Craig Dooley <craig@xlnx-x.net>

20 years agoAddendum comment to last commit. Jeffrey Hsu reminded me that kernel writes
Matthew Dillon [Tue, 9 Mar 2004 02:52:10 +0000 (02:52 +0000)]
Addendum comment to last commit.  Jeffrey Hsu reminded me that kernel writes
are not subject to socket buffer limitations, so the Linux bug referenced
in the last commit should not occur even without this commit.  However,
the larger socket buffers should have a positive effect on our ability to
stream received data, especially over GigE links.

20 years agoIncrease the default socket buffer for NFS to deal with linux bugs and to
Matthew Dillon [Mon, 8 Mar 2004 23:52:53 +0000 (23:52 +0000)]
Increase the default socket buffer for NFS to deal with linux bugs and to
improve performance.   The default nfs socket buffer is now 65535 bytes,
settable with a sysctl (vfs.nfs.soreserve).

It is my belief that when large data block sizes (32K) are negotiated,
the larger socket buff should improve read-ahead performance and reduce
nfs socket buffer lock contention that occurs with multiple nfsd's.  I
was able to do some testing over GigE and it did seem to help, but problems
with one of the machines made the tests less then reliable.

Credits: Richard Sharpe originally encountered issues with linux NFS
clients that were traced to linux doing a bad job in its delayed-ack code.
David Rhodus created an initial patch which I used as a partial basis for
this commit (circa October 2003).

20 years agoAdd -B to display buffer limits instead of current buffer usage.
Matthew Dillon [Mon, 8 Mar 2004 22:41:05 +0000 (22:41 +0000)]
Add -B to display buffer limits instead of current buffer usage.

20 years agoPartition the TCP connection table.
Jeffrey Hsu [Mon, 8 Mar 2004 19:44:32 +0000 (19:44 +0000)]
Partition the TCP connection table.

20 years agoHandle failure in atapi_queue_cmd correctly
Joerg Sonnenberger [Mon, 8 Mar 2004 15:13:56 +0000 (15:13 +0000)]
Handle failure in atapi_queue_cmd correctly

20 years agoFix panic in acd_report_key when ai->format==DVD_INVALIDATE_AGID.
Joerg Sonnenberger [Mon, 8 Mar 2004 13:31:57 +0000 (13:31 +0000)]
Fix panic in acd_report_key when ai->format==DVD_INVALIDATE_AGID.

20 years agoDocument that kldload(2) can also return EEXIST.
Hiten Pandya [Mon, 8 Mar 2004 12:46:12 +0000 (12:46 +0000)]
Document that kldload(2) can also return EEXIST.

20 years agoMerge from FreeBSD:
Hiten Pandya [Mon, 8 Mar 2004 07:55:57 +0000 (07:55 +0000)]
Merge from FreeBSD:

Fix handling of negative hexadecimal integers.
(originally from NetBSD)

Submitted by: Chris Pressey <cpressey@catseye.mine.nu>

20 years agoMerge from FreeBSD:
Hiten Pandya [Mon, 8 Mar 2004 07:50:03 +0000 (07:50 +0000)]
Merge from FreeBSD:

Add more partition types.

Submitted by: Chris Pressey <cpressey@catseye.mine.nu>

20 years agoMerge from FreeBSD:
Hiten Pandya [Mon, 8 Mar 2004 07:47:25 +0000 (07:47 +0000)]
Merge from FreeBSD:

Clarify a sentence.

Submitted by: Chris Pressey <cpressey@catseye.mine.nu>

20 years agoTo comply with the spec, do not copy the TOS from the outer IP
Jeffrey Hsu [Mon, 8 Mar 2004 07:43:44 +0000 (07:43 +0000)]
To comply with the spec, do not copy the TOS from the outer IP
header to the inner IP header of the PIM Register if this is a PIM
Null-Register message.

Submitted by: Pavlin Radoslavov <pavlin@icir.org>

20 years agoInclude <sys/types.h> for autoconf/automake detection.
Jeffrey Hsu [Mon, 8 Mar 2004 07:38:20 +0000 (07:38 +0000)]
Include <sys/types.h> for autoconf/automake detection.

Submitted by: Pavlin Radoslavov <pavlin@icir.org>

20 years agoThe "Don't forget to do a ``make depend''" warning no longer serves any
Matthew Dillon [Mon, 8 Mar 2004 06:13:17 +0000 (06:13 +0000)]
The "Don't forget to do a ``make depend''" warning no longer serves any
useful purpose, remove it.

From discussions with:  Chris Pressey <cpressey@catseye.mine.nu>

20 years agoConfig cleanup part 3/3: Remove the ns() and twisty eq() macros and replace
Matthew Dillon [Mon, 8 Mar 2004 03:28:02 +0000 (03:28 +0000)]
Config cleanup part 3/3: Remove the ns() and twisty eq() macros and replace
their use in the codebase with their contents (strdup() and !strcmp()).

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoConfig cleanup part 2/3: Remove old style C cruft.
Matthew Dillon [Mon, 8 Mar 2004 03:24:27 +0000 (03:24 +0000)]
Config cleanup part 2/3: Remove old style C cruft.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>
20 years agoConfig cleanup part 1/3: Remove old style C cruft and cleanup some variable
Matthew Dillon [Mon, 8 Mar 2004 03:22:46 +0000 (03:22 +0000)]
Config cleanup part 1/3: Remove old style C cruft and cleanup some variable
names.

Submitted-by: Chris Pressey <cpressey@catseye.mine.nu>

20 years agoANSIfy the tsleep() and sched_setup() procedure definitions.
Matthew Dillon [Mon, 8 Mar 2004 03:05:27 +0000 (03:05 +0000)]
ANSIfy the tsleep() and sched_setup() procedure definitions.

Submitted-by: Peter Kadau <peter.kadau@tuebingen.mpg.de>
20 years agolibcaps now compiles ipiq and token in userland, make those files compile
Matthew Dillon [Mon, 8 Mar 2004 03:03:54 +0000 (03:03 +0000)]
libcaps now compiles ipiq and token in userland, make those files compile
properly in userland.

20 years agoPrint out Early Retransmit statistics.
Jeffrey Hsu [Mon, 8 Mar 2004 00:44:36 +0000 (00:44 +0000)]
Print out Early Retransmit statistics.

20 years agoImplement Early Retransmit.
Jeffrey Hsu [Mon, 8 Mar 2004 00:39:00 +0000 (00:39 +0000)]
Implement Early Retransmit.

20 years agoCosmetic changes.
Jeffrey Hsu [Mon, 8 Mar 2004 00:36:30 +0000 (00:36 +0000)]
Cosmetic changes.

20 years agoInitial CAPS IPC structural encoding and decoding support. Note that the
Matthew Dillon [Sun, 7 Mar 2004 23:36:45 +0000 (23:36 +0000)]
Initial CAPS IPC structural encoding and decoding support.  Note that the
kernel is uninvolved (other then in supplying the IPC mechanism).  After
careful consideration I decided that XML was just too much overkill but that
a human-readable format is still desireable.  The encoding format supports
integers, strings, opaque data, arrays, and is extensible and structural.

An example encoding of the struct passwd record for user 'nobody':

    Spasswd{F1D"nobody",F2D"%2a",F3Dfffe,F4Dfffe,F5D0,F6D"",F7D"Unprivileged%20user",F8D"/nonexistent",F9D"/sbin/nologin",FaD0}

Class elements include (S)tructure, (F)ield, (D)ata, (A)rray.  Data types are
free-form numeric (stored as hex), with the source responsible for encoding
negative numbers with a '-', and quoted opaque data (e.g. strings).  Any
class element may recurse using {}.  Structures and Arrays always recurse.
Unknown recursions are ignored by the decoder (for future backwards
compatibility).  Whitespace is allowed but most non-alpha-numeric characters
must be %-hex-escaped.

The decoder understands simple integer types, arrays, buffers, embedded
sub-structures, and string pointer structural elements.  It does not (yet)
understand multi-dimensional arrays, sparse element notation, or ** pointers.

This is a nice, compact encoding format that can be used for both packetized
messages and persistently-connected streams.  The initial commit only supports
full-messages, however.

20 years agoFrom FreeBSD:
Joerg Sonnenberger [Sun, 7 Mar 2004 21:35:27 +0000 (21:35 +0000)]
From FreeBSD:
When we get a packet error, move on, don't go into an infinite loop
looking at it.

fixes at least one cause of "hanging" due to this driver.

20 years agoSend UDP packets out without a temporary connect.
Jeffrey Hsu [Sun, 7 Mar 2004 18:38:38 +0000 (18:38 +0000)]
Send UDP packets out without a temporary connect.

20 years agoRemove perl from the i386 kernel build.
Eirik Nygaard [Sun, 7 Mar 2004 12:48:34 +0000 (12:48 +0000)]
Remove perl from the i386 kernel build.

20 years agoMove the ASSERT_VOP_LOCKED and ASSERT_VOP_UNLOCKED macros into its own
Eirik Nygaard [Sun, 7 Mar 2004 12:09:04 +0000 (12:09 +0000)]
Move the ASSERT_VOP_LOCKED and ASSERT_VOP_UNLOCKED macros into its own
functions.

Idea taken from: FreeBSD

20 years agoget rid of thr{1,2,3}, which are obsolete at the moment. Keep the
Matthew Dillon [Sun, 7 Mar 2004 01:13:43 +0000 (01:13 +0000)]
get rid of thr{1,2,3}, which are obsolete at the moment.  Keep the
caps system call tests.