From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Mahoney Subject: [PATCH] quota: Add QFMT_VFS_V1 -> quota_v2 entry to INIT_QUOTA_MODULE_NAMES Date: Mon, 04 Feb 2013 20:04:40 -0500 Message-ID: <51105AA8.70305@suse.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: stable@vger.kernel.org To: Linux FS Maling List , Jan Kara Return-path: Received: from cantor2.suse.de ([195.135.220.15]:55302 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751085Ab3BEBEv (ORCPT ); Mon, 4 Feb 2013 20:04:51 -0500 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Commit 498c6015 (quota: Implement quota format with 64-bit space and inode limits) added the vfsv1 quota format but didn't add it to INIT_QUOTA_MODULE_NAMES. File systems using QFMT_VFS_V1 format quotas with CONFIG_QFMT_V1=m, will fail to enable quotas with ESRCH because the module won't be loaded. This patch adds it to the list. Cc: [>=2.6.33] Cc: Jan Kara Signed-off-by: Jeff Mahoney --- include/linux/quota.h | 1 + 1 file changed, 1 insertion(+) --- 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_ */ -- Jeff Mahoney SUSE Labs