|
Insert the VFS reference at the tail of the VFS list. Definition at line 303 of file vfs.h. 00304 { 00305 vr->prev = vl->last; 00306 vr->next = NULL; 00307 vl->last = vr; 00308 if (vr->prev != NULL) { 00309 /* Item is stored after other ones */ 00310 vr->prev->next = vr; 00311 } else { 00312 /* New item is only item in the list */ 00313 vl->first = vr; 00314 } 00315 vl->items++; 00316 }
Here is the caller graph for this function:
![]() |
1.6.3