| 1809 | } |
| 1810 | |
| 1811 | void |
| 1812 | getnewvnode_reserve(void) |
| 1813 | { |
| 1814 | struct thread *td; |
| 1815 | |
| 1816 | td = curthread; |
| 1817 | MPASS(td->td_vp_reserved == NULL); |
| 1818 | td->td_vp_reserved = vn_alloc(NULL); |
| 1819 | } |
| 1820 | |
| 1821 | void |
| 1822 | getnewvnode_drop_reserve(void) |
nothing calls this directly
no test coverage detected