]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - include/project.h
xfs: defer should allow ->finish_item to request a new transaction
[thirdparty/xfsprogs-dev.git] / include / project.h
1 /*
2 * Copyright (c) 2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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.
8 *
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.
13 *
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
17 */
18 #ifndef __PROJECT_H__
19 #define __PROJECT_H__
20
21 #include "platform_defs.h"
22 #include "xfs.h"
23
24 extern int setprojid(const char *__name, int __fd, prid_t __id);
25 extern int getprojid(const char *__name, int __fd, prid_t *__id);
26
27 typedef struct fs_project {
28 prid_t pr_prid; /* project identifier */
29 char *pr_name; /* project name */
30 } fs_project_t;
31
32 extern void setprent(void);
33 extern void endprent(void);
34 extern fs_project_t *getprent(void);
35 extern fs_project_t *getprnam(char *__name);
36 extern fs_project_t *getprprid(prid_t __id);
37
38 typedef struct fs_project_path {
39 prid_t pp_prid; /* project identifier */
40 char *pp_pathname; /* pathname to root of project tree */
41 } fs_project_path_t;
42
43 extern void setprpathent(void);
44 extern void endprpathent(void);
45 extern fs_project_path_t *getprpathent(void);
46
47 extern void setprfiles(void);
48 extern char *projid_file;
49 extern char *projects_file;
50
51 #endif /* __PROJECT_H__ */