mirror of https://gitee.com/openkylin/linux.git
xfs: use the existing type definition for di_projid
We have already defined the project ID type prid_t, so maybe should use it here. Signed-off-by: Kaixu Xia <kaixuxia@tencent.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
c63290e300
commit
9c0fce4c16
|
@ -17,7 +17,7 @@ struct xfs_dinode;
|
|||
*/
|
||||
struct xfs_icdinode {
|
||||
uint16_t di_flushiter; /* incremented on flush */
|
||||
uint32_t di_projid; /* owner's project id */
|
||||
prid_t di_projid; /* owner's project id */
|
||||
xfs_fsize_t di_size; /* number of bytes in file */
|
||||
xfs_rfsblock_t di_nblocks; /* # of direct & btree blocks used */
|
||||
xfs_extlen_t di_extsize; /* basic/minimum extent size for file */
|
||||
|
|
Loading…
Reference in New Issue