diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-01-25 08:24:56 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-01-25 08:24:56 +0400 |
commit | c3ad83d9efdfe6a86efd44945a781f00c879b7b4 (patch) | |
tree | eeca7344e803697850c742d839e99179d3becc2b | |
parent | 72ba74508b2857e71d65fc93f0d6b684492fc740 (diff) | |
download | linux-c3ad83d9efdfe6a86efd44945a781f00c879b7b4.tar.xz |
quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
Otherwise, ext4 file systems with the quota featured enable will get a
very confusing "No such process" error message if the quota code is
built as a module and the quota_v2 module has not been loaded.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Acked-by: Jan Kara <jack@suse.cz>
Cc: stable@vger.kernel.org
-rw-r--r-- | include/linux/quota.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/quota.h b/include/linux/quota.h index 58fdef125252..d13371134c59 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h @@ -405,6 +405,7 @@ struct quota_module_name { #define INIT_QUOTA_MODULE_NAMES {\ {QFMT_VFS_OLD, "quota_v1"},\ {QFMT_VFS_V0, "quota_v2"},\ + {QFMT_VFS_V1, "quota_v2"},\ {0, NULL}} #endif /* _QUOTA_ */ |