]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - db/agfl.c
Flush out my xfsprogs backlog - bunch of I18N and sector size related
[thirdparty/xfsprogs-dev.git] / db / agfl.c
1 /*
2 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 */
32
33 #include <libxfs.h>
34 #include "agfl.h"
35 #include "command.h"
36 #include "data.h"
37 #include "type.h"
38 #include "faddr.h"
39 #include "fprint.h"
40 #include "field.h"
41 #include "io.h"
42 #include "bit.h"
43 #include "output.h"
44 #include "mount.h"
45
46 static int agfl_bno_size(void *obj, int startoff);
47 static int agfl_f(int argc, char **argv);
48 static void agfl_help(void);
49
50 static const cmdinfo_t agfl_cmd =
51 { "agfl", NULL, agfl_f, 0, 1, 1, "[agno]",
52 "set address to agfl block", agfl_help };
53
54 const field_t agfl_hfld[] = { {
55 "", FLDT_AGFL, OI(0), C1, 0, TYP_NONE, },
56 { NULL }
57 };
58
59 #define OFF(f) bitize(offsetof(xfs_agfl_t, agfl_ ## f))
60 const field_t agfl_flds[] = {
61 { "bno", FLDT_AGBLOCKNZ, OI(OFF(bno)), agfl_bno_size,
62 FLD_ARRAY|FLD_COUNT, TYP_DATA },
63 { NULL }
64 };
65
66 static int
67 agfl_bno_size(
68 void *obj,
69 int startoff)
70 {
71 return XFS_AGFL_SIZE(mp);
72 }
73
74 static void
75 agfl_help(void)
76 {
77 dbprintf(
78 "\n"
79 " set allocation group freelist\n"
80 "\n"
81 " Example:\n"
82 "\n"
83 " agfl 5"
84 "\n"
85 " Located in the fourth sector of each allocation group,\n"
86 " the agfl freelist for internal btree space allocation is maintained\n"
87 " for each allocation group. This acts as a reserved pool of space\n"
88 " separate from the general filesystem freespace (not used for user data).\n"
89 "\n"
90 );
91
92 }
93
94 static int
95 agfl_f(
96 int argc,
97 char **argv)
98 {
99 xfs_agnumber_t agno;
100 char *p;
101
102 if (argc > 1) {
103 agno = (xfs_agnumber_t)strtoul(argv[1], &p, 0);
104 if (*p != '\0' || agno >= mp->m_sb.sb_agcount) {
105 dbprintf("bad allocation group number %s\n", argv[1]);
106 return 0;
107 }
108 cur_agno = agno;
109 } else if (cur_agno == NULLAGNUMBER)
110 cur_agno = 0;
111 ASSERT(typtab[TYP_AGFL].typnm == TYP_AGFL);
112 set_cur(&typtab[TYP_AGFL],
113 XFS_AG_DADDR(mp, cur_agno, XFS_AGFL_DADDR(mp)),
114 XFS_FSS_TO_BB(mp, 1), DB_RING_ADD, NULL);
115 return 0;
116 }
117
118 void
119 agfl_init(void)
120 {
121 add_command(&agfl_cmd);
122 }
123
124 /*ARGSUSED*/
125 int
126 agfl_size(
127 void *obj,
128 int startoff,
129 int idx)
130 {
131 return bitize(mp->m_sb.sb_sectsize);
132 }