diff options
author | Dave Chinner <david@fromorbit.com> | 2010-01-19 18:47:39 -0500 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2010-01-19 18:47:39 -0500 |
commit | b9c48649577dfc4a8c263c106d518effa24ea54b (patch) | |
tree | deb48047076b5a97691c0b00ac65c6db96296515 /fs/xfs/linux-2.6/xfs_buf.h | |
parent | a3380ae39fa321282c407ba5e1835e14b64853d9 (diff) |
xfs: xfs_buf_iomove() doesn't care about signedness
xfs_buf_iomove() uses xfs_caddr_t as it's parameter types, but it doesn't
care about the signedness of the variables as it is just copying the
data. Change the prototype to use void * so that we don't get sign
warnings at call sites.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_buf.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.h b/fs/xfs/linux-2.6/xfs_buf.h index 9a29d18656ec..4f2ad66edb76 100644 --- a/fs/xfs/linux-2.6/xfs_buf.h +++ b/fs/xfs/linux-2.6/xfs_buf.h | |||
@@ -243,7 +243,7 @@ extern void xfs_buf_ioend(xfs_buf_t *, int); | |||
243 | extern void xfs_buf_ioerror(xfs_buf_t *, int); | 243 | extern void xfs_buf_ioerror(xfs_buf_t *, int); |
244 | extern int xfs_buf_iorequest(xfs_buf_t *); | 244 | extern int xfs_buf_iorequest(xfs_buf_t *); |
245 | extern int xfs_buf_iowait(xfs_buf_t *); | 245 | extern int xfs_buf_iowait(xfs_buf_t *); |
246 | extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, xfs_caddr_t, | 246 | extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *, |
247 | xfs_buf_rw_t); | 247 | xfs_buf_rw_t); |
248 | 248 | ||
249 | static inline int xfs_buf_iostrategy(xfs_buf_t *bp) | 249 | static inline int xfs_buf_iostrategy(xfs_buf_t *bp) |