summaryrefslogtreecommitdiffstats
path: root/sys/boot/sparc64/loader/main.c
diff options
context:
space:
mode:
authorae <ae@FreeBSD.org>2012-09-11 04:54:44 +0000
committerae <ae@FreeBSD.org>2012-09-11 04:54:44 +0000
commit3e78c7c3828fe3a47a5a4aa4c123244820b107fc (patch)
tree00e5c6bce03330d89ddbd4783bcf2576245e3b7d /sys/boot/sparc64/loader/main.c
parent5690c36115ccc8ce8dd2aea09c9c7dcadf2a5b93 (diff)
downloadFreeBSD-src-3e78c7c3828fe3a47a5a4aa4c123244820b107fc.zip
FreeBSD-src-3e78c7c3828fe3a47a5a4aa4c123244820b107fc.tar.gz
Slightly reduce an overhead for the open() call in the zfsloader.
libstand(3) tries to detect file system in the predefined order, but zfsloader usually is used for the booting from ZFS, and there is no need to try detect several file system types for each open() call.
Diffstat (limited to 'sys/boot/sparc64/loader/main.c')
-rw-r--r--sys/boot/sparc64/loader/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/sparc64/loader/main.c b/sys/boot/sparc64/loader/main.c
index 9b76f0d..fa9d068 100644
--- a/sys/boot/sparc64/loader/main.c
+++ b/sys/boot/sparc64/loader/main.c
@@ -170,15 +170,15 @@ struct file_format *file_formats[] = {
};
struct fs_ops *file_system[] = {
+#ifdef LOADER_ZFS_SUPPORT
+ &zfs_fsops,
+#endif
#ifdef LOADER_UFS_SUPPORT
&ufs_fsops,
#endif
#ifdef LOADER_CD9660_SUPPORT
&cd9660_fsops,
#endif
-#ifdef LOADER_ZFS_SUPPORT
- &zfs_fsops,
-#endif
#ifdef LOADER_ZIP_SUPPORT
&zipfs_fsops,
#endif
OpenPOWER on IntegriCloud