diff options
author | Christoph Hellwig <hch@lst.de> | 2020-02-27 04:30:37 +0300 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-03-03 07:55:54 +0300 |
commit | fe960087121a9fccaead3de44c64fcf356f3410d (patch) | |
tree | 90a31b19fff878fab7d4d5b82c99f9a672fee0ec /fs/xfs/libxfs/xfs_attr.h | |
parent | a9c8c69b496117912162cdc38dcae953a07b87f7 (diff) | |
download | linux-fe960087121a9fccaead3de44c64fcf356f3410d.tar.xz |
xfs: remove the unused ATTR_ENTRY macro
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_attr.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_attr.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/libxfs/xfs_attr.h b/fs/xfs/libxfs/xfs_attr.h index 0c8f7c7a6b65..31c0ffde4f59 100644 --- a/fs/xfs/libxfs/xfs_attr.h +++ b/fs/xfs/libxfs/xfs_attr.h @@ -70,14 +70,6 @@ typedef struct attrlist_ent { /* data from attr_list() */ } attrlist_ent_t; /* - * Given a pointer to the (char*) buffer containing the attr_list() result, - * and an index, return a pointer to the indicated attribute in the buffer. - */ -#define ATTR_ENTRY(buffer, index) \ - ((attrlist_ent_t *) \ - &((char *)buffer)[ ((attrlist_t *)(buffer))->al_offset[index] ]) - -/* * Kernel-internal version of the attrlist cursor. */ typedef struct attrlist_cursor_kern { |