summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2022-02-16 08:42:18 +0000
committerFreeArtMan <dos21h@gmail.com>2022-02-16 08:42:18 +0000
commit927ead5c85d7afa5f9501e7fbaa26fad45f1269a (patch)
tree0e66eabf7cf1439f89b452771db456fcf05947d0
parentde34fd14487bc561a8b40be4d1edbf497c5e908d (diff)
downloadmd-content-927ead5c85d7afa5f9501e7fbaa26fad45f1269a.tar.gz
md-content-927ead5c85d7afa5f9501e7fbaa26fad45f1269a.zip
Fixed 2 more typos for nmount
-rw-r--r--md/writeup/writing_linux_mount_utility.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/md/writeup/writing_linux_mount_utility.md b/md/writeup/writing_linux_mount_utility.md
index 06d72f2..9878c2f 100644
--- a/md/writeup/writing_linux_mount_utility.md
+++ b/md/writeup/writing_linux_mount_utility.md
@@ -11,7 +11,7 @@ own mount utility. As its looks like only one syscall is needed to do that sys_m
Other part of it is to see how to get all different file systems and find
options that are possible to pass to mounted partition. All of this also preparations
to write my own linux userspace and to have non-Linux distro. Main inspiration
-taken form arsv/minibase soure code.
+taken form arsv/minibase source code.
## Syscalls
@@ -87,7 +87,7 @@ Mount flags that can be passed when mounting filesystems, those are taken from k
## Kernel implementation
-Lates linux kernel source code where mount syscall is define is
+Latest linux kernel source code where mount syscall is define is
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/namespace.c
There are 2 definitions one for syscall and one for mount code
@@ -106,7 +106,7 @@ long do_mount(
## Filesystems
There is always a mystery where all parameters that are supported by particular filesystem comes from.
-I spend some time to find places where all params that are supported for procfs,devtmps and tempfs comes from.
+I spend some time to find places where all params that are supported for procfs, devtmps and tempfs comes from.
### Procfs