]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
20 years agoForced commit for rev. 1.26
mtm [Thu, 20 May 2004 12:04:17 +0000 (12:04 +0000)]
Forced commit for rev. 1.26

Bugfix: recursive mutex reference counting.

Noticed by:Michael Bretterklieber <mbretter@inode.at>
Partl Submitted by: deischen

20 years ago\16
mtm [Thu, 20 May 2004 11:55:04 +0000 (11:55 +0000)]
\16

20 years agoStylistic changes around the previous commit:
yar [Thu, 20 May 2004 11:04:09 +0000 (11:04 +0000)]
Stylistic changes around the previous commit:

- since the number of supported capabilities is growing,
  set bits in if_cap* in a consistent way;

- unexpand(1) leading SPACE characters.

20 years agoInform hier(7) manual page about /lib/geom/ directory.
pjd [Thu, 20 May 2004 11:02:58 +0000 (11:02 +0000)]
Inform hier(7) manual page about /lib/geom/ directory.

Reminded by: ru

20 years agoSet the VLAN bits in if_capenable as well as in if_capabilities
yar [Thu, 20 May 2004 10:57:33 +0000 (10:57 +0000)]
Set the VLAN bits in if_capenable as well as in if_capabilities
because VLAN hardware features are enabled in em(4) by default.

Note: Currently vlan(4) has a bug that it consults
if_capabilities, not if_capenable.  This will be fixed
after all the network drivers set VLAN bits in
if_capenable properly.

20 years ago- Teach CONCAT class how to talk with geom(8).
pjd [Thu, 20 May 2004 10:40:18 +0000 (10:40 +0000)]
- Teach CONCAT class how to talk with geom(8).
- Remove provider if any disk was lost.
- Dump CONCAT version.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years ago- Connect geom(8) and its libraries to the build.
pjd [Thu, 20 May 2004 10:37:13 +0000 (10:37 +0000)]
- Connect geom(8) and its libraries to the build.
- Connect geom_stripe and geom_nop modules to the build.
- Connect STRIPE and NOP classes to the LINT build.
- Disconnect gconcat(8) from the build.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years ago- Install includes used by STRIPE and NOP GEOM classes.
pjd [Thu, 20 May 2004 10:29:26 +0000 (10:29 +0000)]
- Install includes used by STRIPE and NOP GEOM classes.
- Create needed directories.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoModules Makefiles for geom_stripe and geom_nop.
pjd [Thu, 20 May 2004 10:27:20 +0000 (10:27 +0000)]
Modules Makefiles for geom_stripe and geom_nop.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoIntroduce geom(8)-specific shared libraries for CONCAT, STRIPE and NOP
pjd [Thu, 20 May 2004 10:24:23 +0000 (10:24 +0000)]
Introduce geom(8)-specific shared libraries for CONCAT, STRIPE and NOP
GEOM classes. CONCAT should be 100% compatible with existing gconcat(8)
utility, which is going to be removed.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoIntroduce STRIPE GEOM class. It implements RAID0 transformation and it
pjd [Thu, 20 May 2004 10:20:49 +0000 (10:20 +0000)]
Introduce STRIPE GEOM class. It implements RAID0 transformation and it
is intend to be fast. Just like CONCAT class it provides manual and
auto configuration methods.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoUpdate copyright years.
den [Thu, 20 May 2004 10:16:19 +0000 (10:16 +0000)]
Update copyright years.

20 years agoIntroduce NOP GEOM class. This is totally transparent GEOM class, but
pjd [Thu, 20 May 2004 10:15:53 +0000 (10:15 +0000)]
Introduce NOP GEOM class. This is totally transparent GEOM class, but
it is very useful for tests. One is able to destroy its provider
forcibly if wants to test how other class handle such events.
One is also able to specify failure probability to check how other
classes handle I/O errors.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoBring in geom(8) utility. It is an universal utility for operating on
pjd [Thu, 20 May 2004 10:09:56 +0000 (10:09 +0000)]
Bring in geom(8) utility. It is an universal utility for operating on
GEOM classes. It works by loading a shared library via dlopen(3) mechanism
with class-specific code, it is also responsible for communicating with
GEOM via libgeom(3).
Per-class shared libraries are going to be stored in /lib/geom/ directory.
It provides also few standard commands like 'list', 'load' and 'unload'
for existing classes which aren't aware of geom(8).
More info will be send on freebsd-current@ mailing list.

Supported by: Wheel - Open Technologies - http://www.wheel.pl

20 years agoForgot to bump the document date, *blush*.
ru [Thu, 20 May 2004 09:52:48 +0000 (09:52 +0000)]
Forgot to bump the document date, *blush*.

20 years agoDocument mbuf tags based on the OpenBSD manpage.
ru [Thu, 20 May 2004 09:34:19 +0000 (09:34 +0000)]
Document mbuf tags based on the OpenBSD manpage.

Submitted by: Gleb Smirnoff

20 years agoAdded forgotten quotes for citations.
schweikh [Thu, 20 May 2004 08:15:58 +0000 (08:15 +0000)]
Added forgotten quotes for citations.

20 years agoTypos and nits.
dannyboy [Thu, 20 May 2004 06:37:44 +0000 (06:37 +0000)]
Typos and nits.

20 years agoWhen checking for possible port theft, skip over a TCP inpcb
yar [Thu, 20 May 2004 06:35:02 +0000 (06:35 +0000)]
When checking for possible port theft, skip over a TCP inpcb
unless it's in the closed or listening state (remote address
== INADDR_ANY).

If a TCP inpcb is in any other state, it's impossible to steal
its local port or use it for port theft.  And if there are
both closed/listening and connected TCP inpcbs on the same
localIP:port couple, the call to in_pcblookup_local() will
find the former due to the design of that function.

No objections raised in: -net, -arch
MFC after: 1 month

20 years agoNits fixed.
kientzle [Thu, 20 May 2004 06:22:42 +0000 (06:22 +0000)]
Nits fixed.

Pointed out by: Daniel Harris

20 years agoDocument security.jail.getfsstatroot_only sysctl.
pjd [Thu, 20 May 2004 05:30:16 +0000 (05:30 +0000)]
Document security.jail.getfsstatroot_only sysctl.

Obtained from: rwatson's commit log
Approved by: rwatson

20 years agoFix sysctl name: security.jail.getfsstate_getfsstatroot_only ->
pjd [Thu, 20 May 2004 05:28:44 +0000 (05:28 +0000)]
Fix sysctl name: security.jail.getfsstate_getfsstatroot_only ->
security.jail.getfsstatroot_only.

Approved by: rwatson

20 years agoMore research, more shuffling and clarification.
kientzle [Thu, 20 May 2004 04:12:47 +0000 (04:12 +0000)]
More research, more shuffling and clarification.

20 years agoLike on i386, clear the last three entries in the pml4 page when doing a
peter [Wed, 19 May 2004 21:55:37 +0000 (21:55 +0000)]
Like on i386, clear the last three entries in the pml4 page when doing a
pmap_release(), and put it the free queue marked as already zeroed.

20 years agoFix a couple of warnings:
dwmalone [Wed, 19 May 2004 21:34:52 +0000 (21:34 +0000)]
Fix a couple of warnings:
1) Missing include for declaration of time conversion functions.
2) Avoid a couple of alignment warnings on 64 bit arches by memcpying the
   things pointed to by caddrs into variables of the right type.

Bump WARNS to 6 while I'm here.

20 years agoAdd missing %s so that all of the usage message gets printed.
dwmalone [Wed, 19 May 2004 21:06:36 +0000 (21:06 +0000)]
Add missing %s so that all of the usage message gets printed.
Bump WARNS to 6 while I'm here.

20 years agoSend RADIUS gigaword data when OctetsIn or OctetsOut go over UINT32_MAX.
dds [Wed, 19 May 2004 21:00:42 +0000 (21:00 +0000)]
Send RADIUS gigaword data when OctetsIn or OctetsOut go over UINT32_MAX.

PR: bin/61294
Submitted by: Boris Kovalenko
MFC after: 3 weeks

20 years agoAdd a man page for the kernel part of bpf. I made some edits to the
dwmalone [Wed, 19 May 2004 20:39:22 +0000 (20:39 +0000)]
Add a man page for the kernel part of bpf. I made some edits to the
man page after Orla, so the mistakes are probably mine. Leave a
note on the door welcoming the mdoc police.

Submitted by: Orla McGann <orly@cnri.dit.ie>

20 years agoImplement crashdump decoding for AMD64 as well, now that I have finally
peter [Wed, 19 May 2004 18:24:13 +0000 (18:24 +0000)]
Implement crashdump decoding for AMD64 as well, now that I have finally
got a sample to test against.

20 years agoStyle fixup in previous commit.
kensmith [Wed, 19 May 2004 18:06:21 +0000 (18:06 +0000)]
Style fixup in previous commit.

Noticed by: bde (thanks!)

20 years agoUpdate from vendor. This also adds support for newer management tools.
scottl [Wed, 19 May 2004 17:46:34 +0000 (17:46 +0000)]
Update from vendor.  This also adds support for newer management tools.

Submitted by: Achim Leubner

20 years agoWhen combining ustar prefix and name fields, check before adding a '/'
kientzle [Wed, 19 May 2004 17:09:24 +0000 (17:09 +0000)]
When combining ustar prefix and name fields, check before adding a '/'
character, as some tar implementations incorrectly include a '/' with
the prefix.

Thanks to: Divacky Roman for the UnixWare 7 tarfile that
demonstrated this issue.

20 years agoFixed the type of fptrdiff_t. It needs to be 64 bits in theory, and in
bde [Wed, 19 May 2004 16:19:11 +0000 (16:19 +0000)]
Fixed the type of fptrdiff_t.  It needs to be 64 bits in theory, and in
practice too since kernel addresses are almost 2^64 higher than most
user addresses.

20 years agoFixed some style bugs (mainly misalignment of backslashes).
bde [Wed, 19 May 2004 16:04:26 +0000 (16:04 +0000)]
Fixed some style bugs (mainly misalignment of backslashes).

20 years agoMoved most of the "MI" definitions and declarations from <machine/profile.h>
bde [Wed, 19 May 2004 15:41:26 +0000 (15:41 +0000)]
Moved most of the "MI" definitions and declarations from <machine/profile.h>
to <sys/gmon.h>.  Cleaned them up a little by not attempting to ifdef
for incomplete and out of date support for GUPROF in userland, as in
the sparc64 version.

20 years agoInclude <sys/gmon.h> instead of <machine/profile.h> for the declaration
bde [Wed, 19 May 2004 14:36:38 +0000 (14:36 +0000)]
Include <sys/gmon.h> instead of <machine/profile.h> for the declaration
of kmupetext().  The declaration is misplaced in <machine/profile.h>
since it is not MD and not related to the lowest level of profiling.
It will be moved, but getting it via <sys/gmon.h> already works.

20 years agoWhitespace nit.
ru [Wed, 19 May 2004 11:35:03 +0000 (11:35 +0000)]
Whitespace nit.

20 years agoMaintain statistics about the received frames.
ru [Wed, 19 May 2004 11:26:33 +0000 (11:26 +0000)]
Maintain statistics about the received frames.

20 years agoFix integer overflow in the file size output when dealing with
le [Wed, 19 May 2004 11:07:30 +0000 (11:07 +0000)]
Fix integer overflow in the file size output when dealing with
large files (i.e. DVD images).

Reviewed by:  des@

20 years agoAdded pgrep to the SYNOPSIS.
ru [Wed, 19 May 2004 10:46:56 +0000 (10:46 +0000)]
Added pgrep to the SYNOPSIS.
Fixed SYNOPSIS.
Fixed markup nits.

20 years agoClean up language and markup.
ru [Wed, 19 May 2004 10:45:40 +0000 (10:45 +0000)]
Clean up language and markup.

20 years agoLanguage and markup polishing.
ru [Wed, 19 May 2004 10:44:24 +0000 (10:44 +0000)]
Language and markup polishing.

20 years agoBumped the document date.
ru [Wed, 19 May 2004 09:54:14 +0000 (09:54 +0000)]
Bumped the document date.

20 years agoBumped the document date.
ru [Wed, 19 May 2004 09:53:41 +0000 (09:53 +0000)]
Bumped the document date.
Fixed the grammar nit.

20 years agoBumped document date.
ru [Wed, 19 May 2004 09:53:03 +0000 (09:53 +0000)]
Bumped document date.
Fixed markup nit.

20 years agoBumped document date.
ru [Wed, 19 May 2004 09:52:40 +0000 (09:52 +0000)]
Bumped document date.
Fixed the grammar nit.

20 years agoMarkup nits.
ru [Wed, 19 May 2004 09:51:58 +0000 (09:51 +0000)]
Markup nits.

20 years agoBumped document date.
ru [Wed, 19 May 2004 09:51:31 +0000 (09:51 +0000)]
Bumped document date.
Dealt with hard sentence breaks and whitespace at EOL.

20 years agoFixed document date.
ru [Wed, 19 May 2004 09:49:54 +0000 (09:49 +0000)]
Fixed document date.

20 years agoBumped document date.
ru [Wed, 19 May 2004 09:49:37 +0000 (09:49 +0000)]
Bumped document date.
Fixed a bunch of hyphen misspellings.
Fixed one warning.

20 years agoRestore part of the word that got (accidentally) removed.
ru [Wed, 19 May 2004 09:46:37 +0000 (09:46 +0000)]
Restore part of the word that got (accidentally) removed.
Removed whitespace at EOL.

20 years agoMarkup nits.
ru [Wed, 19 May 2004 09:45:46 +0000 (09:45 +0000)]
Markup nits.

20 years agoBumped document date.
ru [Wed, 19 May 2004 09:44:31 +0000 (09:44 +0000)]
Bumped document date.
Removed hard sentence break.

20 years agoAllow the location of the INDEX file to specified to pkg_version.
joe [Wed, 19 May 2004 09:18:08 +0000 (09:18 +0000)]
Allow the location of the INDEX file to specified to pkg_version.
This is particularly convenient on a cluster of machines to prevent
having to rebuild the INDEX file on each.

Reviewed by: portmgr

20 years agoI've recently been looking at the Seventh Edition source
kientzle [Wed, 19 May 2004 06:38:38 +0000 (06:38 +0000)]
I've recently been looking at the Seventh Edition source
code available at tuhs.org, and found out that my chronology
is a bit off.  In particular, Seventh Edition already used
the "linkflag" and "linkname" fields.  Also, it appears that
there was no tar in Sixth Edition, contrary to what an earlier
tar.1 manpage claimed.

A few mdoc fixes also crept in here.

20 years agoRefine the heuristic used to determine whether or not to obey
kientzle [Wed, 19 May 2004 06:35:47 +0000 (06:35 +0000)]
Refine the heuristic used to determine whether or not to obey
the size field for a hardlink entry.  Specifically, ensure that
we do obey the size field for archives that we know are pax interchange
format archives, as required by POSIX.

Also, clarify the comment explaining why this is necessary and explain
the (very unusual) conditions under which it might fail.

20 years agoMerge parser fix from vendor branch (rev 1.1.1.16)
des [Wed, 19 May 2004 06:21:56 +0000 (06:21 +0000)]
Merge parser fix from vendor branch (rev 1.1.1.16)

20 years agotrap_pfault() shouldn't be acquiring Giant. Found to blow up
grehan [Wed, 19 May 2004 06:05:42 +0000 (06:05 +0000)]
trap_pfault() shouldn't be acquiring Giant. Found to blow up
with MUTEX_PROFILING.

Submitted by:  Suleiman Souhlal <refugee@segfaulted.com>

20 years agoAdd explicit list of SiS AGP chipsets based on Linux kernel's list.
anholt [Wed, 19 May 2004 05:25:31 +0000 (05:25 +0000)]
Add explicit list of SiS AGP chipsets based on Linux kernel's list.

Prompted by: i386/59503

20 years agoRemove a long obsolete paragraph from the BUGS section.
alc [Wed, 19 May 2004 03:25:17 +0000 (03:25 +0000)]
Remove a long obsolete paragraph from the BUGS section.

20 years agoReplace the lame big endian crc with wpaul's standard big endian crc
imp [Wed, 19 May 2004 02:16:46 +0000 (02:16 +0000)]
Replace the lame big endian crc with wpaul's standard big endian crc
algorithm, supplied by wpaul himself.  The lame one has an origin
that's been called into question, so rather than argue about that (one
could make an excellent fair use argument), replace it with better
code since that's what FreeBSD is about.

Submitted by: wpaul[1], Klaus Klein

[1] Bill called this a silly bikeshed.  Maybe his is not incorrect.

20 years agoUnbreak builds without DDB. Bad Bruce! No cookie! :-)
peter [Wed, 19 May 2004 01:23:48 +0000 (01:23 +0000)]
Unbreak builds without DDB.  Bad Bruce! No cookie! :-)

20 years agoDefault is to restore timestamps, even when operating as root. <sigh>
kientzle [Wed, 19 May 2004 01:21:11 +0000 (01:21 +0000)]
Default is to restore timestamps, even when operating as root. <sigh>

20 years agosyncache broke rev 1.23 which was done to fix the "thundering herd"
ps [Wed, 19 May 2004 00:22:10 +0000 (00:22 +0000)]
syncache broke rev 1.23 which was done to fix the "thundering herd"
problem in Apache.  Fix it.

Reviewed by: peter

20 years agoFix a segfault when looking up a non-existent group.
kientzle [Tue, 18 May 2004 23:40:25 +0000 (23:40 +0000)]
Fix a segfault when looking up a non-existent group.

20 years agoThe 'call mcount' hooks that gcc inserts when profiling are in a place that
peter [Tue, 18 May 2004 22:52:32 +0000 (22:52 +0000)]
The 'call mcount' hooks that gcc inserts when profiling are in a place that
cannot handle the scratch registers being trashed.  So we have to preserve
them ourselves.

20 years agoFor amd64, explicitly compile mcount.po, rather than copying mcount.o. We
peter [Tue, 18 May 2004 22:49:15 +0000 (22:49 +0000)]
For amd64, explicitly compile mcount.po, rather than copying mcount.o.  We
need to compile it with -fno-omit-frame-pointers since the mcount code
depends on that, and by default it omits them without -pg.

20 years agoBump document date on behalf of the -e option.
ru [Tue, 18 May 2004 20:45:32 +0000 (20:45 +0000)]
Bump document date on behalf of the -e option.
Spell "ID" correctly.

20 years agoBump document date on behalf of the -E option.
ru [Tue, 18 May 2004 20:42:36 +0000 (20:42 +0000)]
Bump document date on behalf of the -E option.

20 years agoAdded -u to the SYNOPSIS.
ru [Tue, 18 May 2004 20:40:37 +0000 (20:40 +0000)]
Added -u to the SYNOPSIS.

20 years agoBump document date on behalf of the -u option.
ru [Tue, 18 May 2004 20:38:43 +0000 (20:38 +0000)]
Bump document date on behalf of the -u option.

20 years agoBump document date on behalf of the -M option.
ru [Tue, 18 May 2004 20:36:54 +0000 (20:36 +0000)]
Bump document date on behalf of the -M option.

20 years agoImprove the delay algorithm used in bgfsck. From the author:
scottl [Tue, 18 May 2004 19:51:41 +0000 (19:51 +0000)]
Improve the delay algorithm used in bgfsck.  From the author:

 shuffles the timing and sleep calls in bgfsck from:

 sleep timer_on io timer_off io io io io io io io
   to
 sleep io io io io io io io timer_on io timer_off

 The original method basically guaranteed that the timed I/O included a
 disk seek every time, which made bgfsck sleep for much longer than
 necessary.

Submitted by:   Dan Nelson
Reviewed by:    kirk

20 years ago"in in" is not always wrong (backout 1.18).
dannyboy [Tue, 18 May 2004 18:17:25 +0000 (18:17 +0000)]
"in in" is not always wrong (backout 1.18).

Keep the onion metaphor consistent.

20 years agoBe smarter about hardlink sizes: some tar programs write
kientzle [Tue, 18 May 2004 18:16:30 +0000 (18:16 +0000)]
Be smarter about hardlink sizes:  some tar programs write
a non-zero size but no body, some write a non-zero size and include
a body.  To distinguish these cases, look for a valid tar header immediately
following a hardlink header with non-zero size.

20 years agoBuild/install gprof on amd64 as well, after repocopying the MD bits.
peter [Tue, 18 May 2004 18:05:19 +0000 (18:05 +0000)]
Build/install gprof on amd64 as well, after repocopying the MD bits.
Not that it has anything to process yet, but that comes next.

20 years agoEffect the correct use of "affect".
dannyboy [Tue, 18 May 2004 17:50:08 +0000 (17:50 +0000)]
Effect the correct use of "affect".

Use em dashes instead of " - ".

Use .Em instead of *emphasis*.

Note that securing root indirectly (by securing staff accounts) works
only if direct root access has been limited. [1]

s/hacker/attacker, as done in the handbook. (inspired by [1])

PR: 52878 [1]
Submitted by: Brian Minard <bminard@flatfoot.ca> [1]

20 years agoAccept (but ignore) GNU tar's -B option. bsdtar never
kientzle [Tue, 18 May 2004 17:16:55 +0000 (17:16 +0000)]
Accept (but ignore) GNU tar's -B option.  bsdtar never
needs it, but it does no harm for people to specify it.

20 years agoUse the simpler __BUS_ACCESSOR macros for ivars instead of defining them
njl [Tue, 18 May 2004 16:53:29 +0000 (16:53 +0000)]
Use the simpler __BUS_ACCESSOR macros for ivars instead of defining them
ourselves.

20 years agoPressing 's' in the initial menu should result in selecting the 'Standard'
kensmith [Tue, 18 May 2004 16:18:04 +0000 (16:18 +0000)]
Pressing 's' in the initial menu should result in selecting the 'Standard'
installation as far as most people are concerned but both 'Standard' and
'Select' begin with S and 'Select' is winning.  This makes it so 'Select'
is not select-able using a keystroke but that is probably for the best
and the text on the screen adequately describes how to move back and forth
between 'Select' and 'Exit'.

Adapted from work by: josef@
PR: i386/37999
MFC after: 1 week

20 years ago<stdint.h> should define WINT_M{AX,IN} independent from whether WCHAR_MIN is
stefanf [Tue, 18 May 2004 16:04:57 +0000 (16:04 +0000)]
<stdint.h> should define WINT_M{AX,IN} independent from whether WCHAR_MIN is
defined.  Otherwise first including <wchar.h> and then <stdint.h> leads to no
WINT_M{AX,IN} at all.

PR: 64956
Approved by: das (mentor)

20 years agoDon't depend on NULL's expansion being a pointer, cast it before it is passed
stefanf [Tue, 18 May 2004 15:53:58 +0000 (15:53 +0000)]
Don't depend on NULL's expansion being a pointer, cast it before it is passed
to variadic functions.

Approved by: das (mentor)

20 years agoo Fix comments: s/m_tag_allocate/m_tag_alloc/.
maxim [Tue, 18 May 2004 14:13:23 +0000 (14:13 +0000)]
o Fix comments: s/m_tag_allocate/m_tag_alloc/.

Spotted by: Gleb Smirnoff
MFC after: 1 week

20 years agoRemove spurious semicolons.
stefanf [Tue, 18 May 2004 13:57:37 +0000 (13:57 +0000)]
Remove spurious semicolons.

Approved by: das (mentor)
Reviewed by: ipfw@

20 years agoAn access count change is a prerequisite for doing I/O, so
le [Tue, 18 May 2004 12:37:47 +0000 (12:37 +0000)]
An access count change is a prerequisite for doing I/O, so
change 'or' to 'and'.

Pointed out by:  pjd@

20 years agoThese hyphens don't need to be escaped.
le [Tue, 18 May 2004 12:36:12 +0000 (12:36 +0000)]
These hyphens don't need to be escaped.

Pointed out by:  pjd@

20 years agoFix spelling errors (I forgot that one in my last commit of GEOM man pages).
le [Tue, 18 May 2004 12:12:07 +0000 (12:12 +0000)]
Fix spelling errors (I forgot that one in my last commit of GEOM man pages).

20 years agoThe cp driver may be useful for pc98.
nyan [Tue, 18 May 2004 12:02:39 +0000 (12:02 +0000)]
The cp driver may be useful for pc98.

20 years agoMFi386: revision 1.1160.
nyan [Tue, 18 May 2004 11:56:56 +0000 (11:56 +0000)]
MFi386: revision 1.1160.

20 years agoMFi386: Add NETGRAPH_CRONYX.
nyan [Tue, 18 May 2004 11:56:24 +0000 (11:56 +0000)]
MFi386: Add NETGRAPH_CRONYX.

20 years agoMFi386: revision 1.492.
nyan [Tue, 18 May 2004 11:34:04 +0000 (11:34 +0000)]
MFi386: revision 1.492.

20 years agoUpdate several GEOM related manual pages:
le [Tue, 18 May 2004 11:33:37 +0000 (11:33 +0000)]
Update several GEOM related manual pages:

  *) Fix spelling errors.
  *) Better english.
  *) Re-phrasing.

Not Reviewed by:  pjd (one week timeout)
Approved by:      grog (mentor)

20 years agoNote about ng_sppp (4) driver.
rik [Tue, 18 May 2004 07:38:46 +0000 (07:38 +0000)]
Note about ng_sppp (4) driver.

20 years agoFix panic which occurs when given sector size for memory-backed device
pjd [Tue, 18 May 2004 07:30:04 +0000 (07:30 +0000)]
Fix panic which occurs when given sector size for memory-backed device
is less than DEV_BSIZE (512) bytes.

Reported by: Mike Bristow <mike@urgle.com>
Approved by: phk

20 years agoMarkup overhaul.
ru [Tue, 18 May 2004 07:23:37 +0000 (07:23 +0000)]
Markup overhaul.

20 years ago1. Remove '-' sign between model an manufacturer.
rik [Tue, 18 May 2004 07:12:06 +0000 (07:12 +0000)]
1. Remove '-' sign between model an manufacturer.
2. Add information about cp(4) driver (Cronyx Tau-PCI).

20 years agoAdd information about cp(4) driver (Cronyx Tau-PCI).
rik [Tue, 18 May 2004 06:48:27 +0000 (06:48 +0000)]
Add information about cp(4) driver (Cronyx Tau-PCI).

20 years agoct(4) now has manual page, so add reference to it.
rik [Tue, 18 May 2004 06:36:17 +0000 (06:36 +0000)]
ct(4) now has manual page, so add reference to it.

20 years agoFixed DDB_NOKLDSYM on amd64's:
bde [Tue, 18 May 2004 05:30:06 +0000 (05:30 +0000)]
Fixed DDB_NOKLDSYM on amd64's:

machdep.c:
Initialize the symbol table pointers, not quite like for other arches.

db_elf.c:
Don't claim to be an i486 in the fake ELF header.

20 years agoIf a symbol has section+offset definitions provided, always use instead
peter [Tue, 18 May 2004 05:15:43 +0000 (05:15 +0000)]
If a symbol has section+offset definitions provided, always use instead
of doing a name lookup for global symbols.  This fixes the snd_pcm module.