diff options
author | наб <nabijaczleweli@nabijaczleweli.xyz> | 2022-09-16 00:39:18 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-09-24 14:17:18 +0200 |
commit | 03b15a984dc3b6c605e5abc83cdc978a7f1a0659 (patch) | |
tree | bff90aaf484658aa4d6a29b7d0d00fb499395a43 /Documentation/process | |
parent | MIPS: remove define-only GDA_MAGIC, previously magic number (diff) | |
download | linux-03b15a984dc3b6c605e5abc83cdc978a7f1a0659.tar.xz linux-03b15a984dc3b6c605e5abc83cdc978a7f1a0659.zip |
Documentation: HFS is not a user of magic numbers
In fs/hfs, the only magic is for delineating on-disk block types,
of which HFS_DRVR_DESC_MAGIC HFS_MFS_SUPER_MAGIC are define-only,
but they're out of scope for magic-number.rst
Magic numbers as described there were all removed, along their defines,
in the 2.6.4 "HFS rewrite", pre-git
Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Link: https://lore.kernel.org/r/e67cec702a7ab34a8c5f7966d930d793a097a90f.1663280877.git.nabijaczleweli@nabijaczleweli.xyz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/process')
-rw-r--r-- | Documentation/process/magic-number.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Documentation/process/magic-number.rst b/Documentation/process/magic-number.rst index fb1fbf00f49c..95598fc7d104 100644 --- a/Documentation/process/magic-number.rst +++ b/Documentation/process/magic-number.rst @@ -104,6 +104,3 @@ Note that there are also defined special per-driver magic numbers in sound memory management. See ``include/sound/sndmagic.h`` for complete list of them. Many OSS sound drivers have their magic numbers constructed from the soundcard PCI ID - these are not listed here as well. - -HFS is another larger user of magic numbers - you can find them in -``fs/hfs/hfs.h``. |