aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/internal.h')
-rw-r--r--fs/nfs/internal.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h
index 76cf55d57101..9c2d0fbb9f89 100644
--- a/fs/nfs/internal.h
+++ b/fs/nfs/internal.h
@@ -27,6 +27,39 @@ struct nfs_clone_mount {
27 rpc_authflavor_t authflavor; 27 rpc_authflavor_t authflavor;
28}; 28};
29 29
30/*
31 * In-kernel mount arguments
32 */
33struct nfs_parsed_mount_data {
34 int flags;
35 int rsize, wsize;
36 int timeo, retrans;
37 int acregmin, acregmax,
38 acdirmin, acdirmax;
39 int namlen;
40 unsigned int bsize;
41 unsigned int auth_flavor_len;
42 rpc_authflavor_t auth_flavors[1];
43 char *client_address;
44
45 struct {
46 struct sockaddr_in address;
47 char *hostname;
48 unsigned int program;
49 unsigned int version;
50 unsigned short port;
51 int protocol;
52 } mount_server;
53
54 struct {
55 struct sockaddr_in address;
56 char *hostname;
57 char *export_path;
58 unsigned int program;
59 int protocol;
60 } nfs_server;
61};
62
30/* client.c */ 63/* client.c */
31extern struct rpc_program nfs_program; 64extern struct rpc_program nfs_program;
32 65