Fix typos and configure spellcheck for PRs
authorYaroslav Halchenko <debian@onerussian.com>
Wed, 29 Mar 2023 18:47:13 +0000 (14:47 -0400)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2023 18:47:13 +0000 (19:47 +0100)
.codespellrc [new file with mode: 0644]
.github/ISSUE_TEMPLATE/issue-report.md
.github/workflows/codespell.yml [new file with mode: 0644]
ChangeLog.rst
example/passthrough_hp.cc
example/poll.c
include/fuse_lowlevel.h
meson.build
util/fusermount.c

diff --git a/.codespellrc b/.codespellrc
new file mode 100644 (file)
index 0000000..6bf9ccc
--- /dev/null
@@ -0,0 +1,11 @@
+[codespell]
+skip = .git,*.pdf,*.svg,AUTHORS
+
+# The following strings shouldn't actually be accepted, but they're wrongly
+# identified as words and there is currently no way to exclude them on
+# a by-line basis (https://github.com/codespell-project/codespell/pull/2400).
+# Therefore, pretend that they are correctly spelled words:
+# - alse: used in regex
+# - siz:  wanted short
+# - fiter:  variable
+ignore-words-list = alse,siz,fiter
index 277537eb776a174654e312e0f5534c1b30e3124e..492ce0a1cd1051e2f8028d84c38fdd9037f5234e 100644 (file)
@@ -11,6 +11,6 @@ PLEASE READ BEFORE REPORTING AN ISSUE
 
 libfuse does not have any active, regular contributors or developers.  The current maintainer continues to apply pull requests and tries to make regular releases, but unfortunately has no capacity to do any development beyond addressing high-impact issues. When reporting bugs, please understand that unless you are including a pull request or are reporting a critical issue, you will probably not get a response.
 
-To prevent the issue tracker from being flooded with issues that no-one is intending to work on, and to give more visibilty to critical issues that users should be aware of and that most urgently need attention, I will also close most bug reports once they've been inactive for a while.
+To prevent the issue tracker from being flooded with issues that no-one is intending to work on, and to give more visibility to critical issues that users should be aware of and that most urgently need attention, I will also close most bug reports once they've been inactive for a while.
 
 Please note that this isn't meant to imply that you haven't found a bug - you most likely have and I'm grateful that you took the time to report it. Unfortunately, libfuse is a purely volunteer driven project, and at the moment there simply aren't any volunteers.
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644 (file)
index 0000000..5768d7c
--- /dev/null
@@ -0,0 +1,19 @@
+---
+name: Codespell
+
+on:
+  push:
+    branches: [master]
+  pull_request:
+    branches: [master]
+
+jobs:
+  codespell:
+    name: Check for spelling errors
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v3
+      - name: Codespell
+        uses: codespell-project/actions-codespell@v1
index 3e46c7ac8390e96008d7743ba8c37bc7baa41835..0b855675707826faa8f7281d4a0a7dce4be05e22 100644 (file)
@@ -57,7 +57,7 @@ The following changes apply when using the most recent API (-DFUSE_USE_VERSION=3
 see `example/passthrough_hp.cc` for an example for how to usse the new API):
 
 * `struct fuse_loop_config` is now private and has to be constructed using
-  *fuse_loop_cfg_create()* and detroyed with *fuse_loop_cfg_destroy()*.  Parameters can be
+  *fuse_loop_cfg_create()* and destroyed with *fuse_loop_cfg_destroy()*.  Parameters can be
   changed using `fuse_loop_cfg_set_*()` functions.
 
 * *fuse_session_loop_mt()* now accepts `struct fuse_loop_config *` as NULL pointer.
index 26fa42e437127460c8001c41e7d93c3855a9ca49..a0480e52deb81ddfaf145614353fb7ebc275ae61 100644 (file)
@@ -201,7 +201,7 @@ static void sfs_init(void *userdata, fuse_conn_info *conn) {
         // FUSE_CAP_SPLICE_READ is enabled in libfuse3 by default,
         // see do_init() in in fuse_lowlevel.c
         // Just unset both, in case FUSE_CAP_SPLICE_WRITE would also get enabled
-        // by detault.
+        // by default.
         conn->want &= ~FUSE_CAP_SPLICE_READ;
         conn->want &= ~FUSE_CAP_SPLICE_WRITE;
     } else {
index e231b967db3a2914044a5f4d187a348b4c978830..f9430a9cd42e3f9d23789d2d3d1245d73f07526c 100644 (file)
@@ -44,7 +44,7 @@ static unsigned fsel_open_mask;
 static const char fsel_hex_map[] = "0123456789ABCDEF";
 static struct fuse *fsel_fuse; /* needed for poll notification */
 
-#define FSEL_CNT_MAX   10      /* each file can store upto 10 chars */
+#define FSEL_CNT_MAX   10      /* each file can store up to 10 chars */
 #define FSEL_FILES     16
 
 static pthread_mutex_t fsel_mutex;     /* protects notify_mask and cnt array */
index 31eb452a2da97f0c544adbb5b46f3225aec869dc..6500e2961654a350945342492342dd816703c8b1 100644 (file)
@@ -1680,7 +1680,7 @@ int fuse_lowlevel_notify_inval_inode(struct fuse_session *se, fuse_ino_t ino,
  * parent/name
  *
  * To avoid a deadlock this function must not be called in the
- * execution path of a related filesytem operation or within any code
+ * execution path of a related filesystem operation or within any code
  * that could hold a lock that could be needed to execute such an
  * operation. As of kernel 4.18, a "related operation" is a lookup(),
  * symlink(), mknod(), mkdir(), unlink(), rename(), link() or create()
@@ -1744,7 +1744,7 @@ int fuse_lowlevel_notify_expire_entry(struct fuse_session *se, fuse_ino_t parent
  * that the dentry has been deleted.
  *
  * To avoid a deadlock this function must not be called while
- * executing a related filesytem operation or while holding a lock
+ * executing a related filesystem operation or while holding a lock
  * that could be needed to execute such an operation (see the
  * description of fuse_lowlevel_notify_inval_entry() for more
  * details).
index ac4dfb90168c42ffc0ff4037c3221123652f4b8f..0b3bd680013ae9bb3d565b21326e821e3f6b5036 100644 (file)
@@ -114,7 +114,7 @@ if not cc.compiles(code, args: [ '-O0' ])
   versioned_symbols = 0
 endif
 
-# The detection can be overriden, which is useful for other (above unhandled)
+# The detection can be overridden, which is useful for other (above unhandled)
 # libcs and also especially useful for testing
 if get_option('disable-libc-symbol-version')
      versioned_symbols = 0
index c59da7544b0278756434ba021830d337f4234837..f8124cb3598dc999379be1452150b1b8d678e912 100644 (file)
@@ -999,7 +999,7 @@ static int check_perm(const char **mntp, struct stat *stbuf, int *mountpoint_fd)
         * originally the same list as used by the ecryptfs mount helper
         * (https://bazaar.launchpad.net/~ecryptfs/ecryptfs/trunk/view/head:/src/utils/mount.ecryptfs_private.c#L225)
         * but got expanded as we found more filesystems that needed to be
-        * overlayed. */
+        * overlaid. */
        typeof(fs_buf.f_type) f_type_whitelist[] = {
                0x61756673 /* AUFS_SUPER_MAGIC */,
                0x00000187 /* AUTOFS_SUPER_MAGIC */,