Typo ptxmode
instead of ptmxmode
in mount option parsing
#24921
eriksjolund
started this conversation in
General
Replies: 1 comment 1 reply
-
Looks like a typo to me. mount(8) describes "ptmxmode" but not "ptxmode" as a mount option for devpts filesystems, and this function is generating a mount entry for a devpts filesystem. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Both
ptxmode
andptmxmode
are used in the code.Search for
ptxmode
in the Linux kernel git repohttps://github.com/search?q=repo%3Atorvalds%2Flinux+ptxmode&type=code
result:
ptxmode
is not foundSearch for
ptmxmode
in the Linux kernel git repohttps://github.com/search?q=repo%3Atorvalds%2Flinux+ptmxmode&type=code
result:
ptmxmode
is foundConclusion:
ptxmode
is propably a typo here:podman/pkg/specgenutil/volumes.go
Line 563 in d3cd509
Is it a correct analysis?
Beta Was this translation helpful? Give feedback.
All reactions