summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorNeil Brown <neilb@cse.unsw.edu.au>2002-09-12 01:43:16 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2002-09-12 01:43:16 -0700
commit79313e40e78a6c1ade23cc56d9002b9b6a1602ff (patch)
treedbcd91892c735f83b2ab32fe13fe4c0f3ebaccdd /include/linux
parent981d3487f7b5a57e94a789e7a129f054fd7ad628 (diff)
[PATCH] kNFSd 15: Unite per-client export key hash tables.
Instead of a separate hash table per client we now have one hash table which includes the client in the key.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nfsd/export.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h
index d6a346aef097..6035a6ce2758 100644
--- a/include/linux/nfsd/export.h
+++ b/include/linux/nfsd/export.h
@@ -45,13 +45,9 @@
#ifdef __KERNEL__
-/* The following are hashtable sizes and must be powers of 2 */
-#define NFSCLNT_EXPMAX 16
-
struct svc_client {
struct svc_client * cl_next;
char cl_ident[NFSCLNT_IDMAX];
- struct list_head cl_export[NFSCLNT_EXPMAX];
struct list_head cl_list;
};