obrien
40ee2bd5c8
Use __FBSDID().
...
Approved by: phk
2003-06-11 06:49:16 +00:00
alc
958ca4b214
Add vm object locking.
2003-06-11 06:43:48 +00:00
rwatson
057b61aa1c
Add "-n" argument, which causes mdconfig to simply print the unit
...
number X, rather than mdX, making it easier to script tests that
use md devices but don't want to make assumptions about any existing
md use (such as in diskless environments).
2003-06-11 06:38:24 +00:00
phk
828e56cac2
Fix date, appearantly everybody else got done with May before I did.
2003-06-11 06:37:55 +00:00
obrien
7d804031bd
Use __FBSDID().
2003-06-11 06:34:30 +00:00
obrien
74603d4bb9
Use __FBSDID().
2003-06-11 05:57:50 +00:00
obrien
8b64eb1925
Use __FBSDID().
2003-06-11 05:37:42 +00:00
peter
fda03b7cfc
GC unused cpu_wait() function
2003-06-11 05:20:33 +00:00
ps
3fbe5ead23
Don't overflow when calculating vm_kmem_size. This fixes kmem_map
...
too small panics on PAE machines which have odd > 4GB sizes (4.5 gig
would render a 20MB of KVA for kmem_map instead of 200MB).
Submitted by: John Cagle <john.cagle@hp.com>, jeff
Reviewed by: jeff, peter, scottl, lots of USENIX folks
2003-06-11 05:18:59 +00:00
grog
be2119ccd6
Remove all files. They're now in tools/debugscripts.
2003-06-11 04:54:58 +00:00
rwatson
decffe6132
Add the comment I meant to add about not passing in PCATCH to the
...
tsleep(). Note the XXX.
2003-06-11 03:32:42 +00:00
davidxu
52433d15d4
Fix error in my last commit. Correctly maintain p_maxthrwaits and unlock
...
sched_lock.
2003-06-11 01:08:33 +00:00
obrien
3b8fff9e4c
Use __FBSDID().
2003-06-11 00:56:59 +00:00
obrien
a63f21d732
Use __FBSDID().
2003-06-11 00:34:37 +00:00
obrien
b1be1caeb2
Use __FBSDID().
2003-06-11 00:01:05 +00:00
obrien
bf4e264609
Use __FBSDID().
2003-06-10 23:48:55 +00:00
obrien
c4764df5a4
Use __FBSDID().
2003-06-10 23:39:45 +00:00
obrien
4b63767236
Use __FBSDID().
2003-06-10 23:23:33 +00:00
obrien
62dc1f7c25
Use __FBSDID().
2003-06-10 22:09:23 +00:00
scottl
c26dd94755
Don't start the beastie menu if the 'beastie_disable' variable is set to
...
'YES'.
If the user selects to escape to the loader prompt, set 'autoboot_delay'
to 'NO' so that the prompt timer doesn't run.
2003-06-10 22:04:09 +00:00
obrien
349c6025d0
Use __FBSDID().
2003-06-10 21:44:29 +00:00
obrien
f72cbcf207
Use __FBSDID().
2003-06-10 21:29:12 +00:00
obrien
690b759d6f
Use C99 compatible ASM statements.
...
(untested, but existing state breaks
http://triangle.rtp.freebsd.org/~des/tinderbox-CURRENT-amd64-amd64.brief )
2003-06-10 21:17:55 +00:00
trhodes
3514f4bda7
Add an EXAMPLES section.
...
PR: 43899
Reviewed by: des, ru
2003-06-10 20:41:18 +00:00
trhodes
d46752fb9c
Revert 1.52. This should have been added to fetch.3.
...
Discussed with: des, ru
2003-06-10 20:34:50 +00:00
alc
cad0ed280c
- Finish vm object and page locking in vnode_pager_setsize().
...
- Make some small style changes to vnode_pager_setsize(); most notably,
move two comments to a more logical place.
2003-06-10 20:28:41 +00:00
tmm
f417e2c3b6
- Add manpages for the gem and hme ethernet drivers. These were obtained
...
from NetBSD, and changed slightly to account for FreeBSD specifics.
- Hook them up to the build.
- Add them to the list of miibus-using drivers in miibus(4).
2003-06-10 18:53:15 +00:00
jmallett
25cc522581
Various cleanups of careless mistakes/omissions.
...
PR: 53149
Submitted by: Lukas Ertl <l.ertl@univie.ac.at>
2003-06-10 18:36:16 +00:00
yar
957fe1b56f
Read gettytab(5) soon enough to fill in all necessary values.
...
Re-read gettytab(5) only if needed.
This fixes bugs introduced as long ago as in getty/main.c rev.1.15.
PR: bin/18181
MFC after: 1 month
2003-06-10 18:30:41 +00:00
jmallett
e5d76875b9
Left out the critical part of my "public domain" template, a notice saying
...
that this file is (these files are) in the public domain.
PR: 53149
2003-06-10 18:24:40 +00:00
obrien
85bd755f79
Use __FBSDID().
2003-06-10 18:14:05 +00:00
obrien
37ee58d305
Use __FBSDID().
2003-06-10 17:50:20 +00:00
obrien
25e30e56b8
Use __FBSDID().
2003-06-10 17:31:31 +00:00
obrien
e5cb815b52
Use __FBSDID().
2003-06-10 17:10:18 +00:00
obrien
8a214d6cd9
Use __FBSDID().
2003-06-10 17:02:51 +00:00
obrien
5f6e9c487e
Use __FBSDID().
2003-06-10 16:50:43 +00:00
markm
d152e35c14
Revert part of the last commit. This fixes tail for pipes.
...
Submitted by: joerg
2003-06-10 16:49:14 +00:00
yar
e46b9f99ca
Spot one more place where boolean variables were incremented
...
instead of just being assigned a truth value.
2003-06-10 16:34:03 +00:00
yar
151ea28b4a
Coding style fix: Use "foo = 1" instead of "foo++" to assign
...
the truth value to a boolean variable, especially when inside
a loop. The variable can overflow otherwise, at least in theory.
2003-06-10 15:38:35 +00:00
yar
1e04cff15e
Break sentences.
...
MFC after: 1 week
2003-06-10 15:03:35 +00:00
yar
e02d96106b
General mdoc(7) markup fixes:
...
- Use .Va, not .Em, to mark up variable-like identifiers
(capability and database entry names.)
- Stop abusing .Tn (trademark) to emphasize general phrases.
- Spot unmarked capability references.
- Add a missing line break.
Discussed with: ru
MFC after: 1 week
2003-06-10 14:46:43 +00:00
yar
e23db6df64
Improve the language and markup of the description of the pp and pl
...
capabilities:
- Mark up capability identifiers.
- Don't squeeze much text into the capability table given the options
will be described below in detail.
- Keep the capability table sorted.
- Use a consistent term for a PPP login program.
MFC after: 1 week
2003-06-10 14:20:38 +00:00
simokawa
7b62f180d5
Fix typo in the previous revision.
2003-06-10 12:08:58 +00:00
markm
59216c5be9
Clarify the telnet requirements slightly, and state an area-of-interest
...
in the crypto source. This is not a lock.
2003-06-10 12:02:46 +00:00
sheldonh
f33eceddeb
Add cross-references to pci(4) and pciconf(8).
2003-06-10 09:20:04 +00:00
ache
e88fc6c3e3
Add entry for removing deprecated locale names
...
Approved by: imp
2003-06-10 08:26:38 +00:00
ru
df0f2667b6
Tidy up the manpage.
...
Reviewed by: grog
2003-06-10 05:29:14 +00:00
obrien
592c484d7c
Use __FBSDID().
2003-06-10 05:05:54 +00:00
obrien
a4cd3eb263
Remove NOSHLIBS, users can get by with NOPIC.
...
Desired by: ru
2003-06-10 04:47:49 +00:00
gibbs
be413c7591
Sync perforce IDs.
2003-06-10 03:25:24 +00:00