2 * Copyright (c) 2000-2003 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
23 #include "xfs_trans.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_itable.h"
41 #include "xfs_btree.h"
42 #include "xfs_rtalloc.h"
43 #include "xfs_error.h"
49 #include "xfs_buf_item.h"
52 struct xqmstats xqmstats;
65 /* maximum; incore; ratio free to inuse; freelist */
66 len = sprintf(buffer, "%d\t%d\t%d\t%u\n",
68 xfs_Gqm? atomic_read(&xfs_Gqm->qm_totaldquots) : 0,
69 xfs_Gqm? xfs_Gqm->qm_dqfree_ratio : 0,
70 xfs_Gqm? xfs_Gqm->qm_dqfreelist.qh_nelems : 0);
77 *start = buffer + offset;
78 if ((len -= offset) > count)
96 /* quota performance statistics */
97 len = sprintf(buffer, "qm %u %u %u %u %u %u %u %u\n",
98 xqmstats.xs_qm_dqreclaims,
99 xqmstats.xs_qm_dqreclaim_misses,
100 xqmstats.xs_qm_dquot_dups,
101 xqmstats.xs_qm_dqcachemisses,
102 xqmstats.xs_qm_dqcachehits,
103 xqmstats.xs_qm_dqwants,
104 xqmstats.xs_qm_dqshake_reclaims,
105 xqmstats.xs_qm_dqinact_reclaims);
112 *start = buffer + offset;
113 if ((len -= offset) > count)
121 xfs_qm_init_procfs(void)
123 create_proc_read_entry("fs/xfs/xqmstat", 0, NULL, xfs_qm_read_stats, NULL);
124 create_proc_read_entry("fs/xfs/xqm", 0, NULL, xfs_qm_read_xfsquota, NULL);
128 xfs_qm_cleanup_procfs(void)
130 remove_proc_entry("fs/xfs/xqm", NULL);
131 remove_proc_entry("fs/xfs/xqmstat", NULL);