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
446 (i.e. page that was installed when the symbolic link walk
612 or asynchronously when the write operation completes.
624 The page will be Locked when readpage is called, and should be
642 private data to a page, and that data needs to be updated when
643 a page is dirtied. This is called, for example, when a memory
706 will be called when part or all of the page is to be removed
723 first is when the VM finds a clean page with no active users and
727 The second case is when a request has been made to invalidate
730 filesystem explicitly requesting it as nfs and 9fs do (when
760 is_partially_uptodate: Called by the VM when reading a file through the
761 pagecache when the underlying blocksize != pagesize. If the required
765 is_dirty_writeback: Called by the VM when attempting to reclaim a page.
779 swap_activate: Called when swapon is used on a file to allocate
835 llseek: called when the VFS needs to move the file position index
845 iterate: called when the VFS needs to read the directory contents
847 poll: called by the VFS when a process wants to check if there is
853 compat_ioctl: called by the ioctl(2) system call when 32 bit system calls
858 open: called by the VFS when an inode should be opened. When the VFS
870 release: called when the last reference to an open file is closed
874 fasync: called by the fcntl(2) system call when asynchronous
937 d_revalidate: called when the VFS needs to revalidate a dentry. This
956 d_weak_revalidate: called when the VFS needs to revalidate a "jumped" dentry.
957 This is called when a path-walk ends at dentry that was not acquired by
970 d_hash: called when the VFS adds a dentry to the hash table. The first
994 d_delete: called when the last reference to a dentry is dropped and the
1000 d_release: called when a dentry is really deallocated
1002 d_iput: called when a dentry loses its inode (just prior to its
1003 being deallocated). The default when this is NULL is that the
1007 d_dname: called when the pathname of a dentry should be generated.
1009 pathname generation. (Instead of doing it when dentry is created,
1010 it's done only when the path is needed.). Real filesystems probably
1019 d_automount: called when an automount dentry is to be traversed (optional).
1102 dentry". This function is commonly called when an inode is
1109 to free the dentry when it finishes using it.