mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-24 10:40:33 -05:00
IsLikelyNotMountPoint determines if a directory is not a mountpoint.
It is fast but not necessarily ALWAYS correct. If the path is in fact
a bind mount from one part of a mount to another it will not be detected.
mkdir /tmp/a /tmp/b; mount --bin /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b")
will return true. When in fact /tmp/b is a mount point. So this patch
renames the function and switches it from a positive to a negative (I
could think of a good positive name). This should make future users of
this function aware that it isn't quite perfect, but probably good
enough.
|
||
|---|---|---|
| .. | ||
| chcon_runner.go | ||
| chcon_runner_linux.go | ||
| chcon_runner_unsupported.go | ||
| doc.go | ||
| empty_dir.go | ||
| empty_dir_linux.go | ||
| empty_dir_test.go | ||
| empty_dir_unsupported.go | ||