search for: 0140000

Displaying 3 results from an estimated 3 matches for "0140000".

Did you mean: 140000
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...6,6 +116,9 @@ struct xfs_fs_info; #define XFS_DIR2_NULL_DATAPTR ((uint32_t)0) +#define XFS_DIR3_BLOCK_MAGIC 0x58444233 /* XDB3: single block dirs */ +#define XFS_DIR3_DATA_MAGIC 0x58444433 /* XDD3: multiblock dirs */ + /* File types and modes */ #define S_IFMT 00170000 #define S_IFSOCK 0140000 @@ -346,8 +349,19 @@ typedef struct xfs_dinode { /* di_next_unlinked is the only non-core field in the old dinode */ uint32_t di_next_unlinked;/* agi unlinked list ptr */ - uint8_t di_literal_area[1]; -} __attribute__((packed)) xfs_dinode_t; + + /* start of the extended dinode,...
2017 Sep 26
5
[PATCH 0/5] Miscellaneous refactoring of common/utils, create common/mltools
Miscellaneous refactoring, but the main one is to rename mllib/ as common/mltools/ Rich.
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...le block dirs */ +#define XFS_DIR2_DATA_MAGIC 0x58443244U /* XD2D: multiblock dirs */ +#define XFS_DIR2_FREE_MAGIC 0x58443246U /* XD2F: free index blocks */ + +#define XFS_DIR2_NULL_DATAPTR ((uint32_t)0) + +/* File types and modes */ +#define S_IFMT 00170000 +#define S_IFSOCK 0140000 +#define S_IFLNK 0120000 +#define S_IFREG 0100000 +#define S_IFBLK 0060000 +#define S_IFDIR 0040000 +#define S_IFCHR 0020000 +#define S_IFIFO 0010000 +#define S_ISUID 0004000 +#define S_ISGID 0002000 +#define S_ISVTX 0001000 + +#define MAXPATHLEN 1024 +/* + * NOTE: The fields in th...