summaryrefslogtreecommitdiffstats
path: root/src/basic/filesystems-gperf.gperf (follow)
Commit message (Collapse)AuthorAgeFilesLines
* basic: update CIFS magicFrantisek Sumsal2022-01-311-2/+2
| | | | | | | | | | | | | | Kernel commit dea2903719283c156b53741126228c4a1b40440f exposed (and renamed) CIFS_MAGIC_NUMBER as CIFS_SUPER_MAGIC along with SMB2_SUPER_MAGIC. This fixes the following build fail on current Fedora Rawhide: ``` ../src/basic/meson.build:389:8: ERROR: Problem encountered: found unknown filesystem(s) defined in kernel headers: Filesystem found in kernel header but not in filesystems-gperf.gperf: CIFS_SUPER_MAGIC Filesystem found in kernel header but not in filesystems-gperf.gperf: SMB2_SUPER_MAGIC ```
* tree-wide: fix typoYu Watanabe2021-11-301-1/+1
|
* filesystems: add ntfs/ntfs3 magic and add it current version to groupLennart Poettering2021-11-151-0/+2
| | | | | | As suggested: https://github.com/systemd/systemd/pull/21373#discussion_r749523677
* filesystems: add comments to gperf file anomaliesLennart Poettering2021-11-151-0/+14
| | | | | Some file systems have non-unique names or non-unique magics. Let's add some comments explaining that.
* filesystems: fix magic of "smb3" fsLennart Poettering2021-11-151-1/+1
| | | | | | | smb3 is an alias for modern CIFS, not the old SMB fs (see kmod alias list, i.e. modinfo fs-smb3). (the old smbfs has long been removed from the kernel actually, it's dead and obsolete)
* filesystems: add three more file system typesLennart Poettering2021-11-151-0/+3
| | | | | | | devtmpfs and cpuset are not actual filesystems of their own. cpuset used to be but is now an alias for cgroupsfs. devtmpfs is the same as tmpfs as its just a "named superblock", i.e. a specific instance of tmpfs, but not a file system of its own.
* basic: add filesystem databaseIago López Galeiras2021-10-061-0/+112
Stores filesystem_name -> magic_number(s).