]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoadd -a to usage()
billf [Sat, 14 Jul 2001 21:56:04 +0000 (21:56 +0000)]
add -a to usage()

Submitted by: Ashley Penney <ashp@unloved.org>
MFC after: 3 days

23 years agoChange signal-handling to reset SIGCHLD to SIGDFLT instead of SIG_IGN.
gad [Sat, 14 Jul 2001 21:49:17 +0000 (21:49 +0000)]
Change signal-handling to reset SIGCHLD to SIGDFLT instead of SIG_IGN.
This fixes a problem with using print filters (if=, of=, etc) that showed
up in -current around June 20th.  That problem initially reported by
Georg-W Koltermann <gwk@sgi.com>, while most of the investigation that
led to this fix was done by Anton Berezin <tobez@FreeBSD.org>.

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

23 years agoFix MCOUNT_ENTER() so it actually compiles in the profiling case.
jhb [Sat, 14 Jul 2001 21:40:53 +0000 (21:40 +0000)]
Fix MCOUNT_ENTER() so it actually compiles in the profiling case.

Pointy hat to: me
Submitted by: Danny J. Zerkel <dzerkel@columbus.rr.com>

23 years agoFix reboot hangs that have happened with multiple processors
mjacob [Sat, 14 Jul 2001 21:37:57 +0000 (21:37 +0000)]
Fix reboot hangs that have happened with multiple processors
on Alpha 4100s.

Basically, if you're halting or you're rebooting, you should
tell all other processors to halt first. Define IPI_HALT- IPI_STOP
is not what we want for this purpose, which will call prom_halt(0)
on receipt.

The processor running the halt or reboot wil send an IPI_HALT to all
other processors, delay a bit, then continue to do what what it was
planning on doing (prom_halt({0|1})).

23 years agoMention the new behaviour of fdisk(8) (i386 only) to select the default
joerg [Sat, 14 Jul 2001 21:21:17 +0000 (21:21 +0000)]
Mention the new behaviour of fdisk(8) (i386 only) to select the default
device.

23 years agoMention new support for Cisco Aironet 350 series adaptors.
brooks [Sat, 14 Jul 2001 21:17:25 +0000 (21:17 +0000)]
Mention new support for Cisco Aironet 350 series adaptors.

23 years agoHrmpf. nyan's rev 1.25 commit to fdc.h crossed with my removal of it.
joerg [Sat, 14 Jul 2001 20:28:02 +0000 (20:28 +0000)]
Hrmpf.  nyan's rev 1.25 commit to fdc.h crossed with my removal of it.
Back-integrate his (PC98) changes into fd.c.

23 years agoYet another large non-function change.
joerg [Sat, 14 Jul 2001 20:25:01 +0000 (20:25 +0000)]
Yet another large non-function change.

. Integrate fdc.h into fd.c, with the removal of ft(4) there's no longer
  a reason to scatter things across two files.

. Sanitize comments.  Convert them into the style(9)-recommended
  multi-line form, make them sentences where apprpriate, etc.

. Declare all functions on top, and declare them in the order they
  appear in the file.  This order is totally chaotic, but Bruce
  convinced me that reordering the file wouldn't make it better either.

. Kill a `possibly uninitialized' warning (only seen with -O2) in
  fd_read_status().

. Make the comments at return (0|1) statements in fdstate() consistent.

. Nuke a ``keep the compiler happy'' dummy return at the end of fdstate(),
  gcc is smart enough to detect that it would never be reached anyway.

23 years agoRemoved whitespace at end-of-line; no content changes. I simply did
schweikh [Sat, 14 Jul 2001 19:41:16 +0000 (19:41 +0000)]
Removed whitespace at end-of-line; no content changes. I simply did
cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//'

BTW, what editors are the culprits? I'm using vim and it shows
me whitespace at EOL in troff files with a thick blue block...

Reviewed by: Silence from cvs diff -b
MFC after: 7 days

23 years agoFix a memory leak in __rpcb_findaddr(), avoid compiler warnings.
iedowse [Sat, 14 Jul 2001 18:18:23 +0000 (18:18 +0000)]
Fix a memory leak in __rpcb_findaddr(), avoid compiler warnings.

Submitted by: Martin Blapp <mb@imp.ch>

23 years agoThis is a selection of essentially cosmetic changes:
iedowse [Sat, 14 Jul 2001 17:46:52 +0000 (17:46 +0000)]
This is a selection of essentially cosmetic changes:
- Use '\0' for a char instead of NULL.
- Explicitly compare against the global `nullstring' to determine if
  a non-NULL uaddr is not malloc'd.
- Remove some unnecessary casting of the argument to free().
- In rpcbproc_callit_com(), move the freeing of m_uaddr to the
  cleanup code at the end of the function.
- To avoid confusion and  possible alignment problems, change
  netbufdup() to allocate the netbuf struct and the sockaddr buffer
  separately, and change netbuffree() accordingly. This makes it
  produce netbufs that are consistent with all other netbufs in
  rpcbind.

23 years agoFix a memory leak in check_bound() by freeing the buffer area of
iedowse [Sat, 14 Jul 2001 17:17:48 +0000 (17:17 +0000)]
Fix a memory leak in check_bound() by freeing the buffer area of
the netbuf before freeing the netbuf structure itself.

23 years agoAdd missing #include <stdio.h>.
iedowse [Sat, 14 Jul 2001 17:10:58 +0000 (17:10 +0000)]
Add missing #include <stdio.h>.

Fix an off-by-one error in logit() when determining if a procedure
number has a known name.

23 years agoSimplify to bitmaskcmp() to use the obvious approach instead of
iedowse [Sat, 14 Jul 2001 17:04:26 +0000 (17:04 +0000)]
Simplify to bitmaskcmp() to use the obvious approach instead of
comparing bit by bit.

Make the logic in in6_fillscopeid() match that in our ifconfig(8):
only set the scope ID if there is one in the address and none in
sin6_scope_id.

Correct a comment in network_init() that didn't make sense; it was
probably never updated after it was pasted from similar code in
addrmerge().

23 years agoUse snprintf instead of sprintf.
iedowse [Sat, 14 Jul 2001 16:54:37 +0000 (16:54 +0000)]
Use snprintf instead of sprintf.

23 years agoAvoid a harmless compiler warning, and add a missing \n to a
iedowse [Sat, 14 Jul 2001 16:32:44 +0000 (16:32 +0000)]
Avoid a harmless compiler warning, and add a missing \n to a
debugging fprintf.

Submitted by:   Martin Blapp <mb@imp.ch>

23 years agoAdd OPIE examples.
markm [Sat, 14 Jul 2001 08:46:56 +0000 (08:46 +0000)]
Add OPIE examples.

Tidy up columns.

Fix pam_wheel options.

23 years agoUse a better method of getting user credentials to account for
markm [Sat, 14 Jul 2001 08:42:39 +0000 (08:42 +0000)]
Use a better method of getting user credentials to account for
(legal) UID duplication.

Rename use_uid to auth_as_self for consistency with other modules.

23 years agoUse a better method to get user credentials to account for (legal)
markm [Sat, 14 Jul 2001 08:38:24 +0000 (08:38 +0000)]
Use a better method to get user credentials to account for (legal)
duplications of UID's in /etc/*passwd.

23 years agoSwitch on SHA1 hashing.
markm [Sat, 14 Jul 2001 08:34:26 +0000 (08:34 +0000)]
Switch on SHA1 hashing.

23 years agoFix SHA1 hashing.
markm [Sat, 14 Jul 2001 08:30:54 +0000 (08:30 +0000)]
Fix SHA1 hashing.

23 years agoUsse a better method to get a user's credentials, as uid's may be
markm [Sat, 14 Jul 2001 08:29:19 +0000 (08:29 +0000)]
Usse a better method to get a user's credentials, as uid's may be
legally duplicated.

Requested by: ache

23 years agoMove the hints gunk to a seperate file. It isn't really part of the
peter [Sat, 14 Jul 2001 08:25:18 +0000 (08:25 +0000)]
Move the hints gunk to a seperate file.  It isn't really part of the
newbus structure (no more than subr_rman.c is anyway).

23 years agoFixed conflict with sys/dev/syscons/syscons.h.
nyan [Sat, 14 Jul 2001 08:07:26 +0000 (08:07 +0000)]
Fixed conflict with sys/dev/syscons/syscons.h.

Submitted by: yokota

23 years agoMove fxp to the miibus section where it belongs.
dd [Sat, 14 Jul 2001 06:35:54 +0000 (06:35 +0000)]
Move fxp to the miibus section where it belongs.

23 years agoremember to set the return address in a message when
julian [Sat, 14 Jul 2001 05:51:33 +0000 (05:51 +0000)]
remember to set the return address in a message when
sending it along a hook.

PR: 27906
Submitted by: Harti Brandt <brandt@fokus.gmd.de>

no MFC as code is different in 4.x

23 years agoPut on my peril-sensitive sunglasses and remove the POLA-violating
peter [Sat, 14 Jul 2001 05:02:40 +0000 (05:02 +0000)]
Put on my peril-sensitive sunglasses and remove the POLA-violating
stealth hints loading.  'make release' has been fixed to not need this
now anyway.  If you want static hints, specify it explicitly.

Hey! Why did it suddenly get so dark??

23 years ago- Refine pc98 supports.
nyan [Sat, 14 Jul 2001 04:19:09 +0000 (04:19 +0000)]
- Refine pc98 supports.
- Use bus_space stuff.
- Rename FDO_* -> FDC_* (obtained from NetBSD/pc98)

23 years agoAdded epson_inw function.
nyan [Sat, 14 Jul 2001 04:14:29 +0000 (04:14 +0000)]
Added epson_inw function.

23 years agoMerged from the following changes.
nyan [Sat, 14 Jul 2001 03:26:02 +0000 (03:26 +0000)]
Merged from the following changes.

sys/dev/syscons/scvgarndr.c revision  1.11
sys/dev/syscons/scvtb.c     revision  1.8
sys/dev/syscons/syscons.c   revisions 1.361, 1.363, 1.364, 1.365 and 1.366
sys/isa/atkbd_isa.c         revision  1.9
sys/isa/syscons_isa.c       revision  1.17

23 years agoMerged from sys/i386/conf/GENERIC revision 1.313.
nyan [Sat, 14 Jul 2001 02:45:53 +0000 (02:45 +0000)]
Merged from sys/i386/conf/GENERIC revision 1.313.

23 years agoAdded (commented out) audio driver.
nyan [Sat, 14 Jul 2001 02:44:51 +0000 (02:44 +0000)]
Added (commented out) audio driver.

23 years agoMerged from sys/conf/options.i386 revision 1.150.
nyan [Sat, 14 Jul 2001 02:43:52 +0000 (02:43 +0000)]
Merged from sys/conf/options.i386 revision 1.150.

23 years agoCatch up with NetBSD/pc98.
non [Sat, 14 Jul 2001 00:38:51 +0000 (00:38 +0000)]
Catch up with NetBSD/pc98.
o Much cleanly separate NetBSD(XS) / FreeBSD(CAM) codes.
o Improve tagged queing support (full QTAG).
o Improve quirk support.
o Improve parity error retry.
o Impliment wide negotheation.
o Cmd link support.
o Add copyright of CAM part.
o Change for CAM_NEW_TRAN_CODE.
o Work around for buggy KME UJDCD450.

o stg: add disconnet condition.
o nsp: use suspend I/O.
and more. I thank Honda-san.

conf/options.pc98: add CT_USE_RELOCATE_OFFSET and CT_BUS_WEIGHT
dev/{ct,ncv,nsp,stg}/*_{pccard,isa}.c: add splcam() before calling
        attach/detach functions.

Tested by: bsd-nomads
Obtained from:  NetBSD/pc98

23 years agoGo back to having either static OR dynamic hints, with fallback
peter [Sat, 14 Jul 2001 00:23:10 +0000 (00:23 +0000)]
Go back to having either static OR dynamic hints, with fallback
support.  Trying to fix the merged set where dynamic overrode
static was getting more and more complicated by the day.

This should fix the duplicate atkbd, psm, fd* etc in GENERIC.  (which
paniced the alpha, but not the i386)

23 years agoMerge with latest version of the Mylex 6+ driver.
msmith [Sat, 14 Jul 2001 00:12:23 +0000 (00:12 +0000)]
Merge with latest version of the Mylex 6+ driver.

 - All sources are built in a single object, reducing namespace pollution.
 - Kill the ready queue, and handle a busy response to mly_start in callers
   rather than deferring the command.
 - Improve our interaction with CAM:
   - Don't advertise physical channels as SCSI busses by default.
   - use the SIM queue freeze capability rather than queueing CDBs internally.
   - force bus reprobe at module load time.
 - Clean up more resources in mly_free.
 - Tidy up debugging levels.
 - Tidy up handling of events (mostly just code cleanliness).
 - Use explanatory macros for operations on bus/target/channel numbers.

23 years agoRemove the old machine symlink first.
peter [Sat, 14 Jul 2001 00:03:05 +0000 (00:03 +0000)]
Remove the old machine symlink first.

23 years agoMAPS is becoming a subscription (fee based) service, warn users
gshapiro [Fri, 13 Jul 2001 21:51:28 +0000 (21:51 +0000)]
MAPS is becoming a subscription (fee based) service, warn users
ORBS is gone

MFC after: 1 day

23 years agoReturn a locked struct buf from ufsdirhash_lookup() to avoid one
iedowse [Fri, 13 Jul 2001 20:50:38 +0000 (20:50 +0000)]
Return a locked struct buf from ufsdirhash_lookup() to avoid one
extra getblk/brelse sequence for each lookup. We already had this
buf in ufsdirhash_lookup(), so there was no point in brelse'ing it
only to have the caller immediately reaquire the same buffer.

This should make the case of sequential lookups marginally faster;
in my tests, sequential lookups with dirhash enabled are now only
around 1% slower than without dirhash.

23 years agoMarkup fixes: Move <screen></screen> and <programlisting></programlisting>
bmah [Fri, 13 Jul 2001 20:16:43 +0000 (20:16 +0000)]
Markup fixes:  Move <screen></screen> and <programlisting></programlisting>
outside <para></para>.  Some other minor adjustments around <screen></screen>
tags.

Discussed on: -doc (in the context of doc/)

23 years agoFixed double word typo.
schweikh [Fri, 13 Jul 2001 20:11:43 +0000 (20:11 +0000)]
Fixed double word typo.
MFC after: 7 days

23 years agoI really should have just commented out this intire file vs. removing all
obrien [Fri, 13 Jul 2001 18:45:06 +0000 (18:45 +0000)]
I really should have just commented out this intire file vs. removing all
the contents.  One may still want the contents as reference for creating
/boot/device.hints.

23 years agoBump net.inet.tcp.sendspace to 32k and net.inet.tcp.recvspace to 65k.
obrien [Fri, 13 Jul 2001 18:38:04 +0000 (18:38 +0000)]
Bump net.inet.tcp.sendspace to 32k and net.inet.tcp.recvspace to 65k.
This should help us in nieve benchmark "tests".

It seems a wide number of people think 32k buffers would not cause major
issues, and is in fact in use by many other OS's at this time.  The
receive buffers can be bumped higher as buffers are hardly used and several
research papers indicate that receive buffers rarely use much space at all.

Submitted by: Leo Bicknell <bicknell@ufp.org>
<20010713101107.B9559@ussenterprise.ufp.org>
Agreed to in principle by: dillon (at the 32k level)

23 years agoAdd a few more manpages from Chad.
ru [Fri, 13 Jul 2001 18:35:48 +0000 (18:35 +0000)]
Add a few more manpages from Chad.
Fold major.9, minor.9, umajor.9, and uminor.9 into a single device_ids.9.

23 years agoBug fix: When the client connects to a server and Kerberos
nectar [Fri, 13 Jul 2001 18:12:13 +0000 (18:12 +0000)]
Bug  fix: When   the  client  connects   to  a  server   and  Kerberos
authentication is  enabled, the  client effectively ignores  any error
from krb5_rd_rep due to a missing branch.

In  theory  this could  result  in  an  ssh  client using  Kerberos  5
authentication accepting  a spoofed  AP-REP.  I doubt  this is  a real
possiblity, however, because  the AP-REP is passed from  the server to
the client via the SSH  encrypted channel.  Any tampering should cause
the decryption or MAC to fail.

Approved by: green
MFC after: 1 week

23 years agoHints processing is FUBAR'ed right now.
obrien [Fri, 13 Jul 2001 17:43:38 +0000 (17:43 +0000)]
Hints processing is FUBAR'ed right now.
By default, we will end up with a duplicate set of hints if people have
a properly populated /boot/device.hints.  So for now, remove the hints
here until Peter revisits the new hints processing from mid-June that
broke Alpha booting.

23 years agoAfter some (long-standing ;-) critics from Bruce, throw away the old
joerg [Fri, 13 Jul 2001 16:48:56 +0000 (16:48 +0000)]
After some (long-standing ;-) critics from Bruce, throw away the old
device search code i introduce nearly six years ago in rev 1.8.  Bruce
suggested to rather use the device name of the root filesystem instead
which is certainly the most sensible default.  Since there are many
possible cases for a root filesystem name (device with and without
slices, consider /dev/vinum/root even though it currently could not
work as such), there's some heuristic using a RE in order to find out
the canonical device name from the mounted name.  This probably won't
quite fit for a NFS root (can't test that right now), but then,
there's hard to find a good default for those machines anyway. ;-)

This unbreaks the functionality of rev 1.2 i once broke in 1.8. :)

23 years agoTweak the Alpha partition warning wording and comment a little.
obrien [Fri, 13 Jul 2001 16:45:00 +0000 (16:45 +0000)]
Tweak the Alpha partition warning wording and comment a little.

23 years agoRudamentary attempt to reconize when `a' is not the first partition on the
obrien [Fri, 13 Jul 2001 16:37:03 +0000 (16:37 +0000)]
Rudamentary attempt to reconize when `a' is not the first partition on the
Alpha.  (the Alpha will not boot except from the first partition)

PR: 23064
Submitted by: Kees Jan Koster <kjkoster@kjkoster.org>

23 years agoRepeat after me: "when reporting `file not found', perform a little bit of
obrien [Fri, 13 Jul 2001 16:30:11 +0000 (16:30 +0000)]
Repeat after me: "when reporting `file not found', perform a little bit of
useful HCI consideration and tell which file was being looked for".

23 years ago- correct two typos
alex [Fri, 13 Jul 2001 16:10:39 +0000 (16:10 +0000)]
- correct two typos
- Use NULL instead of 0 for pointers (style(9)!)

Submitted by: Joel Wilsson <siigron@sii.linuxsweden.nu>
MFC after: 37 days

23 years agoPrint the month number properly
brian [Fri, 13 Jul 2001 15:07:06 +0000 (15:07 +0000)]
Print the month number properly

MFC after: 1 week

23 years agoWhine if we discover an unknown option. This program doesn't use
dd [Fri, 13 Jul 2001 14:10:09 +0000 (14:10 +0000)]
Whine if we discover an unknown option.  This program doesn't use
getopt(3) (and can't be converted without breaking compatibility), and
it's very irritating to have it silently DTWT if one combines options
together (e.g., "-msS domain,server").

23 years agoRecognize the %s format.
dd [Fri, 13 Jul 2001 13:59:24 +0000 (13:59 +0000)]
Recognize the %s format.

Submitted by: Thomas Zenker <thz@lennartz-electronic.de> and
    Maxim Konovalov <maxim@macomnet.ru>, respectively
Reviewed by: -audit

23 years ago`pcn' supports AMD Am79C97x cards, not Am79C79x cards.
dd [Fri, 13 Jul 2001 13:34:08 +0000 (13:34 +0000)]
`pcn' supports AMD Am79C97x cards, not Am79C79x cards.

PR: 28946
Submitted by: Ryuichiro Imura <imura@ryu16.org>

23 years agoUnbroke kernel if I686_CPU is not defined.
sobomax [Fri, 13 Jul 2001 11:23:06 +0000 (11:23 +0000)]
Unbroke kernel if I686_CPU is not defined.

23 years agomdoc(7) police: -xwidth has been fold into -width.
ru [Fri, 13 Jul 2001 09:09:52 +0000 (09:09 +0000)]
mdoc(7) police: -xwidth has been fold into -width.

23 years agomdoc(7) police: columnate sysctl(8) MIBs list (using the new
ru [Fri, 13 Jul 2001 09:08:31 +0000 (09:08 +0000)]
mdoc(7) police: columnate sysctl(8) MIBs list (using the new
feature of -column lists width specifiers) plus minor markup
fixes.

23 years agoThis commit was generated by cvs2svn to compensate for changes in r79655,
ru [Fri, 13 Jul 2001 09:06:00 +0000 (09:06 +0000)]
This commit was generated by cvs2svn to compensate for changes in r79655,
which included commits to RCS files with non-trunk default branches.

23 years agoImport latest mdoc(7) fixes of mine.
ru [Fri, 13 Jul 2001 09:06:00 +0000 (09:06 +0000)]
Import latest mdoc(7) fixes of mine.

Fold -xwidth functionality into -width.  .Bl now tests whether
string immediately following a leading dot starts with a valid
macro name.

Added similar functionality to the -column list's column width
specifiers.  For example, the following now works as expected:

.Bl -column ".Va hw.crusoe.percentage" ".Vt integer" "Changeable"
.It Sy "Name\tType\tChangeable\tDescription"
.It Va hw.crusoe.longrun Ta Vt integer Ta yes Ta "LongRun mode:"
.It Ta Ta Ta "0: minimum frequency mode"
.It Ta Ta Ta "1: power-saving mode"
.It Ta Ta Ta "2: performance mode"
.It Ta Ta Ta "3: maximum frequency mode"
.It Va hw.crusoe.frequency Ta Vt integer Ta no Ta "Current frequency (MHz)."
.It Va hw.crusoe.voltage Ta Vt integer Ta no Ta "Current voltage (mV)."
.It Va hw.crusoe.percentage Ta Vt integer Ta no Ta "Processing performance (%)."
.El

This is especially useful for groff devices with variable width
fonts, like -Tps or -TX100.

23 years agoMerge Chad's fixes.
ru [Fri, 13 Jul 2001 08:14:54 +0000 (08:14 +0000)]
Merge Chad's fixes.

23 years agoThis page is in man(7) format.
ru [Fri, 13 Jul 2001 08:06:08 +0000 (08:06 +0000)]
This page is in man(7) format.

23 years agoDocument new hwatch/dhwatch commands.
bsd [Fri, 13 Jul 2001 02:30:52 +0000 (02:30 +0000)]
Document new hwatch/dhwatch commands.

23 years agoPerform MSS fixups on incoming packets as well as outgoing.
brian [Fri, 13 Jul 2001 02:04:19 +0000 (02:04 +0000)]
Perform MSS fixups on incoming packets as well as outgoing.

MFC after: 1 week

23 years agoDeal with the condition where we lose link in the middle of transmitting
wpaul [Thu, 12 Jul 2001 22:51:59 +0000 (22:51 +0000)]
Deal with the condition where we lose link in the middle of transmitting
a bunch of frames. In this case, the dc_link flag is cleared, and dc_start()
stops draining the if_snd send queue, which results in lots of 'no buffers
available' errors being reported to applications. The whole idea behind
not draining the send queue until the link comes up was to avoid having
the gratuitous ARP being lost while we're waiting for autoneg to complete
after the interface is first brought up. As an optimization, change the
test in dc_start() so that we only bail if dc_link is not set _and_ there
are less than 10 packets in the send queue. If the queue has many frames
in it, we need to drain them. If the queue has a small number of frames
in it, we can hold off on sending them until the link comes up.

MFC after: 1 week

23 years agofix typo: vise versa -> vice versa
ben [Thu, 12 Jul 2001 20:40:25 +0000 (20:40 +0000)]
fix typo: vise versa -> vice versa

PR: 28926
Submitted by: Michael Lucas <mwlucas@blackhelicopters.org>

23 years agolibiberty file list for the 11-July-2000 import.
obrien [Thu, 12 Jul 2001 19:03:33 +0000 (19:03 +0000)]
libiberty file list for the 11-July-2000 import.

23 years agoNote MFCs: Transmeta Crusoe/Longrun detection, TCP template buffer
bmah [Thu, 12 Jul 2001 18:58:18 +0000 (18:58 +0000)]
Note MFCs:  Transmeta Crusoe/Longrun detection, TCP template buffer
allocation, lpd(8) -wand -c, lpc(8) tclean/clean improvements, dump(8)
-D, du(1) -I.

23 years agoUpdate list of cards supported by nge(4).
bmah [Thu, 12 Jul 2001 18:42:41 +0000 (18:42 +0000)]
Update list of cards supported by nge(4).

23 years agoNote groff 1.17.2 import.
bmah [Thu, 12 Jul 2001 18:24:51 +0000 (18:24 +0000)]
Note groff 1.17.2 import.

23 years agoGenerate top.local.h and manpage dynamically, with sed(1) script.
ru [Thu, 12 Jul 2001 15:07:30 +0000 (15:07 +0000)]
Generate top.local.h and manpage dynamically, with sed(1) script.

The generated manpage will now describe the actual behavior of
top(1) WRT how many processes it displays.  This also eliminates
all troff(1) warnings.

23 years agoBuild/install bzip2 documentation (info page).
sobomax [Thu, 12 Jul 2001 14:44:17 +0000 (14:44 +0000)]
Build/install bzip2 documentation (info page).

23 years agoEliminate troff(1) warnings that were hiding some useful text.
ru [Thu, 12 Jul 2001 14:29:59 +0000 (14:29 +0000)]
Eliminate troff(1) warnings that were hiding some useful text.

23 years agoEliminate troff(1) warnings that were hiding some useful text.
ru [Thu, 12 Jul 2001 14:16:48 +0000 (14:16 +0000)]
Eliminate troff(1) warnings that were hiding some useful text.

23 years agoRestore vendor CVS keywords; eliminate troff(1) warnings.
ru [Thu, 12 Jul 2001 13:13:37 +0000 (13:13 +0000)]
Restore vendor CVS keywords; eliminate troff(1) warnings.

23 years agoUse the real structure names explicitly. Note that this is mostly for
peter [Thu, 12 Jul 2001 13:01:17 +0000 (13:01 +0000)]
Use the real structure names explicitly.  Note that this is mostly for
reading old a.out core files, which are totally 100% non-understandable
to the gdb floating-point reader if you have SSE turned on.

This should be the last of the world build breakers...

23 years agoThe #define for pcb_savefpu seems to do more harm than good.
peter [Thu, 12 Jul 2001 12:48:08 +0000 (12:48 +0000)]
The #define for pcb_savefpu seems to do more harm than good.

23 years agoRestore UUCP VCS IDs; eliminate troff(1) warnings.
ru [Thu, 12 Jul 2001 12:35:00 +0000 (12:35 +0000)]
Restore UUCP VCS IDs; eliminate troff(1) warnings.

23 years agoFix another missed pcb_savefpu reference (inside NPX_DEBUG)
peter [Thu, 12 Jul 2001 12:21:53 +0000 (12:21 +0000)]
Fix another missed pcb_savefpu reference (inside NPX_DEBUG)

23 years agoDo not depend on pcb_savefpu backwards compat #define.
peter [Thu, 12 Jul 2001 12:19:11 +0000 (12:19 +0000)]
Do not depend on pcb_savefpu backwards compat #define.

23 years agoEliminate troff(1) warnings.
ru [Thu, 12 Jul 2001 12:12:24 +0000 (12:12 +0000)]
Eliminate troff(1) warnings.

23 years agoConvert to mdoc(7).
ru [Thu, 12 Jul 2001 12:00:58 +0000 (12:00 +0000)]
Convert to mdoc(7).

23 years agoForgot this fix from another tree. make enable_sse() a real prototype.
peter [Thu, 12 Jul 2001 11:54:11 +0000 (11:54 +0000)]
Forgot this fix from another tree.  make enable_sse() a real prototype.

23 years ago- Define a convenience macro ISTTYOPEN().
yokota [Thu, 12 Jul 2001 11:43:29 +0000 (11:43 +0000)]
- Define a convenience macro ISTTYOPEN().
- Slightly refine screen saver logic.

No functional change.
MFC after: 2 weeks

23 years agoBump param, for SSE support and include file impact (<machine/pcb.h>)
peter [Thu, 12 Jul 2001 11:42:47 +0000 (11:42 +0000)]
Bump param, for SSE support and include file impact (<machine/pcb.h>)

23 years agoAdded missing DPADD and CLEANFILES.
ru [Thu, 12 Jul 2001 09:17:51 +0000 (09:17 +0000)]
Added missing DPADD and CLEANFILES.

23 years agoFixed CLEANFILES.
ru [Thu, 12 Jul 2001 08:48:36 +0000 (08:48 +0000)]
Fixed CLEANFILES.

23 years agoadd dependency for lex.o on roken.h (from "Alexander N. Kabaev"
assar [Thu, 12 Jul 2001 08:36:01 +0000 (08:36 +0000)]
add dependency for lex.o on roken.h (from "Alexander N. Kabaev"
<ak03@gte.com>)
remove duplicate build-tools target

23 years agoAlways preprocess manpages with tbl(1).
ru [Thu, 12 Jul 2001 07:47:39 +0000 (07:47 +0000)]
Always preprocess manpages with tbl(1).

23 years agoFixed warning:
ru [Thu, 12 Jul 2001 07:35:06 +0000 (07:35 +0000)]
Fixed warning:

bc.1:643: warning: numeric expression expected (got `e')

23 years agoMove init_sse() out of the "GenuineIntel" section, my AthlonMP system
peter [Thu, 12 Jul 2001 06:36:03 +0000 (06:36 +0000)]
Move init_sse() out of the "GenuineIntel" section, my AthlonMP system
has it, for example, and it works fine.

23 years agoApply the i386 SSE mods to pc98 as well.
peter [Thu, 12 Jul 2001 06:34:25 +0000 (06:34 +0000)]
Apply the i386 SSE mods to pc98 as well.

23 years agoActivate SSE/SIMD. This is the extra context switching support that
peter [Thu, 12 Jul 2001 06:32:51 +0000 (06:32 +0000)]
Activate SSE/SIMD.  This is the extra context switching support that
we are required to do if we let user processes use the extra 128 bit
registers etc.

This is the base part of the diff I got from:
  http://www.issei.org/issei/FreeBSD/sse.html
I believe this is by:  Mr. SUZUKI Issei <issei@issei.org>
SMP support apparently by: Takekazu KATO <kato@chino.it.okayama-u.ac.jp>
Test code by: NAKAMURA Kazushi <kaz@kobe1995.net>, see
  http://kobe1995.net/~kaz/FreeBSD/SSE.en.html

I have fixed a couple of style(9) deviations.  I have some followup
commits to fix a couple of non-style things.

23 years agoIntroduce an "include" directive. It takes one argument, a filename
dd [Thu, 12 Jul 2001 02:08:51 +0000 (02:08 +0000)]
Introduce an "include" directive.  It takes one argument, a filename
to be included into this one.  This works the same way as #include
does in C; as far as the user is concerned, the included file is
inlined into the current one.

Since config(8) is no longer limited to working on one user-supplied
file, printing just a line number in an error message is not
sufficient.  The new global variable yyfile represents the file
currently being parsed, and must be printed as well.

Reviewed by: imp
Obtained from: OpenBSD

23 years agoFix IP address checking, now we allow addresses like 172.17.0.0/23 as
jesper [Thu, 12 Jul 2001 00:01:45 +0000 (00:01 +0000)]
Fix IP address checking, now we allow addresses like 172.17.0.0/23 as
a host address

PR: misc/27799
Reviewed by: jkh
Approved by: jkh
MFC after: 1 month

23 years agonetbsd 1.5.1: official announcement on Wed, 11 Jul 2001 16:35:16 -0400 (EDT)
itojun [Wed, 11 Jul 2001 23:57:16 +0000 (23:57 +0000)]
netbsd 1.5.1: official announcement on Wed, 11 Jul 2001 16:35:16 -0400 (EDT)

23 years agoRemove an extraneous space
brian [Wed, 11 Jul 2001 23:02:07 +0000 (23:02 +0000)]
Remove an extraneous space

23 years agoAnother NatSemi gigE card; the Netgear GA622T
wpaul [Wed, 11 Jul 2001 22:29:05 +0000 (22:29 +0000)]
Another NatSemi gigE card; the Netgear GA622T

23 years agoDocument additional cards supported by the nge driver: LinkSys EG1032
wpaul [Wed, 11 Jul 2001 22:09:31 +0000 (22:09 +0000)]
Document additional cards supported by the nge driver: LinkSys EG1032
anf EG1064, and the Surecom EP-320G-TX.

Also fix typo in nge.4 man page: Addrton -> Addtron.

23 years agoDon't try to compile v6-only files if NOINET6.
fenner [Wed, 11 Jul 2001 21:46:06 +0000 (21:46 +0000)]
Don't try to compile v6-only files if NOINET6.

PR: misc/28287 , misc/28288