diff options
author | pjd <pjd@FreeBSD.org> | 2007-04-10 16:49:41 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2007-04-10 16:49:41 +0000 |
commit | b159725895c2c6ab74dca42155e2a313c18b641a (patch) | |
tree | 130925a1a79fb199ccfe97398818bc07237739ad | |
parent | 9de00d802e8f251b8cc85316e0b13c89ca7b283b (diff) | |
download | FreeBSD-src-b159725895c2c6ab74dca42155e2a313c18b641a.zip FreeBSD-src-b159725895c2c6ab74dca42155e2a313c18b641a.tar.gz |
Add UFS_GJOURNAL options to the GENERIC kernel.
Approved by: re (kensmith)
-rw-r--r-- | sys/amd64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/i386/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/ia64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/pc98/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/powerpc/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/sparc64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/sun4v/conf/GENERIC | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index e42476d..eabc4f4 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -34,6 +34,7 @@ options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC index 1add33d..500f61b 100644 --- a/sys/i386/conf/GENERIC +++ b/sys/i386/conf/GENERIC @@ -36,6 +36,7 @@ options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server diff --git a/sys/ia64/conf/GENERIC b/sys/ia64/conf/GENERIC index 7c303d0..e66dc17 100644 --- a/sys/ia64/conf/GENERIC +++ b/sys/ia64/conf/GENERIC @@ -48,6 +48,7 @@ options SCHED_4BSD # 4BSD scheduler options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options SMP # Symmetric Multi-Processor support options SOFTUPDATES # Enable FFS soft updates support +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options SYSVSHM # SYSV-style shared memory diff --git a/sys/pc98/conf/GENERIC b/sys/pc98/conf/GENERIC index fbbe7f5..0d2f82f 100644 --- a/sys/pc98/conf/GENERIC +++ b/sys/pc98/conf/GENERIC @@ -36,6 +36,7 @@ options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server diff --git a/sys/powerpc/conf/GENERIC b/sys/powerpc/conf/GENERIC index 0b8f79c..506775f 100644 --- a/sys/powerpc/conf/GENERIC +++ b/sys/powerpc/conf/GENERIC @@ -37,6 +37,7 @@ options FFS #Berkeley Fast Filesystem options SOFTUPDATES #Enable FFS soft updates support options UFS_ACL #Support for access control lists options UFS_DIRHASH #Improve performance on big directories +options UFS_GJOURNAL #Enable gjournal-based UFS journaling. options MD_ROOT #MD is a potential root device options NFSCLIENT #Network Filesystem Client options NFSSERVER #Network Filesystem Server diff --git a/sys/sparc64/conf/GENERIC b/sys/sparc64/conf/GENERIC index f9f2c09..94767fb 100644 --- a/sys/sparc64/conf/GENERIC +++ b/sys/sparc64/conf/GENERIC @@ -39,6 +39,7 @@ options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server diff --git a/sys/sun4v/conf/GENERIC b/sys/sun4v/conf/GENERIC index 0e6465a..0031620 100644 --- a/sys/sun4v/conf/GENERIC +++ b/sys/sun4v/conf/GENERIC @@ -37,6 +37,7 @@ options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories +options UFS_GJOURNAL # Enable gjournal-based UFS journaling. options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server |