| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Submitted by: luoqi Chen
fix a type in fsck.
(also add a comment that got picked up by mistake but is worth adding)
|
|
|
|
|
| |
PR: 6857
Submitted by: Josh Gilliam <josh@quick.net>
|
| |
|
|
|
|
| |
#includes. Use err(3).
|
|
|
|
| |
dot-terminate errx() strings.
|
|
|
|
| |
#includes and make it a little more -Wall-friendly.
|
| |
|
| |
|
|
|
|
|
| |
PR: 6829
Submitted by: Josh Gilliam <josh@quick.net>
|
|
|
|
|
| |
PR: 6844
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
|
| |
|
|
|
|
| |
directory. The rcs files were repository copied.
|
|
|
|
|
|
| |
for filesystems with almost the maximum number of sectors. The maxiumum
is 2^31, but overflow is common for that size, and overflow normally
occurred here at size (2^31 - 4096).
|
|
|
|
|
| |
PR: 6780
Submitted by: Yoshishige Arai <ryo2@on.rim.or.jp>
|
|
|
|
| |
Reviewed by: Bruce Evans <bde@freebsd.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Move a.out libraries to /usr/lib/aout to make space for ELF libs.
Make rtld usr /usr/lib/aout as default library path.
Make ldconfig reject /usr/lib as an a.out library path.
Fix various Makefiles for LIBDIR!=/usr/lib breakage.
This will after a make world & reboot give a system that no
longer uses /usr/lib/*, infact one could remove all the old
libraries there, they are not used anymore.
We are getting close to an ELF make world, but I'll let this
all settle for a week or two...
|
|
|
|
|
|
|
|
|
|
| |
Fixes bin/6649 and removes the last abusive signal handler.
Use SO_TIMESTAMP to get the kernel to timestamp packets on reception.
Fixes bin/5658 and provides slightly better accuracy.
Explicitly zero and terminate the IP options when using -R.
PR: bin/5658
PR: bin/6649
|
|
|
|
|
|
|
| |
"/etc/rc.conf".
PR: 6117
Submitted by: Mark Mayo <mark@vmunix.com>
|
|
|
|
| |
working a better fix.
|
|
|
|
|
| |
PR: 6649
Submitted by: Jason Young <doogie@forbidden-donut.anet-stl.com>
|
| |
|
|
|
|
| |
Bring man page up to date with -q flag behaviour.
|
| |
|
|
|
|
|
| |
many option letters left, I used long names only (like the previous
port= option)
|
| |
|
|
|
|
| |
that has some sort of kernel issue associated with it.
|
| |
|
|
|
|
|
|
|
|
|
| |
syndrome avoidance. The combination of SWS avoidance and ack-every-other
causes low throughput if the block size divided by the MSS is odd (which
is true with the default block size and MSS).
Turning on TCP_NODELAY disables the Nagle algorithm and sender SWS avoidance.
The rdump request/response protocol can not invoke Nagle and cannot cause
SWS, so this has no negative effects.
|
|
|
|
|
|
|
|
|
|
|
| |
are unaligned for access by the alpha, so copy the value to a variable
that is aligned.
When checking the returned data, be careful to avoid confusing the
size of the icmp header with the size of a timeval. On i386 these
are both 8, but on alpha, a timeval is 16 bytes. This means that
a packet sent from an alpha contains 48 bytes of data, not 56 like
on i386.
|
|
|
|
|
| |
Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
Make -q work for zeroing a specific rule.
|
|
|
|
|
|
|
|
|
|
|
|
| |
mount_umap [-o options] target mount-point uid-mapfile gid-mapfile
This should read
mount_umap [-o options] -u uid-mapfile -g gid-mapfile target mount-point
PR: 6586
Reviewed by: phk
Submitted by: Amakawa Shuhei amakawa@hoh.t.u-tokyo.ac.jp
|
|
|
|
|
|
|
|
| |
to write an original-id and a local-id in the other way around.
PR: 6593
Reviewed by: phk
Submitted by: Amakawa Shuhei <amakawa@hoh.t.u-tokyo.ac.jp>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
umount() was trying to stat() the mountpoint, this would fail if the
mountpoint was a NFS mountpoint, and the fallback code would try and pass
a hostname:/dir path as the mountpoint to unmount(2), which would fail.
This whole stat() of the name supplied on the command line business is
trouble as it'll wedge on a hung NFS mount.
I'm not entirely sure why we are not simply looking up both arguments
in the mount table and doing the right thing without accessing the
filesystem. It seems that we're going to a lot of trouble to allow
mountpoints on symlinks and other wierd things.
PR: 1607
|
|
|
|
|
| |
PR: 6571
Submitted by: Stephen J. Roznowski <sjr@home.net>
|
| |
|
|
|
|
| |
Use .An/.Aq in man page.
|
|
|
|
|
| |
PR: 6335
Submitted by: tom@sdf.com
|
|
|
|
| |
PR: 5635
|
|
|
|
| |
Reviewed by: Bill Trost <trost@cloud.rain.com>
|
|
|
|
|
|
| |
PR: 4485
Reviewed by: phk
Submitted by: Kees Jan Koster <kjk1@ukc.ac.uk>
|
|
|
|
|
|
|
|
|
|
| |
not reinitialized to 1 after calling getopt. This results in parsing
errors on all but the first rule. An added patch also allows '#'
comments at the end of a line.
PR: 6379
Reviewed by: phk
Submitted by: Neal Fachan <kneel@ishiboo.com>
|
| |
|
|
|
|
|
|
|
|
|
| |
routed discards the first character of the network address.
Example: "subnet=10.0.0.0/24,1"
The network address is interpreted as 0.0.0.0/24,1.
PR: 4825
Reviewed by: phk
Submitted by: Mike E. Matsnev <mike@azog.cs.msu.su>
|
|
|
|
|
| |
PR: 6339 (part of)
Submitted by: Chris Dillon <cdillon@wolves.k12.mo.us>
|
|
|
|
|
|
|
| |
error message prints the two numbers backwards.
PR: 6313
Reviewed by: phk
Submitted by: Archie Cobbs
|
| |
|
|
|
|
| |
up the tracks of my blunder.
|
|
|
|
| |
Immediately exit if /etc/wall_cmos_clock not present
|
| |
|
|
|
|
|
|
|
| |
PR: 1154
Reviewed by: phk
Manpage by: phk
Submitted by: Nickolay N. Dudorov nnd@itfs.nsk.su
|