]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoget_cyclecounter.9 has been repo-copied to get_cyclecount.9.
ru [Thu, 10 Jan 2002 12:21:06 +0000 (12:21 +0000)]
get_cyclecounter.9 has been repo-copied to get_cyclecount.9.

22 years agomdoc(7) police: tidy up the markup, fix some minor bugs.
ru [Thu, 10 Jan 2002 11:57:10 +0000 (11:57 +0000)]
mdoc(7) police: tidy up the markup, fix some minor bugs.

22 years agoClear the single-step flag for signal handlers. This fixes bogus trace
bde [Thu, 10 Jan 2002 11:49:55 +0000 (11:49 +0000)]
Clear the single-step flag for signal handlers.  This fixes bogus trace
traps on the first instruction of signal handlers.

In trap.c:syscall(), fake a trace trap if the single-step flag was set
on entry to the kernel, not if it will be set on exit from the kernel.
This fixes bogus trace traps after the last instruction of signal handlers.

gdb-4.18 (the version in FreeBSD) still has problems with the program in
the PR.  These seem to be due to bugs in gdb and not in FreeBSD, and are
fixed in gdb-5.1 (the distribution version).

PR: 33262
Tested by: k Macy <kip_macy@yahoo.com>
MFC after: 1 day

22 years agomdoc(7) police: tidy up the markup.
ru [Thu, 10 Jan 2002 10:48:39 +0000 (10:48 +0000)]
mdoc(7) police: tidy up the markup.

This manpage should be repo-copied to get_cyclecount.9.

22 years agomdoc(7) police:
ru [Thu, 10 Jan 2002 10:36:04 +0000 (10:36 +0000)]
mdoc(7) police:

- make SYNOPSIS look better with some troff magic
- tidy up the markup

22 years agomdoc(7) police: function typedefs are similar to the
ru [Thu, 10 Jan 2002 09:34:33 +0000 (09:34 +0000)]
mdoc(7) police: function typedefs are similar to the
function declarations so use that idea to fix markup.

22 years agomdoc(7) police:
ru [Thu, 10 Jan 2002 09:20:07 +0000 (09:20 +0000)]
mdoc(7) police:

- logically sort the SYNOPSIS section
- add missing markup bits
- "brackets" -> "parentheses"

22 years agoBack out previous revision, which will be applied directly to
sheldonh [Thu, 10 Jan 2002 09:19:35 +0000 (09:19 +0000)]
Back out previous revision, which will be applied directly to
the RELENG_4 branch when approved by the release engineers.

22 years ago- Add 4-digit year variants in the manpage, since at(1) already
keramida [Thu, 10 Jan 2002 08:21:31 +0000 (08:21 +0000)]
- Add 4-digit year variants in the manpage, since at(1) already
  understands them.

PR: docs/32843
Submitted by: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>

22 years agomdoc(7) police: sort xrefs.
ru [Thu, 10 Jan 2002 08:16:58 +0000 (08:16 +0000)]
mdoc(7) police: sort xrefs.

22 years agoFix what was a pointless conditional. Use $GCC_EXEC_PREFIX if
cjc [Thu, 10 Jan 2002 07:43:38 +0000 (07:43 +0000)]
Fix what was a pointless conditional. Use $GCC_EXEC_PREFIX if
/etc/gnats does not exist.

PR: gnu/33682
Submitted by: Alan Eldridge <ports@geeksrus.net>

22 years agoFurther fixes related to the interface renaming. Now that we
marcel [Thu, 10 Jan 2002 05:36:36 +0000 (05:36 +0000)]
Further fixes related to the interface renaming. Now that we
properly translate the interface name passed to us, make sure
we also translate correctly before we return the list of
interfaces with the SIOCGIFCONF ioctl. It is common to use
the interface names returned by that ioctl in further ioctls,
such as SIOCGIFFLAGS.

Remove linux_ifname as it is no longer used. Also remove
ifname_bsd_to_linux as it cannot be used anymore now that
linux_ifname is removed (was deadcode anyway).

Reported and tested by: Andrew Atrens <atrens@nortelnetworks.com>

22 years agogenassym depends on the presence of common variables, disable the use
msmith [Thu, 10 Jan 2002 03:52:54 +0000 (03:52 +0000)]
genassym depends on the presence of common variables, disable the use
of -fno-common in this case.

22 years agoEliminate the use of commons in the kernel and modules,
msmith [Thu, 10 Jan 2002 03:52:01 +0000 (03:52 +0000)]
Eliminate the use of commons in the kernel and modules,
simplifying the module linking process and eliminating the risks
associated with doubly-defined variables.

Cases where commons were legitimately used (detection of
compiled-in subsystems) have been converted to use sysinits, and
any new code should use this or an equivalent practice as a
matter of course.

Modules can override this behaviour by substituting -fno-common
out of ${CFLAGS} in cases where commons are necessary
(eg. third-party object modules).  Commons will be resolved and
allocated space when the kld is linked as part of the module
build process, so they will not pose a risk to the kernel or
other modules.

Provide a mechanism for controlling the export of symbols from
the module namespace.  The EXPORT_SYMS variable may be set in the
Makefile to NO (export no symbols), a list of symbols to export,
or the name of a file containing a newline-seperated list of
symbols to be exported.  Non-exported symbols are converted to
local symbols.  If EXPORT_SYMS is not set, all global symbols are
currently exported.  This behaviour is expected to change (to
exporting no symbols) once modules have been converted.

Reviewed by: peter (in principle)
Obtained from: green (kmod_syms.awk)

22 years agoFix typo in function name.
wes [Thu, 10 Jan 2002 03:26:46 +0000 (03:26 +0000)]
Fix typo in function name.

Reviewed by: peter@
Obtained from: mux@sneakerz.org

22 years agoAdd getcontext, setcontext, makecontext, and swapcontext prototypes
deischen [Thu, 10 Jan 2002 02:44:30 +0000 (02:44 +0000)]
Add getcontext, setcontext, makecontext, and swapcontext prototypes
to ucontext.h.

Approved by: -arch

22 years agoAdd getcontext, setcontext, makecontext, and swapcontext. These
deischen [Thu, 10 Jan 2002 02:40:59 +0000 (02:40 +0000)]
Add getcontext, setcontext, makecontext, and swapcontext.  These
functions are defined in SUSv2 and the latest POSIX spec.

Thanks to Bernd Walter <ticso@cicely8.cicely.de> for helping debug my
alpha assembly.

Approved by: -arch

22 years agoUse a spare slot in the machine context to identify the context format
deischen [Thu, 10 Jan 2002 02:36:30 +0000 (02:36 +0000)]
Use a spare slot in the machine context to identify the context format
and to inherently verify its validity.  Alpha signal frames and trap
frames are different; this field identifies which format the context
is

Set the machine context format (signal frame) before copying it out
when sending a signal.

Approved by: -arch

22 years agoUse a spare slot in the machine context for a flags word to indicate
deischen [Thu, 10 Jan 2002 02:32:30 +0000 (02:32 +0000)]
Use a spare slot in the machine context for a flags word to indicate
whether the machine context is valid and whether the FPU state is
valid (saved).

Mark the machine context valid before copying it out when sending a
signal.

Approved by: -arch

22 years agoTerminate requests in nfs_sigintr() if the filesystem is in the
iedowse [Thu, 10 Jan 2002 02:15:35 +0000 (02:15 +0000)]
Terminate requests in nfs_sigintr() if the filesystem is in the
process of being unmounted. This allows forced NFS unmounts to
complete even if there are processes stuck holding the mnt_lock
while the server is down. The mechanism is not ideal in that there
is a small chance we might accidentally cancel requests during a
failed non-forced unmount attempt on that filesystem, but this
is not really a big problem.

Also, move the tsleep() in nfs_nmcancelreqs() so that we do not
sleep in the case where there are no requests to be cancelled.

22 years agoChange dounmount() to return EBUSY in the non-MNT_FORCE case if we
iedowse [Thu, 10 Jan 2002 01:59:30 +0000 (01:59 +0000)]
Change dounmount() to return EBUSY in the non-MNT_FORCE case if we
can't acquire the mnt_lock without blocking. Normally non-forced
unmount attempts return EBUSY quickly if any vnodes are active, so
this just extends that behaviour to cover the per-mount mnt_lock
too.

22 years agoo Revert kern_sig.c#1.143, as cr_cansignal() doesn't currently permit
rwatson [Thu, 10 Jan 2002 01:25:35 +0000 (01:25 +0000)]
o Revert kern_sig.c#1.143, as cr_cansignal() doesn't currently permit
  a number of desirable cases in which SIGIO/SIGURG are delivered.  We'll
  keep tweaking.

Reported by: Alexander Kabaev <ak03@gte.com>

22 years agoImplement 2 small helper functions:
mdodd [Thu, 10 Jan 2002 00:56:02 +0000 (00:56 +0000)]
Implement 2 small helper functions:
pci_find_bsf() - Find a device_t by bus/slot/function.
pci_find_device() - Find a device_t by vendor/device ID.

22 years agoStaticise the random_state array.
msmith [Thu, 10 Jan 2002 00:09:21 +0000 (00:09 +0000)]
Staticise the random_state array.

Reviewed by: markm

22 years agoBackout previious change - package built on bento is called sawfish-gnome,
sobomax [Wed, 9 Jan 2002 21:28:48 +0000 (21:28 +0000)]
Backout previious change - package built on bento is called sawfish-gnome,
but the port is still x11-wm/sawfish, not x11-wm/sawfish-gnome.

Shame on: sobomax

22 years agoRemove KMODDEPS, this is not used on -current and should not be left
peter [Wed, 9 Jan 2002 21:12:40 +0000 (21:12 +0000)]
Remove KMODDEPS, this is not used on -current and should not be left
around as a bad example.

22 years agoSafwish package built on bento is called `sawfish-gnome', so adjust sysinstall
sobomax [Wed, 9 Jan 2002 20:10:02 +0000 (20:10 +0000)]
Safwish package built on bento is called `sawfish-gnome', so adjust sysinstall
and print-cdrom-packages.sh accordingly.

Revealed by: re
MFC after: 1 day

22 years agoInitialze a stack variable with NULL to unbreak buildworld with -Wall.
deischen [Wed, 9 Jan 2002 17:36:53 +0000 (17:36 +0000)]
Initialze a stack variable with NULL to unbreak buildworld with -Wall.
I don't know about anyone else, but the compiler was always aborting
on this stupid warning, and has been doing so for weeks.

22 years agomdoc(7) police: tidy up previous delta.
ru [Wed, 9 Jan 2002 16:09:00 +0000 (16:09 +0000)]
mdoc(7) police: tidy up previous delta.

22 years agoFix S3 breakage.
takawata [Wed, 9 Jan 2002 16:00:31 +0000 (16:00 +0000)]
Fix S3 breakage.
Now AcpiEnterSleep() is light enough, so flushing cache
before the function is not too early.

22 years agomdoc(7) police: tidy up markup.
ru [Wed, 9 Jan 2002 15:56:21 +0000 (15:56 +0000)]
mdoc(7) police: tidy up markup.

22 years agoIncrease BSIZEMAX from 8k to 16k, so that we can reliably boot from
iedowse [Wed, 9 Jan 2002 15:46:17 +0000 (15:46 +0000)]
Increase BSIZEMAX from 8k to 16k, so that we can reliably boot from
filesystems with 16k blocks.

22 years agomdoc(7) police: variables are marked with the general purpose .Va macro.
ru [Wed, 9 Jan 2002 15:43:07 +0000 (15:43 +0000)]
mdoc(7) police: variables are marked with the general purpose .Va macro.

22 years agomdoc(7) police: tidy up previous delta.
ru [Wed, 9 Jan 2002 15:32:25 +0000 (15:32 +0000)]
mdoc(7) police: tidy up previous delta.

22 years agomdoc(7) police: tidy up previous delta.
ru [Wed, 9 Jan 2002 15:22:30 +0000 (15:22 +0000)]
mdoc(7) police: tidy up previous delta.

22 years agomdoc(7) police:
ru [Wed, 9 Jan 2002 15:10:31 +0000 (15:10 +0000)]
mdoc(7) police:

Restore (sorta) a useful piece of information that got lost in the
previous delta -- an ability to specify /prefixlength after an IPv6
address.

22 years agoDocument behaviour with respect to interval timers.
sheldonh [Wed, 9 Jan 2002 14:44:06 +0000 (14:44 +0000)]
Document behaviour with respect to interval timers.

PR: 33156
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>

22 years agomdoc(7) police: add missing markup bits for ``errno''.
ru [Wed, 9 Jan 2002 14:03:54 +0000 (14:03 +0000)]
mdoc(7) police: add missing markup bits for ``errno''.

22 years agomdoc(7) police:
ru [Wed, 9 Jan 2002 14:01:22 +0000 (14:01 +0000)]
mdoc(7) police:

Stop abusing the .%J macro for where the .Pa macro should have been used.

22 years agoUpdate the country code list.
nik [Wed, 9 Jan 2002 13:46:58 +0000 (13:46 +0000)]
Update the country code list.

PR: docs/27027
Submitted by: Steve Coltrin <spcoltri@omcl.org>

22 years agoFrom the PR:
nik [Wed, 9 Jan 2002 13:43:31 +0000 (13:43 +0000)]
From the PR:

        1. ctype.h defines digittoint(), isnumber() and ishexnmber(), yet
        they are not documented in any of the manpages.

        2. The ctype manpage references a non-existent manpage for
        digittoint().

        3. The isascii() manpage claims it is standards compliant, when
        it isn't.

        4. isblank() claims it is _not_ standards compliant, when it
        is.

Fix by including the appropriate .Nm entries, and with a new digittoint.3
page.

PR: docs/26451
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>

22 years agoMake the -a flag to opiekey(1) actually work as advertised.
joerg [Wed, 9 Jan 2002 13:36:26 +0000 (13:36 +0000)]
Make the -a flag to opiekey(1) actually work as advertised.

Reviewed by: ache, audit, security
MFC after: 1 week

22 years agomdoc(7) police: tidy up.
ru [Wed, 9 Jan 2002 13:29:39 +0000 (13:29 +0000)]
mdoc(7) police: tidy up.

22 years agoNote that kern.sugid_coredump must be 1 to generate a core from processes
nik [Wed, 9 Jan 2002 13:16:26 +0000 (13:16 +0000)]
Note that kern.sugid_coredump must be 1 to generate a core from processes
that change their credentials.

PR: docs/21712
Submitted by: Peter Philipp <pjp@click2net.com>

22 years agoFix the rxvt termcap entry:
nectar [Wed, 9 Jan 2002 13:13:51 +0000 (13:13 +0000)]
Fix the rxvt termcap entry:
  = Get the alternate character set capabilities right.
  = Enable color support for `rxvt'.
  = Add `rxvt-mono' for no color support.

Approved by: ache

22 years agoFix typo, and add some additional description to the i8254 and TSC.
nik [Wed, 9 Jan 2002 13:10:18 +0000 (13:10 +0000)]
Fix typo, and add some additional description to the i8254 and TSC.

PR: docs/20738
Submitted by: Tan Koan-Sin <freedom@csie.nctu.edu.tw>

22 years agoAdd entries for DEC VT520 and VT525.
sheldonh [Wed, 9 Jan 2002 13:00:20 +0000 (13:00 +0000)]
Add entries for DEC VT520 and VT525.

PR: misc/33083
Submitted by: Ted Mittelstaedt <tedm@toybox.placo.com>
Obtained from: ftp://gatekeeper.dec.com/pub/DEC/termcaps/

22 years agoispell sweep of share/man/man7/*.
mpp [Wed, 9 Jan 2002 12:34:01 +0000 (12:34 +0000)]
ispell sweep of share/man/man7/*.

22 years agoUse KMODDEPS to document module dependencies on libiconv and
sheldonh [Wed, 9 Jan 2002 11:45:58 +0000 (11:45 +0000)]
Use KMODDEPS to document module dependencies on libiconv and
libmchain.

KMODDEPS seems to be a no-op in HEAD, but is required in RELENG_4,
where MODULE_DEPEND seems to be a no-op.

Therefore, this change is harmless in -CURRENT, but will fix the
dependencies when merged to RELENG_4, where they are currently not
registered!

PR: kern/33625
Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>

22 years agoispell sweep of share/man/man9/*.
mpp [Wed, 9 Jan 2002 11:43:48 +0000 (11:43 +0000)]
ispell sweep of share/man/man9/*.

22 years agoFairly major cleanup of the text.
davidc [Wed, 9 Jan 2002 08:42:43 +0000 (08:42 +0000)]
Fairly major cleanup of the text.

PR: docs/32241

22 years agoReplace spaces after #defines with tabs; this makes all #defines
kbyanc [Wed, 9 Jan 2002 07:29:28 +0000 (07:29 +0000)]
Replace spaces after #defines with tabs; this makes all #defines
consistent in their adherence with style(9).

22 years ago o Correct a 32/64-bit error in the initialization of aiol_zone, specifically,
alc [Wed, 9 Jan 2002 06:40:45 +0000 (06:40 +0000)]
 o Correct a 32/64-bit error in the initialization of aiol_zone, specifically,
   sizeof(int) is not the size of a pointer.

22 years agoAdd a new sysinit SI_SUB_DEVFS. Devfs hooks into the kernel at SI_ORDER_FIRST,
msmith [Wed, 9 Jan 2002 04:58:49 +0000 (04:58 +0000)]
Add a new sysinit SI_SUB_DEVFS.  Devfs hooks into the kernel at SI_ORDER_FIRST,
and devices can be created anytime after that.

Print a warning if an atttempt is made to create a device too early.

22 years agoGC fast_vfork; it's not actually referenced anywhere.
silby [Wed, 9 Jan 2002 04:51:21 +0000 (04:51 +0000)]
GC fast_vfork; it's not actually referenced anywhere.

MFC after: 3 weeks

22 years agoMove the make_dev call from the cn_probe to a sysinit that runs at
jake [Wed, 9 Jan 2002 04:03:55 +0000 (04:03 +0000)]
Move the make_dev call from the cn_probe to a sysinit that runs at
SI_SUB_DRIVERS.  cnprobe is too early.

22 years agoDefine the kern.cam sysctl in the cam layer, rather than multiply in several
msmith [Wed, 9 Jan 2002 03:39:04 +0000 (03:39 +0000)]
Define the kern.cam sysctl in the cam layer, rather than multiply in several
peripheral drivers.  Remove Ken's comment to the effect that this needed
to be done.

Staticise camnet_ih and cambio_ih.

22 years agoStaticise a debugging variable.
msmith [Wed, 9 Jan 2002 03:37:16 +0000 (03:37 +0000)]
Staticise a debugging variable.

Submitted by: non

22 years agoStaticise the aac devclass.
msmith [Wed, 9 Jan 2002 03:32:40 +0000 (03:32 +0000)]
Staticise the aac devclass.

22 years agoholdsock is gone, remove the prototype
alfred [Wed, 9 Jan 2002 03:08:47 +0000 (03:08 +0000)]
holdsock is gone, remove the prototype

22 years agoSockets are called 'so' not 'sp'.
alfred [Wed, 9 Jan 2002 02:47:00 +0000 (02:47 +0000)]
Sockets are called 'so' not 'sp'.

22 years agoRevert 1.81; 1.19 fixed this already in a different way.
silby [Wed, 9 Jan 2002 01:45:17 +0000 (01:45 +0000)]
Revert 1.81; 1.19 fixed this already in a different way.

22 years agoMerge the changes in the English version (1.250 --> 1.251).
kuriyama [Wed, 9 Jan 2002 01:37:56 +0000 (01:37 +0000)]
Merge the changes in the English version (1.250 --> 1.251).

22 years agoUse a sysinit to initialise the devfs hooks in kern_conf.c rather than common
msmith [Wed, 9 Jan 2002 01:00:20 +0000 (01:00 +0000)]
Use a sysinit to initialise the devfs hooks in kern_conf.c rather than common
variables.

Reviewed by: phk (in principle)

22 years agoAdd a commented-out alternative for the ether line of a DIGITIAL
joerg [Tue, 8 Jan 2002 22:32:00 +0000 (22:32 +0000)]
Add a commented-out alternative for the ether line of a DIGITIAL
DEPCM-BA card, as found on my rev. C01 card.

MFC after: 1 week

22 years agoAdd quirk for DIVA USB Mp3 Player.
sobomax [Tue, 8 Jan 2002 21:07:46 +0000 (21:07 +0000)]
Add quirk for DIVA USB Mp3 Player.

PR: kern/33638
Submitted by: Olexander Kunytsa <kunia@x-telecom.net>
MFC after: 3 days
(pending re's approval)

22 years agoRegenerate from 1.26 pccarddevs
imp [Tue, 8 Jan 2002 20:52:57 +0000 (20:52 +0000)]
Regenerate from 1.26 pccarddevs

22 years agoCatch up to NetBSD:
imp [Tue, 8 Jan 2002 20:52:23 +0000 (20:52 +0000)]
Catch up to NetBSD:
1.156 pooka; Socket Low-Power CF WLAN
1.155 ichiro; IBM Smart Capture Card II
1.152-154 ichiro; Fujitsu CF EtherCard and FMV-181,182,182A
1.151 christos; Symbol Spectrum24

22 years ago- generic Arcnet framework
fjoe [Tue, 8 Jan 2002 20:03:13 +0000 (20:03 +0000)]
- generic Arcnet framework
- device driver for SMC COM90cx6 Arcnet network adapters

Obtained from: NetBSD

22 years agoNew release notes: syslogd(8) -c, less 371.
bmah [Tue, 8 Jan 2002 19:59:54 +0000 (19:59 +0000)]
New release notes:  syslogd(8) -c, less 371.

22 years agoRename some variables that end up shadowing their namesakes in the NFS client
msmith [Tue, 8 Jan 2002 19:41:06 +0000 (19:41 +0000)]
Rename some variables that end up shadowing their namesakes in the NFS client
code.

Reviewed by: peter

22 years agoStaticise a couple of debugging variables.
msmith [Tue, 8 Jan 2002 19:37:12 +0000 (19:37 +0000)]
Staticise a couple of debugging variables.

22 years agoRename a variable that might accidentally be duplicated elsewhere.
msmith [Tue, 8 Jan 2002 19:36:54 +0000 (19:36 +0000)]
Rename a variable that might accidentally be duplicated elsewhere.

22 years agoAvoid doubly defining machdep.pccard
msmith [Tue, 8 Jan 2002 19:35:27 +0000 (19:35 +0000)]
Avoid doubly defining machdep.pccard

22 years agoStaticise the coda vfsop pointer.
msmith [Tue, 8 Jan 2002 19:33:51 +0000 (19:33 +0000)]
Staticise the coda vfsop pointer.

22 years agoInitialise the bioops vector hack at runtime rather than at link time. This
msmith [Tue, 8 Jan 2002 19:32:18 +0000 (19:32 +0000)]
Initialise the bioops vector hack at runtime rather than at link time.  This
avoids the use of common variables.

Reviewed by: mckusick

22 years agofind_devclass -> devclass_find.
msmith [Tue, 8 Jan 2002 19:14:59 +0000 (19:14 +0000)]
find_devclass -> devclass_find.

22 years agoAdd forgotten alias for ru_SU.ISO8859-5
ache [Tue, 8 Jan 2002 19:07:03 +0000 (19:07 +0000)]
Add forgotten alias for ru_SU.ISO8859-5

22 years agoRevert change that breaks the joy module. joydevclass must not be static.
imp [Tue, 8 Jan 2002 18:27:49 +0000 (18:27 +0000)]
Revert change that breaks the joy module.  joydevclass must not be static.

22 years agoFix some 32/64-bit bugs. IPv4 addresses are 32-bits, not longs. On the
jhb [Tue, 8 Jan 2002 18:05:03 +0000 (18:05 +0000)]
Fix some 32/64-bit bugs.  IPv4 addresses are 32-bits, not longs.  On the
alpha these bugs didn't cause any problems because it was little endian,
but on sparc64, we ended up with garbage for the IP address when we tried
to contact the server.  (Usually 3.253.0.0)

Not objected to by: wpaul

22 years agoAdd ru_SU locale aliases for nls area also
phantom [Tue, 8 Jan 2002 17:23:03 +0000 (17:23 +0000)]
Add ru_SU locale aliases for nls area also

22 years agoMerge the changes in the English version (1.248 --> 1.250).
kuriyama [Tue, 8 Jan 2002 17:18:22 +0000 (17:18 +0000)]
Merge the changes in the English version (1.248 --> 1.250).

22 years ago(null delta)
sheldonh [Tue, 8 Jan 2002 16:41:15 +0000 (16:41 +0000)]
(null delta)

The previous delta was taken from:

PR: bin/33070

22 years agoAdd upa.h, which I had previously forgotten, to unbreak the sparc64
tmm [Tue, 8 Jan 2002 16:25:51 +0000 (16:25 +0000)]
Add upa.h, which I had previously forgotten, to unbreak the sparc64
kernel build.

Pointy hat to: tmm

22 years agoActually make aliases for ru_SU locales.
phantom [Tue, 8 Jan 2002 15:30:56 +0000 (15:30 +0000)]
Actually make aliases for ru_SU locales.

22 years agoAdd ro_RO
ache [Tue, 8 Jan 2002 15:20:13 +0000 (15:20 +0000)]
Add ro_RO

PR: 33343
Submitted by: Adrian Penisoara <ady@warpnet.ro>

22 years agoAdd ro_RO
ache [Tue, 8 Jan 2002 15:06:42 +0000 (15:06 +0000)]
Add ro_RO

PR: 33343
Submitted by: Adrian Penisoara <ady@warpnet.ro>

22 years agoISO 8859-1 -> ISO 8859-5 for ru_*
ache [Tue, 8 Jan 2002 15:01:48 +0000 (15:01 +0000)]
ISO 8859-1 -> ISO 8859-5 for ru_*

22 years agoCorrectly handle cases of deprecated locales which are supposed
phantom [Tue, 8 Jan 2002 13:42:52 +0000 (13:42 +0000)]
Correctly handle cases of deprecated locales which are supposed
to have backward compatibility symbolic links.

This code should check existence of deprecated locales and
fix them using following scheme:

. if new locale directory exisists and is a symlink -- remove it
. if old locale directory exists and not a symlink -- rename it to
  its new name

This should allow to mtree(1) and existing locale aliases make(1)
rules to setup locale dirs correctly (avoid self-referenced symlinks)

BTW, this commit brings in backward compatibility support for ru_SU
locales (aliased to appropriate ru_RU ones).

22 years agoWhen authenticating a name containing a ``\'', attempt to autenticate
brian [Tue, 8 Jan 2002 11:24:39 +0000 (11:24 +0000)]
When authenticating a name containing a ``\'', attempt to autenticate
using the part after the ``\'' if the original name is not found.

This allows M$ clients to use domain\user as their authname.

Reviewed by: Ian West <ian@niw.com.au>

22 years agoStaticise pfs_vncache, it's not used anywhere else.
msmith [Tue, 8 Jan 2002 11:15:57 +0000 (11:15 +0000)]
Staticise pfs_vncache, it's not used anywhere else.

Reviewed by: des

22 years agoReplace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines.
jhb [Tue, 8 Jan 2002 11:08:20 +0000 (11:08 +0000)]
Replace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines.

Requested by: bde

22 years agoInitialise the intrq_present fields at runtime, not link time. This allows
msmith [Tue, 8 Jan 2002 10:34:03 +0000 (10:34 +0000)]
Initialise the intrq_present fields at runtime, not link time.  This allows
us to load protocols at runtime, and avoids the use of common variables.

Also fix the ip6_intrq assignment so that it works at all.

22 years agoStaticise a couple of things that shouldn't be leaked into the
joe [Tue, 8 Jan 2002 10:32:33 +0000 (10:32 +0000)]
Staticise a couple of things that shouldn't be leaked into the
kernel namespace.

Submitted by: msmith

22 years agoStaticise the fw chain.
msmith [Tue, 8 Jan 2002 10:30:55 +0000 (10:30 +0000)]
Staticise the fw chain.

22 years agoStaticise the socket list.
msmith [Tue, 8 Jan 2002 10:30:34 +0000 (10:30 +0000)]
Staticise the socket list.

22 years agoStaticise private interface lists.
msmith [Tue, 8 Jan 2002 10:30:09 +0000 (10:30 +0000)]
Staticise private interface lists.

22 years agoGut this header; since physio_proc_init is never called, the code never does
msmith [Tue, 8 Jan 2002 10:26:44 +0000 (10:26 +0000)]
Gut this header; since physio_proc_init is never called, the code never does
anything more than multiply declare some unused variables.

22 years agoStaticise the flash buffer, since it isn't needed anywhere else.
msmith [Tue, 8 Jan 2002 10:25:12 +0000 (10:25 +0000)]
Staticise the flash buffer, since it isn't needed anywhere else.

22 years agoStaticise the con_bios and digi_devclass variables, since they aren't needed
msmith [Tue, 8 Jan 2002 10:24:34 +0000 (10:24 +0000)]
Staticise the con_bios and digi_devclass variables, since they aren't needed
by anything else.