2018-06-06 10:42:14 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2005-11-02 11:58:39 +08:00
|
|
|
* Copyright (c) 2000,2005 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_IALLOC_H__
|
|
|
|
#define __XFS_IALLOC_H__
|
|
|
|
|
|
|
|
struct xfs_buf;
|
|
|
|
struct xfs_dinode;
|
2008-11-28 11:23:41 +08:00
|
|
|
struct xfs_imap;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct xfs_mount;
|
|
|
|
struct xfs_trans;
|
2013-10-23 07:51:50 +08:00
|
|
|
struct xfs_btree_cur;
|
2023-02-13 06:14:52 +08:00
|
|
|
struct xfs_perag;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-13 12:51:48 +08:00
|
|
|
/* Move inodes in clusters of this size */
|
2005-04-17 06:20:36 +08:00
|
|
|
#define XFS_INODE_BIG_CLUSTER_SIZE 8192
|
|
|
|
|
2015-05-29 07:26:03 +08:00
|
|
|
struct xfs_icluster {
|
|
|
|
bool deleted; /* record is deleted */
|
|
|
|
xfs_ino_t first_ino; /* first inode number */
|
|
|
|
uint64_t alloc; /* inode phys. allocation bitmap for
|
|
|
|
* sparse chunks */
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Make an inode pointer out of the buffer/offset.
|
|
|
|
*/
|
2005-11-02 11:38:42 +08:00
|
|
|
static inline struct xfs_dinode *
|
|
|
|
xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o)
|
|
|
|
{
|
2015-06-22 07:44:29 +08:00
|
|
|
return xfs_buf_offset(b, o << (mp)->m_sb.sb_inodelog);
|
2005-11-02 11:38:42 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2024-08-31 06:36:49 +08:00
|
|
|
struct xfs_icreate_args;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2021-06-02 08:48:24 +08:00
|
|
|
* Allocate an inode on disk. Mode is used to tell whether the new inode will
|
|
|
|
* need space, and whether it is a directory.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2024-08-31 06:36:49 +08:00
|
|
|
int xfs_dialloc(struct xfs_trans **tpp, const struct xfs_icreate_args *args,
|
2021-06-02 08:48:24 +08:00
|
|
|
xfs_ino_t *new_ino);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-06-02 08:48:51 +08:00
|
|
|
int xfs_difree(struct xfs_trans *tp, struct xfs_perag *pag,
|
|
|
|
xfs_ino_t ino, struct xfs_icluster *ifree);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2008-11-28 11:23:41 +08:00
|
|
|
* Return the location of the inode in imap, for mapping it into a buffer.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
int
|
2008-11-28 11:23:41 +08:00
|
|
|
xfs_imap(
|
2023-02-13 06:14:52 +08:00
|
|
|
struct xfs_perag *pag,
|
2005-04-17 06:20:36 +08:00
|
|
|
struct xfs_trans *tp, /* transaction pointer */
|
|
|
|
xfs_ino_t ino, /* inode to locate */
|
2008-11-28 11:23:41 +08:00
|
|
|
struct xfs_imap *imap, /* location map structure */
|
2005-04-17 06:20:36 +08:00
|
|
|
uint flags); /* flags for inode btree lookup */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Log specified fields for the ag hdr (inode section)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xfs_ialloc_log_agi(
|
|
|
|
struct xfs_trans *tp, /* transaction pointer */
|
|
|
|
struct xfs_buf *bp, /* allocation group header buffer */
|
2022-04-21 08:46:24 +08:00
|
|
|
uint32_t fields); /* bitmask of fields to log */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2024-04-16 05:54:03 +08:00
|
|
|
int xfs_read_agi(struct xfs_perag *pag, struct xfs_trans *tp, xfs_buf_flags_t flags,
|
2022-07-07 17:07:47 +08:00
|
|
|
struct xfs_buf **agibpp);
|
|
|
|
int xfs_ialloc_read_agi(struct xfs_perag *pag, struct xfs_trans *tp,
|
2024-04-16 05:54:03 +08:00
|
|
|
int flags, struct xfs_buf **agibpp);
|
|
|
|
#define XFS_IALLOC_FLAG_TRYLOCK (1U << 0) /* use trylock for buffer locking */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-10-30 13:56:09 +08:00
|
|
|
/*
|
2009-09-01 07:58:21 +08:00
|
|
|
* Lookup a record by ino in the btree given by cur.
|
2008-10-30 13:56:09 +08:00
|
|
|
*/
|
2009-09-01 07:58:21 +08:00
|
|
|
int xfs_inobt_lookup(struct xfs_btree_cur *cur, xfs_agino_t ino,
|
|
|
|
xfs_lookup_t dir, int *stat);
|
2008-10-30 13:56:09 +08:00
|
|
|
|
2008-10-30 13:58:11 +08:00
|
|
|
/*
|
|
|
|
* Get the data from the pointed-to record.
|
|
|
|
*/
|
2012-11-14 14:53:49 +08:00
|
|
|
int xfs_inobt_get_rec(struct xfs_btree_cur *cur,
|
2009-09-01 07:56:58 +08:00
|
|
|
xfs_inobt_rec_incore_t *rec, int *stat);
|
2023-12-16 02:03:32 +08:00
|
|
|
uint8_t xfs_inobt_rec_freecount(const struct xfs_inobt_rec_incore *irec);
|
2008-10-30 13:56:09 +08:00
|
|
|
|
2013-06-27 14:04:55 +08:00
|
|
|
/*
|
|
|
|
* Inode chunk initialisation routine
|
|
|
|
*/
|
|
|
|
int xfs_ialloc_inode_init(struct xfs_mount *mp, struct xfs_trans *tp,
|
2015-05-29 07:05:49 +08:00
|
|
|
struct list_head *buffer_list, int icount,
|
2013-06-27 14:04:55 +08:00
|
|
|
xfs_agnumber_t agno, xfs_agblock_t agbno,
|
|
|
|
xfs_agblock_t length, unsigned int gen);
|
|
|
|
|
2014-11-28 11:25:04 +08:00
|
|
|
|
2017-06-17 02:00:08 +08:00
|
|
|
union xfs_btree_rec;
|
2021-08-11 08:02:16 +08:00
|
|
|
void xfs_inobt_btrec_to_irec(struct xfs_mount *mp,
|
|
|
|
const union xfs_btree_rec *rec,
|
2017-06-17 02:00:08 +08:00
|
|
|
struct xfs_inobt_rec_incore *irec);
|
2023-12-16 02:03:32 +08:00
|
|
|
xfs_failaddr_t xfs_inobt_check_irec(struct xfs_perag *pag,
|
2023-04-12 10:00:01 +08:00
|
|
|
const struct xfs_inobt_rec_incore *irec);
|
2018-01-17 10:52:12 +08:00
|
|
|
int xfs_ialloc_has_inodes_at_extent(struct xfs_btree_cur *cur,
|
2023-04-12 10:00:15 +08:00
|
|
|
xfs_agblock_t bno, xfs_extlen_t len,
|
|
|
|
enum xbtree_recpacking *outcome);
|
2018-01-17 10:52:12 +08:00
|
|
|
int xfs_ialloc_count_inodes(struct xfs_btree_cur *cur, xfs_agino_t *count,
|
|
|
|
xfs_agino_t *freecount);
|
2018-05-10 01:02:02 +08:00
|
|
|
int xfs_inobt_insert_rec(struct xfs_btree_cur *cur, uint16_t holemask,
|
|
|
|
uint8_t count, int32_t freecount, xfs_inofree_t free,
|
|
|
|
int *stat);
|
2017-06-17 02:00:08 +08:00
|
|
|
|
|
|
|
int xfs_ialloc_cluster_alignment(struct xfs_mount *mp);
|
2019-06-06 02:19:35 +08:00
|
|
|
void xfs_ialloc_setup_geometry(struct xfs_mount *mp);
|
2019-12-12 05:19:06 +08:00
|
|
|
xfs_ino_t xfs_ialloc_calc_rootino(struct xfs_mount *mp, int sunit);
|
2014-11-28 11:25:04 +08:00
|
|
|
|
2023-02-13 06:14:52 +08:00
|
|
|
int xfs_ialloc_check_shrink(struct xfs_perag *pag, struct xfs_trans *tp,
|
2021-07-13 03:58:47 +08:00
|
|
|
struct xfs_buf *agibp, xfs_agblock_t new_length);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __XFS_IALLOC_H__ */
|