Skip to content

Commit

Permalink
Merge branch 'xfs-bulkstat-refactor' into for-next
Browse files Browse the repository at this point in the history
  • Loading branch information
dchinner committed Aug 4, 2014
2 parents 4d7eece + 1e773c4 commit b076d87
Show file tree
Hide file tree
Showing 4 changed files with 283 additions and 315 deletions.
4 changes: 2 additions & 2 deletions fs/xfs/xfs_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,8 @@ xfs_ioc_bulkstat(
error = xfs_inumbers(mp, &inlast, &count,
bulkreq.ubuffer, xfs_inumbers_fmt);
else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
error = xfs_bulkstat_single(mp, &inlast,
bulkreq.ubuffer, &done);
error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
sizeof(xfs_bstat_t), NULL, &done);
else /* XFS_IOC_FSBULKSTAT */
error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
sizeof(xfs_bstat_t), bulkreq.ubuffer,
Expand Down
2 changes: 1 addition & 1 deletion fs/xfs/xfs_ioctl32.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ xfs_compat_growfs_rt_copyin(
STATIC int
xfs_inumbers_fmt_compat(
void __user *ubuffer,
const xfs_inogrp_t *buffer,
const struct xfs_inogrp *buffer,
long count,
long *written)
{
Expand Down
Loading

0 comments on commit b076d87

Please sign in to comment.