Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Case in point: For Ceph file systems, the mount command can look like this: mount -t ceph -o mds_namespace=ns1,name=ovirt,secret=xxx monitors.storage.example.com:/ /mnt but the resulting entry in /proc/mounts will NOT look identical, as ceph will resolve DNS names into their IP addresses: 192.168.1.5,192.168.1.6,192.168.1.7:/ /mnt ceph rw,seclabel,relatime,name=ovirt,secret=<hidden>,acl,mds_namespace=ovirt 0 0 (in this example "monitors.storage.example.com" was a DNS entry resolving to 3 IP addresses). Lesson learned: We cannot rely on mount options being carried unmolested into /proc/mounts...
- Loading branch information