diff options
author | pfg <pfg@FreeBSD.org> | 2016-04-29 20:51:24 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-04-29 20:51:24 +0000 |
commit | 9ed8e933a363f67081dec54601b6262db2a57437 (patch) | |
tree | 439baeed0963a2368c6a5227d4b802e8437ee794 /sys/fs/fuse | |
parent | 9c151ad3217629d12fe291027e5f4c831d397025 (diff) | |
download | FreeBSD-src-9ed8e933a363f67081dec54601b6262db2a57437.zip FreeBSD-src-9ed8e933a363f67081dec54601b6262db2a57437.tar.gz |
sys/fs: spelling fixes in comments.
No functional change.
Diffstat (limited to 'sys/fs/fuse')
-rw-r--r-- | sys/fs/fuse/fuse_io.c | 4 | ||||
-rw-r--r-- | sys/fs/fuse/fuse_vnops.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/fs/fuse/fuse_io.c b/sys/fs/fuse/fuse_io.c index 89b57bb..5ffeb88 100644 --- a/sys/fs/fuse/fuse_io.c +++ b/sys/fs/fuse/fuse_io.c @@ -209,7 +209,7 @@ fuse_read_biobackend(struct vnode *vp, struct uio *uio, * buffer based on an EOF condition we need to hold * nfs_rslock() through obtaining the buffer to prevent * a potential writer-appender from messing with n_size. - * Otherwise we may accidently truncate the buffer and + * Otherwise we may accidentally truncate the buffer and * lose dirty data. * * Note that bcount is *not* DEV_BSIZE aligned. @@ -546,7 +546,7 @@ again: (on > bp->b_dirtyend || (on + n) < bp->b_dirtyoff)) { /* * Yes, we mean it. Write out everything to "storage" - * immediatly, without hesitation. (Apart from other + * immediately, without hesitation. (Apart from other * reasons: the only way to know if a write is valid * if its actually written out.) */ diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c index 74dbcb2..b919b5f 100644 --- a/sys/fs/fuse/fuse_vnops.c +++ b/sys/fs/fuse/fuse_vnops.c @@ -1027,7 +1027,7 @@ out: * soon as we get those attrs... There is * one bit of info though not given us by * the daemon: whether his response is - * authorative or not... His response should + * authoritative or not... His response should * be ignored if something is mounted over * the dir in question. But that can be * known only by having the vnode... @@ -1774,7 +1774,7 @@ fuse_vnop_getpages(struct vop_getpages_args *ap) /* * We use only the kva address for the buffer, but this is extremely - * convienient and fast. + * convenient and fast. */ bp = getpbuf(&fuse_pbuf_freecnt); @@ -1835,7 +1835,7 @@ fuse_vnop_getpages(struct vop_getpages_args *ap) ("fuse_getpages: page %p is dirty", m)); } else { /* - * Read operation was short. If no error occured + * Read operation was short. If no error occurred * we may have hit a zero-fill section. We simply * leave valid set to 0. */ @@ -1908,7 +1908,7 @@ fuse_vnop_putpages(struct vop_putpages_args *ap) } /* * We use only the kva address for the buffer, but this is extremely - * convienient and fast. + * convenient and fast. */ bp = getpbuf(&fuse_pbuf_freecnt); |