From cf8f90041e5fe83682a991512877a43baafad3e9 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Wed, 8 Apr 2020 09:48:15 -0400 Subject: [PATCH] xfs: remove XFS_BUF_SET_BDSTRAT_FUNC This function doesn't exist in the kernel and is purely a stub in xfsprogs, so remove it. Signed-off-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- libxfs/libxfs_priv.h | 1 - libxfs/logitem.c | 1 - 2 files changed, 2 deletions(-) diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h index 3cd2be5bd..820f111c0 100644 --- a/libxfs/libxfs_priv.h +++ b/libxfs/libxfs_priv.h @@ -369,7 +369,6 @@ roundup_64(uint64_t x, uint32_t y) #define XBF_DONE 0 #define xfs_buf_stale(bp) ((bp)->b_flags |= LIBXFS_B_STALE) #define XFS_BUF_UNDELAYWRITE(bp) ((bp)->b_flags &= ~LIBXFS_B_DIRTY) -#define XFS_BUF_SET_BDSTRAT_FUNC(a,b) ((void) 0) static inline struct xfs_buf *xfs_buf_incore(struct xfs_buftarg *target, xfs_daddr_t blkno, size_t numblks, xfs_buf_flags_t flags) diff --git a/libxfs/logitem.c b/libxfs/logitem.c index b11df4fae..d0819dcbf 100644 --- a/libxfs/logitem.c +++ b/libxfs/logitem.c @@ -84,7 +84,6 @@ xfs_buf_item_init( * the first. If we do already have one, there is * nothing to do here so return. */ - XFS_BUF_SET_BDSTRAT_FUNC(bp, xfs_bdstrat_cb); if (bp->b_log_item != NULL) { lip = bp->b_log_item; if (lip->li_type == XFS_LI_BUF) { -- 2.49.0