diff options
| author | Christian Brauner <brauner@kernel.org> | 2024-11-06 13:22:30 +0300 |
|---|---|---|
| committer | Christian Brauner <brauner@kernel.org> | 2024-11-06 13:22:30 +0300 |
| commit | 552b15103db404c7971d4958e6e28d4e7123a325 (patch) | |
| tree | 3a769db0fe76530c30475bc51599ab3e6a6f66c0 /include | |
| parent | 9c8f520389c26b0a55951d494a6016763e8413fe (diff) | |
| parent | 65c481f30896750f659345b915b669f78a3c0289 (diff) | |
| download | linux-552b15103db404c7971d4958e6e28d4e7123a325.tar.xz | |
Merge patch series "tmpfs: Casefold fixes"
André Almeida <andrealmeid@igalia.com> says:
After casefold support for tmpfs was merged into vfs tree, two warnings
were reported and I also found a small fix in the code.
Thanks Nathan Chancellor and Stephen Rothwell!
* patches from https://lore.kernel.org/r/20241101164251.327884-1-andrealmeid@igalia.com:
tmpfs: Initialize sysfs during tmpfs init
tmpfs: Fix type for sysfs' casefold attribute
libfs: Fix kernel-doc warning in generic_ci_validate_strict_name
Link: https://lore.kernel.org/r/20241101164251.327884-1-andrealmeid@igalia.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/fs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index b277369672a1..001d580af862 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -3477,12 +3477,12 @@ int generic_ci_d_compare(const struct dentry *dentry, unsigned int len, * @name: name of the new file * * Return: - * * True if the filename is suitable for this directory. It can be - * true if a given name is not suitable for a strict encoding - * directory, but the directory being used isn't strict + * * True: if the filename is suitable for this directory. It can be + * true if a given name is not suitable for a strict encoding + * directory, but the directory being used isn't strict * * False if the filename isn't suitable for this directory. This only - * happens when a directory is casefolded and the filesystem is strict - * about its encoding. + * happens when a directory is casefolded and the filesystem is strict + * about its encoding. */ static inline bool generic_ci_validate_strict_name(struct inode *dir, struct qstr *name) { |
