Warner Losh
06596d3769
Add a note to UPDATING saying that now is a bad time to update due
...
to some KSE/libc_r interaction.
Submitted by: julian
2002-07-01 07:25:05 +00:00
Ruslan Ermilov
93329c3c6e
Fixed typos.
2002-07-01 07:25:02 +00:00
Doug Barton
4149dd4890
Unbreak build by removing 10.named for now
2002-07-01 05:44:51 +00:00
Juli Mallett
a306cfd13a
Add libufs to prebuild_libs, since lots of things will want it, in time.
2002-07-01 05:43:11 +00:00
Tim J. Robbins
99a84ce108
Declare environ as char **environ like in environ(7), not char *environ[].
...
This corrects a problem whereby xargs could not walk the environment table
to count the amount of space it used, and treated it as if it were empty.
This problem was introduced in rev 1.15.
MFC after: 2 days
2002-07-01 03:21:05 +00:00
Andrew R. Reiter
c0854cd341
- In thread_userret(), remove the Giant locking and unlocking around the
...
call to thread_alloc().
Approved by: julian
Reviewed by: jake, jeff
2002-07-01 03:15:16 +00:00
Alan Cox
c2eda4b565
o Remove some long dead code: from revision 1.41 of vm/vm_pager.c
...
3+ years ago.
o Remove some unused prototypes.
2002-07-01 02:38:05 +00:00
Matthew N. Dodd
d186bb1240
Implement a flag to disable directory creation for anonymous users.
...
PR: misc/38987
Submitted by: Peter da Silva <peter@abbnm.com>
MFC after: 1 week
2002-07-01 02:30:11 +00:00
Juli Mallett
20938dbf84
Add libufs, a library for dealing with UFS filesystems from userland to
...
the build. It is here to compartmentalise functionality currently duplicated
in many notable programs in the base system. It currently handles block
reads and writes, as well as reading and writing of the filesystem superblock,
and the reading/lookup of inode data. It supports both UFS and UFS2. I
will be maintaining it, and porting programs to use it, however for now, it
is simply being built as part of world.
2002-07-01 01:45:03 +00:00
Doug Barton
101d16a80f
This commit was generated by cvs2svn to compensate for changes in r99191,
...
which included commits to RCS files with non-trunk default branches.
2002-07-01 01:28:00 +00:00
Doug Barton
91549d76f3
Install the rfc 2317 notes
2002-07-01 01:23:59 +00:00
Doug Barton
5df3dc0270
* Make Xlist more complete, and more concise in some case.
...
* Reflect additional docs we're not using anymore.
* Add some notes for next time.
2002-07-01 01:23:01 +00:00
Doug Barton
16f43f04f8
Resolve conflicts, generally in favor of the vendor version.
2002-07-01 01:20:28 +00:00
Doug Barton
cc893dce92
This commit was generated by cvs2svn to compensate for changes in r99179,
...
which included commits to RCS files with non-trunk default branches.
2002-07-01 01:07:56 +00:00
Doug Barton
7af0653ebc
Import of ISC BIND version 8.3.3
2002-07-01 01:07:56 +00:00
Christian Weisgerber
958a88fbf7
LP64 fix: don't cast pointer to int
...
Reviewed by: gallatin, ticso
2002-06-30 23:36:21 +00:00
Juli Mallett
2ea0fdfb65
Nuke src/usr.bin/help in favor of projects/sccs/help (repo copied).
2002-06-30 23:31:21 +00:00
Mitsuru IWASAKI
fc57439987
Fix a build problem for the ACPI CA 20020404 import.
...
Add definition of COMPILER_DEPENDENT_INT64 and also
fix definition of COMPILER_DEPENDENT_UINT64.
Pointed-out by: Michael Nottebrock <michaelnottebrock@gmx.net>
2002-06-30 23:22:22 +00:00
Warner Losh
f83c4a42ea
IF_HANDOFF is no longer in -stable
2002-06-30 22:39:25 +00:00
Luigi Rizzo
41aa0ba271
Fix if_timer logic so that there is always a timeout pending if there
...
are packets queued for transmission.
This driver is strange -- it never sets IFF_OACTIVE, so all
transmissions always cause a call to fxp_start. However, if the
link gets stuck, there was nothing to reset it, so there was still
a possibility of lockups.
MFC after: 3 days
2002-06-30 22:28:00 +00:00
Luigi Rizzo
2e4fb41fa5
Fix if_timer logic to make sure that there is always a timeout
...
pending if there are packets queued for transmission.
Several drivers still have the same problem.
MFC after: 3 days
2002-06-30 22:16:22 +00:00
Luigi Rizzo
bcb9ef4fe6
Fix if_timer logic to make sure that there is always a timeout
...
pending if there are packets queued for transmission.
MFC after: 3 days
2002-06-30 22:05:46 +00:00
Luigi Rizzo
4dfae5a5e8
Make sure that if_timer does not get reset if there are packets
...
still queued for transmission. This should solve the problem of
the device stalling on transmissions if some link event prevents
transmission.
There are other drivers which have the same problem and need to be
fixed in the same way.
MFC after: 3 days
2002-06-30 21:59:08 +00:00
Dag-Erling Smørgrav
4f0fa8805b
This commit was generated by cvs2svn to compensate for changes in r99160,
...
which included commits to RCS files with non-trunk default branches.
2002-06-30 21:36:39 +00:00
Dag-Erling Smørgrav
d453fb1b0a
Vendor import of OpenPAM Citronella.
2002-06-30 21:36:39 +00:00
Dag-Erling Smørgrav
05aeb7267b
This commit was generated by cvs2svn to compensate for changes in r99158,
...
which included commits to RCS files with non-trunk default branches.
2002-06-30 21:30:05 +00:00
Dag-Erling Smørgrav
ee02aaa95b
Vendor import of OpenPAM Citronella.
2002-06-30 21:30:05 +00:00
Julian Elischer
58551c0393
Don't even read in the thread if it is a zombie process.
2002-06-30 20:13:53 +00:00
Jesper Skriver
eb538bfd64
Extend the effect of the sysctl net.inet.tcp.icmp_may_rst
...
so that, if we recieve a ICMP "time to live exceeded in transit",
(type 11, code 0) for a TCP connection on SYN-SENT state, close
the connection.
MFC after: 2 weeks
2002-06-30 20:07:21 +00:00
Bruce A. Mah
a6ae64c480
New release notes: ipfw(4) rewrite.
...
Modified release notes: ACPI 20020404, OpenSSH 3.4p1 (rewrote 3.3p1
update and reformatted).
2002-06-30 18:48:24 +00:00
Doug Barton
3a33dac41f
* Handle all flags, not just schg
...
* Make chflags -R more efficient by deleting everything we can first
2002-06-30 18:47:57 +00:00
Mitsuru IWASAKI
74fc979a09
Resolve conflicts arising from the ACPI CA 20020404 import.
2002-06-30 17:53:12 +00:00
Mitsuru IWASAKI
733e46c474
This commit was generated by cvs2svn to compensate for changes in r99146,
...
which included commits to RCS files with non-trunk default branches.
2002-06-30 17:50:46 +00:00
Mitsuru IWASAKI
3f12fee6bc
Vendor import of the Intel ACPI CA 200200404 drop.
2002-06-30 17:50:46 +00:00
Juli Mallett
c948c0582c
Minor cleanup: ANSI C function declarations, use argc after getopt(3) to check
...
for remaining arguments, rather than checking for *argv being a boolean truth.
Instead of using an empty case to check for -f- to mean "read stdin", and have
stdin reopned otherwise, use a FILE* for the mbox, and assign it to stdin when
we mean to use stdin, otherwise fopen(3). Kill `register' qualifier.
2002-06-30 17:36:54 +00:00
Julian Elischer
bff4151c28
grow a brain and do this right.
2002-06-30 17:06:46 +00:00
Juli Mallett
7aed2b41a4
Kill __P(), use ANSI C function declarations, remove local prototype for main,
...
and add a __FBSDID() while I'm here.
2002-06-30 15:30:14 +00:00
Juli Mallett
549e1e057c
Make it possible to have this (basename(1)) perform basename(3) on multiple
...
files. The traditional behaviour, 'basename string .suffix', is preserved,
however a suffix may now also be specified via a getopt(3) option, -s, such
that if it is specified in that way, all string arguments follow. There is
also a new flag, -a, which allows a user to say "yes, please basename(3) on
all arguments". Update manual to reflect this unobtrusively.
Reviewed by: obrien
2002-06-30 13:40:35 +00:00
Maxim Konovalov
492fa19f70
Trim EOL spaces.
...
Reviewed by: gshapiro
2002-06-30 12:08:36 +00:00
Maxim Konovalov
4872428528
Add an alias for sshd.
2002-06-30 12:04:41 +00:00
Dag-Erling Smørgrav
9a97937550
Forgot to update the addendum in the config files.
2002-06-30 10:32:09 +00:00
Yoshihiro Takahashi
37bd31c6c7
MFi386: revision 1.521
2002-06-30 09:34:10 +00:00
David E. O'Brien
64567a4162
Consistently wrap CSRG SCM ID.
...
Requested by: bde
2002-06-30 09:24:25 +00:00
David E. O'Brien
ea9ea04c0d
This is the start of the FreeBSD/x86_64 kernel.
2002-06-30 08:57:17 +00:00
Julian Elischer
6143c38376
Don't follow non existant thread pointers (e.g. for zombies)
2002-06-30 08:11:30 +00:00
David E. O'Brien
d2be885e99
This is the start of the FreeBSD/x86_64 kernel.
2002-06-30 08:05:21 +00:00
Luigi Rizzo
9961e27d73
Remove one useless variable.
2002-06-30 08:02:38 +00:00
Julian Elischer
7c7a6f22ca
If the process is a zombie, then you must not try dereference the thread
...
because there isn't one. Of course this code only possibly works
for single threaded processes anyhow..
2002-06-30 07:50:22 +00:00
David E. O'Brien
176d0ec15d
This is the start of the FreeBSD/x86_64 kernel.
2002-06-30 07:42:36 +00:00
David E. O'Brien
eca69d62e7
Gcc 3.1 varargs support.
2002-06-30 07:22:30 +00:00