diff options
Diffstat (limited to 'fs/xfs/scrub/rtsummary.c')
| -rw-r--r-- | fs/xfs/scrub/rtsummary.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/scrub/rtsummary.c b/fs/xfs/scrub/rtsummary.c index b1ff4f33324a..5055092bd9e8 100644 --- a/fs/xfs/scrub/rtsummary.c +++ b/fs/xfs/scrub/rtsummary.c @@ -119,7 +119,7 @@ xfsum_load(  	xfs_rtsumoff_t		sumoff,  	union xfs_suminfo_raw	*rawinfo)  { -	return xfile_obj_load(sc->xfile, rawinfo, +	return xfile_load(sc->xfile, rawinfo,  			sizeof(union xfs_suminfo_raw),  			sumoff << XFS_WORDLOG);  } @@ -130,7 +130,7 @@ xfsum_store(  	xfs_rtsumoff_t		sumoff,  	const union xfs_suminfo_raw rawinfo)  { -	return xfile_obj_store(sc->xfile, &rawinfo, +	return xfile_store(sc->xfile, &rawinfo,  			sizeof(union xfs_suminfo_raw),  			sumoff << XFS_WORDLOG);  } @@ -142,7 +142,7 @@ xfsum_copyout(  	union xfs_suminfo_raw	*rawinfo,  	unsigned int		nr_words)  { -	return xfile_obj_load(sc->xfile, rawinfo, nr_words << XFS_WORDLOG, +	return xfile_load(sc->xfile, rawinfo, nr_words << XFS_WORDLOG,  			sumoff << XFS_WORDLOG);  }  |