File: quotacheck.h

package info (click to toggle)
quota 3.16-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,760 kB
  • ctags: 1,194
  • sloc: ansic: 10,109; sh: 598; perl: 333; makefile: 191
file content (46 lines) | stat: -rw-r--r-- 1,618 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 *
 *	Header file for quota checking utilities
 *
 */

#ifndef _QUOTACHECK_H
#define _QUOTACHECK_H

#include <sys/types.h>

#include "quota.h"
#include "quotaio.h"

#define NODQUOT ((struct dquot *)NULL)

#define FL_FORCE 1		/* Force check even if quota enabled */
#define FL_VERBOSE 2		/* Have verbose input */
#define FL_DEBUG 4		/* Have very verbose input */
#define FL_INTERACTIVE 8	/* Ask questions when needed */
#define FL_GUESSDQ 16		/* When more structures for same user found, use the first */
#define FL_NEWFILE 32		/* Don't try to read old file. Just create new one. */
#define FL_FORCEREMOUNT 64	/* Force check even when remounting RO fails */
#define FL_NOREMOUNT 128	/* Don't try to remount filesystem RO */
#define FL_ALL 256		/* Scan all mountpoints with quota? */
#define FL_NOROOT 512		/* Scan all mountpoints except root */
#define FL_BACKUPS 1024		/* Create backup of old quota file? */
#define FL_VERYVERBOSE 2048	/* Print directory names when checking */

extern int flags;		/* Options from command line */
extern struct util_dqinfo old_info[MAXQUOTAS];	/* Loaded info from file */

#ifdef DEBUG_MALLOC
extern size_t malloc_mem = 0;
extern size_t free_mem = 0;
#endif

void *xmalloc(size_t size);
void debug(int df, char *fmtstr, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
int ask_yn(char *q, int def);
struct dquot *lookup_dquot(qid_t id, int type);
struct dquot *add_dquot(qid_t id, int type);
int v2_buffer_file(char *filename, int fd, int type);
int v1_buffer_file(char *filename, int fd, int type);
void v2_merge_info(struct util_dqinfo *new, struct util_dqinfo *old);
#endif