summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVicki Pfau <vi@endrift.com>2024-03-05 18:08:27 -0800
committerJan Kara <jack@suse.cz>2024-03-06 13:13:05 +0100
commit9fe0c03f0bfc5f74dad6e818090ab967d8603095 (patch)
treeaa7e19835b091397d6afc3c06add7d8a2881991c
parente225555028bd3671ad6f4ce72405a95d62e17371 (diff)
downloadlinux-stable-9fe0c03f0bfc5f74dad6e818090ab967d8603095.tar.gz
linux-stable-9fe0c03f0bfc5f74dad6e818090ab967d8603095.tar.bz2
linux-stable-9fe0c03f0bfc5f74dad6e818090ab967d8603095.zip
fsnotify: Fix misspelling of "writable"
Several file system notification system headers have "writable" misspelled as "writtable" in the comments. This patch fixes it in the fsnotify header. Signed-off-by: Vicki Pfau <vi@endrift.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20240306020831.1404033-2-vi@endrift.com>
-rw-r--r--include/linux/fsnotify_backend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h
index 7f63be5ca0f1..8f40c349b228 100644
--- a/include/linux/fsnotify_backend.h
+++ b/include/linux/fsnotify_backend.h
@@ -31,8 +31,8 @@
#define FS_ACCESS 0x00000001 /* File was accessed */
#define FS_MODIFY 0x00000002 /* File was modified */
#define FS_ATTRIB 0x00000004 /* Metadata changed */
-#define FS_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
-#define FS_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
+#define FS_CLOSE_WRITE 0x00000008 /* Writable file was closed */
+#define FS_CLOSE_NOWRITE 0x00000010 /* Unwritable file closed */
#define FS_OPEN 0x00000020 /* File was opened */
#define FS_MOVED_FROM 0x00000040 /* File was moved from X */
#define FS_MOVED_TO 0x00000080 /* File was moved to Y */