Lines Matching refs:gone

142 FS_LITTER is gone - just remove it from fs_flags.
148 FS_SINGLE is gone (actually, that had happened back when ->get_sb()
237 ->revalidate() is gone. If your filesystem had it - provide ->getattr()
264 FS_NOMOUNT is gone. If you use it - just set SB_NOUSER in flags
297 is_read_only() is gone; use bdev_read_only() instead.
303 destroy_buffers() is gone; use invalidate_bdev().
309 fsync_dev() is gone; use fsync_bdev(). NOTE: lvm breakage is
323 ->truncate is gone. The whole truncate sequence needs to be
334 ->clear_inode() and ->delete_inode() are gone; ->evict_inode() should
389 dcache_lock is gone, replaced by fine grained locks. See fs/dcache.c
451 ->get_sb() is gone. Switch to use of ->mount(). Typically it's just
492 d_alloc_root() is gone, along with a lot of bugs caused by code
527 FS_REVAL_DOT is gone; if you used to have it, add ->d_weak_revalidate()
534 vfs_readdir() is gone; switch to iterate_dir() instead
540 ->readdir() is gone now; switch to ->iterate()
563 d_materialise_unique() is gone; d_splice_alias() does everything you
570 f_dentry is gone; use f_path.dentry, or, better yet, see if you can avoid
591 ->aio_read/->aio_write are gone. Use ->read_iter/->write_iter.
608 nd_[gs]et_link() is gone.
648 ->put_link() is gone - just give the destructor to set_delayed_call()
841 might be already gone. The filesystem driver is guaranteed to be still
850 DCACHE_RCUACCESS is gone; having an RCU delay on dentry freeing is the
904 iov_iter_copy_from_user_atomic() is gone; use copy_page_from_iter_atomic().
922 no_llseek is gone; don't set .llseek to that - just leave it NULL instead.