christos
82d6e6c91c
Adding a note section, can result in adding two elf segments. Account for that.
2004-05-23 18:08:16 +00:00
mbw
0b2c6355fb
rewording of sparc64 installation tools
2004-05-23 17:47:09 +00:00
mbw
38e600ec2c
cgeight is TC
...
removed "not well tested" from hme -- it is well tested and stable.
add a little more JavaStation-NC info
zx (leo) doesn't have X server support
2004-05-23 17:23:33 +00:00
christos
4a167ec7cf
* -t -> -n with consistency with the usage.
...
* count was off by one.
* allocate enough space for the stats arrays to hold all the host we read.
2004-05-23 16:59:11 +00:00
christos
3c2635eac1
Do all the _res initialization in __res_get_state()
2004-05-23 16:55:09 +00:00
christos
13cc3543b5
centralize res_*init() calls in __res_get_state()
2004-05-23 16:54:12 +00:00
christos
94564d94a6
make this thread-safe.
2004-05-23 16:53:22 +00:00
martin
ebfe3ad1ce
Instead of SIZEOF_HEADERS (which ld gets wrong) use 1024 for now.
2004-05-23 16:10:25 +00:00
tron
f4ae533fa6
Really set "MKPRIVATELIB" and not "INTERNALLIB".
2004-05-23 14:05:39 +00:00
tsutsui
a714bd16ef
Add some byteswap ops around DMA descriptors for big endian machines.
...
Tested on macppc by matthew green.
XXX This driver completely lacks bus_dmamap_sync(9) ops.
2004-05-23 11:37:25 +00:00
jdolecek
58218d4f0f
add comments for values returned from the SMB request info used for statvfs
2004-05-23 11:18:28 +00:00
yamt
345a3c375d
- for tcp, use SO_RCVTIMEO to recover from server crash.
...
otherwise we can be stuck in soreceive forever.
the problem is pointed by Minoura Makoto. PR/25662
- clear r_rexmit on reconnect and clear r_rtt and R_TIMING on retransmit
so that the above (and soft mounts) happy.
2004-05-23 08:08:48 +00:00
skrll
d44ea9e7e9
Bump the date.
2004-05-23 06:51:42 +00:00
skrll
f835ef11b6
Implement %x for ELF.
2004-05-23 06:51:05 +00:00
kochi
39dacd3455
prevent panic for machines without any ACPI MADT table.
2004-05-23 05:57:57 +00:00
christos
45fb41a2bd
cut down another 7K by more NFS_V2_ONLY ifdefs.
2004-05-23 05:53:01 +00:00
christos
ba991ec242
one more missing weak_alias
2004-05-23 05:09:52 +00:00
lukem
a7bdccd7ef
Improve how the various helper libraries are added to LDADD/DPADD, including
...
supporting caching the OBJDIRS (via .MAKEOVERRIDES) to speed up subdir makes.
(Based on similar work in gnu/usr.sbin/postfix)
2004-05-23 03:16:40 +00:00
lukem
deb5b059d1
use MKPRIVATELIB=yes (instead of setting various other stuff to no)
2004-05-23 02:49:26 +00:00
lukem
b817247988
Use MKPRIVATELIB=yes instead of providing an empty libinstall:: target and
...
setting NOLINT, NOPIC, NOPROFILE (etc)
2004-05-23 02:24:50 +00:00
christos
dbf34104b4
PR/25680: Christian Biere: whereis/which return invalid information with
...
huge path
2004-05-23 02:24:06 +00:00
lukem
2308454342
* Add MKPRIVATELIB; if not "no", act as "MKPROFILE=no MKPIC=no MKLINT=no"
...
and don't install the (.a) library.
This is useful for "build only" helper libraries.
* Add some #{ [...] #} comments around large conditional statements.
2004-05-23 01:45:21 +00:00
martin
aacd0f5586
Use 1024 instead of SIZEOF_HEADERS for now.
2004-05-23 01:15:05 +00:00
jonathan
349ad018c7
Remove now-unused variable.
2004-05-23 00:37:27 +00:00
xtraeme
2450eae801
Remove the reference about "untested" in the Winbond W83697HF, it's
...
known to work fine.
2004-05-23 00:18:28 +00:00
xtraeme
9296855e4d
Fix typo (blockds -> blocks).
2004-05-23 00:04:25 +00:00
christos
162504ee9b
Provide access to the 8 symbols the bind8 resolver did, through weak aliases.
...
3 of them [res_send_*, and res_querydomain], were done incorrectly before...
2004-05-22 23:47:09 +00:00
christos
cad3251cd9
Provide access to the 5 symbols the bind8 resolver libc did.
2004-05-22 23:46:16 +00:00
kleink
25709a1d3a
POSIX: Permit a process without the appropriate privilege to change a
...
file's group ID to its effective gid, in addition to the presently
permitted set of supplementary gids.
From Mark Davies in PR standards/25401.
2004-05-22 23:24:23 +00:00
christos
b6b34b8065
fix memory leak; thanks to Logan Gabriel
2004-05-22 23:21:28 +00:00
christos
42a255dd25
Unfortunately, we need to allocate space here. Pointed out by Juan RP.
2004-05-22 23:17:04 +00:00
jonathan
230fb9b8ab
Eliminate several uses of `curproc' from the socket-layer code and from NFS.
...
Add a new explicit `struct proc *p' argument to socreate(), sosend().
Use that argument instead of curproc. Follow-on changes to pass that
argument to socreate(), sosend(), and (*so->so_send)() calls.
These changes reviewed and independently recoded by Matt Thomas.
Changes to soreceive() and (*dom->dom_exernalize() from Matt Thomas:
pass soreceive()'s struct uio* uio->uio_procp to unp_externalize().
Eliminate curproc from unp_externalize. Also, now soreceive() uses
its uio->uio_procp value, pass that same value downward to
((pr->pru_usrreq)() calls for consistency, instead of (struct proc * )0.
Similar changes in sys/nfs to eliminate (most) uses of curproc,
either via the req-> r_procp field of a struct nfsreq *req argument,
or by passing down new explicit struct proc * arguments.
Reviewed by: Matt Thomas, posted to tech-kern.
NB: The (*pr->pru_usrreq)() change should be tested on more (all!) protocols.
2004-05-22 22:52:13 +00:00
christos
223d219efc
declare the correct variable; thanks Juan RP.
2004-05-22 22:13:50 +00:00
christos
28fc1ac65d
Enable notes section now that we added header space on the i386. Other
...
platforms might want to do the same.
2004-05-22 22:07:33 +00:00
christos
d70a6522f9
Use 1024 instead of SIZEOF_HEADERS, so that we can include a note section.
2004-05-22 22:06:54 +00:00
oster
1c6a30a0b2
Update docs to reflect the support for the word "absent" in the "disks"
...
section of RAID config files.
2004-05-22 20:58:04 +00:00
oster
5f5d81ce38
Add support for the word "absent" in the "disks" section of
...
RAID config files. Used as a placeholder for a component that
will eventually be added into the set.
2004-05-22 20:56:52 +00:00
christos
85699649e2
grr, forgot to take out the &
2004-05-22 20:53:26 +00:00
christos
9a0b176050
allocate memory for statvfs instead of using the stack.
2004-05-22 20:46:53 +00:00
christos
880fcd4a6e
simplify stats taking and avoid the extra copy on the stack.
2004-05-22 20:42:08 +00:00
christos
a441628d4c
we are copying all the infomation from statvfs here; we don't need an
...
intermediate copy on the stack.
2004-05-22 20:28:38 +00:00
dsl
877f2a42a4
Remove the parts of messages that refer to etc.old.
2004-05-22 18:06:14 +00:00
yamt
f61189110c
document LK_EXCLOTHER.
2004-05-22 18:00:30 +00:00
christos
596171adc5
PR/24961: Arto Selonen: ipfilter 4.1.1 has problems parsing ipf.conf
2004-05-22 17:59:37 +00:00
dsl
55fe79a701
sysinst changes: use of /etc/postinstall, and use of existing raid1 sets
2004-05-22 17:46:56 +00:00
dsl
31c19c2213
Kill etc_saved and the prototype for save_etc()
2004-05-22 17:38:26 +00:00
dsl
15973dd816
Remove all the code (mostly already under #if 0) that played around
...
with etc.old
2004-05-22 17:31:37 +00:00
christos
02a532d111
PR/25532: Geoff C. Wing: a bad icmp-type rule in /etc/ipf.conf can cause ipf
...
to segv upon parsing.
2004-05-22 17:19:25 +00:00
lukem
bf8a5f304d
Document: CONFIGFILES CONFIGLINKS CONFIGSYMLINKS
...
Correct the documentation for FILES*_<fn>.
2004-05-22 16:04:58 +00:00
christos
7168861fac
Provide access to _res in the non-threaded case, and abort in the threaded
...
case.
2004-05-22 15:44:26 +00:00