blob: 93b8c7fce2a262bdb3f0c370bdf5c49ee1b4276b (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* Copyright 2000 Hans Reiser
* See README for licensing and copyright details
*
* Ported to FreeBSD by Jean-Sébastien Pédron <jspedron@club-internet.fr>
*
* $FreeBSD$
*/
#ifndef _GNU_REISERFS_REISERFS_MOUNT_H
#define _GNU_REISERFS_REISERFS_MOUNT_H
#if defined(_KERNEL)
#ifdef MALLOC_DECLARE
MALLOC_DECLARE(M_REISERFSMNT);
MALLOC_DECLARE(M_REISERFSPATH);
MALLOC_DECLARE(M_REISERFSNODE);
MALLOC_DECLARE(M_REISERFSCOOKIES);
#endif
/* This structure describes the ReiserFS specific mount structure data. */
struct reiserfs_mount {
struct mount *rm_mountp;
struct cdev *rm_dev;
struct vnode *rm_devvp;
struct reiserfs_sb_info *rm_reiserfs;
struct g_consumer *rm_cp;
struct bufobj *rm_bo;
};
/* Convert mount ptr to reiserfs_mount ptr. */
#define VFSTOREISERFS(mp) ((struct reiserfs_mount *)((mp)->mnt_data))
#endif /* defined(_KERNEL) */
/* Arguments to mount ReiserFS filesystems. */
struct reiserfs_args {
char *fspec; /* blocks special holding the fs to mount */
struct oexport_args export; /* network export information */
};
#endif /* !defined _GNU_REISERFS_REISERFS_MOUNT_H */
|