diff options
author | pfg <pfg@FreeBSD.org> | 2016-04-29 16:07:25 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-04-29 16:07:25 +0000 |
commit | 21e15c627b437ebb6b2484e5bf02433292d6e981 (patch) | |
tree | 83a4fbd4e36e7b4310963c0c66a3dd4eff30825b /sys/fs/nfs | |
parent | df42baabd1d79999ce438d0ee0394c8893c53ae8 (diff) | |
download | FreeBSD-src-21e15c627b437ebb6b2484e5bf02433292d6e981.zip FreeBSD-src-21e15c627b437ebb6b2484e5bf02433292d6e981.tar.gz |
NFS: spelling fixes on comments.
No funcional change.
Diffstat (limited to 'sys/fs/nfs')
-rw-r--r-- | sys/fs/nfs/nfs_commonport.c | 2 | ||||
-rw-r--r-- | sys/fs/nfs/nfsport.h | 2 | ||||
-rw-r--r-- | sys/fs/nfs/nfsrvstate.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/nfs/nfs_commonport.c b/sys/fs/nfs/nfs_commonport.c index a62a222..a22073f 100644 --- a/sys/fs/nfs/nfs_commonport.c +++ b/sys/fs/nfs/nfs_commonport.c @@ -155,7 +155,7 @@ newnfs_realign(struct mbuf **pm, int how) * we cannot afford to overwrite them. * * We would prefer to avoid this situation entirely. The situation does - * not occur with NFS/UDP and is supposed to only occassionally occur + * not occur with NFS/UDP and is supposed to only occasionally occur * with TCP. Use vfs.nfs.realign_count and realign_test to check this. * */ diff --git a/sys/fs/nfs/nfsport.h b/sys/fs/nfs/nfsport.h index 04bb27c..921df2d 100644 --- a/sys/fs/nfs/nfsport.h +++ b/sys/fs/nfs/nfsport.h @@ -968,7 +968,7 @@ struct nfsreq { /* * Name used by getnewvnode() to describe filesystem, "nfs". - * For perfomance reasons it is useful to have the same string + * For performance reasons it is useful to have the same string * used in both places that call getnewvnode(). */ extern const char nfs_vnode_tag[]; diff --git a/sys/fs/nfs/nfsrvstate.h b/sys/fs/nfs/nfsrvstate.h index 42254ab..ef8f249 100644 --- a/sys/fs/nfs/nfsrvstate.h +++ b/sys/fs/nfs/nfsrvstate.h @@ -76,7 +76,7 @@ struct nfssessionhash { * Client server structure for V4. It is doubly linked into two lists. * The first is a hash table based on the clientid and the second is a * list of all clients maintained in LRU order. - * The actual size malloc'd is large enough to accomodate the id string. + * The actual size malloc'd is large enough to accommodate the id string. */ struct nfsclient { LIST_ENTRY(nfsclient) lc_hash; /* Clientid hash list */ |