git: b57198f620bc - main - fusefs(5): Fix a couple of typos in kernel messages

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Tue, 28 Oct 2025 08:17:12 UTC
The branch main has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=b57198f620bcbf899a32c3de9526bd525ab8a39e

commit b57198f620bcbf899a32c3de9526bd525ab8a39e
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-28 08:16:35 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-10-28 08:16:35 +0000

    fusefs(5): Fix a couple of typos in kernel messages
    
    - s/intalled/installed/
    - s/attributess/attributes/
    
    MFC after:      1 week
---
 sys/fs/fuse/fuse_ipc.c   | 2 +-
 sys/fs/fuse/fuse_vnops.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/fs/fuse/fuse_ipc.c b/sys/fs/fuse/fuse_ipc.c
index 7f754ab7f1d4..bc36f0070d7d 100644
--- a/sys/fs/fuse/fuse_ipc.c
+++ b/sys/fs/fuse/fuse_ipc.c
@@ -694,7 +694,7 @@ fuse_body_audit(struct fuse_ticket *ftick, size_t blen)
 		break;
 
 	case FUSE_FORGET:
-		panic("FUSE: a handler has been intalled for FUSE_FORGET");
+		panic("FUSE: a handler has been installed for FUSE_FORGET");
 		break;
 
 	case FUSE_GETATTR:
diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c
index 683ee2f7ad56..97aa23bfb0b0 100644
--- a/sys/fs/fuse/fuse_vnops.c
+++ b/sys/fs/fuse/fuse_vnops.c
@@ -2756,7 +2756,7 @@ fuse_vnop_setextattr(struct vop_setextattr_args *ap)
 		 */
 		if (fsess_not_impl(mp, FUSE_REMOVEXATTR))
 			return (EXTERROR(EOPNOTSUPP, "This server does not "
-			    "implement removing extended attributess"));
+			    "implement removing extended attributes"));
 		else
 			return (EXTERROR(EINVAL, "DELETEEXTATTR should be used "
 			    "to remove extattrs"));