diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2019-08-13 11:06:57 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2019-08-13 11:06:57 +0000 |
commit | c9b7b0c6702cb50570a2c381538c587533562d31 (patch) | |
tree | 9e30162073ee07e0e4238ea0b379931f8ff30665 | |
parent | e0021646ed56a9fec55487a14a8ea865d872dc89 (diff) | |
download | strace-c9b7b0c6702cb50570a2c381538c587533562d31.tar.gz |
xlat: update *_MAGIC constants
* xlat/fsmagic.in (Z3FOLD_MAGIC): New constant introduced
by Linux kernel commit v5.3-rc1~31^2~30.
(DMA_BUF_MAGIC): New constant introduced by Linux kernel commit
v5.3-rc1~22^2~20^2~42.
* NEWS: Mention this.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | xlat/fsmagic.in | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -3,7 +3,7 @@ Noteworthy changes in release ?.? (????-??-??) * Improvements * Updated lists of BPF_*, ETH_*, KEYCTL_*, KVM_*, MAP_*, SO_*, V4L2_*, - and XDP_* constants. + XDP_*, and *_MAGIC constants. * Bug fixes * Fixed tests on alpha with Linux kernel headers 5.1+. diff --git a/xlat/fsmagic.in b/xlat/fsmagic.in index 7564f512c..3ff154dcd 100644 --- a/xlat/fsmagic.in +++ b/xlat/fsmagic.in @@ -1,5 +1,6 @@ #sorted sort -k2,2 { 0x0000002f, "QNX4_SUPER_MAGIC" }, +{ 0x00000033, "Z3FOLD_MAGIC" }, { 0x00000187, "AUTOFS_SUPER_MAGIC" }, { 0x00001373, "DEVFS_SUPER_MAGIC" }, { 0x0000137d, "EXT_SUPER_MAGIC" }, @@ -55,6 +56,7 @@ { 0x42465331, "BEFS_SUPER_MAGIC" }, { 0x42494e4d, "BINFMTFS_MAGIC" }, { 0x43415d53, "SMACK_MAGIC" }, +{ 0x444d4142, "DMA_BUF_MAGIC" }, { 0x453dcd28, "CRAMFS_MAGIC_WEND" }, { 0x47504653, "GPFS_SUPER_MAGIC" }, { 0x50495045, "PIPEFS_MAGIC" }, |