summaryrefslogtreecommitdiffstats
path: root/fs/nfs/filelayout
diff options
context:
space:
mode:
authorTrond Myklebust2015-03-09 22:25:14 +0100
committerTrond Myklebust2015-03-27 17:32:24 +0100
commitfc87701b918c05c2d78f8191f5bc3c6c178bdb3d (patch)
treeaf6c056963130cd56aaa58fe0bc47fb68b7ebc62 /fs/nfs/filelayout
parentNFSv4.1: Don't cache deviceids that have no notifications (diff)
downloadkernel-qcow2-linux-fc87701b918c05c2d78f8191f5bc3c6c178bdb3d.tar.gz
kernel-qcow2-linux-fc87701b918c05c2d78f8191f5bc3c6c178bdb3d.tar.xz
kernel-qcow2-linux-fc87701b918c05c2d78f8191f5bc3c6c178bdb3d.zip
NFS: Fix free_deveiceid -> free_deviceid
Make it easier to grep for these functions by name. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/filelayout')
-rw-r--r--fs/nfs/filelayout/filelayout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/filelayout/filelayout.c b/fs/nfs/filelayout/filelayout.c
index 91e88a7ecef0..5639a2ef671a 100644
--- a/fs/nfs/filelayout/filelayout.c
+++ b/fs/nfs/filelayout/filelayout.c
@@ -1086,7 +1086,7 @@ filelayout_alloc_deviceid_node(struct nfs_server *server,
}
static void
-filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
+filelayout_free_deviceid_node(struct nfs4_deviceid_node *d)
{
nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
}
@@ -1137,7 +1137,7 @@ static struct pnfs_layoutdriver_type filelayout_type = {
.read_pagelist = filelayout_read_pagelist,
.write_pagelist = filelayout_write_pagelist,
.alloc_deviceid_node = filelayout_alloc_deviceid_node,
- .free_deviceid_node = filelayout_free_deveiceid_node,
+ .free_deviceid_node = filelayout_free_deviceid_node,
};
static int __init nfs4filelayout_init(void)