Lines Matching refs:gone
120 FS_LITTER is gone - just remove it from fs_flags.
125 FS_SINGLE is gone (actually, that had happened back when ->get_sb()
208 ->revalidate() is gone. If your filesystem had it - provide ->getattr()
231 FS_NOMOUNT is gone. If you use it - just set MS_NOUSER in flags
260 is_read_only() is gone; use bdev_read_only() instead.
265 destroy_buffers() is gone; use invalidate_bdev().
270 fsync_dev() is gone; use fsync_bdev(). NOTE: lvm breakage is
284 ->truncate is gone. The whole truncate sequence needs to be
295 ->clear_inode() and ->delete_inode() are gone; ->evict_inode() should
345 dcache_lock is gone, replaced by fine grained locks. See fs/dcache.c
398 ->get_sb() is gone. Switch to use of ->mount(). Typically it's just
430 d_alloc_root() is gone, along with a lot of bugs caused by code
446 FS_REVAL_DOT is gone; if you used to have it, add ->d_weak_revalidate()
450 vfs_readdir() is gone; switch to iterate_dir() instead
453 ->readdir() is gone now; switch to ->iterate()
468 d_materialise_unique() is gone; d_splice_alias() does everything you
472 f_dentry is gone; use f_path.dentry, or, better yet, see if you can avoid
485 ->aio_read/->aio_write are gone. Use ->read_iter/->write_iter.
496 nd_[gs]et_link() is gone.