diff options
author | Christoph Hellwig <hch@lst.de> | 2007-10-19 16:57:01 +1000 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2007-10-19 17:14:45 +1000 |
commit | c8fcfac5a257f8a04f7ba3d397dedccffef19be2 (patch) | |
tree | 38dba94d1b3a81f56ee93dbf35b2cf1408f58620 /fs/xfs/xfs_qmops.c | |
parent | 4fa4d23fa20de67df919030c1216295664866ad7 (diff) | |
download | op-kernel-dev-c8fcfac5a257f8a04f7ba3d397dedccffef19be2.zip op-kernel-dev-c8fcfac5a257f8a04f7ba3d397dedccffef19be2.tar.gz |
[XFS] fixups after behavior removal merge into mainline git
Fixup for lack of dmapi support and no quota module support.
SGI-PV: 969985
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_qmops.c')
-rw-r--r-- | fs/xfs/xfs_qmops.c | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/fs/xfs/xfs_qmops.c b/fs/xfs/xfs_qmops.c index c266a01..2ec1d8a 100644 --- a/fs/xfs/xfs_qmops.c +++ b/fs/xfs/xfs_qmops.c @@ -135,19 +135,13 @@ int xfs_qmops_get(struct xfs_mount *mp, struct xfs_mount_args *args) { if (args->flags & (XFSMNT_UQUOTA | XFSMNT_PQUOTA | XFSMNT_GQUOTA)) { - struct xfs_qmops *ops; - - ops = symbol_get(xfs_qmcore_xfs); - if (!ops) { - request_module("xfs_quota"); - ops = symbol_get(xfs_qmcore_xfs); - } - - if (!ops) { - cmn_err(CE_WARN, "XFS: no quota support available."); - return EINVAL; - } - mp->m_qm_ops = ops; +#ifdef CONFIG_XFS_QUOTA + mp->m_qm_ops = &xfs_qmcore_xfs; +#else + cmn_err(CE_WARN, + "XFS: qouta support not available in this kernel."); + return EINVAL; +#endif } else { mp->m_qm_ops = &xfs_qmcore_stub; } @@ -158,6 +152,4 @@ xfs_qmops_get(struct xfs_mount *mp, struct xfs_mount_args *args) void xfs_qmops_put(struct xfs_mount *mp) { - if (mp->m_qm_ops != &xfs_qmcore_stub) - symbol_put(xfs_qmcore_xfs); } |