]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoConstify.
Poul-Henning Kamp [Sun, 7 Apr 2002 09:58:28 +0000 (09:58 +0000)]
Constify.

Sponsored by: DARPA & NAI Labs.

22 years agoMFNetBSD:
Josef Karthauser [Sun, 7 Apr 2002 09:57:23 +0000 (09:57 +0000)]
MFNetBSD:
revision 1.142
date: 2001/10/25 02:08:13;  author: augustss;  lines: +14 -16
Change reset sequence to get status change bits set right on startup.

22 years agoMFNetBSD:
Josef Karthauser [Sun, 7 Apr 2002 09:52:49 +0000 (09:52 +0000)]
MFNetBSD:
revision 1.141
date: 2001/10/24 21:04:04;  author: augustss;  Exp;  lines: +20 -4
Some more paranoia tests when entering the interrupt routine.

22 years agoFirst version of the translation of the Security section
Sebastien Gioria [Sun, 7 Apr 2002 09:04:04 +0000 (09:04 +0000)]
First version of the translation of the Security section

22 years agoRemove a comment which relates to the old name cache code, which
David Malone [Sun, 7 Apr 2002 08:58:31 +0000 (08:58 +0000)]
Remove a comment which relates to the old name cache code, which
was replaced in 1997.

Approved by: phk

22 years agoA variable had been unnecessarily assigned a bogus value because gcc was
Garance A Drosehn [Sun, 7 Apr 2002 08:12:39 +0000 (08:12 +0000)]
A variable had been unnecessarily assigned a bogus value because gcc was
"confused" about it being unassigned.  In fact, gcc was right.  Fix the
real problem by setting that variable before break-ing out of a select
statement so gcc is happy, and then remove the unnecessary assignment.

Reported by: a user wondering why lpd syslog-ed about "compiler confusion"
MFC after: 12 days

22 years agoRename a variable from 'user' to 'userid' to avoid some compiler warnings.
Garance A Drosehn [Sun, 7 Apr 2002 08:01:42 +0000 (08:01 +0000)]
Rename a variable from 'user' to 'userid' to avoid some compiler warnings.

MFC after: 12 days

22 years agoAdd yet another ATA133 Promise chip.
Søren Schmidt [Sun, 7 Apr 2002 07:53:34 +0000 (07:53 +0000)]
Add yet another ATA133 Promise chip.

22 years agoRearrange all the error returns from sendfile() to make sure the original
Garance A Drosehn [Sun, 7 Apr 2002 07:48:32 +0000 (07:48 +0000)]
Rearrange all the error returns from sendfile() to make sure the original
input file and any temporary (filter) file are closed upon return, and
that is generally done at the end of the routine.  This should make it
easier for a later update (not yet written) to implement a "resend_copies"
option.

MFC after: 12 days

22 years agoReduce the duplication of code for error handling in _aio_aqueue().
Alan Cox [Sun, 7 Apr 2002 07:17:59 +0000 (07:17 +0000)]
Reduce the duplication of code for error handling in _aio_aqueue().

22 years agoLater versions of gcc object very strongly to the -C flag being passed
Peter Wemm [Sun, 7 Apr 2002 06:28:38 +0000 (06:28 +0000)]
Later versions of gcc object very strongly to the -C flag being passed
as -CC.  It makes no difference to gcc in the tree, but this change is
necessary for gcc-3.1 to work.

22 years agoAdd net/cvsup-without-gui and print/acroread4 to the disc3 package list.
Murray Stokely [Sun, 7 Apr 2002 06:03:33 +0000 (06:03 +0000)]
Add net/cvsup-without-gui and print/acroread4 to the disc3 package list.

22 years agoRe-arrange how output filters (of=) are handled for queues going to
Garance A Drosehn [Sun, 7 Apr 2002 05:37:27 +0000 (05:37 +0000)]
Re-arrange how output filters (of=) are handled for queues going to
remote machines.  Now they really are handled *exactly* the same as
input filters (if=) for remote queues, except that they are started
with a different set of parameters.  This should fix a few subtle
bugs in output-filter processing on such queues.  It is a pretty
significant re-arranging of sendfile(), moving some of it to a new
execfilter() routine.

PR: 36552
Reviewed by: no screams from freebsd-audit
MFC after: 12 days

22 years agoWhen checking the alternate superblock, we used to copy any fields
Kirk McKusick [Sun, 7 Apr 2002 05:16:33 +0000 (05:16 +0000)]
When checking the alternate superblock, we used to copy any fields
that might have changed, then did a byte-by-byte comparison with
the alternate. If any unused fields got used, they had to be added
to the exception list. Such changes caused too many false alarms.
So, I have changed the comparison algorithm to compare a selected
set of fields that are not expected to change. This new algorithm
causes far fewer false hits and still does a good job of detecting
problems when they have really occurred. In particular, this change
should ease the transition to kernels supporting UFS2 which make
some significant changes to the superblock.

Sponsored by: DARPA, NAI Labs

22 years agoerrx()/strerror() -> err()
Chris D. Faulhaber [Sun, 7 Apr 2002 04:59:13 +0000 (04:59 +0000)]
errx()/strerror() -> err()

22 years agoFix (for the second time) kvm_getprocs() for the case where no
Dima Dorfman [Sun, 7 Apr 2002 04:47:58 +0000 (04:47 +0000)]
Fix (for the second time) kvm_getprocs() for the case where no
processes match the given criteria.  Since revision 1.60 of malloc.c,
malloc() and friends return an invalid pointer when given a size of 0.
kvm_getprocs() uses sysctl() with a NULL oldp argument to get an
initial size, but does not check whether it's 0 before passing it to
realloc() (via _kvm_realloc()).  Before the aforementioned malloc()
change, this resulted in a minimal allocation made and a valid poitner
returned, but now results in an invalid, but non-NULL, pointer being
returned.  When this is passed to sysctl(), the latter returns EFAULT
(as it should).

22 years agoTurn on NO_WERROR due to namespace pollution in krb5 headers.
Dag-Erling Smørgrav [Sun, 7 Apr 2002 04:44:16 +0000 (04:44 +0000)]
Turn on NO_WERROR due to namespace pollution in krb5 headers.

22 years agoia64 depends on ACPICA on actual hardware. It might be worth having a
Peter Wemm [Sun, 7 Apr 2002 04:36:02 +0000 (04:36 +0000)]
ia64 depends on ACPICA on actual hardware.  It might be worth having a
seperate SKI config (like we had SIMOS for alpha).

22 years agoNow that we can thorougly self compile the kernel, stop hard coding the
Peter Wemm [Sun, 7 Apr 2002 04:34:21 +0000 (04:34 +0000)]
Now that we can thorougly self compile the kernel, stop hard coding the
cross compiler names.

22 years agoWe must not let install(1) strip loader.efi when installing it, or the
Peter Wemm [Sun, 7 Apr 2002 04:27:50 +0000 (04:27 +0000)]
We must not let install(1) strip loader.efi when installing it, or the
resulting binary will be damaged and no longer work.

22 years agoSet BINDIR
Peter Wemm [Sun, 7 Apr 2002 04:26:42 +0000 (04:26 +0000)]
Set BINDIR

22 years agoAdd loader bootforth infrastructure and install it.
Peter Wemm [Sun, 7 Apr 2002 04:25:45 +0000 (04:25 +0000)]
Add loader bootforth infrastructure and install it.

22 years agoFix a relocation bug in the ia64 ld.so. Weak function pointers in shared
Peter Wemm [Sun, 7 Apr 2002 04:16:35 +0000 (04:16 +0000)]
Fix a relocation bug in the ia64 ld.so.  Weak function pointers in shared
objects were not being correctly set to zero.  Instead, the function
descriptor pointer was set to the load address of the .so object.  This
caused gcc generated binaries to segfault on exit when crtbegin.asm's
_fini code tested the __cxa_finalize() function pointer for zero.

This is a bit of a hack because of a problem nearby workaround for
find_symdef and its quirks (failures) for local symbols.  This still
needs to be fixed.

22 years agoMinor style cleanup. Remove unneeded includes, and correct or add
Dima Dorfman [Sun, 7 Apr 2002 03:59:31 +0000 (03:59 +0000)]
Minor style cleanup.  Remove unneeded includes, and correct or add
some comments.

Reviewed by: bde

22 years agoAdd warning about collating order
Andrey A. Chernov [Sun, 7 Apr 2002 03:15:51 +0000 (03:15 +0000)]
Add warning about collating order

22 years agoFix this table, it was completely out of reasonable order
Andrey A. Chernov [Sun, 7 Apr 2002 02:52:11 +0000 (02:52 +0000)]
Fix this table, it was completely out of reasonable order

22 years agoAdd -lstdc++ to the link args for these C++ tools so that they can be
Peter Wemm [Sun, 7 Apr 2002 02:40:55 +0000 (02:40 +0000)]
Add -lstdc++ to the link args for these C++ tools so that they can be
compiled with gcc-3.1.  Somebody thought it was a good idea to move
the implementation of new and delete from libgcc to libstdc++.  This
change doesn't harm the current compiler in the tree.

22 years agoFix sed(1) in the case where a last line is specified and hold space is not
Juli Mallett [Sun, 7 Apr 2002 02:29:56 +0000 (02:29 +0000)]
Fix sed(1) in the case where a last line is specified and hold space is not
specified, and then the first part of the pattern space is deleted, when
there are two or more input lines, as this results in subtraction of one from
an unsigned integral value of '0'.  That bogus value is used in one case
for a loop (that will run far too many times in this case) and a function to
search for a value within a specified range of memory, however now the range
of memory is obscenely large and a segmentation fault will occur.  This is
fixed by checking for and appropriately handling a nil pattern space as if
the specified search in memory failed, as indeed it obviously will with nil
pattern space.

Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au>
PR: bin/34813
Reviewed by: mike
MFC after: 1 day

22 years agoBandaid for LP64 machines where 'warning: cast to pointer from different
Peter Wemm [Sun, 7 Apr 2002 01:44:24 +0000 (01:44 +0000)]
Bandaid for LP64 machines where 'warning: cast to pointer from different
sized integer' bites.  The various malloc functions return pointers,
but without any prototype/declarations visible to callers, the compiler
expects them to return int.

22 years agoChange jobref and *ijoblist from int to long in order to avoid
Alan Cox [Sun, 7 Apr 2002 01:28:34 +0000 (01:28 +0000)]
Change jobref and *ijoblist from int to long in order to avoid
a catastrophe after the 2^32nd AIO operation on 64-bit architectures.

22 years agoOriginal code bugfixed. This NOT touch old sorting order a bit.
Andrey A. Chernov [Sun, 7 Apr 2002 00:49:00 +0000 (00:49 +0000)]
Original code bugfixed. This NOT touch old sorting order a bit.

1) Remove \n from COPYRIGHT macro to shut up assembler warning
2) Fix struct sigaction initialization (arguments swap)
3) Fix out of bounds negative indexing for -R arg > 127
4) Remove doubled initialization of vars already initialized statically
5) Convert ctype macros char arg to u_char to prevents sign extension

22 years agoCorrection to rev 1.1's log:
David E. O'Brien [Sat, 6 Apr 2002 23:17:36 +0000 (23:17 +0000)]
Correction to rev 1.1's log:
Break some things out of Makefile.inc that are used by several parts of
the GCC 3.1 build -- including in ../lib.

22 years agoBreak some things used by the front-ends from Makefile.inc that cannot
David E. O'Brien [Sat, 6 Apr 2002 23:16:26 +0000 (23:16 +0000)]
Break some things used by the front-ends from Makefile.inc that cannot
be used build-wide for GCC 3.1.

22 years agoBuild and install collect2. This is needed for some C++ programs.
David E. O'Brien [Sat, 6 Apr 2002 23:12:46 +0000 (23:12 +0000)]
Build and install collect2.  This is needed for some C++ programs.

22 years agoBreak some things out of Makefile.inc that cannot be used build-wide
David E. O'Brien [Sat, 6 Apr 2002 22:37:19 +0000 (22:37 +0000)]
Break some things out of Makefile.inc that cannot be used build-wide
for GCC 3.1.

22 years agoIron out some obvious differences between NetBSD's and own version of
Josef Karthauser [Sat, 6 Apr 2002 22:06:16 +0000 (22:06 +0000)]
Iron out some obvious differences between NetBSD's and own version of
this file.

22 years agoShow that 'device.hints' is a filename
Udo Erdelhoff [Sat, 6 Apr 2002 21:57:38 +0000 (21:57 +0000)]
Show that 'device.hints' is a filename

22 years agoDefine away 'Static' when compiling with USB_DEBUG defined, to make it
Josef Karthauser [Sat, 6 Apr 2002 21:46:47 +0000 (21:46 +0000)]
Define away 'Static' when compiling with USB_DEBUG defined, to make it
easier to debug.

22 years agoUse the UE_GET_XFERTYPE macro.
Josef Karthauser [Sat, 6 Apr 2002 21:28:57 +0000 (21:28 +0000)]
Use the UE_GET_XFERTYPE macro.

22 years agoUse the new features of cdefs.h.
David E. O'Brien [Sat, 6 Apr 2002 21:09:31 +0000 (21:09 +0000)]
Use the new features of cdefs.h.

22 years agoAdd prototype for bootpc_init when BOOTP is defined.
Marcel Moolenaar [Sat, 6 Apr 2002 21:09:08 +0000 (21:09 +0000)]
Add prototype for bootpc_init when BOOTP is defined.

22 years agoMake the previous revision work a little bit better.
David E. O'Brien [Sat, 6 Apr 2002 21:08:59 +0000 (21:08 +0000)]
Make the previous revision work a little bit better.

22 years agoRemove some old unused cruft.
Josef Karthauser [Sat, 6 Apr 2002 21:03:49 +0000 (21:03 +0000)]
Remove some old unused cruft.

22 years agoFix style.
David E. O'Brien [Sat, 6 Apr 2002 21:03:33 +0000 (21:03 +0000)]
Fix style.

22 years agoAdd __SCCSID. And add the NO__SCCSID, NO__RCSID, NO__RCSID_SOURCE, and
David E. O'Brien [Sat, 6 Apr 2002 20:57:03 +0000 (20:57 +0000)]
Add __SCCSID.  And add the NO__SCCSID, NO__RCSID, NO__RCSID_SOURCE, and
NO__COPYRIGHT knobs to more easily deal with imported vendor sources.

22 years agoAnother step in merging our if_aue driver with NetBSD's.
Josef Karthauser [Sat, 6 Apr 2002 20:50:21 +0000 (20:50 +0000)]
Another step in merging our if_aue driver with NetBSD's.

22 years agoRename csr_{read,write}_* to cue_csr_{read,write}_*.
Josef Karthauser [Sat, 6 Apr 2002 20:24:25 +0000 (20:24 +0000)]
Rename csr_{read,write}_* to cue_csr_{read,write}_*.

22 years agoRemove old sort files to _actually_ build it from contrib sources
Andrey A. Chernov [Sat, 6 Apr 2002 20:22:06 +0000 (20:22 +0000)]
Remove old sort files to _actually_ build it from contrib sources

Forgotten by: des

22 years agoRename foo_gone to foo_dying, in keeping with the rest of the usb code.
Josef Karthauser [Sat, 6 Apr 2002 20:17:13 +0000 (20:17 +0000)]
Rename foo_gone to foo_dying, in keeping with the rest of the usb code.

22 years agoReplace device_t with device_ptr_t.
Josef Karthauser [Sat, 6 Apr 2002 19:55:52 +0000 (19:55 +0000)]
Replace device_t with device_ptr_t.

22 years agoRegenerate.
Josef Karthauser [Sat, 6 Apr 2002 19:35:00 +0000 (19:35 +0000)]
Regenerate.

22 years ago(forced) Previous log message should have read: set WARNS level to 4.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:32:37 +0000 (19:32 +0000)]
(forced) Previous log message should have read: set WARNS level to 4.

22 years ago(forced) Previous log message should have read: temporarily disconnect
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:32:09 +0000 (19:32 +0000)]
(forced) Previous log message should have read: temporarily disconnect
pam_passwdqc from build.

22 years agoAggressive cleanup of warnings + authtok-related code in preparation for
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:30:04 +0000 (19:30 +0000)]
Aggressive cleanup of warnings + authtok-related code in preparation for
PAMifying passwd(1).

Sponsored by: DARPA, NAI Labs.

22 years agoThis commit was generated by cvs2svn to compensate for changes in r93982,
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:28:08 +0000 (19:28 +0000)]
This commit was generated by cvs2svn to compensate for changes in r93982,
which included commits to RCS files with non-trunk default branches.

22 years agoMFOpenPAM: a slew of changes, mostly related to pam_get_authtok() (perforce
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:28:08 +0000 (19:28 +0000)]
MFOpenPAM: a slew of changes, mostly related to pam_get_authtok() (perforce
changes 9207, 9209, 9210, 9211, 9213, 9220)

Sponsored by: DARPA, NAI Labs

22 years agoDisconnect pam_passwdqc for now, it has some issues that need resolving.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:25:36 +0000 (19:25 +0000)]
Disconnect pam_passwdqc for now, it has some issues that need resolving.

22 years agoFix warnings.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:08:02 +0000 (19:08 +0000)]
Fix warnings.

Sponsored by: DARPA, NAI Labs

22 years agoRename a couple of local variables to avoid warnings.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 19:04:22 +0000 (19:04 +0000)]
Rename a couple of local variables to avoid warnings.

Sponsored by: DARPA, NAI Labs

22 years agoCorrect path for saver to reflect reality.
Jeroen Ruigrok van der Werven [Sat, 6 Apr 2002 18:02:52 +0000 (18:02 +0000)]
Correct path for saver to reflect reality.

Submitted by: Martin Faxer <gmh003532@brfmasthugget.se>

22 years agoAnother man page that can change as sendmail requirements change.
Gregory Neil Shapiro [Sat, 6 Apr 2002 17:53:06 +0000 (17:53 +0000)]
Another man page that can change as sendmail requirements change.

22 years agoAdd some additional sendmail related directories
Gregory Neil Shapiro [Sat, 6 Apr 2002 17:19:09 +0000 (17:19 +0000)]
Add some additional sendmail related directories

MFC after: 3 days

22 years agoNow, you can specify "" or "NONE" for ipv6_network_interfaces to
Hajimu UMEMOTO [Sat, 6 Apr 2002 15:15:43 +0000 (15:15 +0000)]
Now, you can specify "" or "NONE" for ipv6_network_interfaces to
prevent the interfaces from being initialized by /etc/rc.network6
wrongly.  So, you can explicitly initialize the interfaces by
/etc/pccard_ether.
With previous rc.network6, if you specify pccardd_flags="-z",
net.inet6.ip6.accept_rtadv was wronly set to 0, then RA was not
accepted.

22 years agoRemove a erroneous entry for HP 5400C.
Josef Karthauser [Sat, 6 Apr 2002 15:00:41 +0000 (15:00 +0000)]
Remove a erroneous entry for HP 5400C.

Spotted by: phk

22 years agoFix some style issues, a const warning, and abuse of PAM_ABORT.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 14:25:04 +0000 (14:25 +0000)]
Fix some style issues, a const warning, and abuse of PAM_ABORT.

Sponsored by: DARPA, NAI Labs

22 years agoBuild a working version of sort(1) from contrib. Use netbsd.h as a hack
Dag-Erling Smørgrav [Sat, 6 Apr 2002 13:59:43 +0000 (13:59 +0000)]
Build a working version of sort(1) from contrib.  Use netbsd.h as a hack
to avoid bringing the sources off the vendor branch just to #ifdef out
the RCS and SCCS IDs.

22 years agoThis commit was generated by cvs2svn to compensate for changes in r93968,
Dag-Erling Smørgrav [Sat, 6 Apr 2002 13:50:26 +0000 (13:50 +0000)]
This commit was generated by cvs2svn to compensate for changes in r93968,
which included commits to RCS files with non-trunk default branches.

22 years agoVirgin import of NetBSD's regression tests for sort(1).
Dag-Erling Smørgrav [Sat, 6 Apr 2002 13:50:26 +0000 (13:50 +0000)]
Virgin import of NetBSD's regression tests for sort(1).

22 years agoThis commit was generated by cvs2svn to compensate for changes in r93966,
Dag-Erling Smørgrav [Sat, 6 Apr 2002 13:49:43 +0000 (13:49 +0000)]
This commit was generated by cvs2svn to compensate for changes in r93966,
which included commits to RCS files with non-trunk default branches.

22 years agoVirgin import of NetBSD's sort(1) where it belongs.
Dag-Erling Smørgrav [Sat, 6 Apr 2002 13:49:43 +0000 (13:49 +0000)]
Virgin import of NetBSD's sort(1) where it belongs.

22 years agoFix a typo in the definition of HP1220C and add a quick entry for
Poul-Henning Kamp [Sat, 6 Apr 2002 13:28:02 +0000 (13:28 +0000)]
Fix a typo in the definition of HP1220C and add a quick entry for
broken bidir mode for at as well.

22 years agoRegenerate.
Josef Karthauser [Sat, 6 Apr 2002 13:07:05 +0000 (13:07 +0000)]
Regenerate.

22 years agoAdd some more printer devices:
Josef Karthauser [Sat, 6 Apr 2002 13:06:07 +0000 (13:06 +0000)]
Add some more printer devices:

  DeskJet 1220C from phk
  Scanjet 5400C from NetBSD
  Inkjet P-2000U from NetBSD

22 years agoSynchronise with NetBSD for order and formatting; no functional changes.
Josef Karthauser [Sat, 6 Apr 2002 13:01:39 +0000 (13:01 +0000)]
Synchronise with NetBSD for order and formatting; no functional changes.

22 years agoMerge fixes for dbtob() and btodb() from alpha/include/param.h. This stops
Doug Rabson [Sat, 6 Apr 2002 12:55:48 +0000 (12:55 +0000)]
Merge fixes for dbtob() and btodb() from alpha/include/param.h. This stops
ffs_snapshot() from using negative numbers for byte offsets in large file
systems.

22 years agoAdd a new vendor: MINOLTA, and some products by them.
Josef Karthauser [Sat, 6 Apr 2002 12:27:23 +0000 (12:27 +0000)]
Add a new vendor: MINOLTA, and some products by them.

Partially submitted by: asmodai

22 years ago* Correct a typo.
Murray Stokely [Sat, 6 Apr 2002 11:50:23 +0000 (11:50 +0000)]
* Correct a typo.
* Add an entry for /etc/pam.d.
* Update /usr/libdata/stallion description.

22 years agoPer discussion on current: Don't spam root with syslog messages.
Poul-Henning Kamp [Sat, 6 Apr 2002 11:22:01 +0000 (11:22 +0000)]
Per discussion on current: Don't spam root with syslog messages.

22 years agoPrint IFT_ETHER addresses with ether_ntoa(3) (with leading zeros).
Ruslan Ermilov [Sat, 6 Apr 2002 10:02:20 +0000 (10:02 +0000)]
Print IFT_ETHER addresses with ether_ntoa(3) (with leading zeros).

22 years agoPolish previous revision.
Ruslan Ermilov [Sat, 6 Apr 2002 09:54:17 +0000 (09:54 +0000)]
Polish previous revision.

22 years agoExpand the toolchain a little bit.
David E. O'Brien [Sat, 6 Apr 2002 09:35:06 +0000 (09:35 +0000)]
Expand the toolchain a little bit.

Requested by: fjoe (collect2), des (protoize)

22 years agoEnable isp and ispfw. Remove the nonexistant SUN_DISKLABEL and
Jake Burkholder [Sat, 6 Apr 2002 09:33:24 +0000 (09:33 +0000)]
Enable isp and ispfw.  Remove the nonexistant SUN_DISKLABEL and
ATA_ENABLE_BUSMATER.

22 years agoCorrect grammar(?) in comments.
Dima Dorfman [Sat, 6 Apr 2002 09:28:37 +0000 (09:28 +0000)]
Correct grammar(?) in comments.

PR: 36808
Submitted by: Andrew Boothman <andrew@cream.org>

22 years agoDon't reinvent the wheel now that ether_ntoa(3) has been fixed
Ruslan Ermilov [Sat, 6 Apr 2002 09:01:44 +0000 (09:01 +0000)]
Don't reinvent the wheel now that ether_ntoa(3) has been fixed
to print leading zeros in libc_net/ether_addr.c,v 1.13.

MFC after: 3 days

22 years agoRemove a stale comment.
Jake Burkholder [Sat, 6 Apr 2002 08:44:04 +0000 (08:44 +0000)]
Remove a stale comment.

22 years agoInclude machine/ktr.h for sparc64 so we pick up KTR_CPU.
Jake Burkholder [Sat, 6 Apr 2002 08:43:17 +0000 (08:43 +0000)]
Include machine/ktr.h for sparc64 so we pick up KTR_CPU.

22 years agoProvide an implementation of KTR_CPU that doesn't use pcpu, so we don't
Jake Burkholder [Sat, 6 Apr 2002 08:40:59 +0000 (08:40 +0000)]
Provide an implementation of KTR_CPU that doesn't use pcpu, so we don't
crash and burn if its not setup yet.  Add timestamp, cpu, and (fake) file
and line recording to the asm version of CTR.

22 years agoCorrect KINFO_PROC_SIZE for sparc64 due to segsz_t change.
Jake Burkholder [Sat, 6 Apr 2002 08:30:05 +0000 (08:30 +0000)]
Correct KINFO_PROC_SIZE for sparc64 due to segsz_t change.

22 years agosegsz_t needs to be 64bit for sparc64.
Jake Burkholder [Sat, 6 Apr 2002 08:29:18 +0000 (08:29 +0000)]
segsz_t needs to be 64bit for sparc64.

22 years agoMove ICU_* defines into icu.h.
Yoshihiro Takahashi [Sat, 6 Apr 2002 08:25:05 +0000 (08:25 +0000)]
Move ICU_* defines into icu.h.

22 years agoRemove pc98 code.
Yoshihiro Takahashi [Sat, 6 Apr 2002 08:22:33 +0000 (08:22 +0000)]
Remove pc98 code.

22 years agoRemove invalid KASSERTS.
Jake Burkholder [Sat, 6 Apr 2002 08:21:43 +0000 (08:21 +0000)]
Remove invalid KASSERTS.

22 years agoUse CTASSERT rather than a runtime check to detect kinfo_proc size changes.
Jake Burkholder [Sat, 6 Apr 2002 08:13:52 +0000 (08:13 +0000)]
Use CTASSERT rather than a runtime check to detect kinfo_proc size changes.
Remove the ugly yuck code to busy wait for 20 seconds.

22 years agoRemove types(5). It is of little use to have a manual with only the
Mike Barcroft [Sat, 6 Apr 2002 07:18:46 +0000 (07:18 +0000)]
Remove types(5).  It is of little use to have a manual with only the
contents of a header.  It is of even less use when its contents are
stale.

22 years agoFix misordered list.
Mike Barcroft [Sat, 6 Apr 2002 07:10:15 +0000 (07:10 +0000)]
Fix misordered list.

22 years agoAdd stdint(7), a manual which describes some of the integer types
Mike Barcroft [Sat, 6 Apr 2002 07:05:42 +0000 (07:05 +0000)]
Add stdint(7), a manual which describes some of the integer types
available in the <stdint.h> header.

22 years agoMerged from sys/dev/syscons/syscons.c revisions 1.381 and 1.382.
Yoshihiro Takahashi [Sat, 6 Apr 2002 06:47:23 +0000 (06:47 +0000)]
Merged from sys/dev/syscons/syscons.c revisions 1.381 and 1.382.

22 years agoMerged from sys/isa/fd.c revision 1.228.
Yoshihiro Takahashi [Sat, 6 Apr 2002 06:43:55 +0000 (06:43 +0000)]
Merged from sys/isa/fd.c revision 1.228.

22 years agoAdded the new kernel dumping support for pc98.
Yoshihiro Takahashi [Sat, 6 Apr 2002 06:41:54 +0000 (06:41 +0000)]
Added the new kernel dumping support for pc98.

22 years agoMerged from sys/dev/sio/sio.c revisions 1.370 and 1.371.
Yoshihiro Takahashi [Sat, 6 Apr 2002 06:19:10 +0000 (06:19 +0000)]
Merged from sys/dev/sio/sio.c revisions 1.370 and 1.371.