search for: xfs_ioc_fsgeometry_v1

Displaying 2 results from an estimated 2 matches for "xfs_ioc_fsgeometry_v1".

2007 Oct 23
3
xfs problems with xen3.1 on domu
...confused by the sda5 and expect some disk drive properties that do not exist. I''m new to xfs. Possibly this is not important?? Problem 2 If I run a 32 bit domu with a 64 bit kernel quota does not work root@nfondy:~# quota root Segmentation fault root@nfondy:~# xfs_quota xfs_quota> df XFS_IOC_FSGEOMETRY_V1: Invalid argument XFS_IOC_FSGEOMETRY_V1: Invalid argument XFS_IOC_FSGEOMETRY_V1: Invalid argument XFS_IOC_FSGEOMETRY_V1: Invalid argument XFS_IOC_FSGEOMETRY_V1: Invalid argument XFS_IOC_FSGEOMETRY_V1: Invalid argument If I load the 64 bit executables and needed libraries at least it appears to wo...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...the RESV/FREE interfaces. + */ +typedef struct xfs_flock64 { + __s16 l_type; + __s16 l_whence; + int64_t l_start; + int64_t l_len; /* len == 0 means until end of file */ + int32_t l_sysid; + uint32_t l_pid; + int32_t l_pad[4]; /* reserve area */ +} xfs_flock64_t; + +/* + * Output for XFS_IOC_FSGEOMETRY_V1 + */ +typedef struct xfs_fsop_geom_v1 { + uint32_t blocksize; /* filesystem (data) block size */ + uint32_t rtextsize; /* realtime extent size */ + uint32_t agblocks; /* fsblocks in an AG */ + uint32_t agcount; /* number of allocation groups */ + uint32_t logblocks; /* fsblocks in the log *...