diff options
author | Christoph Hellwig <hch@lst.de> | 2015-06-22 09:44:02 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-06-22 09:44:02 +1000 |
commit | fc51c2b5f8ce962355bee19aa58451bb878f0663 (patch) | |
tree | 94e40064f4a1a435c27c21ea8430a257834eaa17 /fs/xfs/xfs_error.h | |
parent | db9d67d6b09e5d86da0c33da0d9dcb7998653c4f (diff) | |
download | linux-fc51c2b5f8ce962355bee19aa58451bb878f0663.tar.gz linux-fc51c2b5f8ce962355bee19aa58451bb878f0663.tar.bz2 linux-fc51c2b5f8ce962355bee19aa58451bb878f0663.zip |
xfs: remove inst_t
We can simply use a void pointer to pass a long return addresses in the
debugging helpers.
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_error.h')
-rw-r--r-- | fs/xfs/xfs_error.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_error.h b/fs/xfs/xfs_error.h index c0394ed126fc..4ed3042a0f16 100644 --- a/fs/xfs/xfs_error.h +++ b/fs/xfs/xfs_error.h @@ -21,10 +21,10 @@ struct xfs_mount; extern void xfs_error_report(const char *tag, int level, struct xfs_mount *mp, - const char *filename, int linenum, inst_t *ra); + const char *filename, int linenum, void *ra); extern void xfs_corruption_error(const char *tag, int level, struct xfs_mount *mp, void *p, const char *filename, - int linenum, inst_t *ra); + int linenum, void *ra); extern void xfs_verifier_error(struct xfs_buf *bp); #define XFS_ERROR_REPORT(e, lvl, mp) \ |