Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_DIR2_H__ |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 19 | #define __XFS_DIR2_H__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 21 | struct xfs_bmap_free; |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 22 | struct xfs_da_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct xfs_inode; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 24 | struct xfs_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct xfs_trans; |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 26 | struct xfs_dir2_sf_hdr; |
| 27 | struct xfs_dir2_sf_entry; |
| 28 | struct xfs_dir2_data_hdr; |
| 29 | struct xfs_dir2_data_entry; |
| 30 | struct xfs_dir2_data_unused; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 32 | extern struct xfs_name xfs_name_dotdot; |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 35 | * Generic directory interface routines |
| 36 | */ |
| 37 | extern void xfs_dir_startup(void); |
| 38 | extern void xfs_dir_mount(struct xfs_mount *mp); |
| 39 | extern int xfs_dir_isempty(struct xfs_inode *dp); |
| 40 | extern int xfs_dir_init(struct xfs_trans *tp, struct xfs_inode *dp, |
| 41 | struct xfs_inode *pdp); |
| 42 | extern int xfs_dir_createname(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 43 | struct xfs_name *name, xfs_ino_t inum, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 44 | xfs_fsblock_t *first, |
| 45 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
| 46 | extern int xfs_dir_lookup(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 47 | struct xfs_name *name, xfs_ino_t *inum, |
| 48 | struct xfs_name *ci_name); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 49 | extern int xfs_dir_removename(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 50 | struct xfs_name *name, xfs_ino_t ino, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 51 | xfs_fsblock_t *first, |
| 52 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 53 | extern int xfs_dir_replace(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 54 | struct xfs_name *name, xfs_ino_t inum, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 55 | xfs_fsblock_t *first, |
| 56 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
| 57 | extern int xfs_dir_canenter(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 58 | struct xfs_name *name, uint resblks); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 59 | |
| 60 | /* |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 61 | * Direct call from the bmap code, bypassing the generic directory layer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | */ |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 63 | extern int xfs_dir2_sf_to_block(struct xfs_da_args *args); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 64 | |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 65 | /* |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 66 | * Interface routines used by userspace utilities |
| 67 | */ |
| 68 | extern xfs_ino_t xfs_dir2_sf_get_parent_ino(struct xfs_dir2_sf_hdr *sfp); |
| 69 | extern void xfs_dir2_sf_put_parent_ino(struct xfs_dir2_sf_hdr *sfp, |
| 70 | xfs_ino_t ino); |
Dave Chinner | 0cb9776 | 2013-08-12 20:50:09 +1000 | [diff] [blame] | 71 | extern xfs_ino_t xfs_dir3_sfe_get_ino(struct xfs_mount *mp, |
| 72 | struct xfs_dir2_sf_hdr *sfp, struct xfs_dir2_sf_entry *sfep); |
Dave Chinner | 50fc5f7 | 2013-09-02 12:15:59 +1000 | [diff] [blame] | 73 | extern void xfs_dir3_sfe_put_ino(struct xfs_mount *mp, |
| 74 | struct xfs_dir2_sf_hdr *hdr, struct xfs_dir2_sf_entry *sfep, |
| 75 | xfs_ino_t ino); |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 76 | |
| 77 | extern int xfs_dir2_isblock(struct xfs_trans *tp, struct xfs_inode *dp, int *r); |
| 78 | extern int xfs_dir2_isleaf(struct xfs_trans *tp, struct xfs_inode *dp, int *r); |
| 79 | extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db, |
| 80 | struct xfs_buf *bp); |
| 81 | |
| 82 | extern void xfs_dir2_data_freescan(struct xfs_mount *mp, |
| 83 | struct xfs_dir2_data_hdr *hdr, int *loghead); |
| 84 | extern void xfs_dir2_data_log_entry(struct xfs_trans *tp, struct xfs_buf *bp, |
| 85 | struct xfs_dir2_data_entry *dep); |
| 86 | extern void xfs_dir2_data_log_header(struct xfs_trans *tp, |
| 87 | struct xfs_buf *bp); |
| 88 | extern void xfs_dir2_data_log_unused(struct xfs_trans *tp, struct xfs_buf *bp, |
| 89 | struct xfs_dir2_data_unused *dup); |
| 90 | extern void xfs_dir2_data_make_free(struct xfs_trans *tp, struct xfs_buf *bp, |
| 91 | xfs_dir2_data_aoff_t offset, xfs_dir2_data_aoff_t len, |
| 92 | int *needlogp, int *needscanp); |
| 93 | extern void xfs_dir2_data_use_free(struct xfs_trans *tp, struct xfs_buf *bp, |
| 94 | struct xfs_dir2_data_unused *dup, xfs_dir2_data_aoff_t offset, |
| 95 | xfs_dir2_data_aoff_t len, int *needlogp, int *needscanp); |
| 96 | |
| 97 | extern struct xfs_dir2_data_free *xfs_dir2_data_freefind( |
| 98 | struct xfs_dir2_data_hdr *hdr, struct xfs_dir2_data_unused *dup); |
| 99 | |
| 100 | extern const struct xfs_buf_ops xfs_dir3_block_buf_ops; |
| 101 | extern const struct xfs_buf_ops xfs_dir3_leafn_buf_ops; |
| 102 | extern const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops; |
| 103 | extern const struct xfs_buf_ops xfs_dir3_free_buf_ops; |
| 104 | extern const struct xfs_buf_ops xfs_dir3_data_buf_ops; |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | #endif /* __XFS_DIR2_H__ */ |