Lines Matching full:foo*
18 Remove inode->u.foo_inode_i
20 struct foo_inode_info {
24 static inline struct foo_inode_info *FOO_I(struct inode *inode)
26 return list_entry(inode, struct foo_inode_info, vfs_inode);
29 Use FOO_I(inode) instead of &inode->u.foo_inode_i;
31 Add foo_alloc_inode() and foo_destroy_inode() - the former should allocate
32 foo_inode_info and return the address of ->vfs_inode, the latter should free
33 FOO_I(inode) (see in-tree filesystems for examples).
49 Turn your foo_read_super() into a function that would return 0 in case of
51 informative error value to report). Call it foo_fill_super(). Now declare
53 int foo_get_sb(struct file_system_type *fs_type,
56 return get_sb_bdev(fs_type, flags, dev_name, data, foo_fill_super,
64 foo_get_sb.
287 and vmtruncate, and the reorder the vmtruncate + foofs_vmtruncate sequence to