diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-09-23 11:08:25 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-09-23 12:39:00 -0400 |
commit | f134585a7343d71f9be7f0cf97e2145f21dd10c6 (patch) | |
tree | f1eae77a5063e3748cd8deba9a13794ae0a9439c /include/linux/sunrpc | |
parent | 3063d8a16643190f9e12e9c7e9f1ca56f7e7934e (diff) |
Revert "[PATCH] RPC,NFS: new rpc_pipefs patch"
This reverts 17f4e6febca160a9f9dd4bdece9784577a2f4524 commit.
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/clnt.h | 2 | ||||
-rw-r--r-- | include/linux/sunrpc/rpc_pipe_fs.h | 9 |
2 files changed, 5 insertions, 6 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index b5b51c196690..ab151bbb66df 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
@@ -59,7 +59,7 @@ struct rpc_clnt { | |||
59 | 59 | ||
60 | int cl_nodelen; /* nodename length */ | 60 | int cl_nodelen; /* nodename length */ |
61 | char cl_nodename[UNX_MAXNODENAME]; | 61 | char cl_nodename[UNX_MAXNODENAME]; |
62 | struct dentry * __cl_parent_dentry; | 62 | char cl_pathname[30];/* Path in rpc_pipe_fs */ |
63 | struct dentry * cl_dentry; /* inode */ | 63 | struct dentry * cl_dentry; /* inode */ |
64 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ | 64 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ |
65 | struct rpc_rtt cl_rtt_default; | 65 | struct rpc_rtt cl_rtt_default; |
diff --git a/include/linux/sunrpc/rpc_pipe_fs.h b/include/linux/sunrpc/rpc_pipe_fs.h index 63878d05c9a9..63929349571f 100644 --- a/include/linux/sunrpc/rpc_pipe_fs.h +++ b/include/linux/sunrpc/rpc_pipe_fs.h | |||
@@ -41,11 +41,10 @@ RPC_I(struct inode *inode) | |||
41 | 41 | ||
42 | extern int rpc_queue_upcall(struct inode *, struct rpc_pipe_msg *); | 42 | extern int rpc_queue_upcall(struct inode *, struct rpc_pipe_msg *); |
43 | 43 | ||
44 | extern struct dentry *rpc_mkdir(struct dentry *, char *, struct rpc_clnt *); | 44 | extern struct dentry *rpc_mkdir(char *, struct rpc_clnt *); |
45 | extern void rpc_rmdir(struct dentry *); | 45 | extern int rpc_rmdir(char *); |
46 | extern struct dentry *rpc_mkpipe(struct dentry *, char *, void *, | 46 | extern struct dentry *rpc_mkpipe(char *, void *, struct rpc_pipe_ops *, int flags); |
47 | struct rpc_pipe_ops *, int flags); | 47 | extern int rpc_unlink(char *); |
48 | extern void rpc_unlink(struct dentry *); | ||
49 | 48 | ||
50 | #endif | 49 | #endif |
51 | #endif | 50 | #endif |