Message ID | 20240602004729.229634-2-thorsten.blum@toblux.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | readdir: Add missing quote in macro comment | expand |
On Sun 02-06-24 02:47:30, Thorsten Blum wrote: > Add a missing double quote in the unsafe_copy_dirent_name() macro > comment. > > Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Looks good. Feel free to add: Reviewed-by: Jan Kara <jack@suse.cz> Honza > --- > fs/readdir.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/readdir.c b/fs/readdir.c > index 278bc0254732..5045e32f1cb6 100644 > --- a/fs/readdir.c > +++ b/fs/readdir.c > @@ -72,7 +72,7 @@ int wrap_directory_iterator(struct file *file, > EXPORT_SYMBOL(wrap_directory_iterator); > > /* > - * Note the "unsafe_put_user() semantics: we goto a > + * Note the "unsafe_put_user()" semantics: we goto a > * label for errors. > */ > #define unsafe_copy_dirent_name(_dst, _src, _len, label) do { \ > -- > 2.45.1 >
On Sun, 02 Jun 2024 02:47:30 +0200, Thorsten Blum wrote: > Add a missing double quote in the unsafe_copy_dirent_name() macro > comment. > > Applied to the vfs.misc branch of the vfs/vfs.git tree. Patches in the vfs.misc branch should appear in linux-next soon. Please report any outstanding bugs that were missed during review in a new review to the original patch series allowing us to drop it. It's encouraged to provide Acked-bys and Reviewed-bys even though the patch has now been applied. If possible patch trailers will be updated. Note that commit hashes shown below are subject to change due to rebase, trailer updates or similar. If in doubt, please check the listed branch. tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git branch: vfs.misc [1/1] readdir: Add missing quote in macro comment https://git.kernel.org/vfs/vfs/c/1f9ccdf69c9f
On Sun, Jun 02, 2024 at 02:47:30AM +0200, Thorsten Blum wrote: > Add a missing double quote in the unsafe_copy_dirent_name() macro > comment. > > Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> > --- > fs/readdir.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/readdir.c b/fs/readdir.c > index 278bc0254732..5045e32f1cb6 100644 > --- a/fs/readdir.c > +++ b/fs/readdir.c > @@ -72,7 +72,7 @@ int wrap_directory_iterator(struct file *file, > EXPORT_SYMBOL(wrap_directory_iterator); > > /* > - * Note the "unsafe_put_user() semantics: we goto a > + * Note the "unsafe_put_user()" semantics: we goto a No need for the quotes in the first place, so why not just remove them altogether? -Dave.
diff --git a/fs/readdir.c b/fs/readdir.c index 278bc0254732..5045e32f1cb6 100644 --- a/fs/readdir.c +++ b/fs/readdir.c @@ -72,7 +72,7 @@ int wrap_directory_iterator(struct file *file, EXPORT_SYMBOL(wrap_directory_iterator); /* - * Note the "unsafe_put_user() semantics: we goto a + * Note the "unsafe_put_user()" semantics: we goto a * label for errors. */ #define unsafe_copy_dirent_name(_dst, _src, _len, label) do { \
Add a missing double quote in the unsafe_copy_dirent_name() macro comment. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> --- fs/readdir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)