On a device I get among others the following strange entries for mount:
none on net:[4026532603] type proc (rw,relatime)
none on net:[4026532424] type proc (rw,relatime)
Any idea what or for what this could be? It is the first time I see procfs used for anything but /proc. And what's this "net:"? Something like sockets or pipes?
I am running an 3.8 rt kernel on an embedded device with some form of BusyBox-based Linux
Potentially relevant entries from /proc/mounts:
rootfs / rootfs rw 0 0
none /proc proc rw,relatime 0 0
none net:[4026532603] proc rw,relatime 0 0
none net:[4026532424] proc rw,relatime 0 0
mgmt /sys sysfs rw,relatime 0 0
Update:
Thanks to @VenkatC's answer I know now that it has something to do with namespaces, as the following output confirms:
$ ls -l /proc/$$/ns
total 0
lrwxrwxrwx 1 root root 0 Nov 3 18:59 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Nov 3 18:59 mnt -> mnt:[4026532733]
lrwxrwxrwx 1 root root 0 Nov 3 18:59 net -> net:[4026532603]
lrwxrwxrwx 1 root root 0 Nov 3 18:59 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Nov 3 18:59 uts -> uts:[4026531838]