Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jul 2017 15:09:15 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r320839 - stable/10/sys/fs/ext2fs
Message-ID:  <201707091509.v69F9Fdv051211@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Sun Jul  9 15:09:15 2017
New Revision: 320839
URL: https://svnweb.freebsd.org/changeset/base/320839

Log:
  MFC r320079:
  ext2fs: Enable RO huge_file feature support.
  
  We have support for reading ext4 "huge" files but we can't write
  (anything) on ext4. and some filesystem. Formally enable the feature
  so that we can mount such filesystems.
  
  Submitted by:    Fedor Uporov

Modified:
  stable/10/sys/fs/ext2fs/ext2fs.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/fs/ext2fs/ext2fs.h
==============================================================================
--- stable/10/sys/fs/ext2fs/ext2fs.h	Sun Jul  9 15:03:41 2017	(r320838)
+++ stable/10/sys/fs/ext2fs/ext2fs.h	Sun Jul  9 15:09:15 2017	(r320839)
@@ -258,6 +258,7 @@ struct csum {
 #define	EXT2F_COMPAT_SUPP		EXT2F_COMPAT_DIRHASHINDEX
 #define	EXT2F_ROCOMPAT_SUPP		(EXT2F_ROCOMPAT_SPARSESUPER | \
 					 EXT2F_ROCOMPAT_LARGEFILE | \
+					 EXT2F_ROCOMPAT_HUGE_FILE | \
 					 EXT2F_ROCOMPAT_EXTRA_ISIZE)
 #define	EXT2F_INCOMPAT_SUPP		EXT2F_INCOMPAT_FTYPE
 #define	EXT4F_RO_INCOMPAT_SUPP		(EXT2F_INCOMPAT_EXTENTS | \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707091509.v69F9Fdv051211>