2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include "xfs_types.h"
23 #include "xfs_trans.h"
27 #include "xfs_dmapi.h"
28 #include "xfs_mount.h"
29 #include "xfs_quota.h"
30 #include "xfs_error.h"
32 STATIC
struct xfs_dquot
*
33 xfs_dqvopchown_default(
36 struct xfs_dquot
**dqp
,
43 * Clear the quotaflags in memory and in the superblock.
46 xfs_mount_reset_sbqflags(xfs_mount_t
*mp
)
54 * It is OK to look at sb_qflags here in mount path,
57 if (mp
->m_sb
.sb_qflags
== 0)
60 mp
->m_sb
.sb_qflags
= 0;
64 * if the fs is readonly, let the incore superblock run
65 * with quotas off but don't flush the update out to disk
67 if (XFS_MTOVFS(mp
)->vfs_flag
& VFS_RDONLY
)
70 xfs_fs_cmn_err(CE_NOTE
, mp
, "Writing superblock quota changes");
72 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_SBCHANGE
);
73 if ((error
= xfs_trans_reserve(tp
, 0, mp
->m_sb
.sb_sectsize
+ 128, 0, 0,
74 XFS_DEFAULT_LOG_COUNT
))) {
75 xfs_trans_cancel(tp
, 0);
76 xfs_fs_cmn_err(CE_ALERT
, mp
,
77 "xfs_mount_reset_sbqflags: Superblock update failed!");
80 xfs_mod_sb(tp
, XFS_SB_QFLAGS
);
81 error
= xfs_trans_commit(tp
, 0);
94 *needquotamount
= B_FALSE
;
96 ASSERT(!XFS_IS_QUOTA_ON(mp
));
99 * If a file system had quotas running earlier, but decided to
100 * mount without -o uquota/pquota/gquota options, revoke the
101 * quotachecked license.
103 if (mp
->m_sb
.sb_qflags
& XFS_ALL_QUOTA_ACCT
) {
105 "XFS resetting qflags for filesystem %s",
108 error
= xfs_mount_reset_sbqflags(mp
);
113 xfs_qmops_t xfs_qmcore_stub
= {
114 .xfs_qminit
= (xfs_qminit_t
) xfs_noquota_init
,
115 .xfs_qmdone
= (xfs_qmdone_t
) fs_noerr
,
116 .xfs_qmmount
= (xfs_qmmount_t
) fs_noerr
,
117 .xfs_qmunmount
= (xfs_qmunmount_t
) fs_noerr
,
118 .xfs_dqrele
= (xfs_dqrele_t
) fs_noerr
,
119 .xfs_dqattach
= (xfs_dqattach_t
) fs_noerr
,
120 .xfs_dqdetach
= (xfs_dqdetach_t
) fs_noerr
,
121 .xfs_dqpurgeall
= (xfs_dqpurgeall_t
) fs_noerr
,
122 .xfs_dqvopalloc
= (xfs_dqvopalloc_t
) fs_noerr
,
123 .xfs_dqvopcreate
= (xfs_dqvopcreate_t
) fs_noerr
,
124 .xfs_dqvoprename
= (xfs_dqvoprename_t
) fs_noerr
,
125 .xfs_dqvopchown
= xfs_dqvopchown_default
,
126 .xfs_dqvopchownresv
= (xfs_dqvopchownresv_t
) fs_noerr
,