* src/stat.c: Add magic constants for "devmem", and
"zonefs" file systems.
* NEWS: Mention the improvement.
** Improvements
- stat and tail now know about the "vboxsf" file system type.
- stat -f -c%T now reports the file system type, and tail -f uses polling.
+ stat and tail now know about the "devmem", "vboxsf", and "zonefs"
+ file system types. stat -f -c%T now reports the file system type,
+ and tail -f uses polling for "vboxsf" and inotify for the others.
* Noteworthy changes in release 8.32 (2020-03-05) [stable]
return "debugfs";
case S_MAGIC_DEVFS: /* 0x1373 local */
return "devfs";
+ case S_MAGIC_DEVMEM: /* 0x454D444D local */
+ return "devmem";
case S_MAGIC_DEVPTS: /* 0x1CD1 local */
return "devpts";
case S_MAGIC_DMA_BUF: /* 0x444D4142 local */
return "z3fold";
case S_MAGIC_ZFS: /* 0x2FC12FC1 local */
return "zfs";
+ case S_MAGIC_ZONEFS: /* 0x5A4F4653 local */
+ return "zonefs";
case S_MAGIC_ZSMALLOC: /* 0x58295829 local */
return "zsmallocfs";