MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_object_set_writeable_dirty

Function vm_object_set_writeable_dirty

freebsd/vm/vm_object.c:2333–2342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2331}
2332
2333void
2334vm_object_set_writeable_dirty(vm_object_t object)
2335{
2336
2337 /* Only set for vnodes & tmpfs */
2338 if (object->type != OBJT_VNODE &&
2339 (object->flags & OBJ_TMPFS_NODE) == 0)
2340 return;
2341 atomic_add_int(&object->generation, 1);
2342}
2343
2344/*
2345 * vm_object_unwire:

Callers 3

vm_page_insert_radixdoneFunction · 0.85
vm_page_replace_holdFunction · 0.85
vm_fault_dirtyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected