The manpage /proc/pid/mountinfo said it has the field
36 35 98:0 /mnt1 /mnt2 rw,noatime master:1 - ext3 /dev/root rw,errors=continue
(1)(2)(3) (4) (5) (6) (7) (8) (9) (10) (11)
(10) mount source: filesystem-specific information or "none".
What does this field (10) mean exactly? I got weird result from my own experiment
279 23 7:0 /file//deleted /home/xtricman/file_mnt_point rw,relatime shared:158 - ext4 /dev/loop0 rw
301 23 7:0 /file2//deleted /home/xtricman/file_mnt_point2 rw,relatime shared:158 - ext4 /dev/loop0 rw
268 23 7:0 / /mnt rw,relatime shared:159 - ext4 /dev/loop0 rw
313 23 7:0 / /home/xtricman/home_mnt rw,relatime shared:183 - ext4 /home/xtricman/loop1 rw
/dev/loop0 is created automatically by mount program
when I do mount a.ext4 /mnt, and /home/xtricman/loop1 is created manually by mknod loop1 b 7 0.
So I guess I can explain most of the results I see, but why does the device node path appear in the (10) field? I'm using Linux 5.0.4 kernel on ArchLinux, if that matters.