mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
xfs: move the xfs_rtbitmap.c declarations to xfs_rtbitmap.h
[ Upstream commit 13928113fc5b5e79c91796290a99ed991ac0efe2 ] [6.1: resolved conflicts with fscounters.c and rtsummary.c ] Move all the declarations for functionality in xfs_rtbitmap.c into a separate xfs_rtbitmap.h header file. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Catherine Hoang <catherine.hoang@oracle.com> Acked-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Leah Rumancik <leah.rumancik@gmail.com> Acked-by: "Darrick J. Wong" <djwong@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a64e7b6cd1
commit
6744e7b06c
@@ -21,7 +21,7 @@
|
|||||||
#include "xfs_bmap.h"
|
#include "xfs_bmap.h"
|
||||||
#include "xfs_bmap_util.h"
|
#include "xfs_bmap_util.h"
|
||||||
#include "xfs_bmap_btree.h"
|
#include "xfs_bmap_btree.h"
|
||||||
#include "xfs_rtalloc.h"
|
#include "xfs_rtbitmap.h"
|
||||||
#include "xfs_errortag.h"
|
#include "xfs_errortag.h"
|
||||||
#include "xfs_error.h"
|
#include "xfs_error.h"
|
||||||
#include "xfs_quota.h"
|
#include "xfs_quota.h"
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
#include "xfs_trans.h"
|
#include "xfs_trans.h"
|
||||||
#include "xfs_rtalloc.h"
|
#include "xfs_rtalloc.h"
|
||||||
#include "xfs_error.h"
|
#include "xfs_error.h"
|
||||||
|
#include "xfs_rtbitmap.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Realtime allocator bitmap functions shared with userspace.
|
* Realtime allocator bitmap functions shared with userspace.
|
||||||
|
|||||||
82
fs/xfs/libxfs/xfs_rtbitmap.h
Normal file
82
fs/xfs/libxfs/xfs_rtbitmap.h
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
|
||||||
|
* All Rights Reserved.
|
||||||
|
*/
|
||||||
|
#ifndef __XFS_RTBITMAP_H__
|
||||||
|
#define __XFS_RTBITMAP_H__
|
||||||
|
|
||||||
|
/*
|
||||||
|
* XXX: Most of the realtime allocation functions deal in units of realtime
|
||||||
|
* extents, not realtime blocks. This looks funny when paired with the type
|
||||||
|
* name and screams for a larger cleanup.
|
||||||
|
*/
|
||||||
|
struct xfs_rtalloc_rec {
|
||||||
|
xfs_rtblock_t ar_startext;
|
||||||
|
xfs_rtblock_t ar_extcount;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef int (*xfs_rtalloc_query_range_fn)(
|
||||||
|
struct xfs_mount *mp,
|
||||||
|
struct xfs_trans *tp,
|
||||||
|
const struct xfs_rtalloc_rec *rec,
|
||||||
|
void *priv);
|
||||||
|
|
||||||
|
#ifdef CONFIG_XFS_RT
|
||||||
|
int xfs_rtbuf_get(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t block, int issum, struct xfs_buf **bpp);
|
||||||
|
int xfs_rtcheck_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_extlen_t len, int val,
|
||||||
|
xfs_rtblock_t *new, int *stat);
|
||||||
|
int xfs_rtfind_back(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_rtblock_t limit,
|
||||||
|
xfs_rtblock_t *rtblock);
|
||||||
|
int xfs_rtfind_forw(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_rtblock_t limit,
|
||||||
|
xfs_rtblock_t *rtblock);
|
||||||
|
int xfs_rtmodify_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_extlen_t len, int val);
|
||||||
|
int xfs_rtmodify_summary_int(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
int log, xfs_rtblock_t bbno, int delta,
|
||||||
|
struct xfs_buf **rbpp, xfs_fsblock_t *rsb,
|
||||||
|
xfs_suminfo_t *sum);
|
||||||
|
int xfs_rtmodify_summary(struct xfs_mount *mp, struct xfs_trans *tp, int log,
|
||||||
|
xfs_rtblock_t bbno, int delta, struct xfs_buf **rbpp,
|
||||||
|
xfs_fsblock_t *rsb);
|
||||||
|
int xfs_rtfree_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_extlen_t len,
|
||||||
|
struct xfs_buf **rbpp, xfs_fsblock_t *rsb);
|
||||||
|
int xfs_rtalloc_query_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
const struct xfs_rtalloc_rec *low_rec,
|
||||||
|
const struct xfs_rtalloc_rec *high_rec,
|
||||||
|
xfs_rtalloc_query_range_fn fn, void *priv);
|
||||||
|
int xfs_rtalloc_query_all(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtalloc_query_range_fn fn,
|
||||||
|
void *priv);
|
||||||
|
bool xfs_verify_rtbno(struct xfs_mount *mp, xfs_rtblock_t rtbno);
|
||||||
|
int xfs_rtalloc_extent_is_free(struct xfs_mount *mp, struct xfs_trans *tp,
|
||||||
|
xfs_rtblock_t start, xfs_extlen_t len,
|
||||||
|
bool *is_free);
|
||||||
|
/*
|
||||||
|
* Free an extent in the realtime subvolume. Length is expressed in
|
||||||
|
* realtime extents, as is the block number.
|
||||||
|
*/
|
||||||
|
int /* error */
|
||||||
|
xfs_rtfree_extent(
|
||||||
|
struct xfs_trans *tp, /* transaction pointer */
|
||||||
|
xfs_rtblock_t bno, /* starting block number to free */
|
||||||
|
xfs_extlen_t len); /* length of extent freed */
|
||||||
|
|
||||||
|
/* Same as above, but in units of rt blocks. */
|
||||||
|
int xfs_rtfree_blocks(struct xfs_trans *tp, xfs_fsblock_t rtbno,
|
||||||
|
xfs_filblks_t rtlen);
|
||||||
|
#else /* CONFIG_XFS_RT */
|
||||||
|
# define xfs_rtfree_extent(t,b,l) (-ENOSYS)
|
||||||
|
# define xfs_rtfree_blocks(t,rb,rl) (-ENOSYS)
|
||||||
|
# define xfs_rtalloc_query_range(m,t,l,h,f,p) (-ENOSYS)
|
||||||
|
# define xfs_rtalloc_query_all(m,t,f,p) (-ENOSYS)
|
||||||
|
# define xfs_rtbuf_get(m,t,b,i,p) (-ENOSYS)
|
||||||
|
# define xfs_rtalloc_extent_is_free(m,t,s,l,i) (-ENOSYS)
|
||||||
|
#endif /* CONFIG_XFS_RT */
|
||||||
|
|
||||||
|
#endif /* __XFS_RTBITMAP_H__ */
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
#include "xfs_mount.h"
|
#include "xfs_mount.h"
|
||||||
#include "xfs_log_format.h"
|
#include "xfs_log_format.h"
|
||||||
#include "xfs_trans.h"
|
#include "xfs_trans.h"
|
||||||
#include "xfs_rtalloc.h"
|
#include "xfs_rtbitmap.h"
|
||||||
#include "xfs_inode.h"
|
#include "xfs_inode.h"
|
||||||
#include "xfs_bmap.h"
|
#include "xfs_bmap.h"
|
||||||
#include "scrub/scrub.h"
|
#include "scrub/scrub.h"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
#include "xfs_refcount.h"
|
#include "xfs_refcount.h"
|
||||||
#include "xfs_refcount_btree.h"
|
#include "xfs_refcount_btree.h"
|
||||||
#include "xfs_alloc_btree.h"
|
#include "xfs_alloc_btree.h"
|
||||||
#include "xfs_rtalloc.h"
|
#include "xfs_rtbitmap.h"
|
||||||
#include "xfs_ag.h"
|
#include "xfs_ag.h"
|
||||||
|
|
||||||
/* Convert an xfs_fsmap to an fsmap. */
|
/* Convert an xfs_fsmap to an fsmap. */
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
#include "xfs_icache.h"
|
#include "xfs_icache.h"
|
||||||
#include "xfs_rtalloc.h"
|
#include "xfs_rtalloc.h"
|
||||||
#include "xfs_sb.h"
|
#include "xfs_sb.h"
|
||||||
|
#include "xfs_rtbitmap.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read and return the summary information for a given extent size,
|
* Read and return the summary information for a given extent size,
|
||||||
|
|||||||
@@ -11,22 +11,6 @@
|
|||||||
struct xfs_mount;
|
struct xfs_mount;
|
||||||
struct xfs_trans;
|
struct xfs_trans;
|
||||||
|
|
||||||
/*
|
|
||||||
* XXX: Most of the realtime allocation functions deal in units of realtime
|
|
||||||
* extents, not realtime blocks. This looks funny when paired with the type
|
|
||||||
* name and screams for a larger cleanup.
|
|
||||||
*/
|
|
||||||
struct xfs_rtalloc_rec {
|
|
||||||
xfs_rtblock_t ar_startext;
|
|
||||||
xfs_rtblock_t ar_extcount;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef int (*xfs_rtalloc_query_range_fn)(
|
|
||||||
struct xfs_mount *mp,
|
|
||||||
struct xfs_trans *tp,
|
|
||||||
const struct xfs_rtalloc_rec *rec,
|
|
||||||
void *priv);
|
|
||||||
|
|
||||||
#ifdef CONFIG_XFS_RT
|
#ifdef CONFIG_XFS_RT
|
||||||
/*
|
/*
|
||||||
* Function prototypes for exported functions.
|
* Function prototypes for exported functions.
|
||||||
@@ -48,19 +32,6 @@ xfs_rtallocate_extent(
|
|||||||
xfs_extlen_t prod, /* extent product factor */
|
xfs_extlen_t prod, /* extent product factor */
|
||||||
xfs_rtblock_t *rtblock); /* out: start block allocated */
|
xfs_rtblock_t *rtblock); /* out: start block allocated */
|
||||||
|
|
||||||
/*
|
|
||||||
* Free an extent in the realtime subvolume. Length is expressed in
|
|
||||||
* realtime extents, as is the block number.
|
|
||||||
*/
|
|
||||||
int /* error */
|
|
||||||
xfs_rtfree_extent(
|
|
||||||
struct xfs_trans *tp, /* transaction pointer */
|
|
||||||
xfs_rtblock_t bno, /* starting block number to free */
|
|
||||||
xfs_extlen_t len); /* length of extent freed */
|
|
||||||
|
|
||||||
/* Same as above, but in units of rt blocks. */
|
|
||||||
int xfs_rtfree_blocks(struct xfs_trans *tp, xfs_fsblock_t rtbno,
|
|
||||||
xfs_filblks_t rtlen);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialize realtime fields in the mount structure.
|
* Initialize realtime fields in the mount structure.
|
||||||
@@ -102,55 +73,11 @@ xfs_growfs_rt(
|
|||||||
struct xfs_mount *mp, /* file system mount structure */
|
struct xfs_mount *mp, /* file system mount structure */
|
||||||
xfs_growfs_rt_t *in); /* user supplied growfs struct */
|
xfs_growfs_rt_t *in); /* user supplied growfs struct */
|
||||||
|
|
||||||
/*
|
|
||||||
* From xfs_rtbitmap.c
|
|
||||||
*/
|
|
||||||
int xfs_rtbuf_get(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t block, int issum, struct xfs_buf **bpp);
|
|
||||||
int xfs_rtcheck_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_extlen_t len, int val,
|
|
||||||
xfs_rtblock_t *new, int *stat);
|
|
||||||
int xfs_rtfind_back(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_rtblock_t limit,
|
|
||||||
xfs_rtblock_t *rtblock);
|
|
||||||
int xfs_rtfind_forw(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_rtblock_t limit,
|
|
||||||
xfs_rtblock_t *rtblock);
|
|
||||||
int xfs_rtmodify_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_extlen_t len, int val);
|
|
||||||
int xfs_rtmodify_summary_int(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
int log, xfs_rtblock_t bbno, int delta,
|
|
||||||
struct xfs_buf **rbpp, xfs_fsblock_t *rsb,
|
|
||||||
xfs_suminfo_t *sum);
|
|
||||||
int xfs_rtmodify_summary(struct xfs_mount *mp, struct xfs_trans *tp, int log,
|
|
||||||
xfs_rtblock_t bbno, int delta, struct xfs_buf **rbpp,
|
|
||||||
xfs_fsblock_t *rsb);
|
|
||||||
int xfs_rtfree_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_extlen_t len,
|
|
||||||
struct xfs_buf **rbpp, xfs_fsblock_t *rsb);
|
|
||||||
int xfs_rtalloc_query_range(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
const struct xfs_rtalloc_rec *low_rec,
|
|
||||||
const struct xfs_rtalloc_rec *high_rec,
|
|
||||||
xfs_rtalloc_query_range_fn fn, void *priv);
|
|
||||||
int xfs_rtalloc_query_all(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtalloc_query_range_fn fn,
|
|
||||||
void *priv);
|
|
||||||
bool xfs_verify_rtbno(struct xfs_mount *mp, xfs_rtblock_t rtbno);
|
|
||||||
int xfs_rtalloc_extent_is_free(struct xfs_mount *mp, struct xfs_trans *tp,
|
|
||||||
xfs_rtblock_t start, xfs_extlen_t len,
|
|
||||||
bool *is_free);
|
|
||||||
int xfs_rtalloc_reinit_frextents(struct xfs_mount *mp);
|
int xfs_rtalloc_reinit_frextents(struct xfs_mount *mp);
|
||||||
#else
|
#else
|
||||||
# define xfs_rtallocate_extent(t,b,min,max,l,f,p,rb) (-ENOSYS)
|
# define xfs_rtallocate_extent(t,b,min,max,l,f,p,rb) (-ENOSYS)
|
||||||
# define xfs_rtfree_extent(t,b,l) (-ENOSYS)
|
|
||||||
# define xfs_rtfree_blocks(t,rb,rl) (-ENOSYS)
|
|
||||||
# define xfs_rtpick_extent(m,t,l,rb) (-ENOSYS)
|
# define xfs_rtpick_extent(m,t,l,rb) (-ENOSYS)
|
||||||
# define xfs_growfs_rt(mp,in) (-ENOSYS)
|
# define xfs_growfs_rt(mp,in) (-ENOSYS)
|
||||||
# define xfs_rtalloc_query_range(m,t,l,h,f,p) (-ENOSYS)
|
|
||||||
# define xfs_rtalloc_query_all(m,t,f,p) (-ENOSYS)
|
|
||||||
# define xfs_rtbuf_get(m,t,b,i,p) (-ENOSYS)
|
|
||||||
# define xfs_verify_rtbno(m, r) (false)
|
|
||||||
# define xfs_rtalloc_extent_is_free(m,t,s,l,i) (-ENOSYS)
|
|
||||||
# define xfs_rtalloc_reinit_frextents(m) (0)
|
# define xfs_rtalloc_reinit_frextents(m) (0)
|
||||||
static inline int /* error */
|
static inline int /* error */
|
||||||
xfs_rtmount_init(
|
xfs_rtmount_init(
|
||||||
|
|||||||
Reference in New Issue
Block a user