Lines Matching full:it

51 informative error value to report).  Call it foo_fill_super().  Now declare
80 it by internal locking (most of filesystems couldn't care less) - you
88 and ->readdir() are called without BKL now. Grab it on entry, drop upon return
99 functions. If you don't need it, remove it.
105 free to drop it...
117 an existing filesystem, set it according to ->fs_flags:
121 FS_LITTER is gone - just remove it from fs_flags.
127 went in - and hadn't been documented ;-/). Just remove it from fs_flags
145 Briefly it allows for the definition of decode_fh and encode_fh operations
150 It is planned that this will be required for exporting once the code
176 When the inode has been created by iget5_locked(), it will be returned with the
178 the initialization. Once the inode is initialized it must be unlocked by
198 should be called on the inode to render it dead, and an appropriate error
209 ->revalidate() is gone. If your filesystem had it - provide ->getattr()
210 and let it call whatever you had as ->revlidate() + (for symlinks that
232 FS_NOMOUNT is gone. If you use it - just set MS_NOUSER in flags
240 As soon as it gets fixed is_read_only() will die.
245 ->permission() is called without BKL now. Grab it on entry, drop upon
255 shifted into individual fs sb_op functions where it's not clear that
256 it's safe to remove it. If you don't need it, remove it.
297 be used instead. It gets called whenever the inode is evicted, whether it has
299 metadata buffers; getting rid of those is responsibility of method, as it had
302 ->drop_inode() returns int now; it's called on final iput() with
303 inode->i_lock held and it returns true if filesystems wants the inode to be
304 dropped. As before, generic_drop_inode() is still the default and it's been
305 updated appropriately. generic_delete_inode() is also alive and it consists
309 clear_inode() is gone; use end_writeback() instead. As before, it must
310 be called exactly once on each call of ->evict_inode() (as it used to be for
312 metadata buffers (i.e. mark_buffer_dirty_inode()), it's your responsibility to
319 if it's zero is not *and* *never* *had* *been* enough. Final unlink() and iput()
322 to it.
329 0. Even on 0 refcount transition, it must be able to tolerate being called 0,
361 i_dentry to be reinitialized before it is freed, so an:
382 the filesystem provides it), which requires dropping out of rcu-walk mode. This
403 ->get_sb() is gone. Switch to use of ->mount(). Typically it's just
405 function type. If you were doing it manually, just switch from setting ->mnt_root
419 SEEK_DATA. You can hanle this by returning -EINVAL, but it would be nicer to
420 support it in some way. The generic handler assumes that the entire file is
430 anymore, so if you require i_mutex locking you must make sure to take it and
431 release it yourself.