dragonfly.git
19 years agoReadd the $DragonFly$ Id tag which I removed by mistake in previous
Hiten Pandya [Wed, 28 Jul 2004 00:49:54 +0000 (00:49 +0000)]
Readd the $DragonFly$ Id tag which I removed by mistake in previous
revision.

19 years agoImport from NetBSD: `pgrep' and `pkill' utilities for finding and
Chris Pressey [Wed, 28 Jul 2004 00:41:47 +0000 (00:41 +0000)]
Import from NetBSD: `pgrep' and `pkill' utilities for finding and
signalling processes by name.

This initial commit brings in the following files directly from
NetBSD, unchanged except for the addition of $DragonFly$ ID tags:

$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
$NetBSD: pkill.1,v 1.8 2003/02/14 15:59:18 grant Exp $
$NetBSD: pkill.c,v 1.7 2004/02/15 17:03:30 soren Exp $

The next few commits will DragonFly-ize these files and hook them up
to the build.

Initially-requested-by: Munish Chopra <chopra at soulwax dot net>
Approved-by: dillon
19 years agoMajor cleanup of the base IPFilter:
Hiten Pandya [Wed, 28 Jul 2004 00:22:37 +0000 (00:22 +0000)]
Major cleanup of the base IPFilter:

o Vendor's ChangeLog available in src/contrib/ipfilter/HISTORY.

o Update kernel and userland to version 3.4.35, major changes:

    * only allow non-fragmented packets to influence whether or
      not a logged packet is the same as the one logged before.

    * block packets that fail to create stable entries.

    * correct the ICMP packet checksum fixing up when processing
      ICMP errors for NAT.

    * implement a maximum for the number of entries in the NAT
      table (NAT_TABLE_MAX and ipf_nattable_max).

    * frsynclist() wasn't paying attention to all places where
      interface names are, like it should.

    * fix comparison of ICMP packets with established TCP state
      where only 8 bytes of header are returned in the ICMP
      error.

o Following files were removed from under src/contrib/ipfilter,
  because they were redundant:

      fil.c ip_auth.c ip_auth.h ip_compat.h ip_fil.c ip_fil.h
      ip_frag.c ip_frag.h ip_ftp_pxy.c ip_log.c ip_nat.c
      ip_nat.h ip_proxy.c ip_proxy.h ip_raudio_pxy.c ip_rcmd_pxy.c
      ip_state.c ip_state.h ipl.h mlfk_ipl.c

o Cast interface numbers to u_int instead of u_char, so that
  big numbered units don't get truncated. More information on
  this problem can be found at FreeBSD GNATS, PR kern/64584.

o Compile INET6 support into ipfilter unless NOINET6 is defined
  as Make variable.

o Update $FreeBSD$ CVS ID tags.

o Adjust minor style(9) changes, like prototypes, etc.

Tested by David Rhodus, Chris Beuchler and Chris Pressey.

Reviewed-by: Darren Reed <darrenr@freebsd.org> (earlier version)
             Matthew Dillon <dillon@apollo.backplane.com>

19 years agorename functions that clash with reserved math procedures to avoid gcc3.4
Matthew Dillon [Tue, 27 Jul 2004 21:42:48 +0000 (21:42 +0000)]
rename functions that clash with reserved math procedures to avoid gcc3.4
built-in function conflicts.

19 years agorename exp() to expx() to avoid conflict with gcc-3.4 built-in.
Matthew Dillon [Tue, 27 Jul 2004 21:03:51 +0000 (21:03 +0000)]
rename exp() to expx() to avoid conflict with gcc-3.4 built-in.

19 years agoPatch out tcsh's use of 'exp2', which is math-reserved in gcc-3.4.
Matthew Dillon [Tue, 27 Jul 2004 21:01:44 +0000 (21:01 +0000)]
Patch out tcsh's use of 'exp2', which is math-reserved in gcc-3.4.

19 years agoBoot1 tries to clear boot2's BSS. It makes several assumptions that are
Matthew Dillon [Tue, 27 Jul 2004 19:37:19 +0000 (19:37 +0000)]
Boot1 tries to clear boot2's BSS.  It makes several assumptions that are
incorrect (or incorrect now), and doesn't really know how much BSS to clear
anyway.  Remove the BSS clearing code from boot1 and add BSS clearing code
to the boot2 (in particular, /usr/src/sys/boot/i386/btx/lib/btxcsu.S).

This should solve numerous issues including boot2 getting confused about
the default boot device file path.

Collapse some boot2 code to make it fit again.

Move the BOOT2 virtual origin (relative to the BTX client address space)
into bootasm.h, replace an undocumented hardwired BOOT2 origin calculation
(that was SIZ_PAG*2) with BOOT2_VORIGIN.   Replace the hardwired ORG2
constant in boot2's Makefile with code to pull BOOT2_VORIGIN out of the
header file.

19 years agoWe will need more resource-limiting compliance work done before these
David Rhodus [Tue, 27 Jul 2004 19:18:50 +0000 (19:18 +0000)]
We will need more resource-limiting compliance work done before these
interfaces can become POSIX compliant. Change back to old prototype.

19 years agoCorrect getpriority() and setpriority() function definitions to
David Rhodus [Tue, 27 Jul 2004 18:02:07 +0000 (18:02 +0000)]
Correct getpriority() and setpriority() function definitions to
match POSIX standard.

19 years agoCorrect line wrap.
David Rhodus [Tue, 27 Jul 2004 17:57:02 +0000 (17:57 +0000)]
Correct line wrap.

19 years agoKNF/style and warnings clean up. ANSI style prototype for printb(), and
Hiten Pandya [Tue, 27 Jul 2004 17:43:28 +0000 (17:43 +0000)]
KNF/style and warnings clean up.  ANSI style prototype for printb(), and
use the const specifier and correct types for the arguments, wherever
appropriate.

Remove an extra semi-colon.

19 years agoUse the correct header file, which is located in netproto/802_11.
Hiten Pandya [Tue, 27 Jul 2004 17:07:01 +0000 (17:07 +0000)]
Use the correct header file, which is located in netproto/802_11.

19 years agoMinor cleanups to bring us on-par with FreeBSD's cat(1):
Hiten Pandya [Tue, 27 Jul 2004 16:21:52 +0000 (16:21 +0000)]
Minor cleanups to bring us on-par with FreeBSD's cat(1):

    o change use of perror() into warn()
o move usage into a usage() function for consistency.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>

19 years agoKNF/style changes. Match scanfiles() function prototype with the rest
Hiten Pandya [Tue, 27 Jul 2004 16:12:38 +0000 (16:12 +0000)]
KNF/style changes.  Match scanfiles() function prototype with the rest
and remove main()'s prototype.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>

19 years agoAdd the ieee80211(9) API manual pages.
Hiten Pandya [Tue, 27 Jul 2004 14:50:56 +0000 (14:50 +0000)]
Add the ieee80211(9) API manual pages.

Obtained from FreeBSD with my modifications.

19 years agoRemove now obsolete header.
Joerg Sonnenberger [Tue, 27 Jul 2004 14:35:55 +0000 (14:35 +0000)]
Remove now obsolete header.

19 years agoRefer to netproto/802_11/ieee80211{.h,_ioctl.h} instead of net/if_ieee80211.h.
Joerg Sonnenberger [Tue, 27 Jul 2004 14:34:30 +0000 (14:34 +0000)]
Refer to netproto/802_11/ieee80211{.h,_ioctl.h} instead of net/if_ieee80211.h.

19 years agoUse netproto/802_11 includes instead of net/if_ieee80211.h.
Joerg Sonnenberger [Tue, 27 Jul 2004 14:30:10 +0000 (14:30 +0000)]
Use netproto/802_11 includes instead of net/if_ieee80211.h.
Remove if_wavelan_ieee.h, we only temporary need WI_CMD_DEBUG from it,
which isn't in the generic version.

19 years agoUse netproto/802_11 includes instead of net/if_ieee80211.h and
Joerg Sonnenberger [Tue, 27 Jul 2004 14:25:56 +0000 (14:25 +0000)]
Use netproto/802_11 includes instead of net/if_ieee80211.h and
dev/netif/wi/if_wavelan.h. Temporary include definitions for
ieee80211_nwkey and ieee80211_nwid wit the ioctl macros.

19 years agoUse netproto/802_11 includes instead of net/if_ieee80211.h
Joerg Sonnenberger [Tue, 27 Jul 2004 14:16:49 +0000 (14:16 +0000)]
Use netproto/802_11 includes instead of net/if_ieee80211.h

19 years agoUse netproto/802_11 includes instead of net/if_ieee80211.h.
Joerg Sonnenberger [Tue, 27 Jul 2004 14:06:14 +0000 (14:06 +0000)]
Use netproto/802_11 includes instead of net/if_ieee80211.h.

19 years agoUse netproto/802_11 includes, instead of net/if_ieee80211.h
Joerg Sonnenberger [Tue, 27 Jul 2004 13:56:50 +0000 (13:56 +0000)]
Use netproto/802_11 includes, instead of net/if_ieee80211.h

19 years agoRemove VAX conditionalized code.
Hiten Pandya [Tue, 27 Jul 2004 13:50:15 +0000 (13:50 +0000)]
Remove VAX conditionalized code.

19 years agoMake raycontrol(8) WARNS=6 safe by adding const and fixing a signed/unsigned
Joerg Sonnenberger [Tue, 27 Jul 2004 13:39:46 +0000 (13:39 +0000)]
Make raycontrol(8) WARNS=6 safe by adding const and fixing a signed/unsigned
comparision.

19 years agoRemove UIO_USERISPACE, we do not support any split instruction/data
Hiten Pandya [Tue, 27 Jul 2004 13:11:22 +0000 (13:11 +0000)]
Remove UIO_USERISPACE, we do not support any split instruction/data
address space machines such as the PDP-11.  It is not used anywhere
in the kernel.

Remove it from the manual page as well; the only place where it is
referenced now is the old 4.4BSD FS Interface doc which cannott be
changed.

Mostly obtained from FreeBSD -HEAD.

19 years ago- turn a strcpy into a strlcpy to avoid overflow
Joerg Sonnenberger [Tue, 27 Jul 2004 12:51:03 +0000 (12:51 +0000)]
- turn a strcpy into a strlcpy to avoid overflow
- if the byte string is too long, use errx, not err
- abort via call to usage(), if argument of 'W' doesn't contain ':'

Obtained-from: FreeBSD

19 years agoFix generation of opt_inet.h and opt_ipx.h by providing their targets
Hiten Pandya [Tue, 27 Jul 2004 12:33:01 +0000 (12:33 +0000)]
Fix generation of opt_inet.h and opt_ipx.h by providing their targets
respectively.

19 years agoAdd MOD_SHUTDOWN to be processed by the module event handling function.
Hiten Pandya [Tue, 27 Jul 2004 12:21:54 +0000 (12:21 +0000)]
Add MOD_SHUTDOWN to be processed by the module event handling function.

19 years agoGet rid of varargs.h.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 11:22:34 +0000 (11:22 +0000)]
Get rid of varargs.h.

19 years agoActually add the main file for Pentium 4 Thermal Control Circuit support.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 10:55:57 +0000 (10:55 +0000)]
Actually add the main file for Pentium 4 Thermal Control Circuit support.
Obtained from:          FreeBSD(from OpenBSD)
Submitted by:           Johannes Hofmann <Johannes.Hofmann@gmx.de>
Reminded by:            YONETANI Tomokazu <qhwt+dragonfly-commits@les.ath.cx>
OK'd by:                dillon
Feeling like an idiot:  asmodai

19 years agoGet rid of varargs.h.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 10:20:21 +0000 (10:20 +0000)]
Get rid of varargs.h.
Add $DragonFly$ where needed.

19 years agoAdd 802.11 include directory
Joerg Sonnenberger [Tue, 27 Jul 2004 08:43:41 +0000 (08:43 +0000)]
Add 802.11 include directory

19 years agoAdd 802.11 include directory
Joerg Sonnenberger [Tue, 27 Jul 2004 08:38:26 +0000 (08:38 +0000)]
Add 802.11 include directory

19 years agoAdd Pentium 4 Thermal Control Circuit support.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 08:09:56 +0000 (08:09 +0000)]
Add Pentium 4 Thermal Control Circuit support.
Enable by putting 'options CPU_ENABLE_TCC' in your kernel config.

Taken from: FreeBSD (which took it from OpenBSD)
Submitted by: Johannes Hofmann <Johannes.Hofmann@gmx.de>
OK'd by: dillon

19 years agoGet rid of varargs.h.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 07:59:10 +0000 (07:59 +0000)]
Get rid of varargs.h.
Add $DragonFly$ where needed.

19 years agoGet rid of the CFLAGS with traditional-cpp, it compiles fine without.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 07:41:03 +0000 (07:41 +0000)]
Get rid of the CFLAGS with traditional-cpp, it compiles fine without.

19 years agoGet rid of varargs.h.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 07:37:39 +0000 (07:37 +0000)]
Get rid of varargs.h.

19 years agoGet rid of varargs.h.
Jeroen Ruigrok/asmodai [Tue, 27 Jul 2004 07:22:14 +0000 (07:22 +0000)]
Get rid of varargs.h.

19 years agoStyle(9) cleanup:
Chris Pressey [Tue, 27 Jul 2004 01:24:28 +0000 (01:24 +0000)]
Style(9) cleanup:

- Remove some unneeded #define's and indent others properly.
- Convert K&R function definitions to ANSI.
- No functional changes.

Submitted-by: Tim Wickberg <me@k9mach.org>
19 years agoFix typo in Makefile syntax to unbreak the build. Top was being patched from /cvs...
Scott Ullrich [Mon, 26 Jul 2004 20:42:16 +0000 (20:42 +0000)]
Fix typo in Makefile syntax to unbreak the build.   Top was being patched from /cvs which would break the build process if /cvs did not exist.

Noticed-by: Many
Fixed-by: Simon 'corecode' Schubert
Reviewed-by: Chris Pressey

19 years agoPOSIX.1-2003: Changing the group ID is permitted to a process with an
David Rhodus [Mon, 26 Jul 2004 19:48:31 +0000 (19:48 +0000)]
POSIX.1-2003: Changing the group ID is permitted to a process with an
effective user ID of file, but without appropriate privileges, if and
only if owner is equal to the file's user ID or (uid_t)-1 and group is
equal either to the calling process effective group ID or to one of its
supplementary group IDs.

19 years agoImport generic 802.11 layer.
Joerg Sonnenberger [Mon, 26 Jul 2004 16:30:17 +0000 (16:30 +0000)]
Import generic 802.11 layer.

Choose netproto/802_11 instead of net80211 as source location.

Use token API instead mutexing. The locking heavenly depends on atomic
Operations and needs additional work.

Use POSIX int types.

Add dev/wi/if_wavelan_ieee.h as netproto/802_11/if_wavelan_ieee.h, since
this is used by all wireless interfaces and beside the variable and constant
naming mostly wi(4) indepedent.

Obtained-from: FreeBSD

19 years agoDon't use cast as lvalues.
Joerg Sonnenberger [Mon, 26 Jul 2004 16:03:23 +0000 (16:03 +0000)]
Don't use cast as lvalues.

19 years agoDon't cast lvalues.
Joerg Sonnenberger [Mon, 26 Jul 2004 15:59:48 +0000 (15:59 +0000)]
Don't cast lvalues.

19 years agoAdd macro to test for broadcast / multicast Ethernet addresses.
Joerg Sonnenberger [Mon, 26 Jul 2004 14:41:17 +0000 (14:41 +0000)]
Add macro to test for broadcast / multicast Ethernet addresses.

Obtained-from: NetBSD

19 years agoExtend the patch framework to handle non-compilable files. E.g. for
Joerg Sonnenberger [Mon, 26 Jul 2004 14:29:11 +0000 (14:29 +0000)]
Extend the patch framework to handle non-compilable files. E.g. for
a man page patch, no object file should be created.

This is done by using the extension .no_obj.patch.

Requested-by: corecode
19 years agoAesthetic changes:
Hiten Pandya [Mon, 26 Jul 2004 10:25:55 +0000 (10:25 +0000)]
Aesthetic changes:

* remove useless prototype for main()

* lint(1) comments

* add some whitespace between two lines

Submitted-by: Liam J. Foy <liamfoy@kerneled.org>
19 years agoUse stronger wording against using 'register' and '__P()'.
Jeroen Ruigrok/asmodai [Mon, 26 Jul 2004 06:35:31 +0000 (06:35 +0000)]
Use stronger wording against using 'register' and '__P()'.

19 years agoRemove stray fr_checkp() declaration.
Jeroen Ruigrok/asmodai [Mon, 26 Jul 2004 06:32:58 +0000 (06:32 +0000)]
Remove stray fr_checkp() declaration.

19 years agoMinor comment update.
Scott Ullrich [Mon, 26 Jul 2004 00:32:11 +0000 (00:32 +0000)]
Minor comment update.

Noticed-by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>

19 years agoAllow options BRIDGE to be defined without having to define options IPFILTER.
Scott Ullrich [Mon, 26 Jul 2004 00:20:59 +0000 (00:20 +0000)]
Allow options BRIDGE to be defined without having to define options IPFILTER.

Approved-by: dillon, hmp
Submitted-by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>
19 years agoAdd 'propolice' to the version string version_local.c sed patchup.
Matthew Dillon [Sun, 25 Jul 2004 18:29:54 +0000 (18:29 +0000)]
Add 'propolice' to the version string version_local.c sed patchup.

Suggested-by: Andreas Hauser <andy@splashground.de>
19 years agoMerge revision 1.8 and 1.9 from FreeBSD -CURRENT, i.e., add a section on
Hiten Pandya [Sun, 25 Jul 2004 16:17:31 +0000 (16:17 +0000)]
Merge revision 1.8 and 1.9 from FreeBSD -CURRENT, i.e., add a section on
maintaining a local branch.

Noticed-by: Maxim Konovalov <maxim@FreeBSD.org>
19 years agoMerge mdoc(7) corrections from FreeBSD -CURRENT.
Hiten Pandya [Sun, 25 Jul 2004 16:14:37 +0000 (16:14 +0000)]
Merge mdoc(7) corrections from FreeBSD -CURRENT.

19 years agoMove usched_debug out of the INVARIANTS conditional. Make it unconditional.
Matthew Dillon [Sat, 24 Jul 2004 20:37:04 +0000 (20:37 +0000)]
Move usched_debug out of the INVARIANTS conditional.  Make it unconditional.
Get rid of debug.sccount.

Note that the usched_debug stuff is temporary.

19 years agoMake fstat() account for pending direct-write data when run on a pipe.
Matthew Dillon [Sat, 24 Jul 2004 20:30:00 +0000 (20:30 +0000)]
Make fstat() account for pending direct-write data when run on a pipe.

Submitted-by: Hiten Pandya <hmp@freebsd.org>
Obtained-from: FreeBSD 1.172 (Mike Silbersack)

19 years agoHave DDBs 'ps' command display additional scheduler-related paramters
Matthew Dillon [Sat, 24 Jul 2004 20:27:19 +0000 (20:27 +0000)]
Have DDBs 'ps' command display additional scheduler-related paramters
to ease the debugging of the userland scheduler.

19 years agoAdjust gd_vme_avail after ensuring that sufficient entries exist rather
Matthew Dillon [Sat, 24 Jul 2004 20:25:47 +0000 (20:25 +0000)]
Adjust gd_vme_avail after ensuring that sufficient entries exist rather
then before.  This should solve a panic where the userland
vm_map_entry_reserve() was eating out of the kernel's reserve and causing
a recursive zalloc() to panic.

19 years agoUpdate the userland scheduler. Fix scheduler interactions which were
Matthew Dillon [Sat, 24 Jul 2004 20:21:35 +0000 (20:21 +0000)]
Update the userland scheduler.  Fix scheduler interactions which were
previously resulting in the wrong process sometimes getting a full 1/10
second slice, which under heavy load resulted in serious glitching.
Introduce a new dynamic 'p_interactive' heuristic and allow it to effect
priority +/- by a few nice levels.

With this patch batch operations such as buildworlds, setiathome should not
interfere with X / interactive operations as much as they did before.

Note that we are talking about the the userland scheduler here, not the
LWKT scheduler.  Also note that the userland scheduler needs a complete
rewrite.

19 years agoAdd missing va_end(ap);
Eirik Nygaard [Sat, 24 Jul 2004 19:50:42 +0000 (19:50 +0000)]
Add missing va_end(ap);

19 years agostyle(9) cleanup.
Eirik Nygaard [Sat, 24 Jul 2004 19:45:10 +0000 (19:45 +0000)]
style(9) cleanup.

Submitted by: Douwe Kiela <virtus@wanadoo.nl>
Small fixups by: me

19 years agoLast commit changed a NTOHL to ntohs, correct this.
Joerg Sonnenberger [Sat, 24 Jul 2004 13:00:09 +0000 (13:00 +0000)]
Last commit changed a NTOHL to ntohs, correct this.

Noticed-by: dillon
19 years agostyle(9) cleanup:
Eirik Nygaard [Sat, 24 Jul 2004 11:45:44 +0000 (11:45 +0000)]
style(9) cleanup:
Convert functions to ANSI C.

Submitted by: Douwe Kiela <virtus@wanadoo.nl> with some small changes by me.

19 years agoRemove a not needed main() definition.
Eirik Nygaard [Sat, 24 Jul 2004 10:47:10 +0000 (10:47 +0000)]
Remove a not needed main() definition.

19 years agoBump version number for the 1.1-CURRENT tree.
Jeroen Ruigrok/asmodai [Sat, 24 Jul 2004 09:51:18 +0000 (09:51 +0000)]
Bump version number for the 1.1-CURRENT tree.

19 years agoThe return-path is optional in a headline, therefore don't skip a message
Hiten Pandya [Sat, 24 Jul 2004 06:25:29 +0000 (06:25 +0000)]
The return-path is optional in a headline, therefore don't skip a message
if it is missing return-path.

Obtained from FreeBSD via Peter Avalos <pavalos@theshell.com>.

19 years agoEmulate __FreeBSD__ till 3rd party applications later add in DragonFly
David Rhodus [Fri, 23 Jul 2004 18:15:08 +0000 (18:15 +0000)]
Emulate __FreeBSD__ till 3rd party applications later add in DragonFly
tags or switch from GNU style builds.

19 years agoHook c99 up to the build for usr.bin.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 17:10:10 +0000 (17:10 +0000)]
Hook c99 up to the build for usr.bin.

19 years agoAdd the C99 utility, now that we have a decent C99 compiler in base, i.e.
Hiten Pandya [Fri, 23 Jul 2004 16:32:58 +0000 (16:32 +0000)]
Add the C99 utility, now that we have a decent C99 compiler in base, i.e.
GCC-3.4.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>

19 years agoRemove usage of NTOHS / NTOHL / HTONS / HTONL.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:14:30 +0000 (14:14 +0000)]
Remove usage of NTOHS / NTOHL / HTONS / HTONL.

Discussed-with: hmp

19 years agoComment out extra token at end of #endif.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:09:31 +0000 (14:09 +0000)]
Comment out extra token at end of #endif.

19 years agoInstead of casting the function, cast the argument to the (correct) type.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:07:46 +0000 (14:07 +0000)]
Instead of casting the function, cast the argument to the (correct) type.

19 years agoIt is 'estcpu', not 'setcpu'.
Hiten Pandya [Fri, 23 Jul 2004 13:19:42 +0000 (13:19 +0000)]
It is 'estcpu', not 'setcpu'.

19 years agoFix build with gcc34.
Eirik Nygaard [Fri, 23 Jul 2004 13:03:20 +0000 (13:03 +0000)]
Fix build with gcc34.

Reported by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>

19 years agoAdd RC4 to the crypto module / device. This will be used by the generic
Joerg Sonnenberger [Fri, 23 Jul 2004 11:54:14 +0000 (11:54 +0000)]
Add RC4 to the crypto module / device. This will be used by the generic
802.11 layer.

19 years agoRegenerate.
Joerg Sonnenberger [Fri, 23 Jul 2004 11:46:50 +0000 (11:46 +0000)]
Regenerate.

19 years agoSync with FreeBSD 5-CURRENT.
Joerg Sonnenberger [Fri, 23 Jul 2004 11:46:09 +0000 (11:46 +0000)]
Sync with FreeBSD 5-CURRENT.

19 years agoAdd WARNS and set to level 3.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 09:26:08 +0000 (09:26 +0000)]
Add WARNS and set to level 3.

19 years agoInitialise to NULL to silence gcc.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 09:24:00 +0000 (09:24 +0000)]
Initialise to NULL to silence gcc.

19 years agoMake the second argument of interval() const, since it is not changed
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:57:48 +0000 (07:57 +0000)]
Make the second argument of interval() const, since it is not changed
at all in its use.

19 years agoFix two sign comparison mistakes.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:43:26 +0000 (07:43 +0000)]
Fix two sign comparison mistakes.

Synchronises with: FreeBSD v1.15 with the notable exception of making
i an unsigned integer since it need not be negative
and casting nhosts (a size_t and thus unsigned) to
it is just the other way around and throws away half
of the type.  Granted, the chance that you have more
than 2147483647 hosts (if assuming 32 bit) is a bit
much, nonetheless, this is the right way to do it in
my opinion.

19 years agoUse proper ANSI function definitions.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:24:35 +0000 (07:24 +0000)]
Use proper ANSI function definitions.

Synchronises with: FreeBSD v1.15
Submitted by: Douwe Kiela <virtus@wanadoo.nl> (in principle)

19 years agoUnify the input handling of the low-level network stack by introducing
Joerg Sonnenberger [Fri, 23 Jul 2004 07:16:31 +0000 (07:16 +0000)]
Unify the input handling of the low-level network stack by introducing
a new field if_input in struct ifnet.

Initialize if_input and if_output in the low-level _ifattach routines.

Make the _output and _input routines static, they are now called via
(*ifp->if_input) and (*ifp->if_output) accordingly. The exception is
ether_input which is still used with the second argument, the pointer
to the Ethernet header instead of always taking it from the mbuf.

Move the if_attach and bpfattach from the devices into fddi_ifattach,
atm_ifattach.

Remove the first argument to VLAN_INPUT_TAG, the pointer to the
Ethernet header. Expect it at the beginning of the mbuf.

Adjust the network for the changed API. Exceptions are wl(4), le(4),
ie(4), el(4), ed(4) and de(4), because they use a on-stack Ethernet
header. Another exception is the ATM stack, which uses a fourth argument
to atm_input.

Inspired-by: NetBSd net/if.h, rev 1.36
19 years agoMove a perror() to warn().
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:12:28 +0000 (07:12 +0000)]
Move a perror() to warn().

Synchronises with: FreeBSD v1.29 (partially)
Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoUse err() instead of a perror()/exit() combination.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:11:03 +0000 (07:11 +0000)]
Use err() instead of a perror()/exit() combination.

Synchronises with: FreeBSD v1.52 (partially)
Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoAssorted spelling fixes from Christian Brueffer <brueffer@freebsd.org>.
Hiten Pandya [Fri, 23 Jul 2004 06:43:05 +0000 (06:43 +0000)]
Assorted spelling fixes from Christian Brueffer <brueffer@freebsd.org>.

19 years agoCorrect usage of the cvsup command.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 06:36:47 +0000 (06:36 +0000)]
Correct usage of the cvsup command.

Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoAdd new options to select different registries, basically synch'ing us
Hiten Pandya [Fri, 23 Jul 2004 06:29:27 +0000 (06:29 +0000)]
Add new options to select different registries, basically synch'ing us
with FreeBSD.

Document the newly added options in the manual page.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoRespect locale settings from the environment.
Hiten Pandya [Fri, 23 Jul 2004 06:24:27 +0000 (06:24 +0000)]
Respect locale settings from the environment.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoMechanically kill hard sentence breaks.
Hiten Pandya [Fri, 23 Jul 2004 06:23:06 +0000 (06:23 +0000)]
Mechanically kill hard sentence breaks.

Obtained from FreeBSD, via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoForced commit to note that this fixes was submitted by: "Liam J. Foy"
Eirik Nygaard [Thu, 22 Jul 2004 14:50:19 +0000 (14:50 +0000)]
Forced commit to note that this fixes was submitted by: "Liam J. Foy"
<liamfoy@sepulcrum.org>

19 years ago * Remove one of the two err.h include statements.
Eirik Nygaard [Thu, 22 Jul 2004 14:49:15 +0000 (14:49 +0000)]
 * Remove one of the two err.h include statements.
 * errx() adds it's own newline, remove the one in the string.

19 years agoFix compiler warnings; include <sys/types.h> and <netinet/in.h> to satisfy
Hiten Pandya [Thu, 22 Jul 2004 14:30:07 +0000 (14:30 +0000)]
Fix compiler warnings; include <sys/types.h> and <netinet/in.h> to satisfy
<arpa/inet.h> header file.

19 years agoInclude <sys/types.h> and <netinet/in.h>, so that parse.y gets the correct
Hiten Pandya [Thu, 22 Jul 2004 14:05:07 +0000 (14:05 +0000)]
Include <sys/types.h> and <netinet/in.h>, so that parse.y gets the correct
definitions; also fix compiler warnings.

19 years agoRaise WARNS to level 6.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:42:24 +0000 (13:42 +0000)]
Raise WARNS to level 6.

19 years agoMake usage() static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:42:06 +0000 (13:42 +0000)]
Make usage() static.

Found by: cscout

19 years agoRework the WARNS levels per FreeBSD's CURRENT source.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:41:25 +0000 (13:41 +0000)]
Rework the WARNS levels per FreeBSD's CURRENT source.
This introduces WARNS level 2, 3, and 5.
Tested with: GCC 2.95.4

19 years agoActually mark the function itself static as well.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:19:26 +0000 (13:19 +0000)]
Actually mark the function itself static as well.

19 years agoMark filescope functions static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:09:02 +0000 (13:09 +0000)]
Mark filescope functions static.

Found by: cscout

19 years agoMark the variables defined at file scope static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:56:58 +0000 (12:56 +0000)]
Mark the variables defined at file scope static.