static void vfs_list_insert_tail ( struct vfslist vl,
struct vfsref vr 
) [inline, static]

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:

 All Data Structures Files Functions Variables Defines
Generated on Mon Mar 15 04:45:51 2010 for herrie by  doxygen 1.6.3