sys/gnu/vfs/ext2fs: Isolate Linux kernel code (just like other files do)
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Sun, 14 Jun 2015 19:12:09 +0000 (04:12 +0900)
committerTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Mon, 15 Jun 2015 13:04:40 +0000 (22:04 +0900)
commit1284f18423f33e578f2deb8251363b858d28bec7
treed826b8d96a579b6bb4ee6f0b3f86794b9cb3905c
parente6fd7e1e8814d4c486384a5421fad3405a12678e
sys/gnu/vfs/ext2fs: Isolate Linux kernel code (just like other files do)

- dfly ext2 isolates code directly from Linux to separate files.
  This commit isolates two functions that are not isolated.

- Isolate functions ext2_check_descriptors() and ext2_statfs()
  to ext2fs/ext2_linux_super.c as these two are directly from
  fs/ext2/super.c (and comments say so).

- grep "Remy Card" to find out which files are from Linux kernel.
  # grep "Remy Card" sys/gnu/vfs/ext2fs -rIl
  sys/gnu/vfs/ext2fs/ext2_fs_sb.h
  sys/gnu/vfs/ext2fs/ext2_fs.h
  sys/gnu/vfs/ext2fs/ext2_linux_ialloc.c
  sys/gnu/vfs/ext2fs/ext2_linux_balloc.c
  sys/gnu/vfs/ext2fs/ext2_linux_super.c
sys/gnu/vfs/ext2fs/Makefile
sys/gnu/vfs/ext2fs/ext2_extern.h
sys/gnu/vfs/ext2fs/ext2_linux_super.c [new file with mode: 0644]
sys/gnu/vfs/ext2fs/ext2_vfsops.c