Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/ext2fs EXT2F_INCOMPAT_FLEX_BG feature actually doesn...



details:   https://anonhg.NetBSD.org/src/rev/d3720aea54cb
branches:  trunk
changeset: 817284:d3720aea54cb
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Mon Aug 15 18:46:11 2016 +0000

description:
EXT2F_INCOMPAT_FLEX_BG feature actually doesn't require any explicit
code changes, all magic is done by setting the block offsets appropriately
in group descriptors by newfs; add it to the list of supported INCOMPAT flags

diffstat:

 sys/ufs/ext2fs/ext2fs.h |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 9d0eb950295d -r d3720aea54cb sys/ufs/ext2fs/ext2fs.h
--- a/sys/ufs/ext2fs/ext2fs.h   Mon Aug 15 18:42:15 2016 +0000
+++ b/sys/ufs/ext2fs/ext2fs.h   Mon Aug 15 18:46:11 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ext2fs.h,v 1.46 2016/08/15 18:38:10 jdolecek Exp $     */
+/*     $NetBSD: ext2fs.h,v 1.47 2016/08/15 18:46:11 jdolecek Exp $     */
 
 /*
  * Copyright (c) 1982, 1986, 1993
@@ -368,7 +368,8 @@
                                         | EXT2F_ROCOMPAT_EXTRA_ISIZE \
                                         | EXT2F_ROCOMPAT_DIR_NLINK)
 #define EXT2F_INCOMPAT_SUPP            (EXT2F_INCOMPAT_FTYPE \
-                                        | EXT2F_INCOMPAT_EXTENTS)
+                                        | EXT2F_INCOMPAT_EXTENTS \
+                                        | EXT2F_INCOMPAT_FLEX_BG)
 
 /*
  * Feature set definitions



Home | Main Index | Thread Index | Old Index