summaryrefslogtreecommitdiffstats
path: root/usr/utils/mount_opts.h
blob: cf47cae8c60098d52be3d7009513f34162530bf1 (plain)
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
#ifndef UTILS_MOUNT_OPTS_H
#define UTILS_MOUNT_OPTS_H

struct mount_opts {
	const char str[8];
	unsigned long rwmask;
	unsigned long rwset;
	unsigned long rwnoset;
};

struct extra_opts {
	char *str;
	char *end;
	int used_size;
	int alloc_size;
};

/*
 * These options define the function of "mount(2)".
 */
#define MS_TYPE	(MS_REMOUNT|MS_BIND|MS_MOVE)

unsigned long
parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra);

#endif /* UTILS_MOUNT_OPTS_H */