]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years ago- Fix a missed idleproc -> idlethread conversion.
John Baldwin [Tue, 18 Sep 2001 21:37:09 +0000 (21:37 +0000)]
- Fix a missed idleproc -> idlethread conversion.
- Remove redundany fpucurproc (fpucurthread already existed)

23 years agoIf we have a p variable pointing to td->td_proc already, use it instead of
John Baldwin [Tue, 18 Sep 2001 21:20:58 +0000 (21:20 +0000)]
If we have a p variable pointing to td->td_proc already, use it instead of
needlessly repeating the indirection in several places.  Half of the places
used td->td_proc, and half used p.  They are now consistent with each other
and all use p.

23 years agoWhitespace fixes.
John Baldwin [Tue, 18 Sep 2001 21:05:04 +0000 (21:05 +0000)]
Whitespace fixes.

23 years agoo Introduce two new calls, securelevel_gt() and securelevel_ge(), which
Robert Watson [Tue, 18 Sep 2001 21:03:53 +0000 (21:03 +0000)]
o Introduce two new calls, securelevel_gt() and securelevel_ge(), which
  abstract the securelevel implementation details from the checking
  code.  The call in -CURRENT accepts a struct ucred--in -STABLE, it
  will accept struct proc.  This facilitates the upcoming commit of
  per-jail securelevel support.  The calls will also generate a
  kernel printf if the calls are made with NULL ucred/proc pointers:
  generally speaking, there are few instances of this, and they should
  be fixed.
o Update p_candebug() to use securelevel_gt(); future updates to the
  remainder of the kernel tree will be committed soon.

Obtained from: TrustedBSD Project

23 years agoHave the driver announce its rxcsum capabilities.
Jonathan Lemon [Tue, 18 Sep 2001 20:19:28 +0000 (20:19 +0000)]
Have the driver announce its rxcsum capabilities.

23 years agoSplit hwcsum into rxcsum and txcsum components.
Jonathan Lemon [Tue, 18 Sep 2001 20:13:48 +0000 (20:13 +0000)]
Split hwcsum into rxcsum and txcsum components.

23 years agoSplit HWCSUM into two components: RX and TX, for the benefit of drivers
Jonathan Lemon [Tue, 18 Sep 2001 20:13:03 +0000 (20:13 +0000)]
Split HWCSUM into two components: RX and TX, for the benefit of drivers
which can only do checksum offloading in one direction.

23 years agoo Remove redundant securelevel/pid1 check in procfs_rw() -- this
Robert Watson [Tue, 18 Sep 2001 19:53:10 +0000 (19:53 +0000)]
o Remove redundant securelevel/pid1 check in procfs_rw() -- this
  protection is enforced at the invidual method layer using
  p_candebug().

Obtained from: TrustedBSD Project

23 years agoSet debug information on the process being traced, not the current (debugger)
Mark Peek [Tue, 18 Sep 2001 19:06:11 +0000 (19:06 +0000)]
Set debug information on the process being traced, not the current (debugger)
process. This should allow gdb to function correctly on post-KSE kernels.

23 years agoHave the driver to announce what capabilitis it supports.
Jonathan Lemon [Tue, 18 Sep 2001 18:53:41 +0000 (18:53 +0000)]
Have the driver to announce what capabilitis it supports.

23 years agoHave the driver announce what capabilities it supports. These are
Jonathan Lemon [Tue, 18 Sep 2001 18:41:39 +0000 (18:41 +0000)]
Have the driver announce what capabilities it supports.  These are
currently not under user control.

23 years agoHave the driver advertise that it is capable of hardware checksums, and
Jonathan Lemon [Tue, 18 Sep 2001 18:40:22 +0000 (18:40 +0000)]
Have the driver advertise that it is capable of hardware checksums, and
allow the user to control the setting.  (checksums are enabled by default)

23 years agonfs_strategy calls nfs_asyncio with td as NULL. So add a bandaid that
Warner Losh [Tue, 18 Sep 2001 18:37:52 +0000 (18:37 +0000)]
nfs_strategy calls nfs_asyncio with td as NULL.  So add a bandaid that
will pass NULL as the struct proc when td is NULL.  This has stopped
crashing on my machine.

Note: The passing of NULL may be bogus, but I'll let others fix that
problem.

Reviewed by: jhb

23 years agoDrop maintainership.
Bruce A. Mah [Tue, 18 Sep 2001 17:58:10 +0000 (17:58 +0000)]
Drop maintainership.

23 years agoSupport the use of ${PORTSDIR} to find a ports tree INDEX file in
Bruce A. Mah [Tue, 18 Sep 2001 17:56:44 +0000 (17:56 +0000)]
Support the use of ${PORTSDIR} to find a ports tree INDEX file in
an other-than-default location.

PR: bin/30350
Submitted by: "NINOMIYA Hideyuki <NINOMIYA Hideyuki" <nin@jp.FreeBSD.org>
MFC after: 3 days

23 years agoTeach ifconfig about the new interface capability words.
Jonathan Lemon [Tue, 18 Sep 2001 17:43:30 +0000 (17:43 +0000)]
Teach ifconfig about the new interface capability words.

23 years agoAdd SIO{CG}IFCAP entries. Fix formatting of some other entries.
Jonathan Lemon [Tue, 18 Sep 2001 17:42:25 +0000 (17:42 +0000)]
Add SIO{CG}IFCAP entries.  Fix formatting of some other entries.

23 years agoAdd two fields to the ifnet structure indicating what extra capabilities
Jonathan Lemon [Tue, 18 Sep 2001 17:41:42 +0000 (17:41 +0000)]
Add two fields to the ifnet structure indicating what extra capabilities
a network device has, and which ones are enabled.

23 years agoTry to work off backlog of CURRENT release notes: vm.zeroidle_enable,
Bruce A. Mah [Tue, 18 Sep 2001 15:25:00 +0000 (15:25 +0000)]
Try to work off backlog of CURRENT release notes:  vm.zeroidle_enable,
an(4)/ancontrol(8) -M monitor mode, burncd(8) -d, cat(1) UNIX-domain
sockets.

23 years agoAdd ia64_get_cpuid().
Doug Rabson [Tue, 18 Sep 2001 15:21:18 +0000 (15:21 +0000)]
Add ia64_get_cpuid().

23 years agowhen setting blocksize, fix blockcount to 2 to reduce latency with smaller
Cameron Grant [Tue, 18 Sep 2001 15:19:44 +0000 (15:19 +0000)]
when setting blocksize, fix blockcount to 2 to reduce latency with smaller
block sizes.

23 years agomake buffer size adjustable.
Cameron Grant [Tue, 18 Sep 2001 15:12:35 +0000 (15:12 +0000)]
make buffer size adjustable.

23 years agodon't enable the mic record channel unless the codec supports it.
Cameron Grant [Tue, 18 Sep 2001 14:53:01 +0000 (14:53 +0000)]
don't enable the mic record channel unless the codec supports it.

allow hardware buffer size to be specified using hints.

23 years agoAdd support for loading bzip2-compressed kernels and modules. This support
Maxim Sobolev [Tue, 18 Sep 2001 14:52:36 +0000 (14:52 +0000)]
Add support for loading bzip2-compressed kernels and modules. This support
is turned off by default and could be enabled by defining LOADER_BZIP2_SUPPORT
make variable. Also make gzip support optional (turned on by default) -
it could be turned off via LOADER_NO_GZIP_SUPPORT make variable.

Please note, that due to limit on the amount of memory available to the
loader(8), it is possible to load modules/kernels compressed with the smallest
block size supported by the bzip2 - 100k (`-1' bzip2(1) option), however
even in this mode bzip2(1) usually provides better compression ratio than
gzip(1) in its best compression mode.

MFC after: 1 month

23 years agoRemoved ipip_input(). No codes calls it anymore due to ip_encap.c's
Munechika SUMIKAWA [Tue, 18 Sep 2001 14:52:20 +0000 (14:52 +0000)]
Removed ipip_input(). No codes calls it anymore due to ip_encap.c's
encapsulation support.

23 years agochange tracking of channel counts.
Cameron Grant [Tue, 18 Sep 2001 14:50:52 +0000 (14:50 +0000)]
change tracking of channel counts.

add method for retrieving "buffersize" hints for pcm devices, adjusted for
specified minimum, maximum and default values.

23 years agoadd a tunable/sysctl, hw.snd.targetirqrate, to modify the default target
Cameron Grant [Tue, 18 Sep 2001 14:45:09 +0000 (14:45 +0000)]
add a tunable/sysctl, hw.snd.targetirqrate, to modify the default target
irq rate for apps that do not set a blocksize.

23 years agoadd a method for retrieving codec capabilities
Cameron Grant [Tue, 18 Sep 2001 14:34:59 +0000 (14:34 +0000)]
add a method for retrieving codec capabilities

23 years agoFlesh out identifycpu().
Doug Rabson [Tue, 18 Sep 2001 13:26:30 +0000 (13:26 +0000)]
Flesh out identifycpu().

23 years agoAdd support for loading bzip2-compressed filesystems. Among other things
Maxim Sobolev [Tue, 18 Sep 2001 13:01:12 +0000 (13:01 +0000)]
Add support for loading bzip2-compressed filesystems. Among other things
this would allow to load bzip2-compressed kernels/modules from the loader(8)
(support for that will be committer separately).

MFC after: 1 month

23 years agoStyle.
Ruslan Ermilov [Tue, 18 Sep 2001 12:28:22 +0000 (12:28 +0000)]
Style.

23 years agoStyle.
Ruslan Ermilov [Tue, 18 Sep 2001 12:03:42 +0000 (12:03 +0000)]
Style.

23 years agoKLDMOD is not used since share/mk/bsd.kmod.mk,v 1.60.
Ruslan Ermilov [Tue, 18 Sep 2001 11:03:35 +0000 (11:03 +0000)]
KLDMOD is not used since share/mk/bsd.kmod.mk,v 1.60.

Forgotten by: peter

23 years agoAdd release note entry about the amdpm(4) driver.
Murray Stokely [Tue, 18 Sep 2001 04:55:25 +0000 (04:55 +0000)]
Add release note entry about the amdpm(4) driver.

23 years agoChange p into ke->ke_proc, this was hidden behind INVARIANTS.
Jonathan Lemon [Tue, 18 Sep 2001 03:36:21 +0000 (03:36 +0000)]
Change p into ke->ke_proc, this was hidden behind INVARIANTS.

23 years agoAdd 'device smb' to the synopsis, as this is required to do anything
Murray Stokely [Tue, 18 Sep 2001 02:50:24 +0000 (02:50 +0000)]
Add 'device smb' to the synopsis, as this is required to do anything
useful with these devices.

23 years agoRemove hard coded magic load address. Now to change the load address,
Peter Wemm [Tue, 18 Sep 2001 01:12:43 +0000 (01:12 +0000)]
Remove hard coded magic load address.  Now to change the load address,
we just have to change the pmap.h constants and ld will automatically
adapt based on the "kernbase" symbol.

23 years agoTweak the autoneg kickoff code to that it more closely resembles the
Bill Paul [Tue, 18 Sep 2001 00:31:19 +0000 (00:31 +0000)]
Tweak the autoneg kickoff code to that it more closely resembles the
method uses in the nsgphy driver.

23 years agoHandle the absence of net.inet.ip.fw.verbose_limit better, just like
Bill Fenner [Tue, 18 Sep 2001 00:03:48 +0000 (00:03 +0000)]
Handle the absence of net.inet.ip.fw.verbose_limit better, just like
 brian's fix for v6 in rev 1.56.

23 years agoFix a fatal type mismatch (char *static_env; vs char static_env[]).
Peter Wemm [Mon, 17 Sep 2001 21:27:41 +0000 (21:27 +0000)]
Fix a fatal type mismatch (char *static_env; vs char static_env[]).

Submitted by: bde

23 years agoUse includes to get prototypes for hints and env arrays.
Peter Wemm [Mon, 17 Sep 2001 21:25:48 +0000 (21:25 +0000)]
Use includes to get prototypes for hints and env arrays.

Submitted by: bde

23 years agoUse NULL instead of __FILE__ in the !LOCK_DEBUG case in the locking code
John Baldwin [Mon, 17 Sep 2001 21:21:02 +0000 (21:21 +0000)]
Use NULL instead of __FILE__ in the !LOCK_DEBUG case in the locking code
since the filenames are only used in the LOCK_DEBUG case and are just bloat
in the !LOCK_DEBUG case.

23 years agoFix multiple uses of commas to separate countries. This construct is
Greg Lehey [Mon, 17 Sep 2001 21:19:28 +0000 (21:19 +0000)]
Fix multiple uses of commas to separate countries.  This construct is
commonly used in the United States of America to represent a
hierarchical relationship between city and state or country
("Evacuation Day in Suffolk County, Massachusetts"), but it was also
being abused to enumerate unrelated places ("Independence Day in
Albania, Mauritania").

Remove the list of countries observing All Souls' Day.  This is a
widely observed holiday, and the list only included South American
contries.

There's more to do here; the list is rather patchy.

23 years agoReplace line accidentally deleted during KSE additions.
Julian Elischer [Mon, 17 Sep 2001 20:42:25 +0000 (20:42 +0000)]
Replace line accidentally deleted during KSE additions.
Symptom.. Stopped program unable to be restarted if it was stopped
while already sleeping.

23 years agoDon't inline mutexes in the LOCK_DEBUG case.
John Baldwin [Mon, 17 Sep 2001 19:31:26 +0000 (19:31 +0000)]
Don't inline mutexes in the LOCK_DEBUG case.

23 years agoIf any of various debug kernel options are enabled, set a LOCK_DEBUG
John Baldwin [Mon, 17 Sep 2001 19:30:41 +0000 (19:30 +0000)]
If any of various debug kernel options are enabled, set a LOCK_DEBUG
cpp macro that can be used to differentiate code generation for locking
functions.

23 years agoAdd a lock assertion to linux_sendsig() to match other sendsig functions.
John Baldwin [Mon, 17 Sep 2001 17:22:31 +0000 (17:22 +0000)]
Add a lock assertion to linux_sendsig() to match other sendsig functions.

23 years agoCall acpi_DeviceIsPresent() only for devices. This should make
Mitsuru IWASAKI [Mon, 17 Sep 2001 15:11:55 +0000 (15:11 +0000)]
Call acpi_DeviceIsPresent() only for devices.  This should make
non-ACPI_TYPE_DEVICE devices (such as acpi_tz and acpi_cpu) enabled
again.

Reviewed by: msmith

23 years agoFix segfault introduced in previous commit (when adding local packages).
Maxim Sobolev [Mon, 17 Sep 2001 13:37:50 +0000 (13:37 +0000)]
Fix segfault introduced in previous commit (when adding local packages).

23 years agoFix the bootstrapping aid from revision 1.9.
Ruslan Ermilov [Mon, 17 Sep 2001 11:59:43 +0000 (11:59 +0000)]
Fix the bootstrapping aid from revision 1.9.
WORLD was renamed to BOOTSTRAPPING.

23 years agoWhen bootstrapping install(1), libc may not have the strtofflags(3) support.
Ruslan Ermilov [Mon, 17 Sep 2001 11:58:14 +0000 (11:58 +0000)]
When bootstrapping install(1), libc may not have the strtofflags(3) support.

23 years agoRun the `bootstrap-tools' and `cross-tools' stages with BOOTSTRAPPING
Ruslan Ermilov [Mon, 17 Sep 2001 11:50:36 +0000 (11:50 +0000)]
Run the `bootstrap-tools' and `cross-tools' stages with BOOTSTRAPPING
flag defined.  This replaces the WORLD flag that got lost in revision
1.96.

23 years agoFirst appeared in 5.0, not in 4.4
Andrey A. Chernov [Mon, 17 Sep 2001 08:18:45 +0000 (08:18 +0000)]
First appeared in 5.0, not in 4.4

23 years agoCommon Mike adds see alsos from all of the synchronization
Mike Silbersack [Mon, 17 Sep 2001 07:24:48 +0000 (07:24 +0000)]
Common Mike adds see alsos from all of the synchronization
man pages to their brethren.

23 years agoFix a typo: documenation -> documentation
Mike Silbersack [Mon, 17 Sep 2001 06:54:26 +0000 (06:54 +0000)]
Fix a typo: documenation -> documentation

23 years agoUpdate to reflect the fact that net.inet.tcp.rfc1323 is on by default.
Jonathan Lemon [Mon, 17 Sep 2001 03:49:51 +0000 (03:49 +0000)]
Update to reflect the fact that net.inet.tcp.rfc1323 is on by default.

23 years agoFix so that lpc's interactive-mode will not be confused by EditLine processing
Garance A Drosehn [Mon, 17 Sep 2001 02:35:34 +0000 (02:35 +0000)]
Fix so that lpc's interactive-mode will not be confused by EditLine processing
into thinking that there is a print-queue called 'xterm'...

Reviewed by: short discussion on freebsd-stable
MFC after: 1 week

23 years agoChange permissions for initial install of maillog file to 640. (from 644)
Jonathan Lemon [Mon, 17 Sep 2001 02:04:20 +0000 (02:04 +0000)]
Change permissions for initial install of maillog file to 640. (from 644)

Pointed out by: rwatson

23 years agoChange maillog to have permissions of 640. Users shouldn't be able to
Jonathan Lemon [Mon, 17 Sep 2001 01:33:15 +0000 (01:33 +0000)]
Change maillog to have permissions of 640.  Users shouldn't be able to
eavesdrop on other users' communications.

23 years agostyle(9)
Mike Barcroft [Mon, 17 Sep 2001 00:23:19 +0000 (00:23 +0000)]
style(9)

Silence from: phantom

23 years agoAdd amdpm.4 to build.
Murray Stokely [Sun, 16 Sep 2001 22:36:25 +0000 (22:36 +0000)]
Add amdpm.4 to build.

23 years agoSMBus support for the AMD 756 power management unit. See smbus(4),
Murray Stokely [Sun, 16 Sep 2001 22:35:07 +0000 (22:35 +0000)]
SMBus support for the AMD 756 power management unit. See smbus(4),
amdpm(4) and smb(4).

This device can be used with userland programs such as sysutils/lmmon
to retrieve sensor information from the motherboard.

PR:    kern/23989
Obtained from:    Matthew C. Forman <mcf@dmu.ac.uk>
Based on:    alpm(4)

23 years agoAvoid empty decls when __FBSDIDs are turned off.
Matthew Dillon [Sun, 16 Sep 2001 21:43:34 +0000 (21:43 +0000)]
Avoid empty decls when __FBSDIDs are turned off.

Suggested by: bde
MFC after: 1 week

23 years agoImplement __FBSDID()
Matthew Dillon [Sun, 16 Sep 2001 21:35:07 +0000 (21:35 +0000)]
Implement __FBSDID()

23 years agoDisable per-user .login_conf support due to incorrect merging of local
Robert Watson [Sun, 16 Sep 2001 16:48:40 +0000 (16:48 +0000)]
Disable per-user .login_conf support due to incorrect merging of local
and globaly settings.  An alternative implementation will be developed.

Reported by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl>

23 years agoAdded pc98 support.
Yoshihiro Takahashi [Sun, 16 Sep 2001 12:40:20 +0000 (12:40 +0000)]
Added pc98 support.

23 years agoMFi386: sys/isa/fd.c revision from 1.205 to 1.219.
Yoshihiro Takahashi [Sun, 16 Sep 2001 12:39:59 +0000 (12:39 +0000)]
MFi386: sys/isa/fd.c revision from 1.205 to 1.219.

23 years agoAllocate i/o and memory resources using gdc driver.
Yoshihiro Takahashi [Sun, 16 Sep 2001 12:38:39 +0000 (12:38 +0000)]
Allocate i/o and memory resources using gdc driver.

23 years agoRecognize two cheap PCI 16550 devices :
Murray Stokely [Sun, 16 Sep 2001 11:14:56 +0000 (11:14 +0000)]
Recognize two cheap PCI 16550 devices :

  CyberSerial (1-port) 16550
  Oxford Semiconductor Dual Port 16550

Sort the list of PCI devices while I'm here.

23 years agoCatch up with the English version:
Hiroki Sato [Sun, 16 Sep 2001 09:17:25 +0000 (09:17 +0000)]
Catch up with the English version:

1.5   -> 1.7   errata/article.sgml

23 years agoFix some typo and malformed SGML markups.
Hiroki Sato [Sun, 16 Sep 2001 08:28:53 +0000 (08:28 +0000)]
Fix some typo and malformed SGML markups.

23 years agoIan Dowse had closed the race a little more in card ejection events.
Warner Losh [Sun, 16 Sep 2001 06:12:16 +0000 (06:12 +0000)]
Ian Dowse had closed the race a little more in card ejection events.
Maybe this will also fix the suprious eject events that we're seeing?

23 years agoMFi386: added comment for ed driver.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:34:34 +0000 (05:34 +0000)]
MFi386: added comment for ed driver.

23 years agoMFi386: cosmetic changes.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:34:05 +0000 (05:34 +0000)]
MFi386: cosmetic changes.

23 years agoMFi386: sys/isa/sio.c revision 1.301, 1.336, 1.337, 1.338, 1.339 and 1.342.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:33:07 +0000 (05:33 +0000)]
MFi386: sys/isa/sio.c revision 1.301, 1.336, 1.337, 1.338, 1.339 and 1.342.

Removed unnecessary PnP moden entries.

23 years agoMFi386: sys/i386/isa/pcaudio.c revision 1.59 and 1.61.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:30:59 +0000 (05:30 +0000)]
MFi386: sys/i386/isa/pcaudio.c revision 1.59 and 1.61.

23 years agoMFi386: sys/i386/isa/mse.c revision 1.54 and 1.55.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:30:08 +0000 (05:30 +0000)]
MFi386: sys/i386/isa/mse.c revision 1.54 and 1.55.

23 years agoMFi386: sys/i386/isa/clock.c revision 1.175 and 1.176.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:29:27 +0000 (05:29 +0000)]
MFi386: sys/i386/isa/clock.c revision 1.175 and 1.176.

23 years agoAdded (commented out) ACPI attachment.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:28:16 +0000 (05:28 +0000)]
Added (commented out) ACPI attachment.

23 years agoMFi386: files.i386 revision 1.367, 1.370, 1.371 and 1.372.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:24:57 +0000 (05:24 +0000)]
MFi386: files.i386 revision 1.367, 1.370, 1.371 and 1.372.

23 years agoMFi386: removed IDE_DELAY option.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:24:05 +0000 (05:24 +0000)]
MFi386: removed IDE_DELAY option.

23 years agoMFi386: sys/boot/i386/loader/main.c revision 1.24.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:22:51 +0000 (05:22 +0000)]
MFi386: sys/boot/i386/loader/main.c revision 1.24.

23 years agoMFi386: sys/boot/i386/libi386/Makefile revision 1.20.
Yoshihiro Takahashi [Sun, 16 Sep 2001 05:22:27 +0000 (05:22 +0000)]
MFi386: sys/boot/i386/libi386/Makefile revision 1.20.

23 years agoFix the improper backout.
David E. O'Brien [Sun, 16 Sep 2001 01:05:15 +0000 (01:05 +0000)]
Fix the improper backout.

23 years agoCorrect spelling of PNG.
Greg Lehey [Sat, 15 Sep 2001 23:55:07 +0000 (23:55 +0000)]
Correct spelling of PNG.
Make it clear that 16 September is the national day both in Mexico and PNG.

23 years agoBack out rev 1.38. Even though it saves a little space on the line,
David E. O'Brien [Sat, 15 Sep 2001 23:50:31 +0000 (23:50 +0000)]
Back out rev 1.38.  Even though it saves a little space on the line,
it confuses indent(1).

Requested by: bde

23 years agoo Correct authorization check in CANSIGIO(), which suffered from incorrect
Robert Watson [Sat, 15 Sep 2001 22:34:46 +0000 (22:34 +0000)]
o Correct authorization check in CANSIGIO(), which suffered from incorrect
  transcription during the (pcred,ucred) merge; this was not used for
  the kill() system call, so does not affect direct explicit process
  signalling.

Pointed out by: fenner

23 years agoAllow __FBSDID() to be used without ;
David E. O'Brien [Sat, 15 Sep 2001 21:10:25 +0000 (21:10 +0000)]
Allow __FBSDID() to be used without ;

23 years agoRevamp FBSDID's for libatm. Restore original import rcsid as per bde
Matthew Dillon [Sat, 15 Sep 2001 19:36:55 +0000 (19:36 +0000)]
Revamp FBSDID's for libatm.  Restore original import rcsid as per bde

Reviewed by: various people

23 years agoRearrange so we search for I/O port space as early as possible (i.e.
Doug Rabson [Sat, 15 Sep 2001 18:31:49 +0000 (18:31 +0000)]
Rearrange so we search for I/O port space as early as possible (i.e.
before console probing). Also fix a confusion between EFI's page size
which is fixed at 4096 and our own page size which is variable at compile
time.

23 years agoAdd a fake memory descriptor for the I/O port space.
Doug Rabson [Sat, 15 Sep 2001 18:29:42 +0000 (18:29 +0000)]
Add a fake memory descriptor for the I/O port space.

23 years agoAvoid the region used for thread0's trapframe when setting up the stack
Doug Rabson [Sat, 15 Sep 2001 18:23:51 +0000 (18:23 +0000)]
Avoid the region used for thread0's trapframe when setting up the stack
for ia64_init. If we use this area for ia64_init's stack, it ends up
containing garbage which causes cpu_fork to die horribly later.

23 years agoo Modify NFS rights comment to note that the early credential changes
Robert Watson [Sat, 15 Sep 2001 17:09:39 +0000 (17:09 +0000)]
o Modify NFS rights comment to note that the early credential changes
  to test for a home directory don't set up the additional groups, and
  as such may limit users conservatively.  This does not affect the
  eventual credentials selected.

23 years ago[-- Attachment #1 --]
David E. O'Brien [Sat, 15 Sep 2001 16:47:24 +0000 (16:47 +0000)]
[-- Attachment #1 --]
[-- Type: text/plain, Encoding: quoted-printable, Size: 0.1K --]

Hi! How are you?

I send you this commit log in order to have your advice

See you later. Thanks

[-- Attachment #2: CVS Commit Log.doc --]
[-- Type: application/mixed, Encoding: base64, Size: 315K --]

Update SCM ID guidelines to reflect the newly added __FBSDID macro.

23 years agoo Add a comment noting that the early setting of privileges for the purpose
Robert Watson [Sat, 15 Sep 2001 16:12:56 +0000 (16:12 +0000)]
o Add a comment noting that the early setting of privileges for the purpose
  of NFS home directory and root directory processing fails to include
  additional groups.  This doesn't impact the final credential, but does
  mean that users may be denied login even when additional groups might
  allow it.

23 years agoCatch up with the English version:
Hiroki Sato [Sat, 15 Sep 2001 15:39:58 +0000 (15:39 +0000)]
Catch up with the English version:

1.124 -> 1.139 relnotes/common/new.sgml

23 years agoMerged from sys/i386/isa/pcaudio.c revision 1.62 (KSE changes).
Yoshihiro Takahashi [Sat, 15 Sep 2001 15:37:52 +0000 (15:37 +0000)]
Merged from sys/i386/isa/pcaudio.c revision 1.62 (KSE changes).

23 years agoMerged from sys/i386/apm/apm.c revision 1.123 (KSE changes).
Yoshihiro Takahashi [Sat, 15 Sep 2001 15:33:28 +0000 (15:33 +0000)]
Merged from sys/i386/apm/apm.c revision 1.123 (KSE changes).

23 years agoUse the MI console code to initialise the console.
Doug Rabson [Sat, 15 Sep 2001 15:31:59 +0000 (15:31 +0000)]
Use the MI console code to initialise the console.

23 years agoImplement inx() and outx() functions for accessing I/O ports.
Doug Rabson [Sat, 15 Sep 2001 12:30:56 +0000 (12:30 +0000)]
Implement inx() and outx() functions for accessing I/O ports.