]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agorevert removal of warning and K&R support
assar [Fri, 15 Jun 2001 23:07:59 +0000 (23:07 +0000)]
revert removal of warning and K&R support

Requested by: bde

23 years agonflag -> numeric_port. nflag is no more
assar [Fri, 15 Jun 2001 22:57:41 +0000 (22:57 +0000)]
nflag -> numeric_port.  nflag is no more

23 years agoThese were repo copied from their /sys/alpha/alpha counter parts.
obrien [Fri, 15 Jun 2001 22:55:50 +0000 (22:55 +0000)]
These were repo copied from their /sys/alpha/alpha counter parts.

23 years agoAdd CVS id.
obrien [Fri, 15 Jun 2001 22:54:33 +0000 (22:54 +0000)]
Add CVS id.

23 years agoThese were repo copied from their /sys/alpha/include counter parts.
obrien [Fri, 15 Jun 2001 22:43:09 +0000 (22:43 +0000)]
These were repo copied from their /sys/alpha/include counter parts.

23 years agoBump FreeBSD_version to indicate locale renaming
ache [Fri, 15 Jun 2001 22:40:10 +0000 (22:40 +0000)]
Bump FreeBSD_version to indicate locale renaming

23 years agoPrevious commit makes a minor change so socket-debug processing works the
gad [Fri, 15 Jun 2001 22:33:16 +0000 (22:33 +0000)]
Previous commit makes a minor change so socket-debug processing works the
same as it did before the IPv6 commit.  Probably irrelevent to freebsd,
but I think it was useful on other OS's.  Also makes a few minor style chgs.

Reviewed by: freebsd-print@bostonradio.org
MFC after: 1 week

23 years ago*** empty log message ***
gad [Fri, 15 Jun 2001 22:30:02 +0000 (22:30 +0000)]
*** empty log message ***

23 years agoRename a few global variables which hold hostname-related values to be
gad [Fri, 15 Jun 2001 22:03:07 +0000 (22:03 +0000)]
Rename a few global variables which hold hostname-related values to be
more sensible/understandable.  'from'->'from_host'  'host'->'local_host'
'fromb'->'frombuf'  'fromhost'->'origin_host'  and a local-variable
named 'host'->'hostbuf'.  This fixes some compile-time warnings about
local variables shadowing global variables.

Other than renaming variables, the only actual code changes are to call
strlcpy() instead of strncpy() when setting those (renamed) variables,
and that 'from_ip' is now a strdup()-created buffer instead of being a
static buffer compiled in as 1025 bytes.

Reviewed by: freebsd-print@bostonradio.org (an earlier version)
MFC after: 1 week

23 years agoI'm a dunce. Clean up some warnings by axeing some unused variables from
jhb [Fri, 15 Jun 2001 21:09:44 +0000 (21:09 +0000)]
I'm a dunce.  Clean up some warnings by axeing some unused variables from
the previous commit.

23 years agoDo not perform arp send/resolve on an interface marked NOARP.
jlemon [Fri, 15 Jun 2001 21:00:32 +0000 (21:00 +0000)]
Do not perform arp send/resolve on an interface marked NOARP.

PR: 25006
MFC after: 2 weeks

23 years agoPrint symbolic names for appletalk ports. Also some very minor style 9 issues.
imp [Fri, 15 Jun 2001 20:47:01 +0000 (20:47 +0000)]
Print symbolic names for appletalk ports.  Also some very minor style 9 issues.

PR: bin/4157
Submitted by: Denny Gentry <denny1@home.com>

23 years agoCorrectly hook up the write kqfilter to pipes.
jlemon [Fri, 15 Jun 2001 20:45:01 +0000 (20:45 +0000)]
Correctly hook up the write kqfilter to pipes.

Submitted by:  Niels Provos <provos@citi.umich.edu>

23 years agoUpdates and tweaks to the new trace functionality:
jhb [Fri, 15 Jun 2001 20:27:44 +0000 (20:27 +0000)]
Updates and tweaks to the new trace functionality:
- Use db_printf() instead of printf().
- Clean up decode_syscall() to use regular if-then-else rather than goto's.
- Use the same method of parsing PID's for per-process traces as the x86
  code does: that is, if the address passed in is not a valid kernel
  address, treat it is a decimal pid.
- If the pid of the current process is specified, fall back to using the
  "default" parameters for the trace as curproc's pcb is not valid at this
  point.

MFC after: 1 week

23 years agoTurn TCP and UDP hardware RX checksumming back on. jlemon pointed out where
wpaul [Fri, 15 Jun 2001 19:02:55 +0000 (19:02 +0000)]
Turn TCP and UDP hardware RX checksumming back on. jlemon pointed out where
I'd gone wrong before: we have to set csum_data to 0xffff, not 0.

23 years agoFix TX bug: when using TCP/IP checksum offload on TX, we tell the chip
wpaul [Fri, 15 Jun 2001 18:43:19 +0000 (18:43 +0000)]
Fix TX bug: when using TCP/IP checksum offload on TX, we tell the chip
we want the checksums calculated on a per-packet basis using control bits
in the extsts field of the DMA descriptor structure. For TX, the chip
seems to want these bits set in the field of the first descriptor in
a fragment chain, not the last.

23 years agoFirst round of netstat(1) cleanup.
ru [Fri, 15 Jun 2001 18:25:38 +0000 (18:25 +0000)]
First round of netstat(1) cleanup.

Removed the ambiguity in -s, -f, -p and -i flags handling.
Basically, there are four displays (except others):

1.  PCB display.
2.  Protocol statistics display. (-s)
3.  Interface statistics display. (-i)
4.  Per-interface protocol statistics display. (-i -s)

All of the above except 3) can be limited to a particular
protocol family (-f) or a single protocol (-p).

Some examples:

1.  netstat -f inet    -- show PCBs of all INET protocols
2.  netstat -p udp     -- show PCB of UDP protocol only (NEW!)
3.  netstat -s         -- show protocol statistics for all families
4.  netstat -s -f inet -- show INET protocols statistics
5.  netstat -s -p icmp -- show ICMP protocol statistics

This is a work in progress.  Manpage has been fixed slightly,
but is still incomplete.

23 years agoDe-credit myself in order to be consistent.
eivind [Fri, 15 Jun 2001 18:23:44 +0000 (18:23 +0000)]
De-credit myself in order to be consistent.
Also add a few more tips while I am here.

23 years agoLine up `netstat -rl' display.
ru [Fri, 15 Jun 2001 18:15:11 +0000 (18:15 +0000)]
Line up `netstat -rl' display.

23 years agoPort "x11-fonts/XFree86-4-fontLatin2" has been removed from the ports
olgeni [Fri, 15 Jun 2001 17:35:54 +0000 (17:35 +0000)]
Port "x11-fonts/XFree86-4-fontLatin2" has been removed from the ports
collection.

MFC after: 3 days

23 years agoRename global variable 'name' to 'progname', thus fixing a number of
gad [Fri, 15 Jun 2001 16:28:37 +0000 (16:28 +0000)]
Rename global variable 'name' to 'progname', thus fixing a number of
warnings which come up for various routines that have a parameter which
is also called 'name'.

Reviewed by: freebsd-print@bostonradio.org
MFC after: 1 week

23 years agoNew entry for rxvt.
schweikh [Fri, 15 Jun 2001 16:24:44 +0000 (16:24 +0000)]
New entry for rxvt.

PR: 28154
Submitted by: Giorgos Keramidas <charon@labs.gr>

23 years agoo The VOP_RDWR man page neglected to mention (at least) two error modes
rwatson [Fri, 15 Jun 2001 16:12:41 +0000 (16:12 +0000)]
o The VOP_RDWR man page neglected to mention (at least) two error modes
  possible when writing:

     [EFBIG]            An attempt was made to write a file that exceeds
                        the process's file size limit or the maximum file
                        size.

     [EPERM]            An append-only flag is set on the file, but the
                        caller is attempting to write before the current
                        end of file.

23 years agoCorrect the arg count after parsing a line with an unescaped # that isn't
brian [Fri, 15 Jun 2001 13:58:06 +0000 (13:58 +0000)]
Correct the arg count after parsing a line with an unescaped # that isn't
preceeded with whitespace.

MFC after: 3 weeks

23 years ago#if 0 out pfs_null() to silence the warning about it not being referenced.
des [Fri, 15 Jun 2001 12:30:46 +0000 (12:30 +0000)]
#if 0 out pfs_null() to silence the warning about it not being referenced.

23 years agoFix some typos.
olgeni [Fri, 15 Jun 2001 11:25:26 +0000 (11:25 +0000)]
Fix some typos.

MFC after: 1 week

23 years agoMore tips.
nik [Fri, 15 Jun 2001 10:47:30 +0000 (10:47 +0000)]
More tips.

Submitted by: David Scheidt <dscheidt@tumbolia.com>

23 years agoChange 93-11-XX for the FreeBSD 1.0 release to 93-11-01, based on this
nik [Fri, 15 Jun 2001 10:20:58 +0000 (10:20 +0000)]
Change 93-11-XX for the FreeBSD 1.0 release to 93-11-01, based on this
announcement from JKH (back when he was still working for Lotus)

    http://minnie.tuhs.org/cgi-bin/newsread?23150

This also means that if, as Microsoft say, Linux is a Cancer, FreeBSD is
a Scorpio.

23 years agooops. prepare_usermode() died in August 2000 in the MI and x86 code.
peter [Fri, 15 Jun 2001 09:59:27 +0000 (09:59 +0000)]
oops. prepare_usermode() died in August 2000 in the MI and x86 code.

Issue raised by: scottl

23 years agoAdd a new category of fortunes, 'freebsd-tips'. Useful hints, advice, and
nik [Fri, 15 Jun 2001 08:45:43 +0000 (08:45 +0000)]
Add a new category of fortunes, 'freebsd-tips'.  Useful hints, advice, and
pointers to areas of the system that might not be apparent on first
inspection.

23 years agoInclude a mention of WRKDIRPREFIX, useful when mounting /usr/ports readonly
nik [Fri, 15 Jun 2001 08:35:57 +0000 (08:35 +0000)]
Include a mention of WRKDIRPREFIX, useful when mounting /usr/ports readonly
from another host.

23 years agoBah, back out part of previous commit. I got too carried away.
peter [Fri, 15 Jun 2001 08:18:24 +0000 (08:18 +0000)]
Bah, back out part of previous commit. I got too carried away.
linux_debug_map[] is referred to from elsewhere.

23 years agoUnbreak OpenSSH for the KRB5-and-no-KRB4 case. Asking for KRB5 does
markm [Fri, 15 Jun 2001 08:12:31 +0000 (08:12 +0000)]
Unbreak OpenSSH for the KRB5-and-no-KRB4 case. Asking for KRB5 does
not imply that you want, need or have kerberosIV headers.

23 years agoFix warning:
peter [Fri, 15 Jun 2001 08:01:21 +0000 (08:01 +0000)]
Fix warning:
163: passing arg 4 of `resource_string_value' from incompatible pointer type

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 07:56:36 +0000 (07:56 +0000)]
Fix warnings:
585: warning: missing braces around initializer
605: warning: missing braces around initializer

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 07:53:20 +0000 (07:53 +0000)]
Fix warnings:
908: warning: long unsigned int format, unsigned int arg (arg 3)
887: warning: `timezero' defined but not used

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 07:50:54 +0000 (07:50 +0000)]
Fix warnings:
235: warning: unsigned int format, pointer arg (arg 3)
621: warning: cast discards qualifiers from pointer target type

23 years agoFix warning:
peter [Fri, 15 Jun 2001 07:48:21 +0000 (07:48 +0000)]
Fix warning:
239: warning: no previous prototype for `linux_debug'

23 years agoFix warning:
peter [Fri, 15 Jun 2001 07:46:18 +0000 (07:46 +0000)]
Fix warning:
413: warning: long unsigned int format, vm_offset_t arg (arg 2)

23 years agoFix warning:
peter [Fri, 15 Jun 2001 07:44:39 +0000 (07:44 +0000)]
Fix warning:
1973: warning: int format, long int arg (arg 5)

23 years agoFix warning:
peter [Fri, 15 Jun 2001 07:42:58 +0000 (07:42 +0000)]
Fix warning:
298: warning: assignment makes pointer from integer without a cast

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 07:39:12 +0000 (07:39 +0000)]
Fix warnings:
412: warning: long unsigned int format, unsigned int arg (arg 3)
418: warning: long unsigned int format, unsigned int arg (arg 3)
424: warning: long unsigned int format, unsigned int arg (arg 3)

23 years agoFix warning: 203: implicit declaration of function `kernel_sysctlbyname'
peter [Fri, 15 Jun 2001 07:37:01 +0000 (07:37 +0000)]
Fix warning: 203: implicit declaration of function `kernel_sysctlbyname'

23 years agoFix warning: (int/long mixup in printf)
peter [Fri, 15 Jun 2001 07:35:25 +0000 (07:35 +0000)]
Fix warning: (int/long mixup in printf)
475: warning: unsigned int format, long unsigned int arg (arg 3)

23 years agoFix warning. s/char/unsigned char/ in "(char *)eth"
peter [Fri, 15 Jun 2001 07:34:29 +0000 (07:34 +0000)]
Fix warning.  s/char/unsigned char/ in "(char *)eth"
294: warning: ethernet address is not type unsigned char *

23 years agoFix warning: 848: warning: label `nosupport' defined but not used
peter [Fri, 15 Jun 2001 07:33:09 +0000 (07:33 +0000)]
Fix warning: 848: warning: label `nosupport' defined but not used

23 years agoFix warning; remove unused variable
peter [Fri, 15 Jun 2001 07:32:25 +0000 (07:32 +0000)]
Fix warning; remove unused variable

23 years agoRemove unused variable
peter [Fri, 15 Jun 2001 07:31:15 +0000 (07:31 +0000)]
Remove unused variable

23 years agoFix some warnings in kern_environment.c. Make the getenv*() family
peter [Fri, 15 Jun 2001 07:29:17 +0000 (07:29 +0000)]
Fix some warnings in kern_environment.c.  Make the getenv*() family
take a const 'name', since they dont modify anything.
159: warning: passing arg 1 of `getenv_int' discards qualifiers...
167: warning: passing arg 1 of `getenv' discards qualifiers from pointer..

23 years agoFix warning: 186: warning: label `done' defined but not used
peter [Fri, 15 Jun 2001 07:26:39 +0000 (07:26 +0000)]
Fix warning: 186: warning: label `done' defined but not used

23 years agoremove most of the warnings
assar [Fri, 15 Jun 2001 01:53:05 +0000 (01:53 +0000)]
remove most of the warnings

23 years agoFix warning: 568: warning: `portal_badop' defined but not used
peter [Fri, 15 Jun 2001 00:38:03 +0000 (00:38 +0000)]
Fix warning: 568: warning: `portal_badop' defined but not used

23 years agoFix a stack of KAME netinet6/in6.h warnings:
peter [Fri, 15 Jun 2001 00:37:27 +0000 (00:37 +0000)]
Fix a stack of KAME netinet6/in6.h warnings:
592: warning: `struct mbuf' declared inside parameter list
595: warning: `struct ifnet' declared inside parameter list

23 years agoFix warning (exposed NetBSD code):
peter [Fri, 15 Jun 2001 00:32:07 +0000 (00:32 +0000)]
Fix warning (exposed NetBSD code):
94: warning: `ntfs_bmap' declared `static' but never defined

23 years agoFix warnings (mostly harmless, due to struct bio being embedded in buf):
peter [Fri, 15 Jun 2001 00:30:27 +0000 (00:30 +0000)]
Fix warnings (mostly harmless, due to struct bio being embedded in buf):
738: warning: passing arg 1 of `biodone' from incompatible pointer type
745: warning: passing arg 1 of `biodone' from incompatible pointer type

23 years agoFix warning: 552: warning: `fdesc_badop' defined but not used
peter [Fri, 15 Jun 2001 00:27:21 +0000 (00:27 +0000)]
Fix warning: 552: warning: `fdesc_badop' defined but not used

23 years agoFix warning: 128: warning: initialization makes pointer from integer
peter [Fri, 15 Jun 2001 00:26:41 +0000 (00:26 +0000)]
Fix warning: 128: warning: initialization makes pointer from integer
Note: this file has lots of #if __FreeBSD__ >= 4 etc which needs to be
changed to __FreeBSD_version >= 400000 etc.

23 years agoadd the option -S for printing port numbers symbolically but addresses
assar [Fri, 15 Jun 2001 00:25:44 +0000 (00:25 +0000)]
add the option -S for printing port numbers symbolically but addresses
numerically.  clean up the CFLAGS in Makefile.

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 00:23:11 +0000 (00:23 +0000)]
Fix warnings:
 vinumhdr.h:80: warning: redundant redeclaration of `vinum_cdevsw'
 vinumext.h:239: warning: previous declaration of `vinum_cdevsw'
in each of the following files:
 vinum.c, vinumconfig.c, vinumdaemon.c, vinuminterrupt.c, vinumio.c,
 vinumioctl.c, vinumlock.c, vinummemory.c, vinumraid5.c, vinumrequest.c,
 vinumrevive.c, vinumstate.c, vinumutil.c

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 00:19:43 +0000 (00:19 +0000)]
Fix warnings:
musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 3)
musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 4)
musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 3)
musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 4)
musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 5)
These warnings used to be confined to the alpha but are on all now.

23 years agoFix warning: 110: initialization makes pointer from integer without a cast
peter [Fri, 15 Jun 2001 00:16:59 +0000 (00:16 +0000)]
Fix warning: 110: initialization makes pointer from integer without a cast
This was passing a (d_kqfilter_t *)-1 as the kqfilter function pointer.
Fortunately there was no D_KQFILTER in d_flags, so this was harmless.

23 years agoFix warning: 193: warning: label `done' defined but not used
peter [Fri, 15 Jun 2001 00:13:54 +0000 (00:13 +0000)]
Fix warning: 193: warning: label `done' defined but not used

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 00:13:18 +0000 (00:13 +0000)]
Fix warnings:
554: passing arg 4 of `resource_string_value' from incompatible pointer type
576: passing arg 4 of `resource_string_value' from incompatible pointer type
593: passing arg 4 of `resource_string_value' from incompatible pointer type

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 00:10:30 +0000 (00:10 +0000)]
Fix warnings:
1831: warning: unused variable `noise'
1831: warning: unused variable `sig'

23 years agoFix warning: 179: warning: label `done' defined but not used
peter [Fri, 15 Jun 2001 00:09:28 +0000 (00:09 +0000)]
Fix warning: 179: warning: label `done' defined but not used

23 years agoFix warnings:
peter [Fri, 15 Jun 2001 00:07:27 +0000 (00:07 +0000)]
Fix warnings:
1267: warning: suggest parentheses around comparison in operand of &
2087: warning: unused variable `li'

23 years agoWarning fix: coda_fbsd.c:113: warning: unused variable `ret'
peter [Fri, 15 Jun 2001 00:02:27 +0000 (00:02 +0000)]
Warning fix: coda_fbsd.c:113: warning: unused variable `ret'

23 years agoTemporarily disable INTRO_USERCONFIG for the moment.
peter [Thu, 14 Jun 2001 23:48:13 +0000 (23:48 +0000)]
Temporarily disable INTRO_USERCONFIG for the moment.

Noted by:  Dave Cornejo <dave@dogwood.com>

23 years agoDon't hardcode in "/release/doc/"; instead, make it the default of a
dd [Thu, 14 Jun 2001 23:23:21 +0000 (23:23 +0000)]
Don't hardcode in "/release/doc/"; instead, make it the default of a
new RELN_ANCHOR variable.  It may be necessary to override this if the
path to the checked out release notes tree doesn't end with
"release/doc".

23 years agoIf we're not going to use am7990_shutdown, comment it all out.
mjacob [Thu, 14 Jun 2001 19:36:37 +0000 (19:36 +0000)]
If we're not going to use am7990_shutdown, comment it all out.

MFC after: 2 weeks

23 years agoFix Assembler buglet: Warning: .end directive names different symbol than .ent
mjacob [Thu, 14 Jun 2001 19:33:16 +0000 (19:33 +0000)]
Fix Assembler buglet: Warning: .end directive names different symbol than .ent

MFC after: 2 weeks

23 years agoNew release notes: New arp(8) keywords for proxy entries, new locale
bmah [Thu, 14 Jun 2001 18:46:26 +0000 (18:46 +0000)]
New release notes:  New arp(8) keywords for proxy entries, new locale
names, route(8) has better error messages, new route(8) host/bits
syntax, route(8) proxy-only published ARP entries, pkg_version(1) -s.

23 years agoWe've had problems with data corruption occuring on
mjacob [Thu, 14 Jun 2001 17:13:24 +0000 (17:13 +0000)]
We've had problems with data corruption occuring on
commands that complete (with no apparent error) after
we receive a LIP. This has been observed mostly on
Local Loop topologies. To be safe, let's just mark
all active commands as dead if we get a LIP and we're
on a private or public loop.

MFC after: 4 weeks

23 years agoNew release notes: orm(4), VM out-of-swap fixes, IPv6 update from
bmah [Thu, 14 Jun 2001 17:02:14 +0000 (17:02 +0000)]
New release notes:  orm(4), VM out-of-swap fixes, IPv6 update from
KAME, isp(4) Fibre Channel update, dump(8) -T doesn't gobble its
argument, libfetch authentication callback, libfetch HTTP_USER_AGENT,
install(1) -d -C generates a warning, du(1) -I

MFCs noted:  RFC 1323/1644 back-off.

23 years agoRestore -M -N support for -m.
ru [Thu, 14 Jun 2001 15:45:09 +0000 (15:45 +0000)]
Restore -M -N support for -m.

PR: 20808

23 years agoImplement a loadable module for the oltr Olicom Token Ring driver. I
joerg [Thu, 14 Jun 2001 15:16:04 +0000 (15:16 +0000)]
Implement a loadable module for the oltr Olicom Token Ring driver.  I
could only get a chance of testing it under 4.3, but together with the
if_oltr.c fixes at least it seems to work now.  If someone has the chance
to test this under -current, please do.

Unfortunaltey, the TR code itself (if_iso88025subr.c) is not written
in a way that would allow to make a seaparate KLD out of it.  By now,
just link it directly into the oltr KLD since it's probably the POLA
to be able to load the TR code together with the only TR hardware
driver we've got by now.

I've got one single unexplained panic (in doreti_switch or somewhere
there, calling a 0xc1XXXXXX address that did no longer belong to the
kernel at all) after unloading the modules once, thus i don't propose
a MFC of this module despite my testing has been done solely on 4.3,
unless someone is really going to test this stuff in -current.

23 years agoDo only call oltr_stop() if we are not already in OL_STOPPED state.
joerg [Thu, 14 Jun 2001 15:08:40 +0000 (15:08 +0000)]
Do only call oltr_stop() if we are not already in OL_STOPPED state.
This avoids a null pointer deref panic in TRlldClose() inside the
vendor-supplied object code.  It's now possible to unload the driver
at all.

Implement deallocation of malloc()ed memory regions.

MFC after: 2 months

23 years agoRemoved -h option.
ru [Thu, 14 Jun 2001 14:21:11 +0000 (14:21 +0000)]
Removed -h option.

23 years agoReally delete the -h option.
ru [Thu, 14 Jun 2001 14:15:41 +0000 (14:15 +0000)]
Really delete the -h option.

CSRG revision 5.33 deleted -h option from getopt(), but not
from usage().  Revision 8.3 restored it in getopt().

23 years agovarious locking fixes, rework open logic and channel registration
cg [Thu, 14 Jun 2001 13:31:30 +0000 (13:31 +0000)]
various locking fixes, rework open logic and channel registration

PR:             kern/28084

23 years agoCommented out USERCONFIG and VISUAL_USERCONFIG options.
nyan [Thu, 14 Jun 2001 11:32:54 +0000 (11:32 +0000)]
Commented out USERCONFIG and VISUAL_USERCONFIG options.

23 years agoRemoved unused files.
nyan [Thu, 14 Jun 2001 11:15:00 +0000 (11:15 +0000)]
Removed unused files.

23 years agoCorrect typo.
nyan [Thu, 14 Jun 2001 11:09:11 +0000 (11:09 +0000)]
Correct typo.

23 years agoMoved the wd33c93 specific file to sys/dev/ic.
nyan [Thu, 14 Jun 2001 11:05:48 +0000 (11:05 +0000)]
Moved the wd33c93 specific file to sys/dev/ic.

23 years agoRemove bogus include.
bp [Thu, 14 Jun 2001 11:05:01 +0000 (11:05 +0000)]
Remove bogus include.

23 years agoCoda do not call vop_defaultop(), so add nesessary calls for VM objects.
bp [Thu, 14 Jun 2001 09:28:30 +0000 (09:28 +0000)]
Coda do not call vop_defaultop(), so add nesessary calls for VM objects.

Submitted by: Greg Troxel <gdt@ir.bbn.com>
MFC after: 2 days

23 years agoDECR() macro still depended on -traditional-cpp behaviour.
ru [Thu, 14 Jun 2001 08:33:59 +0000 (08:33 +0000)]
DECR() macro still depended on -traditional-cpp behaviour.

Noticed by: bde

23 years agoStyle nits:
ru [Thu, 14 Jun 2001 06:08:02 +0000 (06:08 +0000)]
Style nits:

GBINDIR -> ORIGBINDIR
GBINGRP -> ORIGBINGRP

Submitted by: bde

23 years agoThe 3Com 3c505 has not been supported since 3.0.
dd [Thu, 14 Jun 2001 05:29:10 +0000 (05:29 +0000)]
The 3Com 3c505 has not been supported since 3.0.

PR: 28085
Submitted by: Jon Hamilton <hamilton@pobox.com>
References: rev. 1.209 of sys/i386/conf/files.i386

23 years agoSilence warnings and minor style fixes. Mostly constify and don't
dd [Thu, 14 Jun 2001 04:55:26 +0000 (04:55 +0000)]
Silence warnings and minor style fixes.  Mostly constify and don't
assume that time_t is a long.  Clamp down with WARNS=2.

Not objected to by: -audit

23 years agoStart the correct copy of named (pass ${named_program} to ndc(8)).
dd [Thu, 14 Jun 2001 04:34:40 +0000 (04:34 +0000)]
Start the correct copy of named (pass ${named_program} to ndc(8)).

PR: 27051
Submitted by: Maxim Konovalov <maxim@macomnet.ru>

23 years agoPass -a to dmesg(8).
dd [Thu, 14 Jun 2001 04:30:46 +0000 (04:30 +0000)]
Pass -a to dmesg(8).

PR: 26870
Submitted by: Tomonobu AKIMOTO <akimoto@xephion.ne.jp>

23 years agoThis program uses ndc(8); it doesn't send a signal itself.
dd [Thu, 14 Jun 2001 04:28:45 +0000 (04:28 +0000)]
This program uses ndc(8); it doesn't send a signal itself.

PR: 28104
Submitted by: Maxim Konovalov <maxim@macomnet.ru>

23 years agoPart 2 of gensetdefs de-orbit burn. linker sets are now self contained
peter [Thu, 14 Jun 2001 01:35:23 +0000 (01:35 +0000)]
Part 2 of gensetdefs de-orbit burn.  linker sets are now self contained
for ELF, see src/sys/linker_set.h log.

23 years agoAs per comments in sys/linker_set.h:
peter [Thu, 14 Jun 2001 01:28:56 +0000 (01:28 +0000)]
As per comments in sys/linker_set.h:

BANG! BANG! BANG! BANG! BANG! BANG! CLICK! CLICK! CLICK! CLICK! CLICK!
<reload>
BANG! BANG! BANG! BANG! BANG! BANG! CLICK! CLICK! CLICK! CLICK! CLICK!

23 years agoNuke old gensetdefs based linker sets with extreme prejudice
peter [Thu, 14 Jun 2001 01:23:57 +0000 (01:23 +0000)]
Nuke old gensetdefs based linker sets with extreme prejudice

23 years agoFix libpam's linker set stuff to use the new API (unbreak world), and get
peter [Thu, 14 Jun 2001 01:13:30 +0000 (01:13 +0000)]
Fix libpam's linker set stuff to use the new API (unbreak world), and get
rid of gensetdefs from here as well.

23 years agoRespect REPLYTO in mailrc.
mikeh [Thu, 14 Jun 2001 01:08:30 +0000 (01:08 +0000)]
Respect REPLYTO in mailrc.

PR: bin/8322
Submitted by: Philipp Mergenthaler <philipp.mergenthaler@stud.uni-karlsruhe.de>
MFC after: 2 weeks

23 years agoBuild on the change in revision 1.98 by Tor.Egge@fast.no.
mckusick [Wed, 13 Jun 2001 23:13:13 +0000 (23:13 +0000)]
Build on the change in revision 1.98 by Tor.Egge@fast.no.
The symptom being treated in 1.98 was to avoid freeing a
pagedep dependency if there was still a newdirblk dependency
referencing it. That change is correct and no longer prints
a warning message when it occurs. The other part of revision
1.98 was to panic when a newdirblk dependency was encountered
during a file truncation. This fix removes that panic and
replaces it with code to find and delete the newdirblk
dependency so that the truncation can succeed.

23 years agoConvert IIJ copyrights to BSD copyrights.
brian [Wed, 13 Jun 2001 21:52:19 +0000 (21:52 +0000)]
Convert IIJ copyrights to BSD copyrights.

Approved by: Toshiharu OHNO <tohno@sirius.ocn.ne.jp>