summaryrefslogtreecommitdiff
path: root/nfsd/nfsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'nfsd/nfsd.h')
-rw-r--r--nfsd/nfsd.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/nfsd/nfsd.h b/nfsd/nfsd.h
index 4afff061..4ab558c4 100644
--- a/nfsd/nfsd.h
+++ b/nfsd/nfsd.h
@@ -42,10 +42,15 @@ struct idspec
int references;
};
+union cache_handle_array {
+ char array[NFS2_FHSIZE];
+ int fs;
+};
+
struct cache_handle
{
struct cache_handle *next, **prevp;
- char handle[NFS2_FHSIZE];
+ union cache_handle_array handle;
struct idspec *ids;
file_t port;
time_t lastuse;