diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2018-02-01 05:12:13 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2018-02-01 13:25:31 -0500 |
commit | dcb2cd55cf43fe06ada66265c1e088a4b08d3e3d (patch) | |
tree | 9e498182950de7870bf3101fa75b5a0f580d33f4 /fs/gfs2/Kconfig | |
parent | 255442c93843f52b6891b21d0b485bf2c97f93c3 (diff) |
gfs2: Fix the crc32c dependency
Depend on LIBCRC32C which uses the crypto API to select the appropriate
crc32c implementation. With the CRYPTO and CRYPTO_CRC32C dependencies,
gfs2 would still need to use the crypto API directly like ext4 and btrfs
do, which isn't necessary.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/Kconfig')
-rw-r--r-- | fs/gfs2/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/gfs2/Kconfig b/fs/gfs2/Kconfig index c0225d4b5435..3ed2b088dcfd 100644 --- a/fs/gfs2/Kconfig +++ b/fs/gfs2/Kconfig | |||
@@ -3,8 +3,7 @@ config GFS2_FS | |||
3 | depends on (64BIT || LBDAF) | 3 | depends on (64BIT || LBDAF) |
4 | select FS_POSIX_ACL | 4 | select FS_POSIX_ACL |
5 | select CRC32 | 5 | select CRC32 |
6 | select CRYPTO | 6 | select LIBCRC32C |
7 | select CRYPTO_CRC32C | ||
8 | select QUOTACTL | 7 | select QUOTACTL |
9 | select FS_IOMAP | 8 | select FS_IOMAP |
10 | help | 9 | help |