dragonfly.git
15 years agoSilence warnings.
Sascha Wildner [Sun, 21 Dec 2008 09:41:41 +0000 (10:41 +0100)]
Silence warnings.

15 years agoSilence UP warning.
Sascha Wildner [Sun, 21 Dec 2008 09:41:23 +0000 (10:41 +0100)]
Silence UP warning.

15 years agoMerge branch 'master' of ssh://swildner@crater.dragonflybsd.org/repository/git/dragonfly
Sascha Wildner [Sun, 21 Dec 2008 09:15:38 +0000 (10:15 +0100)]
Merge branch 'master' of ssh://swildner@crater.dragonflybsd.org/repository/git/dragonfly

15 years agoAdd missing break.
Sascha Wildner [Sun, 21 Dec 2008 09:14:50 +0000 (10:14 +0100)]
Add missing break.

15 years agoMake i486 default architecture.
Hasso Tepper [Sun, 21 Dec 2008 08:49:28 +0000 (10:49 +0200)]
Make i486 default architecture.

We don't support i386 anyway and most of world seems to assume i486 as
de facto default nowadays.

15 years ago- Add polling(4) support for jme(4)
Sepherosa Ziehau [Sun, 21 Dec 2008 05:46:24 +0000 (13:46 +0800)]
- Add polling(4) support for jme(4)
- Fix an off-by-one assertion bug
- Update jme(4) manpage about the interrupt coalescing sysctls

15 years agoRemove extra whitespace.
Sascha Wildner [Sun, 21 Dec 2008 00:45:41 +0000 (01:45 +0100)]
Remove extra whitespace.

15 years agoAdd parameter names.
Sascha Wildner [Sun, 21 Dec 2008 00:10:52 +0000 (01:10 +0100)]
Add parameter names.

15 years agoClean up #include situation in the SYNOPSIS.
Sascha Wildner [Sat, 20 Dec 2008 23:52:20 +0000 (00:52 +0100)]
Clean up #include situation in the SYNOPSIS.

15 years agoAdd missing '#include <sys/types.h>' to the SYNOPSIS.
Sascha Wildner [Sat, 20 Dec 2008 23:01:45 +0000 (00:01 +0100)]
Add missing '#include <sys/types.h>' to the SYNOPSIS.

15 years agoFix indentation.
Sascha Wildner [Sat, 20 Dec 2008 22:28:09 +0000 (23:28 +0100)]
Fix indentation.

15 years agoUse BBLOCK.
Sascha Wildner [Sat, 20 Dec 2008 21:58:54 +0000 (22:58 +0100)]
Use BBLOCK.

15 years agoFix a dereference of an undefined value.
Sascha Wildner [Sat, 20 Dec 2008 21:52:06 +0000 (22:52 +0100)]
Fix a dereference of an undefined value.

ntmp was being accessed (via ntfs_bntodoff()) before it was allocated.
The whole thing only worked because BBLOCK is 0 and the dereference was
optimized away (though not with -O0).

Found-by: LLVM/Clang Static Analyzer
15 years agoEliminate some dead initialization.
Sascha Wildner [Sat, 20 Dec 2008 20:11:31 +0000 (21:11 +0100)]
Eliminate some dead initialization.

Found-by: LLVM/Clang Static Analyzer
15 years agoSilence 'unused variable' warning.
Sascha Wildner [Sat, 20 Dec 2008 19:44:36 +0000 (20:44 +0100)]
Silence 'unused variable' warning.

15 years agoClean up #include's in the SYNOPSIS.
Sascha Wildner [Sat, 20 Dec 2008 15:15:23 +0000 (16:15 +0100)]
Clean up #include's in the SYNOPSIS.

15 years agoExplicitly reallocate the inpcb cached route freed due to different
Sepherosa Ziehau [Sat, 20 Dec 2008 03:13:45 +0000 (11:13 +0800)]
Explicitly reallocate the inpcb cached route freed due to different
rtentry CPU ownership, e.g. in tcp_connect(), so we could make sure
that a RTF_PRCLONING rtentry will be cloned.

15 years agoUse priority message for arp holding mbufs
Sepherosa Ziehau [Sat, 20 Dec 2008 02:21:46 +0000 (10:21 +0800)]
Use priority message for arp holding mbufs

15 years agoAdapt to OpenPAM Hydrangea.
Hasso Tepper [Sat, 20 Dec 2008 01:56:54 +0000 (03:56 +0200)]
Adapt to OpenPAM Hydrangea.

15 years agoMerge commit 'crater/vendor/OPENPAM'
Hasso Tepper [Sat, 20 Dec 2008 01:53:58 +0000 (03:53 +0200)]
Merge commit 'crater/vendor/OPENPAM'

15 years agoAdjust VFS_SET() to deal with the change to struct vfsconf
YONETANI Tomokazu [Fri, 19 Dec 2008 14:21:12 +0000 (23:21 +0900)]
Adjust VFS_SET() to deal with the change to struct vfsconf

15 years agoClose a possible bug where the p_lock for a new process inherits a
Matthew Dillon [Fri, 19 Dec 2008 04:20:15 +0000 (20:20 -0800)]
Close a possible bug where the p_lock for a new process inherits a
non-zero value from its parent on fork(), preventing the process
from being able to exit later on.

15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
Matthew Dillon [Thu, 18 Dec 2008 21:45:27 +0000 (13:45 -0800)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into devel

15 years agoThis is a MAJOR rewrite of usched_bsd4 and related support logic, plus
Matthew Dillon [Thu, 18 Dec 2008 21:37:37 +0000 (13:37 -0800)]
This is a MAJOR rewrite of usched_bsd4 and related support logic, plus
additional improvements to the LWKT scheduler.

* The LWKT scheduler used to run a user thread not needing the MP lock
  if it was unable to run a kernel thread that did need it, due to some
  other cpu holding the lock.  This created a massive priority inversion

  LWKT no longer does this.  It will happily run other MPSAFE kernel
  threads but as long as kernel threads exist which need the MP lock
  LWKT will no longer switch to a user mode thread.

  Add a new sysctl lwkt.chain_mplock which defaults to 0 (off).  If set
  to 1 LWKT will attempt to use IPIs to notify conflicting cpus when the
  MP lock is available and will also allow user mode threads to run if
  kernel threads are present needing the MP lock (but unable to get it).
  NOTE: Current turning on this feature results in reduced performance,
  though not as bad as pre-patch.

* The main control logic USCHED_BSD4 was almost completely rewritten,
  greatly improving interactivity in the face of cpu bound programs
  such as compiles.

  USCHED_BSD4 no longer needs to use the scheduler helper when the
  system is under load.  The scheduler helper is only used to allow
  one cpu to kick another idle cpu when additional processes are
  present.

  USCHED_BSD4 now takes great advantage of the scheduler's cpu-local
  design and uses a bidding algorithm for processes trying to return
  to user mode to determine which one is the best.  Winners simply
  deschedule losers, and since the loser is clearly not running when
  the winner does this the descheduling operation is ultra simple to
  accomplish.

15 years agoThis is a major revamping of the pageout and low-memory handling code.
Matthew Dillon [Thu, 18 Dec 2008 21:27:20 +0000 (13:27 -0800)]
This is a major revamping of the pageout and low-memory handling code.

The pageout daemon now detects out-of-memory conditions and properly
kills the largest process(es).  This condition occurs when swap is
full (or you have no swap) and most of the remaining VM pages in memory
have become dirty.  With no swap to page to the dirty pages squeeze out
the clean ones.  The pageout daemon detects the case and starts killing
processes.

The pageout daemon now detects stress in the form of excess cpu use
and tries to reduce its cpu footprint when that occurs.  Excess cpu use
can occur when the only pages left in-core are dirty and there is nowhere
to swap them to.  Previously if this case occured the system would basically
just stop working.

These changes make the system truely have VM = RAM+SWAP.  If you 1G of ram
and 1G of swap the system can run up to 2G worth of processes.

15 years agovnode_pager_haspage() could return TRUE but leave *before and *after
Matthew Dillon [Thu, 18 Dec 2008 21:18:29 +0000 (13:18 -0800)]
vnode_pager_haspage() could return TRUE but leave *before and *after
uninitialized, causing vm_fault's burst pagein feature to panic the system.

vm_fault was almost never using its burst pagein feature due to incorrect
test logic.  The burst pagein code itself was also seriously buggy, so it
is fortunate the test logic was broken.

Rewrite the broken test logic and fix the bugs in the burst pagein code.

Add a new sysctl vm.burst_fault, defaulting to 0 (disabled).  The default
will be changed to 1 in a week or two.

15 years agoReally fix indent.
Sascha Wildner [Thu, 18 Dec 2008 11:20:34 +0000 (12:20 +0100)]
Really fix indent.

15 years agoApply GNU style indent
Matthias Schmidt [Thu, 18 Dec 2008 11:09:09 +0000 (12:09 +0100)]
Apply GNU style indent

15 years agoFix annoying bug with grep and HAMMER
Matthias Schmidt [Thu, 18 Dec 2008 10:56:46 +0000 (11:56 +0100)]
Fix annoying bug with grep and HAMMER

grep foo * on an UFS partition was silent if grep hit a subdirectory.  If
executed on HAMMER, grep complains about "Invalid argument" because directories
in HAMMER are not treated as files.

Before:

cd /usr/src
grep test *
Makefile:       test \
grep: cat: Invalid argument
[...]

After:

grep test *
Makefile:       test \

15 years agoImport OpenPAM Hydrangea.
Hasso Tepper [Thu, 18 Dec 2008 08:47:32 +0000 (10:47 +0200)]
Import OpenPAM Hydrangea.

15 years agoCall ata_legacy() only once on attach and save it's result.
Hasso Tepper [Thu, 18 Dec 2008 03:03:47 +0000 (05:03 +0200)]
Call ata_legacy() only once on attach and save it's result.

Scanning PCI configuration registers (which are not going to change) on
every interrupt looks expensive, especially when interrupt is shared.
Profiling (in FreeBSD) shows 3% of time spent by atapci0 on pure network
load due to IRQ sharing with em0.

Obtained-from: FreeBSD

15 years agoMerge branch 'master' of /usr/git/dragonfly
Joe Talbott [Thu, 18 Dec 2008 02:18:48 +0000 (21:18 -0500)]
Merge branch 'master' of /usr/git/dragonfly

15 years ago Page align boundaries for kvm_access_check().
Joe Talbott [Thu, 18 Dec 2008 02:13:40 +0000 (21:13 -0500)]
 Page align boundaries for kvm_access_check().

15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
Matthew Dillon [Thu, 18 Dec 2008 01:07:33 +0000 (17:07 -0800)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into devel

15 years agoFix bugs in dealing with low-memory situations when the system has run out
Matthew Dillon [Thu, 18 Dec 2008 01:02:38 +0000 (17:02 -0800)]
Fix bugs in dealing with low-memory situations when the system has run out
of swap or has no swap.

* Fix an error where the system started killing processes before it needed
  to.

* Continue propagating pages from the active queue to the inactive queue
  when the system has run out of swap or has no swap, even though the
  inactive queue has become bloated.  This occurs because the inactive
  queue may be unable to drain due to an excess of dirty pages which
  cannot be swapped out.

* Use the active queue to detect excessive stress which combined with
  an out-of-swap or no-swap situation means the system has run out of
  memory.  THEN start killing processes.

* This also allows the system to recycle nearly all the clean pages
  available when it has no swap space left, to try to keep things going,
  leaving only dirty pages in the VM page queues.

15 years agoUnbreak buildworld
Michael Neumann [Wed, 17 Dec 2008 18:40:12 +0000 (18:40 +0000)]
Unbreak buildworld

15 years agoMerge branch 'vfsconf'
Michael Neumann [Wed, 17 Dec 2008 17:21:05 +0000 (17:21 +0000)]
Merge branch 'vfsconf'

15 years agoClean up a bit
Michael Neumann [Wed, 17 Dec 2008 17:10:58 +0000 (17:10 +0000)]
Clean up a bit

15 years agoMerge branch 'vfsconf'
Michael Neumann [Wed, 17 Dec 2008 15:50:04 +0000 (15:50 +0000)]
Merge branch 'vfsconf'

15 years agoRefactor filesystem types list and fix bug.
Michael Neumann [Wed, 17 Dec 2008 15:44:42 +0000 (15:44 +0000)]
Refactor filesystem types list and fix bug.

Refactor the management of the filesystem types list (vfsconf) by
introducing some management functions. Reduce inter-module coupling.

This actually fixes a potential "bug" in vfs_register() which does not
compare the new VFS to register with the last entry from the list, i.e.
two (or more) sequential vfs_register() calls with the same argument
would succeed.

15 years agoSymbol TX desc is only used by 64bits TX chain format.
Sepherosa Ziehau [Wed, 17 Dec 2008 13:23:16 +0000 (21:23 +0800)]
Symbol TX desc is only used by 64bits TX chain format.

15 years agoAlways free the passed in mbuf if jme_encap() failed.
Sepherosa Ziehau [Wed, 17 Dec 2008 12:30:46 +0000 (20:30 +0800)]
Always free the passed in mbuf if jme_encap() failed.
Non-EFBIG error probably will not recover.

15 years agoDon't use magic number
Sepherosa Ziehau [Wed, 17 Dec 2008 12:12:34 +0000 (20:12 +0800)]
Don't use magic number

15 years agoRename ring_cnt to desc_cnt.
Sepherosa Ziehau [Wed, 17 Dec 2008 12:10:05 +0000 (20:10 +0800)]
Rename ring_cnt to desc_cnt.

ring_cnt may be used when RSS (multi rx ring) support is experimented.

15 years agoTunable number of RX/TX descs
Sepherosa Ziehau [Wed, 17 Dec 2008 11:52:28 +0000 (19:52 +0800)]
Tunable number of RX/TX descs

15 years agoRemove unused macros
Sepherosa Ziehau [Wed, 17 Dec 2008 10:38:10 +0000 (18:38 +0800)]
Remove unused macros

15 years agoLIST_FOREACH_MUTUABLE() was tracking processes not held with PHOLD().
Matthew Dillon [Tue, 16 Dec 2008 17:54:38 +0000 (09:54 -0800)]
LIST_FOREACH_MUTUABLE() was tracking processes not held with PHOLD().
Use a normal LIST_FOREACH() instead because the main iterator is being
protected by PHOLD().

15 years agoAssert that nobody holds the process referenced with PHOLD() in
Matthew Dillon [Tue, 16 Dec 2008 17:53:32 +0000 (09:53 -0800)]
Assert that nobody holds the process referenced with PHOLD() in
exit.

15 years agoAdd missing range checks to sopt_valsize for the linux emulated
Matthew Dillon [Tue, 16 Dec 2008 17:49:35 +0000 (09:49 -0800)]
Add missing range checks to sopt_valsize for the linux emulated
setsockopt().

15 years agoDue to races clean blocks can remain cached, remove a conditional from
Matthew Dillon [Tue, 16 Dec 2008 17:46:57 +0000 (09:46 -0800)]
Due to races clean blocks can remain cached, remove a conditional from
the ffs_truncate3 panic.

Reported-by: sorry, I forgot.
15 years agoCleanup and enhance the vnodeinfo output.
Matthew Dillon [Tue, 16 Dec 2008 17:46:10 +0000 (09:46 -0800)]
Cleanup and enhance the vnodeinfo output.

15 years agoAdd a socketpair performance tester.
Matthew Dillon [Tue, 16 Dec 2008 17:44:57 +0000 (09:44 -0800)]
Add a socketpair performance tester.

15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
Matthew Dillon [Tue, 16 Dec 2008 17:40:20 +0000 (09:40 -0800)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into devel

15 years agoMake __fpending() take a const argument.
Matthew Dillon [Tue, 16 Dec 2008 17:31:42 +0000 (09:31 -0800)]
Make __fpending() take a const argument.

15 years agoReplace libpcap's pcap-bpf.h with system's net/bpf.h
Sepherosa Ziehau [Tue, 16 Dec 2008 14:26:58 +0000 (22:26 +0800)]
Replace libpcap's pcap-bpf.h with system's net/bpf.h

15 years agoRemove tcpcb.tt_msg == NULL tests in tcp_callout_*().
Sepherosa Ziehau [Tue, 16 Dec 2008 13:40:42 +0000 (21:40 +0800)]
Remove tcpcb.tt_msg == NULL tests in tcp_callout_*().

tcpcb.tt_msg == NULL could only happen for TCP listen sockets, while
for this kind of sockets, tcp timers should never be used.

Suggested-by: dillon@
15 years agoRestore the semantic of callout_active() testing on tcp timers.
Sepherosa Ziehau [Mon, 15 Dec 2008 14:29:35 +0000 (22:29 +0800)]
Restore the semantic of callout_active() testing on tcp timers.

Originally there is no time gap between the running of the tcp timer
handler and the deactivation of the tcp timer callout, but the message
based tcp timer has a time gap in between these two actions.  This
time gap affects the code path which depends on the current state of
the tcp timer, i.e. return value of callout_active(tcp_timer).  To
close this time gap, we take the pending and running tcp timer tasks
into consideration when testing the current state of the tcp timer.

Reviewed-by: dillon@
15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
Michael Neumann [Mon, 15 Dec 2008 23:11:24 +0000 (23:11 +0000)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly

15 years agoFix typo
Michael Neumann [Mon, 15 Dec 2008 23:09:33 +0000 (23:09 +0000)]
Fix typo

15 years agoRename a local function that conflicts with one in librpcsvc.
Peter Avalos [Mon, 15 Dec 2008 18:39:51 +0000 (10:39 -0800)]
Rename a local function that conflicts with one in librpcsvc.

15 years agoRemove superfluous shadow variable declaration
Michael Neumann [Mon, 15 Dec 2008 17:45:26 +0000 (17:45 +0000)]
Remove superfluous shadow variable declaration

15 years agoCosmetic changes (move assignment out of "if")
Michael Neumann [Mon, 15 Dec 2008 17:42:35 +0000 (17:42 +0000)]
Cosmetic changes (move assignment out of "if")

15 years agoFix typo (currenet -> current)
Michael Neumann [Mon, 15 Dec 2008 15:41:00 +0000 (15:41 +0000)]
Fix typo (currenet -> current)

15 years agoRemove unnecessary optimization.
Michael Neumann [Mon, 15 Dec 2008 00:46:58 +0000 (00:46 +0000)]
Remove unnecessary optimization.

The optimization (>> 9) will be automatically performed by the compiler.

15 years agoRemove some unnecessary casts.
Sascha Wildner [Sun, 14 Dec 2008 17:56:01 +0000 (18:56 +0100)]
Remove some unnecessary casts.

15 years agoAdjust the bt_gethostbyaddr(3) prototype to match gethostbyaddr(3).
Sascha Wildner [Sun, 14 Dec 2008 17:53:02 +0000 (18:53 +0100)]
Adjust the bt_gethostbyaddr(3) prototype to match gethostbyaddr(3).

15 years agoBring the prototype of gethostbyaddr(3) in line with the standard.
Sascha Wildner [Sun, 14 Dec 2008 17:50:21 +0000 (18:50 +0100)]
Bring the prototype of gethostbyaddr(3) in line with the standard.

http://www.opengroup.org/onlinepubs/009695399/functions/gethostbyname.html

15 years agoUse priority message for TCP timers
Sepherosa Ziehau [Sun, 14 Dec 2008 14:27:33 +0000 (22:27 +0800)]
Use priority message for TCP timers

15 years agoWhite space cleanup
Sepherosa Ziehau [Sun, 14 Dec 2008 10:47:31 +0000 (18:47 +0800)]
White space cleanup

15 years agoUse 32bit TX chain format on the platform or NIC which only supports
Sepherosa Ziehau [Sun, 14 Dec 2008 10:14:37 +0000 (18:14 +0800)]
Use 32bit TX chain format on the platform or NIC which only supports
32bit DMA buffer operation.

15 years agoSplit net/dlt.h out of net/bpf.h
Sepherosa Ziehau [Sun, 14 Dec 2008 06:30:08 +0000 (14:30 +0800)]
Split net/dlt.h out of net/bpf.h

Idea-from: NetBSD

15 years agoPull in libpcap's new DLTs
Sepherosa Ziehau [Sun, 14 Dec 2008 05:37:44 +0000 (13:37 +0800)]
Pull in libpcap's new DLTs

This commit targets using system net/bpf.h in libpcap instead of
libpcap's own pcap-bpf.h; mainly to make following code compile:
  #include <pcap.h>
  #include <net/bpf.h>

Reported-by: hasso@
Note:
As of this commit DLT_PFSYNC is changed to 18.  The original define
conflicts with libpcap's define and it looks like both libpcap,
NetBSD and OpenBSD use 18 as DLT_PFSYNC.  This may introduce compat
issue with dump files generated using DLT_PFSYNC before this change.

15 years agoSync ciss(4) with FreeBSD's RELENG_4 branch.
Sascha Wildner [Sat, 13 Dec 2008 08:49:26 +0000 (09:49 +0100)]
Sync ciss(4) with FreeBSD's RELENG_4 branch.

This adds support for many Smart Array controllers, fixes a couple of
bugs and cleans up some whitespace issues.

Note that hot-plugging does not seem to work yet.

Many thanks to Archimedes Gaviola <archimedes.gaviola@gmail.com> who
tested the patch on a HP ProLiant DL380 (Smart Array P400).

Taken-from: FreeBSD

15 years agoAdd ftw(), nftw(), associated header files and documentation.
Sascha Wildner [Fri, 12 Dec 2008 23:21:50 +0000 (00:21 +0100)]
Add ftw(), nftw(), associated header files and documentation.

It seems that security/prelude-manager in pkgsrc actually needs it.

Taken-from: FreeBSD
Tested-by: Rumko <rumcic@gmail.com>
15 years agoMerge branch 'misc'
Sascha Wildner [Fri, 12 Dec 2008 09:20:06 +0000 (10:20 +0100)]
Merge branch 'misc'

15 years agoSilence warnings and rearrange the includes a bit.
Sascha Wildner [Fri, 12 Dec 2008 09:16:38 +0000 (10:16 +0100)]
Silence warnings and rearrange the includes a bit.

15 years agoUse per-mount kmalloc pools for bulk data structures, particularly inodes
Matthew Dillon [Wed, 10 Dec 2008 23:42:40 +0000 (15:42 -0800)]
Use per-mount kmalloc pools for bulk data structures, particularly inodes
and records.

15 years agoAdd kmalloc_create() and kmalloc_destroy(), an API to dynamically create and
Matthew Dillon [Wed, 10 Dec 2008 19:30:12 +0000 (11:30 -0800)]
Add kmalloc_create() and kmalloc_destroy(), an API to dynamically create and
destroy kmmalloc pools.

15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
Matthew Dillon [Wed, 10 Dec 2008 18:30:26 +0000 (10:30 -0800)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into devel

15 years agoFix a buffer cache deadlock which can occur when simulated disk devices
Matthew Dillon [Wed, 10 Dec 2008 18:27:32 +0000 (10:27 -0800)]
Fix a buffer cache deadlock which can occur when simulated disk devices
(VN) are backed by a HAMMER file.  Do not call bwillwrite() via the
VN->VOP_WRITE->HAMMER path.

Add a new IO_RECURSE flag to identify paths for which bwillwrite() should
never be called.

Reported-by: Rumko <rumcic@gmail.com>
15 years agoDon't enable hardware timer simulated interrupt moderation on 8139C+.
Sepherosa Ziehau [Tue, 9 Dec 2008 12:05:19 +0000 (20:05 +0800)]
Don't enable hardware timer simulated interrupt moderation on 8139C+.
This at least unbreaks the qemu support.

Reported-by: walt <wa1ter@myrealbox.com>
15 years agoMerge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
Matthew Dillon [Mon, 8 Dec 2008 04:01:17 +0000 (20:01 -0800)]
Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into devel

15 years agoFix seg-fault in recent 'hammer cleanup' utility work.
Matthew Dillon [Mon, 8 Dec 2008 03:55:28 +0000 (19:55 -0800)]
Fix seg-fault in recent 'hammer cleanup' utility work.

Reported-by: Rumko <rumcic@gmail.com>
15 years agoAdd missing section number.
Sascha Wildner [Sun, 7 Dec 2008 15:22:55 +0000 (16:22 +0100)]
Add missing section number.

15 years agoImprove markup.
Sascha Wildner [Sun, 7 Dec 2008 01:34:16 +0000 (02:34 +0100)]
Improve markup.

15 years agoConstify the tip/sip parameters of arprequest/arprequest_async
Sepherosa Ziehau [Sat, 6 Dec 2008 09:10:24 +0000 (17:10 +0800)]
Constify the tip/sip parameters of arprequest/arprequest_async

15 years agoThe CVS ID isn't needed anymore.
Sascha Wildner [Fri, 5 Dec 2008 21:53:51 +0000 (22:53 +0100)]
The CVS ID isn't needed anymore.

15 years agoDeprecate MALLOC/FREE macros
Sepherosa Ziehau [Fri, 5 Dec 2008 14:09:51 +0000 (22:09 +0800)]
Deprecate MALLOC/FREE macros

15 years agoCorrect the reversed comparison logic
Sepherosa Ziehau [Fri, 5 Dec 2008 13:59:44 +0000 (21:59 +0800)]
Correct the reversed comparison logic

15 years agoDefer various TCP timer function from callout threads to TCP threads; mainly
Sepherosa Ziehau [Sun, 30 Nov 2008 08:56:16 +0000 (16:56 +0800)]
Defer various TCP timer function from callout threads to TCP threads; mainly
to avoid possible threading races, e.g. when output processing blocking the
current thread.  To save space, only one netmsg is used and is embedded in
tcpcb.  The timer functions needed to be carried out are indicated by the
tasks field in the netmsg.

Reviewed-by: dillon@
Discussed-with: dillon@
With-input-from: hsu@
Tested-by: hasso@
15 years agoDon't set max read request size on 10/100 only PCIe NICs.
Sepherosa Ziehau [Thu, 4 Dec 2008 04:11:25 +0000 (12:11 +0800)]
Don't set max read request size on 10/100 only PCIe NICs.
Setting max read request size to non-default value seems to cause these
kinds of NICs' DMA engine malfunction.

Reported-by: josepht@
Tested-by: josepht@
Based-on-patch-from: josepht@

15 years agoMake CIDR in "-net net gw mask" form work again.
Hasso Tepper [Thu, 4 Dec 2008 23:21:51 +0000 (01:21 +0200)]
Make CIDR in "-net net gw mask" form work again.

15 years agoSync termcap with FreeBSD preserving local changes.
Hasso Tepper [Wed, 3 Dec 2008 09:14:54 +0000 (11:14 +0200)]
Sync termcap with FreeBSD preserving local changes.

Fixes many bugs with TERM=xterm and screen.

Obtained-from: FreeBSD

15 years agoUpdate units(1) to allow conversion between degC and degF
Matthias Schmidt [Thu, 4 Dec 2008 14:10:23 +0000 (15:10 +0100)]
Update units(1) to allow conversion between degC and degF

This patch (in modified form from FreeBSD) rested for some time on
my disk, so I'll throw it in.  It allows conversion between Celsius
and Fahrenheit:

You have: 20 degC
You want: degF
68

Reminded-by: corecode@
15 years agoAdd CARP_IS_RUNNING() to test carp(4) iface's IFF_UP and IFF_RUNNING
Sepherosa Ziehau [Thu, 4 Dec 2008 10:35:13 +0000 (18:35 +0800)]
Add CARP_IS_RUNNING() to test carp(4) iface's IFF_UP and IFF_RUNNING

15 years agoRemove unused macro
Sepherosa Ziehau [Thu, 4 Dec 2008 10:14:29 +0000 (18:14 +0800)]
Remove unused macro

15 years agoMerge clearing IFF_UP and IFF_RUNNING
Sepherosa Ziehau [Thu, 4 Dec 2008 10:11:05 +0000 (18:11 +0800)]
Merge clearing IFF_UP and IFF_RUNNING

15 years agoUse in_cksum_{range,skip}()
Sepherosa Ziehau [Thu, 4 Dec 2008 10:05:51 +0000 (18:05 +0800)]
Use in_cksum_{range,skip}()
This is mainly used to avoid following code sequence:
  m->m_data += skip;
  in_cksum(m, len);
  m->m_data -= skip;

15 years agoDon't drag the host CCVER into the release build
Simon Schubert [Wed, 3 Dec 2008 23:20:05 +0000 (00:20 +0100)]
Don't drag the host CCVER into the release build

nrelease was defaulting WORLD_CCVER, which is passed as CCVER to buildworld
and KERNEL_CCVER, which is passed as CCVER to buildkernel, to CCVER.  However
the system makefiles set CCVER themselves, thus dragging their idea of the
default CCVER into the release build.

This commit should fix snapshots being built with gcc34 on chlamydia running 1.8-REL.

15 years agoRework carp_input()
Sepherosa Ziehau [Wed, 3 Dec 2008 13:18:59 +0000 (21:18 +0800)]
Rework carp_input()
- Use ip header length passed in
- Calculate minimal CARP packet size only once
- Nuke redundant mbuf length check and m_pullup()
- Use in_cksum_skip()
- Add comment
- Keep log message consistent with OpenBSD