diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2016-11-07 19:56:20 -0500 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-11-07 19:56:20 -0500 |
commit | ae90b994b40f7c724701877c27b9148ee262ba62 (patch) | |
tree | 0b523f703f7aa91b72a02ab76bc3ac617b48294e | |
parent | 68c098582b20ddae04ed04d173d915f5ca64be5e (diff) |
libxfs: fix xfs_attr_shortform_bytesfit declaration
Change the xfs_attr_shortform_bytesfit declaration to have
struct xfs_inode to avoid tripping up the libxfs-diff scanner.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
-rw-r--r-- | fs/xfs/libxfs/xfs_attr_leaf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_attr_leaf.h b/fs/xfs/libxfs/xfs_attr_leaf.h index 4f2aed04f827..8ef420a16f08 100644 --- a/fs/xfs/libxfs/xfs_attr_leaf.h +++ b/fs/xfs/libxfs/xfs_attr_leaf.h | |||
@@ -51,7 +51,7 @@ int xfs_attr_shortform_getvalue(struct xfs_da_args *args); | |||
51 | int xfs_attr_shortform_to_leaf(struct xfs_da_args *args); | 51 | int xfs_attr_shortform_to_leaf(struct xfs_da_args *args); |
52 | int xfs_attr_shortform_remove(struct xfs_da_args *args); | 52 | int xfs_attr_shortform_remove(struct xfs_da_args *args); |
53 | int xfs_attr_shortform_allfit(struct xfs_buf *bp, struct xfs_inode *dp); | 53 | int xfs_attr_shortform_allfit(struct xfs_buf *bp, struct xfs_inode *dp); |
54 | int xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes); | 54 | int xfs_attr_shortform_bytesfit(struct xfs_inode *dp, int bytes); |
55 | void xfs_attr_fork_remove(struct xfs_inode *ip, struct xfs_trans *tp); | 55 | void xfs_attr_fork_remove(struct xfs_inode *ip, struct xfs_trans *tp); |
56 | 56 | ||
57 | /* | 57 | /* |