Commit c5ae8e5e authored by Yuesong Li's avatar Yuesong Li Committed by Christian Brauner

fs/namespace.c: Fix typo in comment

replace 'permanetly' with 'permanently' in the comment &
replace 'propogated' with 'propagated' in the comment
Signed-off-by: default avatarYuesong Li <liyuesong@vivo.com>
Link: https://lore.kernel.org/r/20240806034710.2807788-1-liyuesong@vivo.comSigned-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent 0d196e75
...@@ -1774,7 +1774,7 @@ static void umount_tree(struct mount *mnt, enum umount_tree_flags how) ...@@ -1774,7 +1774,7 @@ static void umount_tree(struct mount *mnt, enum umount_tree_flags how)
list_del_init(&p->mnt_child); list_del_init(&p->mnt_child);
} }
/* Add propogated mounts to the tmp_list */ /* Add propagated mounts to the tmp_list */
if (how & UMOUNT_PROPAGATE) if (how & UMOUNT_PROPAGATE)
propagate_umount(&tmp_list); propagate_umount(&tmp_list);
...@@ -5613,7 +5613,7 @@ static bool mnt_already_visible(struct mnt_namespace *ns, ...@@ -5613,7 +5613,7 @@ static bool mnt_already_visible(struct mnt_namespace *ns,
/* Only worry about locked mounts */ /* Only worry about locked mounts */
if (!(child->mnt.mnt_flags & MNT_LOCKED)) if (!(child->mnt.mnt_flags & MNT_LOCKED))
continue; continue;
/* Is the directory permanetly empty? */ /* Is the directory permanently empty? */
if (!is_empty_dir_inode(inode)) if (!is_empty_dir_inode(inode))
goto next; goto next;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment