diff options
author | Christoph Hellwig <hch@lst.de> | 2015-06-22 09:44:29 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-06-22 09:44:29 +1000 |
commit | 88ee2df7f2591133731c29d0ee93f3d37691df85 (patch) | |
tree | 780e3d17196d016cd543b4ff20acd83a321afe5d /fs/xfs/xfs_buf.h | |
parent | fc51c2b5f8ce962355bee19aa58451bb878f0663 (diff) | |
download | linux-88ee2df7f2591133731c29d0ee93f3d37691df85.tar.gz linux-88ee2df7f2591133731c29d0ee93f3d37691df85.tar.bz2 linux-88ee2df7f2591133731c29d0ee93f3d37691df85.zip |
xfs: return a void pointer from xfs_buf_offset
This avoids all kinds of unessecary casts in an envrionment like Linux where
we can assume that pointer arithmetics are support on void pointers.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_buf.h')
-rw-r--r-- | fs/xfs/xfs_buf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index 75ff5d5a7d2e..331c1ccf8264 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h @@ -299,7 +299,7 @@ extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *, xfs_buf_iomove((bp), (off), (len), NULL, XBRW_ZERO) /* Buffer Utility Routines */ -extern xfs_caddr_t xfs_buf_offset(xfs_buf_t *, size_t); +extern void *xfs_buf_offset(struct xfs_buf *, size_t); /* Delayed Write Buffer Routines */ extern bool xfs_buf_delwri_queue(struct xfs_buf *, struct list_head *); |