diff options
author | pfg <pfg@FreeBSD.org> | 2013-06-16 16:10:45 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-06-16 16:10:45 +0000 |
commit | 5cf909a854b7bc035f981644b2d917685474e997 (patch) | |
tree | 547ebe7c9446435ff299c1370d0a7bb7b7c1c370 /sys/fs/ext2fs/ext2_alloc.c | |
parent | 074ee391ff9933c3dab394b927c714ad377a6c44 (diff) | |
download | FreeBSD-src-5cf909a854b7bc035f981644b2d917685474e997.zip FreeBSD-src-5cf909a854b7bc035f981644b2d917685474e997.tar.gz |
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
Diffstat (limited to 'sys/fs/ext2fs/ext2_alloc.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/ext2fs/ext2_alloc.c b/sys/fs/ext2fs/ext2_alloc.c index 15b8354..71e3612 100644 --- a/sys/fs/ext2fs/ext2_alloc.c +++ b/sys/fs/ext2fs/ext2_alloc.c @@ -46,10 +46,10 @@ #include <sys/syslog.h> #include <sys/buf.h> +#include <fs/ext2fs/fs.h> #include <fs/ext2fs/inode.h> #include <fs/ext2fs/ext2_mount.h> #include <fs/ext2fs/ext2fs.h> -#include <fs/ext2fs/fs.h> #include <fs/ext2fs/ext2_extern.h> static daddr_t ext2_alloccg(struct inode *, int, daddr_t, int); |