summaryrefslogtreecommitdiffstats
path: root/sys/nfs
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2013-12-23 08:43:16 +0000
committermav <mav@FreeBSD.org>2013-12-23 08:43:16 +0000
commitc84160c1b25c50cb41c73db768aba34d5cb7c448 (patch)
tree53d88dbc677b8201f564c6e1429f6aee358e5792 /sys/nfs
parent276cb60bbc79440017dce590e0f0810118043fdf (diff)
downloadFreeBSD-src-c84160c1b25c50cb41c73db768aba34d5cb7c448.zip
FreeBSD-src-c84160c1b25c50cb41c73db768aba34d5cb7c448.tar.gz
Fix RPC server threads file handle affinity to work better with ZFS.
Instead of taking 8 specific bytes of file handle to identify file during RPC thread affitinity handling, use trivial hash of the full file handle. ZFS's struct zfid_short does not have padding field after the length field, as result, originally picked 8 bytes are loosing lower 16 bits of object ID, causing many false matches and unneeded requests affinity to same thread. This fix substantially improves NFS server latency and scalability in SPEC NFS benchmark by more flexible use of multiple NFS threads. Sponsored by: iXsystems, Inc.
Diffstat (limited to 'sys/nfs')
-rw-r--r--sys/nfs/nfs_fha.c5
-rw-r--r--sys/nfs/nfs_fha.h2
2 files changed, 2 insertions, 5 deletions
diff --git a/sys/nfs/nfs_fha.c b/sys/nfs/nfs_fha.c
index 2290804..1892729 100644
--- a/sys/nfs/nfs_fha.c
+++ b/sys/nfs/nfs_fha.c
@@ -130,7 +130,6 @@ fha_extract_info(struct svc_req *req, struct fha_info *i,
struct fha_callbacks *cb)
{
struct mbuf *md;
- fhandle_t fh;
caddr_t dpos;
static u_int64_t random_fh = 0;
int error;
@@ -177,12 +176,10 @@ fha_extract_info(struct svc_req *req, struct fha_info *i,
dpos = mtod(md, caddr_t);
/* Grab the filehandle. */
- error = cb->get_fh(&fh, v3, &md, &dpos);
+ error = cb->get_fh(&i->fh, v3, &md, &dpos);
if (error)
goto out;
- bcopy(fh.fh_fid.fid_data, &i->fh, sizeof(i->fh));
-
/* Content ourselves with zero offset for all but reads. */
if (cb->is_read(procnum) || cb->is_write(procnum))
cb->get_offset(&md, &dpos, v3, i);
diff --git a/sys/nfs/nfs_fha.h b/sys/nfs/nfs_fha.h
index ef5ada0..d3dd039 100644
--- a/sys/nfs/nfs_fha.h
+++ b/sys/nfs/nfs_fha.h
@@ -82,7 +82,7 @@ struct fha_info {
struct fha_callbacks {
rpcproc_t (*get_procnum)(rpcproc_t procnum);
int (*realign)(struct mbuf **mb, int malloc_flags);
- int (*get_fh)(fhandle_t *fh, int v3, struct mbuf **md, caddr_t *dpos);
+ int (*get_fh)(uint64_t *fh, int v3, struct mbuf **md, caddr_t *dpos);
int (*is_read)(rpcproc_t procnum);
int (*is_write)(rpcproc_t procnum);
int (*get_offset)(struct mbuf **md, caddr_t *dpos, int v3, struct
OpenPOWER on IntegriCloud