Lines Matching refs:when

53 disc are copied into the memory when required and changes to the inode
101 will be attached to the mountpoint, so that when pathname resolution
132 mount: the method to call when a new instance of this
135 kill_sb: the method to call when an instance of this filesystem
253 write_inode: this method is called when the VFS needs to write an
257 drop_inode: called when the last access to the inode is dropped,
270 delete_inode: called when the VFS wants to delete an inode
272 put_super: called when the VFS wishes to free the superblock
275 sync_fs: called when VFS is writing out all dirty data associated with
279 freeze_fs: called when VFS is locking a filesystem and
283 unfreeze_fs: called when VFS is unlocking a filesystem and making it writable
286 statfs: called when the VFS needs to get filesystem statistics.
288 remount_fs: called when the filesystem is remounted. This is called
293 umount_begin: called when the VFS is unmounting a filesystem.
379 lookup: called when the VFS needs to look up an inode in a parent
449 to this method as the last parameter; only called when
614 or asynchronously when the write operation completes.
626 The page will be Locked when readpage is called, and should be
644 private data to a page, and that data needs to be updated when
645 a page is dirtied. This is called, for example, when a memory
708 will be called when part or all of the page is to be removed
725 first is when the VM finds a clean page with no active users and
729 The second case is when a request has been made to invalidate
732 filesystem explicitly requesting it as nfs and 9fs do (when
762 is_partially_uptodate: Called by the VM when reading a file through the
763 pagecache when the underlying blocksize != pagesize. If the required
767 is_dirty_writeback: Called by the VM when attempting to reclaim a page.
781 swap_activate: Called when swapon is used on a file to allocate
842 llseek: called when the VFS needs to move the file position index
852 iterate: called when the VFS needs to read the directory contents
854 poll: called by the VFS when a process wants to check if there is
860 compat_ioctl: called by the ioctl(2) system call when 32 bit system calls
865 open: called by the VFS when an inode should be opened. When the VFS
877 release: called when the last reference to an open file is closed
881 fasync: called by the fcntl(2) system call when asynchronous
944 d_revalidate: called when the VFS needs to revalidate a dentry. This
963 d_weak_revalidate: called when the VFS needs to revalidate a "jumped" dentry.
964 This is called when a path-walk ends at dentry that was not acquired by
977 d_hash: called when the VFS adds a dentry to the hash table. The first
1001 d_delete: called when the last reference to a dentry is dropped and the
1007 d_release: called when a dentry is really deallocated
1009 d_iput: called when a dentry loses its inode (just prior to its
1010 being deallocated). The default when this is NULL is that the
1014 d_dname: called when the pathname of a dentry should be generated.
1016 pathname generation. (Instead of doing it when dentry is created,
1017 it's done only when the path is needed.). Real filesystems probably
1026 d_automount: called when an automount dentry is to be traversed (optional).
1109 dentry". This function is commonly called when an inode is
1116 to free the dentry when it finishes using it.