summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authorjh <jh@FreeBSD.org>2009-10-20 14:57:26 +0000
committerjh <jh@FreeBSD.org>2009-10-20 14:57:26 +0000
commitdaadfe0f12fdfaac71b81f6d346cf8682b9ca3ad (patch)
treeeecf359e15f8730fdf23a6dd3549033568e76651 /sys/fs
parent310374cce69d9cf9c58cb26724b84b1adce430b3 (diff)
downloadFreeBSD-src-daadfe0f12fdfaac71b81f6d346cf8682b9ca3ad.zip
FreeBSD-src-daadfe0f12fdfaac71b81f6d346cf8682b9ca3ad.tar.gz
Fix comment typos.
Reviewed by: rmacklem Approved by: trasz (mentor)
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/nfsclient/nfs_clstate.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/nfsclient/nfs_clstate.c b/sys/fs/nfsclient/nfs_clstate.c
index 236432e..67727e0 100644
--- a/sys/fs/nfsclient/nfs_clstate.c
+++ b/sys/fs/nfsclient/nfs_clstate.c
@@ -36,9 +36,9 @@ __FBSDID("$FreeBSD$");
* - The correct granularity of an OpenOwner is not nearly so
* obvious. An OpenOwner does the following:
* - provides a serial sequencing of Open/Close/Lock-with-new-lockowner
- * - is used to check for Open/SHare contention (not applicable to
+ * - is used to check for Open/Share contention (not applicable to
* this client, since all Opens are Deny_None)
- * As such, I considered both extrema.
+ * As such, I considered both extreme.
* 1 OpenOwner per ClientID - Simple to manage, but fully serializes
* all Open, Close and Lock (with a new lockowner) Ops.
* 1 OpenOwner for each Open - This one results in an OpenConfirm for
@@ -50,8 +50,8 @@ __FBSDID("$FreeBSD$");
* which of these the vnodeop close applies to. This is handled by
* delaying the Close Op(s) until all of the Opens have been closed.
* (It is not yet obvious if this is the correct granularity.)
- * - How the code handles serailization:
- * - For the ClientId, is uses an exclusive lock while getting its
+ * - How the code handles serialization:
+ * - For the ClientId, it uses an exclusive lock while getting its
* SetClientId and during recovery. Otherwise, it uses a shared
* lock via a reference count.
* - For the rest of the data structures, it uses an SMP mutex
OpenPOWER on IntegriCloud