Julian Elischer
b2adb4b2c3
Remove vestiges of old code...
...
These functions are always called on new memory so they can
not already be set up, so don't bother testing for that.
(This was left over from before we used UMA (which is cool))
2002-07-03 20:06:38 +00:00
Johan Karlsson
e9a5542330
Reconnect whereis
...
Approved by: sheldonh (mentor)
2002-07-03 19:23:50 +00:00
Johan Karlsson
b81a9775c7
Switch to c version
...
Approved by: sheldonh (mentor)
2002-07-03 19:22:52 +00:00
Johan Karlsson
8d430958db
compact synopsis
...
s/program [program ...]/program .../
s/program [...]/program .../
Approved by: sheldonh (mentor)
2002-07-03 19:20:59 +00:00
Johan Karlsson
058e185122
Remove -p flag.
...
OpenBSD's implementation lacks -p, and we don't want to
support the option now, only to lose it if/when we later
switch to OpenBSD's implementation.
This functionality is provided by which(1).
Approved by: sheldonh (mentor)
2002-07-03 19:19:54 +00:00
Johan Karlsson
9d1b456e66
Add __FBSDID.
...
Remove __COPYRIGHT, __RCSID which caused an assembler warning.
Approved by: sheldonh (mentor)
2002-07-03 19:17:59 +00:00
Alan Cox
22a97b04de
o Make the reservation of KVA space for kernel map entries a function
...
of the KVA space's size in addition to the amount of physical memory
and reduce it by a factor of two.
Under the old formula, our reservation amounted to one kernel map entry
per virtual page in the KVA space on a 4GB i386.
2002-07-03 19:16:37 +00:00
Johan Karlsson
b78dcb87c0
Change to NetBSDs version of whereis.
...
Approved by: sheldonh (mentor)
Obtained from: NetBSD
2002-07-03 19:16:31 +00:00
Johan Karlsson
5e3fde98fc
Disconnect whereis while importing version from NetBSD
...
Approved by: sheldonh (mentor)
2002-07-03 19:05:15 +00:00
Tom Rhodes
23ef6da7d2
Fix a typo: s/und/and/
...
Not Reviewed by: re@
2002-07-03 18:04:10 +00:00
Mark Murray
c822396536
Apply __FBSDID(); fix local variable(names) that stomp on global
...
definitions; fix some const strings; fix some signedness issues.
2002-07-03 16:43:11 +00:00
Mark Murray
06e8d9547c
Apply __FBSDID(), ISOfy, fix easy warning.
2002-07-03 16:38:04 +00:00
Mark Murray
7ede89e44b
Fix some low-hanging lint-fruit: endianness and staticness warnings.
2002-07-03 16:35:20 +00:00
Ruslan Ermilov
4d7d5e7c11
Make it possible (again) to build and install shared library only.
...
One needs to define SHLIB_NAME for this to work.
Prodded by: mi
2002-07-03 16:22:43 +00:00
Chris Costello
05ddd41b23
Move appropriate information out of DESCRIPTION' and into
SECURITY
...
CONSIDERATIONS'.
Sponsored by: DARPA, NAI Labs
2002-07-03 15:31:47 +00:00
Mark Murray
ece80b1d6f
C rewrite of kbdmap/vidfont.
...
Submitted by: Jonathan Belson <jon@witchspace.com>
OK'ed by: wosch (Perl code maintainer)
2002-07-03 14:56:08 +00:00
Tim J. Robbins
bfed7b6485
Note that two carriage returns aren't required after entering the
...
initial setup anymore (since process.c rev. 1.25). Add $FreeBSD$.
MFC after: 2 weeks
2002-07-03 14:42:53 +00:00
Mark Murray
ccece3d626
Whitespace diffs only; this brings this file into the same whitespace
...
convention as src/lib/csu/*/crt1.c.
This will make the follow up diffs easier to see and extract.
2002-07-03 14:42:39 +00:00
Tim J. Robbins
8523e9a677
Avoid checking whether each line is the last line of the file when we don't
...
need to know. Instead, check when we are trying to match a "$" address.
This does not change the way sed processes regular files, but makes it behave
more sensibly when used interactively.
PR: 40101
MFC after: 2 weeks
2002-07-03 14:38:27 +00:00
Tim J. Robbins
5a3232258e
Don't let the pattern space become null if the `x' command is used when the
...
hold space is null; some functions assume it's never null.
MFC after: 3 days
2002-07-03 14:32:43 +00:00
Mark Murray
13ae4922e5
Give k5admin a manpage.
2002-07-03 14:31:52 +00:00
Maxim Sobolev
18febd99fb
Fix another POLA breakage in a new tar: in diff mode presence of file
...
in the archive, but its absence in the file system should be reported
as difference, not as error.
Reported by: bde
2002-07-03 13:01:40 +00:00
Maxim Sobolev
b19918bd36
When we are extracting directory with --unlink option and the directory
...
already exists don't spew bogus "Cannot unlink" error and exit with
non-zero code.
Reported by: bde
2002-07-03 12:44:31 +00:00
Ruslan Ermilov
6e02167b57
Moved checkdpadd target to where it logically belongs.
2002-07-03 12:44:06 +00:00
Ruslan Ermilov
badb7c1c6b
Try really hard to fix parallel installs. Add a bunch of .ORDER
...
directives to ensure that all realinstall sub-tasks are executed
after beforeinstall, similarly ensure that all afterinstall sub-
tasks are executed after realinstall. Demonstration:
all: task1 task2
.ORDER: task1 task2
task2: task2_subtask
.ORDER: task1 task2_subtask
task1 task2 task2_subtask:
@sleep `jot -r 1 0 1.0`
@echo ${.TARGET}
Without the second .ORDER directive, task2_subtask can be run in
parallel with task1.
Spotted by: Andrea Campi <andrea@webcom.it>
2002-07-03 12:28:03 +00:00
Ruslan Ermilov
ff9a78c08e
mdoc(7) police: added missing markup bits, lowercased argument names.
2002-07-03 12:24:11 +00:00
Maxim Konovalov
0e37791701
Remove trailing whitespaces.
...
Approved by: luigi
2002-07-03 11:04:17 +00:00
Maxim Konovalov
b4eabccf51
o Strict interface names comparison. The old code assumed "fxp1" == "fxp11".
...
o Use an appropriate constant for interface name buffer.
Reviewed by: luigi
Approved by: luigi
MFC after: 1 month
2002-07-03 11:00:55 +00:00
Maxime Henrion
d7f9ecc86b
Move vfs_rootmountalloc() in vfs_mount.c and remove lite2_vfs_mountroot()
...
which was #if 0'd and is not likely to be used now.
2002-07-03 09:27:24 +00:00
Julian Elischer
aa0fa33464
Try clean up some of the mess that resulted from layers and layers
...
of p4 merges from -current as things started getting different.
Corroborated by: Similar patches just mailed by BDE.
2002-07-03 09:15:20 +00:00
Maxime Henrion
563af2ec15
Remove an unused argument in vfs_mountroot().
2002-07-03 08:52:37 +00:00
Chris Costello
00c3b17e1e
Correct a call to fcntl(F_SETFD) to use FD_CLOEXEC' instead of
1'.
2002-07-03 08:15:55 +00:00
Chris Costello
32f9f49908
Add a SECURITY CONSIDERATIONS example: make note that access to open
...
file descriptors does not change upon dropping privilege, and include
a likely case of `setuid(non_superuser); exec(...);'.
Sponsored by: DARPA, NAI Labs
Obtained from: TrustedBSD Project
2002-07-03 08:13:25 +00:00
SUZUKI Shinsuke
80317922b5
fixed typo.
...
obtained from: KAME
MFC after: 3 days
2002-07-03 06:48:12 +00:00
Jonathan Mini
66289ab43b
Add missing kernal tunables to loader.conf.
...
PR: i386/39085
Submitted by: David Yeske <dyeske@yahoo.com>
2002-07-03 06:42:43 +00:00
Jonathan Mini
16f33a4885
Fix off-by-one error.
...
PR: misc/40104
Submitted by: Neal Fachan <neal@isilon.com>
MFC after: 3 days
2002-07-03 06:28:04 +00:00
Ruslan Ermilov
93c163325e
No need to explicitly set NOMAN here.
...
Reviewed by: jmallett
2002-07-03 06:25:28 +00:00
Julian Elischer
ee9919b024
White space commit.
...
I'm working on this file but I wanted to make the whitespece commit
separatly.
2002-07-03 06:15:26 +00:00
Julian Elischer
2b877fac01
Approved by: imp@freebsd.org
2002-07-03 04:23:38 +00:00
Andrew Gallatin
0ac3b6364f
Hold the sched lock across call to forward_signal() in tdsignal() to
...
keep SMP systems from panic'ing when ^C'ing an app
suggested by julian
2002-07-03 02:55:48 +00:00
Dag-Erling Smørgrav
b61860ad2d
Add mtx_ prefixes to the fields used for mutex profiling, and fix a bug
...
where the profiling code would report the release point instead of the
acquisition point.
Requested by: bde
2002-07-03 01:50:27 +00:00
Dag-Erling Smørgrav
c2945c3b11
Add the "java" category.
2002-07-03 00:35:09 +00:00
Jeff Roberson
e221e841b0
Actually use the fini callback.
...
Pointy hat to: me :-(
Noticed By: Julian
2002-07-03 00:30:51 +00:00
Dag-Erling Smørgrav
b770f258b3
- Don't enable OpenSSH's OPIE support, since we let PAM handle OPIE.
...
- We don't have setutent(3) etc., and I have no idea why configure ever
thought we did.
2002-07-03 00:12:09 +00:00
Dan Moschuk
0849c18499
Make sure to reset transflag back to zero upon succesfully using sendfile()
...
to transfer a file.
PR: 39362
Submitted by: TANAKA Hiroyuki <kattyo@abk.nu>
MFC after: 1 week
2002-07-03 00:12:00 +00:00
Dag-Erling Smørgrav
53282320d1
Two FreeBSD-specific nits in comments:
...
- ChallengeResponseAuthentication controls PAM, not S/Key
- We don't honor PAMAuthenticationViaKbdInt, because the code path it
controls doesn't make sense for us, so don't mention it.
Sponsored by: DARPA, NAI Labs
2002-07-03 00:08:19 +00:00
Tom Rhodes
126aa65832
Fix grammar in 1 sentence
...
Reword 'Usually faster in most cases' to 'and is faster in most cases'
PR: 40024 (partly)
2002-07-02 21:13:15 +00:00
John Baldwin
7a921ebf84
Diff-reduce with 4-stable: 4.x has a compat4x package.
2002-07-02 21:07:25 +00:00
Mark Peek
3aaa96958d
Fix typo (SIGEV_EVENT -> SIGEV_KEVENT).
2002-07-02 21:05:08 +00:00
Tom Rhodes
54739799f2
GXP ATA drives also supports TQ
2002-07-02 20:23:43 +00:00