mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 12:04:08 +00:00
xfs: pass a 64-bit count argument to xfs_iomap_write_unwritten
The code is already ready for it, and the pnfs layout commit code expects to be able to pass a larger than 32-bit argument. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
parent
64af7a6ea5
commit
d32057fc84
2 changed files with 2 additions and 2 deletions
|
@ -802,7 +802,7 @@ int
|
||||||
xfs_iomap_write_unwritten(
|
xfs_iomap_write_unwritten(
|
||||||
xfs_inode_t *ip,
|
xfs_inode_t *ip,
|
||||||
xfs_off_t offset,
|
xfs_off_t offset,
|
||||||
size_t count)
|
xfs_off_t count)
|
||||||
{
|
{
|
||||||
xfs_mount_t *mp = ip->i_mount;
|
xfs_mount_t *mp = ip->i_mount;
|
||||||
xfs_fileoff_t offset_fsb;
|
xfs_fileoff_t offset_fsb;
|
||||||
|
|
|
@ -27,6 +27,6 @@ int xfs_iomap_write_delay(struct xfs_inode *, xfs_off_t, size_t,
|
||||||
struct xfs_bmbt_irec *);
|
struct xfs_bmbt_irec *);
|
||||||
int xfs_iomap_write_allocate(struct xfs_inode *, xfs_off_t,
|
int xfs_iomap_write_allocate(struct xfs_inode *, xfs_off_t,
|
||||||
struct xfs_bmbt_irec *);
|
struct xfs_bmbt_irec *);
|
||||||
int xfs_iomap_write_unwritten(struct xfs_inode *, xfs_off_t, size_t);
|
int xfs_iomap_write_unwritten(struct xfs_inode *, xfs_off_t, xfs_off_t);
|
||||||
|
|
||||||
#endif /* __XFS_IOMAP_H__*/
|
#endif /* __XFS_IOMAP_H__*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue