Convert HTML entities back to regular characters, since this is now ASCII.
Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx>
---
.../XFS_Filesystem_Structure/directories.asciidoc | 20 ++++++++++----------
.../extended_attributes.asciidoc | 14 +++++++-------
2 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/design/XFS_Filesystem_Structure/directories.asciidoc
b/design/XFS_Filesystem_Structure/directories.asciidoc
index 98143f7..76d5df7 100644
--- a/design/XFS_Filesystem_Structure/directories.asciidoc
+++ b/design/XFS_Filesystem_Structure/directories.asciidoc
@@ -321,8 +321,8 @@ blocksize = 4096
...
dirblklog = 0
...
-xfs_db> inode <inode#>
-xfs_db> p
+xfs_db> inode <inode#>
+xfs_db> p
core.magic = 0x494e
core.mode = 040755
core.version = 1
@@ -694,9 +694,9 @@ And the last data block:
----
-xfs_db> dblock 2
-xfs_db> type dir2
-xfs_db> p
+xfs_db> dblock 2
+xfs_db> type dir2
+xfs_db> p
dhdr.magic = 0x58443244
dhdr.bestfree[0].offset = 0x70
dhdr.bestfree[0].length = 0xf90
@@ -892,8 +892,8 @@ blocksize = 4096
...
dirblklog = 2
...
-xfs_db> inode <inode#>
-xfs_db> p
+xfs_db> inode <inode#>
+xfs_db> p
core.magic = 0x494e
core.mode = 040755
core.version = 1
@@ -1101,9 +1101,9 @@ u.bmbt.level = 1
u.bmbt.numrecs = 1
u.bmbt.keys[1] = [startoff] 1:[0]
u.bmbt.ptrs[1] = 1:89
-xfs_db> fsblock 89
-xfs_db> type bmapbtd
-xfs_db> p
+xfs_db> fsblock 89
+xfs_db> type bmapbtd
+xfs_db> p
magic = 0x424d4150
level = 0
numrecs = 234
diff --git a/design/XFS_Filesystem_Structure/extended_attributes.asciidoc
b/design/XFS_Filesystem_Structure/extended_attributes.asciidoc
index 9887332..8b32bdf 100644
--- a/design/XFS_Filesystem_Structure/extended_attributes.asciidoc
+++ b/design/XFS_Filesystem_Structure/extended_attributes.asciidoc
@@ -355,8 +355,8 @@ core.aformat = 2 (extents)
...
a.bmx[0] = [startoff,startblock,blockcount,extentflag]
0:[0,37535,9,0]
-xfs_db> ablock 0
-xfs_db> p
+xfs_db> ablock 0
+xfs_db> p
hdr.info.forw = 0
hdr.info.back = 0
hdr.info.magic = 0xfbee
@@ -580,9 +580,9 @@ rightsib = 109968
recs[1-127] = [startoff,startblock,blockcount,extentflag]
1:[0,81870,1,0]
...
-xfs_db> fsblock 109968
-xfs_db> type bmapbtd
-xfs_db> p
+xfs_db> fsblock 109968
+xfs_db> type bmapbtd
+xfs_db> p
magic = 0x424d4150
level = 0
numrecs = 147
@@ -591,8 +591,8 @@ rightsib = null
recs[1-147] = [startoff,startblock,blockcount,extentflag]
...
(which is fsblock 81870)
-xfs_db> ablock 0
-xfs_db> p
+xfs_db> ablock 0
+xfs_db> p
hdr.info.forw = 0
hdr.info.back = 0
hdr.info.magic = 0xfebe
|