mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
xfs: create a macro for decoding ftypes in tracepoints
Create the XFS_DIR3_FTYPE_STR macro so that we can report ftype as strings instead of numbers in tracepoints. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
d9c0775897
commit
3c79e6a872
@ -159,6 +159,17 @@ struct xfs_da3_intnode {
|
||||
|
||||
#define XFS_DIR3_FT_MAX 9
|
||||
|
||||
#define XFS_DIR3_FTYPE_STR \
|
||||
{ XFS_DIR3_FT_UNKNOWN, "unknown" }, \
|
||||
{ XFS_DIR3_FT_REG_FILE, "file" }, \
|
||||
{ XFS_DIR3_FT_DIR, "directory" }, \
|
||||
{ XFS_DIR3_FT_CHRDEV, "char" }, \
|
||||
{ XFS_DIR3_FT_BLKDEV, "block" }, \
|
||||
{ XFS_DIR3_FT_FIFO, "fifo" }, \
|
||||
{ XFS_DIR3_FT_SOCK, "sock" }, \
|
||||
{ XFS_DIR3_FT_SYMLINK, "symlink" }, \
|
||||
{ XFS_DIR3_FT_WHT, "whiteout" }
|
||||
|
||||
/*
|
||||
* Byte offset in data block and shortform entry.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user