porting 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. Changes since 2.5.0:
  2. ---
  3. [recommended]
  4. New helpers: sb_bread(), sb_getblk(), sb_find_get_block(), set_bh(),
  5. sb_set_blocksize() and sb_min_blocksize().
  6. Use them.
  7. (sb_find_get_block() replaces 2.4's get_hash_table())
  8. ---
  9. [recommended]
  10. New methods: ->alloc_inode() and ->destroy_inode().
  11. Remove inode->u.foo_inode_i
  12. Declare
  13. struct foo_inode_info {
  14. /* fs-private stuff */
  15. struct inode vfs_inode;
  16. };
  17. static inline struct foo_inode_info *FOO_I(struct inode *inode)
  18. {
  19. return list_entry(inode, struct foo_inode_info, vfs_inode);
  20. }
  21. Use FOO_I(inode) instead of &inode->u.foo_inode_i;
  22. Add foo_alloc_inode() and foo_destroy_inode() - the former should allocate
  23. foo_inode_info and return the address of ->vfs_inode, the latter should free
  24. FOO_I(inode) (see in-tree filesystems for examples).
  25. Make them ->alloc_inode and ->destroy_inode in your super_operations.
  26. Keep in mind that now you need explicit initialization of private data
  27. typically between calling iget_locked() and unlocking the inode.
  28. At some point that will become mandatory.
  29. ---
  30. [mandatory]
  31. Change of file_system_type method (->read_super to ->get_sb)
  32. ->read_super() is no more. Ditto for DECLARE_FSTYPE and DECLARE_FSTYPE_DEV.
  33. Turn your foo_read_super() into a function that would return 0 in case of
  34. success and negative number in case of error (-EINVAL unless you have more
  35. informative error value to report). Call it foo_fill_super(). Now declare
  36. int foo_get_sb(struct file_system_type *fs_type,
  37. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  38. {
  39. return get_sb_bdev(fs_type, flags, dev_name, data, foo_fill_super,
  40. mnt);
  41. }
  42. (or similar with s/bdev/nodev/ or s/bdev/single/, depending on the kind of
  43. filesystem).
  44. Replace DECLARE_FSTYPE... with explicit initializer and have ->get_sb set as
  45. foo_get_sb.
  46. ---
  47. [mandatory]
  48. Locking change: ->s_vfs_rename_sem is taken only by cross-directory renames.
  49. Most likely there is no need to change anything, but if you relied on
  50. global exclusion between renames for some internal purpose - you need to
  51. change your internal locking. Otherwise exclusion warranties remain the
  52. same (i.e. parents and victim are locked, etc.).
  53. ---
  54. [informational]
  55. Now we have the exclusion between ->lookup() and directory removal (by
  56. ->rmdir() and ->rename()). If you used to need that exclusion and do
  57. it by internal locking (most of filesystems couldn't care less) - you
  58. can relax your locking.
  59. ---
  60. [mandatory]
  61. ->lookup(), ->truncate(), ->create(), ->unlink(), ->mknod(), ->mkdir(),
  62. ->rmdir(), ->link(), ->lseek(), ->symlink(), ->rename()
  63. and ->readdir() are called without BKL now. Grab it on entry, drop upon return
  64. - that will guarantee the same locking you used to have. If your method or its
  65. parts do not need BKL - better yet, now you can shift lock_kernel() and
  66. unlock_kernel() so that they would protect exactly what needs to be
  67. protected.
  68. ---
  69. [mandatory]
  70. BKL is also moved from around sb operations. ->write_super() Is now called
  71. without BKL held. BKL should have been shifted into individual fs sb_op
  72. functions. If you don't need it, remove it.
  73. ---
  74. [informational]
  75. check for ->link() target not being a directory is done by callers. Feel
  76. free to drop it...
  77. ---
  78. [informational]
  79. ->link() callers hold ->i_mutex on the object we are linking to. Some of your
  80. problems might be over...
  81. ---
  82. [mandatory]
  83. new file_system_type method - kill_sb(superblock). If you are converting
  84. an existing filesystem, set it according to ->fs_flags:
  85. FS_REQUIRES_DEV - kill_block_super
  86. FS_LITTER - kill_litter_super
  87. neither - kill_anon_super
  88. FS_LITTER is gone - just remove it from fs_flags.
  89. ---
  90. [mandatory]
  91. FS_SINGLE is gone (actually, that had happened back when ->get_sb()
  92. went in - and hadn't been documented ;-/). Just remove it from fs_flags
  93. (and see ->get_sb() entry for other actions).
  94. ---
  95. [mandatory]
  96. ->setattr() is called without BKL now. Caller _always_ holds ->i_mutex, so
  97. watch for ->i_mutex-grabbing code that might be used by your ->setattr().
  98. Callers of notify_change() need ->i_mutex now.
  99. ---
  100. [recommended]
  101. New super_block field "struct export_operations *s_export_op" for
  102. explicit support for exporting, e.g. via NFS. The structure is fully
  103. documented at its declaration in include/linux/fs.h, and in
  104. Documentation/filesystems/Exporting.
  105. Briefly it allows for the definition of decode_fh and encode_fh operations
  106. to encode and decode filehandles, and allows the filesystem to use
  107. a standard helper function for decode_fh, and provide file-system specific
  108. support for this helper, particularly get_parent.
  109. It is planned that this will be required for exporting once the code
  110. settles down a bit.
  111. [mandatory]
  112. s_export_op is now required for exporting a filesystem.
  113. isofs, ext2, ext3, resierfs, fat
  114. can be used as examples of very different filesystems.
  115. ---
  116. [mandatory]
  117. iget4() and the read_inode2 callback have been superseded by iget5_locked()
  118. which has the following prototype,
  119. struct inode *iget5_locked(struct super_block *sb, unsigned long ino,
  120. int (*test)(struct inode *, void *),
  121. int (*set)(struct inode *, void *),
  122. void *data);
  123. 'test' is an additional function that can be used when the inode
  124. number is not sufficient to identify the actual file object. 'set'
  125. should be a non-blocking function that initializes those parts of a
  126. newly created inode to allow the test function to succeed. 'data' is
  127. passed as an opaque value to both test and set functions.
  128. When the inode has been created by iget5_locked(), it will be returned with the
  129. I_NEW flag set and will still be locked. The filesystem then needs to finalize
  130. the initialization. Once the inode is initialized it must be unlocked by
  131. calling unlock_new_inode().
  132. The filesystem is responsible for setting (and possibly testing) i_ino
  133. when appropriate. There is also a simpler iget_locked function that
  134. just takes the superblock and inode number as arguments and does the
  135. test and set for you.
  136. e.g.
  137. inode = iget_locked(sb, ino);
  138. if (inode->i_state & I_NEW) {
  139. err = read_inode_from_disk(inode);
  140. if (err < 0) {
  141. iget_failed(inode);
  142. return err;
  143. }
  144. unlock_new_inode(inode);
  145. }
  146. Note that if the process of setting up a new inode fails, then iget_failed()
  147. should be called on the inode to render it dead, and an appropriate error
  148. should be passed back to the caller.
  149. ---
  150. [recommended]
  151. ->getattr() finally getting used. See instances in nfs, minix, etc.
  152. ---
  153. [mandatory]
  154. ->revalidate() is gone. If your filesystem had it - provide ->getattr()
  155. and let it call whatever you had as ->revlidate() + (for symlinks that
  156. had ->revalidate()) add calls in ->follow_link()/->readlink().
  157. ---
  158. [mandatory]
  159. ->d_parent changes are not protected by BKL anymore. Read access is safe
  160. if at least one of the following is true:
  161. * filesystem has no cross-directory rename()
  162. * dcache_lock is held
  163. * we know that parent had been locked (e.g. we are looking at
  164. ->d_parent of ->lookup() argument).
  165. * we are called from ->rename().
  166. * the child's ->d_lock is held
  167. Audit your code and add locking if needed. Notice that any place that is
  168. not protected by the conditions above is risky even in the old tree - you
  169. had been relying on BKL and that's prone to screwups. Old tree had quite
  170. a few holes of that kind - unprotected access to ->d_parent leading to
  171. anything from oops to silent memory corruption.
  172. ---
  173. [mandatory]
  174. FS_NOMOUNT is gone. If you use it - just set MS_NOUSER in flags
  175. (see rootfs for one kind of solution and bdev/socket/pipe for another).
  176. ---
  177. [recommended]
  178. Use bdev_read_only(bdev) instead of is_read_only(kdev). The latter
  179. is still alive, but only because of the mess in drivers/s390/block/dasd.c.
  180. As soon as it gets fixed is_read_only() will die.
  181. ---
  182. [mandatory]
  183. ->permission() is called without BKL now. Grab it on entry, drop upon
  184. return - that will guarantee the same locking you used to have. If
  185. your method or its parts do not need BKL - better yet, now you can
  186. shift lock_kernel() and unlock_kernel() so that they would protect
  187. exactly what needs to be protected.
  188. ---
  189. [mandatory]
  190. ->statfs() is now called without BKL held. BKL should have been
  191. shifted into individual fs sb_op functions where it's not clear that
  192. it's safe to remove it. If you don't need it, remove it.
  193. ---
  194. [mandatory]
  195. is_read_only() is gone; use bdev_read_only() instead.
  196. ---
  197. [mandatory]
  198. destroy_buffers() is gone; use invalidate_bdev().
  199. ---
  200. [mandatory]
  201. fsync_dev() is gone; use fsync_bdev(). NOTE: lvm breakage is
  202. deliberate; as soon as struct block_device * is propagated in a reasonable
  203. way by that code fixing will become trivial; until then nothing can be
  204. done.