| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
kernel, and remove setgid kmem, which is not needed any more.
|
|
|
|
| |
MFC after: 5 days
|
|
|
|
|
| |
PR: 8479
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
|
|
|
|
|
|
|
|
| |
backslash as nothing, treat it like a space so that adjacent lines
aren't glued together.
PR: 8479
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
|
|
|
|
|
|
| |
Reviewed by: ru, ume
Obtained from: NetBSD
MFC after: 1 week
|
| |
|
| |
|
|
|
|
| |
MFC after: 2 weeks
|
|
|
|
|
| |
PR: bin/17640
MFC after: 2 weeks
|
|
|
|
|
|
|
|
|
| |
user runs with privilege, allowing the sending of icmp packets with
larger size (up to 48k, the default receive buffer size in ping),
which is useful for network driver development testing, as well
as experimentation with fragmentation.
Reviewed by: wpaul
|
|
|
|
| |
Thanks to: dd for noticing the need for a cast.
|
|
|
|
|
|
|
| |
- a wording improvement in BUGS (ping vs ping6 issue)
Obtained from: KAME
MFC after: 1 week
|
|
|
|
|
| |
Obtained from: KAME
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
option, regardless of the -f option.
based on a comment from Tomohide Nagashima <tomohide@japan-telecom.co.jp>.
Obtained from: KAME
MFC after: 1 week
|
| |
|
| |
|
|
|
|
| |
Reviewed by: -arch, -audit
|
|
|
|
| |
Please-read-style(9): dd
|
|
|
|
| |
PR: bin/28386
|
|
|
|
|
|
| |
o Sync with netinet6/ip6_fw.c (1.12).
MFC after: 10 days
|
| |
|
|
|
|
| |
builtints (e.g., exit, strcmp).
|
|
|
|
| |
builtins (e.g., exit, strcmp).
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
ensure that we never proceed with the mount() syscall if the server
is replying from the wrong source address. Previously the userland
RPC call to the remote nfsd would succeed, but the kernel uses
connect() so it would not see the replies, resulting in a hung
mount.
|
|
|
|
| |
Submitted by: bde
|
|
|
|
| |
Submitted by: Mike Barcroft <mike@q9media.com>
|
|
|
|
|
|
|
|
|
|
|
| |
NQNFS code is ancient, bug-ridden, and should probably be removed).
The wording here was very confusing; it was easy to get the impression
that NQNFS is an extension to NFSv3 when in fact it just uses some
NFSv3-like extensions on top of NFSv2. As witnessed by the mailing
lists and PRs, some people were reading the description and deciding
that NQNFS was what they wanted to use.
MFC after: 1 week
|
| |
|
|
|
|
|
|
| |
missed that natd has a -v option that will give similar functionality.
Requested by: ru
|
|
|
|
|
|
|
| |
of a restrictive firewall rule, also report detail on the packet
that caused the failure.
MFC after: 3 days
|
|
|
|
| |
sizeof(int) == sizeof(long) assumption; clamp down with WARNS=2.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
driver itself obviously won't configure such a disk, but the error
returned (EDOM) is more cryptic to the average user than it should be.
Also assert that the argument to -u is in fact a valid unit; don't
just accept any string to mean 0.
Approved by: phk
|
|
|
|
| |
Submitted by: Alexander Leidinger <Alexander@Leidinger.net>
|
|
|
|
|
| |
Reviewed by: ru
MFC after: 2 weeks
|
|
|
|
|
| |
PR: misc/28283
MFC after: 2 weeks
|
| |
|
|
|
|
| |
Submitted by: ru
|
| |
|
| |
|
|
|
|
|
|
|
| |
newfs(8), and mount(8) that mimics the command line option set of the
deprecated mount_mfs(8).
Approved by: jkh, phk, -hackers
|
|
|
|
|
|
| |
PR: kern/21132
Reviewed by: no objections to by -arch
MFC after: 1 month
|
| |
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
| |
| |
| |
| | |
Note that `rc' and `rc.shutdown' could not be imported because we already
have files with those names.
|
| |
| |
| |
| |
| | |
PR: bin/12357
Submitted by: Craig Leres <leres@ee.lbl.gov>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
in revision 1.48. It is pretty valid and often feasible to use
a non-point-to-point interface as the gateway. One might, for
example, use this to route some hosts through an ARP on a local
interface, without having to assign an additional IP address:
Script started on Tue Jun 12 16:16:09 2001
# ifconfig rl0 inet
rl0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
inet 192.168.4.115 netmask 0xffffff00 broadcast 192.168.4.255
# netstat -arn -finet | grep -w rl0
192.168.4 link#1 UC 3 0 rl0 =>
192.168.4.65 0:d0:b7:16:9c:c6 UHLW 1 0 rl0 1197
# route add -net 192.168.100 -iface rl0
add net 192.168.100: gateway rl0
# ping 192.168.100.1
PING 192.168.100.1 (192.168.100.1): 56 data bytes
64 bytes from 192.168.100.1: icmp_seq=0 ttl=255 time=0.551 ms
64 bytes from 192.168.100.1: icmp_seq=1 ttl=255 time=0.268 ms
^C
--- 192.168.100.1 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.268/0.410/0.551/0.142 ms
# netstat -arn -finet | grep -w rl0
192.168.4 link#1 UC 3 0 rl0 =>
192.168.4.65 0:d0:b7:16:9c:c6 UHLW 1 0 rl0 1165
192.168.100 link#1 UCSc 1 0 rl0 =>
192.168.100.1 0:d0:b7:16:9c:c6 UHLW 1 4 rl0 1192
Script done on Tue Jun 12 16:17:12 2001
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is needed to pick up the right headers. Wrong headers from
src/contrib/ipfilter are used otherwise.
The right fix would be to fix contrib/ipfilter C sources to pick up
headers from <sys/netinet>.
Noticed by: peter
|