| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Submitted by: phk
|
|
|
|
| |
SUBDIR lists there. Some of these are used on other platforms.
|
|
|
|
|
| |
subdir. Add fdisk to ia64 SUBDIR list. Add all the previous occupants
of the i386 subdir to the i386 SUBDIR list.
|
|
|
|
|
| |
Submitted by: j mckitrick <jcm@freebsd-uk.eu.org>
Reviewed by: phk, /sbin/md5
|
|
|
|
|
|
|
|
| |
no media status.
PR: bin/30587
Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
MFC after: 1 week
|
|
|
|
| |
masks in "limit" rules.
|
|
|
|
|
|
|
|
|
| |
Set 'log_ipfw_denied' option if you want the old behaviour.
PR: 30255
Submitted by: Flemming "F3" Jacobsen <fj@batmule.dk>
Reviewed by: phk
MFC after: 4 weeks
|
|
|
|
| |
Mdoc-policed by: ru
|
|
|
|
|
|
|
|
|
|
|
| |
such a way that the name and the value of the variable(s) are separated
with `=' instead of the usual `: '. This is useful for producing output
that can be fed back to the sysctl utility (pasted to sysctl.conf, for
example).
Reviewed by: rwatson
Approved by: markm
MFC after: 2 weeks
|
|
|
|
|
|
|
|
| |
read-only FS.
Reviewed by: audit silence
Approved by: markm
MFC after: 2 weeks
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
header for the case where sizeof(time_t) != sizeof(int). dumprestore.h
was embedding time_t when it should have been embedding int32_t.
Use time_to_time32() and time32_to_time() to convert between the
protocoll/file-format time and time_t.
|
| |
|
| |
|
|
|
|
|
|
| |
Changed deltat to be an int (result of delta time calculation).
MFC after: 1 day
|
| |
|
| |
|
| |
|
|
|
|
| |
Submitted by: ru
|
|
|
|
| |
See section 3.2 of "PMake - A Tutorial" in /usr/share/doc/psd/12.make.
|
| |
|
|
|
|
| |
Submitted by: sheldonh
|
| |
|
| |
|
| |
|
|
|
|
| |
PR: 30447
|
| |
|
|
|
|
| |
PR: 27063
|
|
|
|
| |
PR: 27063
|
|
|
|
|
|
|
| |
value for cpg. The change was bogus.
Submitted by: bde
MFC after: 2 days
|
|
|
|
|
|
|
|
| |
index, then retrieve statistics for that index, rather than retrieving
all interfaces and then looking for a matching name. This allows the
user to refer to an interface via an alias name.
While I'm here, also perform a few assorted cleanups.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
spin in a loop eating CPU time. This bug has existed since the
TI-RPC import. The problem is that we should only enter the select
loop if at least one TCP server was started. Fix this by having
the master nfsd become a UDP server itself if there are no TCP
servers.
Also improve/correct the code for cleaning up slave nfsd processes
and unregistering with rpcbind when the master nfsd exits.
One issue that remains open is that if a slave nfsd dies, then all
nfsds will shut down. This is because nfssvc() in the master nfsd
returns 0 when the master nfsd receives a SIGCHLD.
Submitted by: tmm
|
| |
|
|
|
|
|
|
| |
on -arch and cvs-all.
Reviewed by: dillon
|
|
|
|
|
|
| |
PR: bin/28116
Submitted by: Valentin Nechayev <netch@netch.kiev.ua>
MFC in: 1 week
|
| |
|
|
|
|
| |
I should reconsider whether I just leave them in without #ifdef VINUMDEBUG.
|
|
|
|
|
| |
PR: 31262
Submitted by: <swear@blarg.net>
|
|
|
|
|
| |
had somehow removed an error check in revision 1.26, causing errx()
to be called unconditionally in the -h case.
|
| |
|
|
|
|
| |
Forgotten by: sos
|
|
|
|
|
| |
since dumplo is now an off_t. Scratch a couple of other itches as well.
s/L_SET/SEEK_SET/
|
|
|
|
| |
Reported by: mki@mozone.net
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1) Allow the sending of more than one control message at a time
over a unix domain socket. This should cover the PR 29499.
2) This requires that unp_{ex,in}ternalize and unp_scan understand
mbufs with more than one control message at a time.
3) Internalize and externalize used to work on the mbuf in-place.
This made life quite complicated and the code for sizeof(int) <
sizeof(file *) could end up doing the wrong thing. The patch always
create a new mbuf/cluster now. This resulted in the change of the
prototype for the domain externalise function.
4) You can now send SCM_TIMESTAMP messages.
5) Always use CMSG_DATA(cm) to determine the start where the data
in unp_{ex,in}ternalize. It was using ((struct cmsghdr *)cm + 1)
in some places, which gives the wrong alignment on the alpha.
(NetBSD made this fix some time ago).
This results in an ABI change for discriptor passing and creds
passing on the alpha. (Probably on the IA64 and Spare ports too).
6) Fix userland programs to use CMSG_* macros too.
7) Be more careful about freeing mbufs containing (file *)s.
This is made possible by the prototype change of externalise.
PR: 29499
MFC after: 6 weeks
|
|
|
|
| |
Submitted by: bde
|
|
|
|
|
|
|
| |
it is. I added the manpage change.
Submitted by: bde
MFC after: 1 week
|