Home
last modified time | relevance | path

Searched refs:xhead (Results 1 – 2 of 2) sorted by relevance

/fs/xfs/
Dxfs_ioctl.c1511 struct xfs_fsmap_head xhead = {0}; in xfs_ioc_getfsmap() local
1544 xhead.fmh_iflags = head.fmh_iflags; in xfs_ioc_getfsmap()
1545 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]); in xfs_ioc_getfsmap()
1546 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]); in xfs_ioc_getfsmap()
1548 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]); in xfs_ioc_getfsmap()
1549 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]); in xfs_ioc_getfsmap()
1557 xhead.fmh_entries = 0; in xfs_ioc_getfsmap()
1558 xhead.fmh_count = min_t(unsigned int, count, in xfs_ioc_getfsmap()
1562 error = xfs_getfsmap(ip->i_mount, &xhead, recs); in xfs_ioc_getfsmap()
1582 head.fmh_entries += xhead.fmh_entries; in xfs_ioc_getfsmap()
[all …]
/fs/ext4/
Dioctl.c874 struct ext4_fsmap_head xhead = {0}; in ext4_ioc_getfsmap() local
896 xhead.fmh_iflags = head.fmh_iflags; in ext4_ioc_getfsmap()
897 xhead.fmh_count = head.fmh_count; in ext4_ioc_getfsmap()
898 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]); in ext4_ioc_getfsmap()
899 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]); in ext4_ioc_getfsmap()
901 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]); in ext4_ioc_getfsmap()
902 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]); in ext4_ioc_getfsmap()
906 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info); in ext4_ioc_getfsmap()
922 head.fmh_entries = xhead.fmh_entries; in ext4_ioc_getfsmap()
923 head.fmh_oflags = xhead.fmh_oflags; in ext4_ioc_getfsmap()