libxfs: make xfs_alloc_fix_freelist non-static
authorDarrick J. Wong <darrick.wong@oracle.com>
Mon, 4 Jan 2016 05:10:42 +0000 (16:10 +1100)
committerDave Chinner <david@fromorbit.com>
Mon, 4 Jan 2016 05:10:42 +0000 (16:10 +1100)
Since xfs_repair wants to use xfs_alloc_fix_freelist, remove the
static designation.  xfsprogs already has this; this simply brings
the kernel up to date.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/libxfs/xfs_alloc.c
fs/xfs/libxfs/xfs_alloc.h

index e1e7fe3b5424c8e619be4fe25930eb6ca414c6ea..a708e38b494c702edb9105706555615dbb8cf8ea 100644 (file)
@@ -1927,7 +1927,7 @@ xfs_alloc_space_available(
  * Decide whether to use this allocation group for this allocation.
  * If so, fix up the btree freelist's size.
  */
-STATIC int                     /* error */
+int                    /* error */
 xfs_alloc_fix_freelist(
        struct xfs_alloc_arg    *args,  /* allocation argument structure */
        int                     flags)  /* XFS_ALLOC_FLAG_... */
index 0ecde4d5cac8ff2ceaf2c373efd87583fcb8152a..135eb3d24db7166bcafb659ab192d25f5ad6a104 100644 (file)
@@ -235,5 +235,6 @@ xfs_alloc_get_rec(
 
 int xfs_read_agf(struct xfs_mount *mp, struct xfs_trans *tp,
                        xfs_agnumber_t agno, int flags, struct xfs_buf **bpp);
+int xfs_alloc_fix_freelist(struct xfs_alloc_arg *args, int flags);
 
 #endif /* __XFS_ALLOC_H__ */