diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2013-06-16 16:10:45 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2013-06-16 16:10:45 +0000 |
commit | b6113fb31a01d14e49dba51e18a3fd317ddb098c (patch) | |
tree | 547ebe7c9446435ff299c1370d0a7bb7b7c1c370 /sys/fs/ext2fs/ext2_balloc.c | |
parent | b834eea6971bf6792440f01332a44d356951eb64 (diff) | |
download | src-b6113fb31a01d14e49dba51e18a3fd317ddb098c.tar.gz src-b6113fb31a01d14e49dba51e18a3fd317ddb098c.zip |
Re-sort ext2fs headers to make things easier to find.
In the ext2fs driver we have a mixture of headers:
- The ext2_ prefixed headers have strong influence from NetBSD
and are carry specific ext2/3/4 information.
- The unprefixed headers are inspired on UFS and carry implementation
specific information.
Do some small adjustments so that the information is easier to
find coming from either UFS or the NetBSD implementation.
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=251809
Diffstat (limited to 'sys/fs/ext2fs/ext2_balloc.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_balloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/fs/ext2fs/ext2_balloc.c b/sys/fs/ext2fs/ext2_balloc.c index 81e2d3c46a91..c71de89ad255 100644 --- a/sys/fs/ext2fs/ext2_balloc.c +++ b/sys/fs/ext2fs/ext2_balloc.c @@ -44,11 +44,13 @@ #include <sys/mount.h> #include <sys/vnode.h> +#include <fs/ext2fs/fs.h> #include <fs/ext2fs/inode.h> #include <fs/ext2fs/ext2fs.h> -#include <fs/ext2fs/fs.h> +#include <fs/ext2fs/ext2_dinode.h> #include <fs/ext2fs/ext2_extern.h> #include <fs/ext2fs/ext2_mount.h> + /* * Balloc defines the structure of filesystem storage * by allocating the physical blocks on a device given |