| 2331 | } |
| 2332 | |
| 2333 | void |
| 2334 | vm_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: |
no outgoing calls
no test coverage detected