CTM_BEGIN 2.0 src-10 861 20150806190557Z .
CTMFS .ctm_status 1004 1004 644 38db7da983309fc05bc1a2b42fd8a4b8 a379ca2a314ee1c8f2f1ffef374cded8 11
src-10 861
CTMFS .svn_revision 1004 1004 644 8600635c10fda16d9f56f5ee4759ea72 0895e762f5538bdbd5309bd711969fd3 7
286380
CTMFN release/doc/en_US.ISO8859-1/relnotes/article.xml 1004 1004 644 5065cf53c5b89932c8f1de05c85f2503 d5595edc65ecc08973cb3c0d264b5ffd 191
d23 1
a23 1
$FreeBSD: stable/10/release/doc/en_US.ISO8859-1/relnotes/article.xml 286364 2015-08-06 14:13:01Z gjb $
d732 1
a732 1
Network Protocols
CTMFN sys/vm/vm_fault.c 1004 1004 644 408146d67f42e268d14a3e3568624237 d0826be33081731d7a6cf0ba65679be1 970
d75 1
a75 1
__FBSDID("$FreeBSD: stable/10/sys/vm/vm_fault.c 286362 2015-08-06 08:51:15Z kib $");
d192 1
a192 1
(fault_flags & VM_FAULT_WIRE) == 0) ||
d243 9
a360 3
else
KASSERT((fault_flags & VM_FAULT_WIRE) == 0,
("!wired && VM_FAULT_WIRE"));
d363 1
a363 1
(fault_flags & (VM_FAULT_WIRE | VM_FAULT_DIRTY)) == 0 &&
d509 1
a509 1
* Page is not resident. If this is the search termination
a510 1
* Default objects are zero-fill, there is no real pager.
d512 1
a512 2
if (fs.object->type != OBJT_DEFAULT ||
fs.object == fs.first_object) {
d559 1
a559 2
* at the same time. For default objects simply provide
* zero-filled pages.
d561 1
a561 1
if (fs.object->type != OBJT_DEFAULT) {
d871 1
a871 1
VM_FAULT_WIRE) == 0) {
d992 1
a992 1
if (faultcount != 1 && (fault_flags & VM_FAULT_WIRE) == 0 &&
d1002 5
a1006 3
if ((fault_flags & VM_FAULT_WIRE) != 0) {
KASSERT(wired, ("VM_FAULT_WIRE && !wired"));
vm_page_wire(fs.m);
CTMFN sys/vm/vm_map.c 1004 1004 644 7d3353f9c1946f675dd55013bf50f1fe 7874317e4fa681485297265fee123e5b 152
d66 1
a66 1
__FBSDID("$FreeBSD: stable/10/sys/vm/vm_map.c 286362 2015-08-06 08:51:15Z kib $");
d2606 1
a2606 1
VM_FAULT_WIRE)) != KERN_SUCCESS)
CTMFN sys/vm/vm_map.h 1004 1004 644 d9bb6dd5482bec0bfe21a8a131055c2c 4ec837d87937882e7785f4c54a79fa51 267
d60 1
a60 1
* $FreeBSD: stable/10/sys/vm/vm_map.h 286362 2015-08-06 08:51:15Z kib $
d330 3
a332 3
#define VM_FAULT_NORMAL 0 /* Nothing special */
#define VM_FAULT_WIRE 1 /* Wire the mapped page */
#define VM_FAULT_DIRTY 2 /* Dirty the page; use w/VM_PROT_COPY */
CTM_END 658456ab4b843536ba91343af5dd1955