ru
ef6fbcba9b
*sigh* Really fix a typo.
...
Submitted by: bde
2002-04-16 06:34:59 +00:00
alc
e4a086ec75
Remove code that updates vm->vm_ssize. This duplicates work already
...
performed by vm_map_growstack().
2002-04-16 05:56:01 +00:00
alc
d366f41148
Remove code that updates vm->vm_ssize. This duplicates work already performed
...
by vm_map_growstack().
2002-04-16 05:38:13 +00:00
keramida
9d36fe9a23
Expand the reserved space section. Explain how the amount of reserved
...
space can affect performance.
Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
2002-04-16 05:35:56 +00:00
bmah
a1c1001cdd
Updated release notes: spic(4) tweaks and note MFC, OpenPAM Cineraria.
2002-04-16 04:47:35 +00:00
jhb
e34af244a9
Cast another bus_addr_t to long long for a printf to quiet a warning on
...
alpha.
2002-04-16 01:58:13 +00:00
arr
0517513584
- Nuke fore_pci_device.
...
- Add a device_method_t array, fore_methods.
- Add a fore_ident_table that contains the various FORE Systems PCA-200
series devices.
- Rewrite of the fore_probe routine (formerly known as fore_pci_probe).
- Minor changes... mostly WIP stuff to get this updated... still much to
be done.
2002-04-16 01:38:31 +00:00
arr
e96a876e5f
- Remove PCA-200E definition -- this will be re-added in the commit to
...
fore_load.c that will add ``fore_ident_table'' which holds various
types of FORE Systems PCA-200 series devices.
2002-04-16 01:34:00 +00:00
kuriyama
4cd83dc274
Change reference path/URL.
...
Submitted by: Olivier Tharan <olivier.tharan@idealx.com>
PR: docs/37094
MFC after: 1 week
2002-04-16 01:21:06 +00:00
kuriyama
da4022a8af
Change reference URLs.
...
Submitted by: Olivier Tharan <olivier.tharan@idealx.com>
PR: docs/37094
MFC after: 1 week
2002-04-16 01:18:25 +00:00
obrien
b080d56742
pal.s is no longer needed for the kernel to build with Gcc. We now use
...
in-line macros. pal.s remains however for use by Compaq 'ccc' some day.
2002-04-15 23:28:10 +00:00
obrien
2cae3ce3f1
The GCC developers have made good on their threats against #pragma for 3.1.
...
Use __weak_reference in place of the #pragma.
Submitted by: eischen
2002-04-15 23:11:38 +00:00
obrien
938168982f
Back out rev 1.6 -- I was in the wrong dir during a 'ci'. This change
...
was on hold waiting feedback from previous committer.
2002-04-15 23:03:29 +00:00
obrien
7f0d36ec10
ypclnt.h was the correct spelling... we now have yet another special
...
thing that needs to be done to get a header installed.
2002-04-15 22:57:56 +00:00
des
b41d43d579
Revert previous commit, it is incorrect.
2002-04-15 22:51:31 +00:00
obrien
f46bf6f79a
Properly spell rpcsvc/ypclnt.h and fix the build.
2002-04-15 22:47:28 +00:00
trhodes
9e9c2c31ac
disklabel(8) manual page:
...
--change "-s newboot" to "-s newboot2" in an example
--Fixed spelling
--Fixed some confusion between slice/parition/primary partition and other
things.
PR: 35947 and 35951
Noticed by: Gary W. Swearingen <swear@blarg.net>
Reviewed by: keramida
Thanks to: grog
MFC after: 2 days
2002-04-15 22:24:34 +00:00
obrien
a27301d850
Fix typo.
2002-04-15 21:57:40 +00:00
obrien
ab8cc9f06d
Remove the .stab directives. I do not understand what is different about
...
Gcc 3.1's 'cpp' vs. 2.95.3's. Maybe it is due to other code movement and
it just shows up weirdly in handling the .stab's. Anyway, w/o this change
building a kernel gives:
alpha/alpha/pal.s:75: relocation truncated to fit: REFLONG .text
alpha/alpha/prom_disp.s:67: relocation truncated to fit: REFLONG .text
2002-04-15 21:44:19 +00:00
phk
2edc95ffee
Remove two debug printfs which should never have been committed.
2002-04-15 21:08:51 +00:00
jhb
f656d44b0b
You have to cast int64_t's to long long if you printf them with %lld.
...
This now compiles on alpha without a warning.
Pointy-hat to: phk
2002-04-15 21:04:32 +00:00
jhb
cb08e4ed36
Recognize the AC97 interface to the onboard sound controller on the Nvidia
...
nForce chipset. Playback at least seems to work fine with the ich driver
out of the box.
Sponsored by: The Weather Channel
Help from: cg
2002-04-15 20:42:40 +00:00
obrien
b297f3946c
Sync SCM ID comments with libc.
2002-04-15 20:22:28 +00:00
asmodai
d138e20525
Sync with UDF p4 tree: Properly initialize part of the mntopts.
...
Move to WARNS=1.
2002-04-15 20:16:48 +00:00
asmodai
72a3bfdc81
Sync with UDF p4 tree: Use POSIX integer types instead of BSD types.
2002-04-15 19:49:15 +00:00
des
918591700f
Document WITNESS_PROFILING.
...
Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>
2002-04-15 19:42:15 +00:00
des
1c6c608da6
Drop maintainership of this, it serves no purpose.
2002-04-15 19:36:50 +00:00
obrien
37b3235248
Fix to WARNS=2 level.
...
Tested by: AXP gcc 3.1
2002-04-15 19:27:41 +00:00
jhb
45c5bb7593
Use bus_addr_t instead of u_int for local variables that are derived from
...
the per-channel bus_addr_t offset. Also, cast the offset to (long long)
and use %#llx instead of %#x to fix printf warnings on architectures where
sizeof(bus_addr_t) != sizeof(int).
2002-04-15 19:16:37 +00:00
cokane
4ab1aeb8f1
Fix some nits in AMD AGP driver. Remove excess malloc and move a bzero
...
out of the way, so it won't cause trouble.
Submitted by: Frank Mayher <frank@exit.com>
MFC after: 1 week
2002-04-15 18:57:26 +00:00
ume
31dc2e2cc4
Add awareness of an IPv6.
...
MFC after: 1 week
2002-04-15 18:45:20 +00:00
trhodes
4cfa23df55
This is a forced commit, the last commit email was never sent. Nit pick
...
about the date(1) manual page, describe which clock is set.
PR: 35606
2002-04-15 18:17:18 +00:00
trhodes
4afe0b0679
Little nit pick in date(1) manual page, tell users which clock date(1)
...
sets
PR: 35606
2002-04-15 18:05:14 +00:00
roam
5f4f4e1cd6
Fix a segfault if 'wear' is used without an argument or with
...
an argument that is not a valid word from the battlestar dictionary.
PR: 36992
Submitted by: Ceri Davies <ceri@FreeBSD.org>
Reviewed by: dd
Approved by: dd, silence on -audit
MFC after: 2 weeks
2002-04-15 17:27:34 +00:00
peter
d5c513e81b
Fix an "oops!" that turned out to be mostly harmless (but gave a warning).
...
I did this right on the sparc64. Store the direct mapped addresses in
the correct variables.
Submitted by: jake
2002-04-15 16:07:52 +00:00
imp
06ce15bf10
Add my level of stuff preference to MAINTAINERS
2002-04-15 16:01:41 +00:00
peter
3d8c7d4cab
Pass vm_page_t instead of physical addresses to pmap_zero_page[_area]()
...
and pmap_copy_page(). This gets rid of a couple more physical addresses
in upper layers, with the eventual aim of supporting PAE and dealing with
the physical addressing mostly within pmap. (We will need either 64 bit
physical addresses or page indexes, possibly both depending on the
circumstances. Leaving this to pmap itself gives more flexibilitly.)
Reviewed by: jake
Tested on: i386, ia64 and (I believe) sparc64. (my alpha was hosed)
2002-04-15 16:00:03 +00:00
des
929a8fb33d
Remove bogus reference to _use_yp.
2002-04-15 15:50:59 +00:00
greid
5486a1c99e
Stop a null pointer dereference in the builtin hash function.
...
PR: 36141
Approved by: cracauer
MFC after: 1 week
2002-04-15 15:49:30 +00:00
des
d44a434afa
Fix incorrect dependency. This should fix the -j build.
2002-04-15 15:39:14 +00:00
imp
e705a7166c
Use the one true tab size of 8, to match style(9)
2002-04-15 15:38:25 +00:00
des
4d91927fb0
Fix incorrect ordering in previous commit.
2002-04-15 15:31:25 +00:00
ru
dfc9f89396
This isn't WARNS ready in the -nostdinc case.
2002-04-15 15:30:10 +00:00
ru
67b437f443
Only pass our idea of `CC' down to mkdep(1) if it's non-default.
2002-04-15 15:23:45 +00:00
roberto
e1d6eb1831
Remove a spurious warning as x is always initialised before use.
...
es137x.c: In function `es1371_rdcd':
es137x.c:598: warning: `x' might be used uninitialized in this function
PR: kern/35408
Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org>
2002-04-15 14:43:23 +00:00
nyan
c911a2cbdc
MFi386: revision 1.7.
2002-04-15 13:44:00 +00:00
des
1a41b2c911
Throw in NO_WERROR to please the peanut gallery.
2002-04-15 13:10:28 +00:00
nectar
1f91e94116
Quoting log message for OpenBSD rev 1.7:
...
``Tack on MagniComp (BSD) license since this originally came from rdist.''
Obtained from: OpenBSD
2002-04-15 12:46:07 +00:00
benno
813f104cc8
Add ofwd to the GENERIC config for powerpc.
2002-04-15 12:30:18 +00:00
benno
a7de23a1ad
Add a nexus device.
...
Copied from: sparc64
2002-04-15 12:29:18 +00:00