btrfs: move file-item prototypes into their own header

Move these prototypes out of ctree.h and into file-item.h.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Josef Bacik 2022-10-26 15:08:27 -04:00 committed by David Sterba
parent f2b39277b8
commit 7c8ede1628
17 changed files with 50 additions and 31 deletions

View file

@ -34,6 +34,7 @@
#include "extent_map.h"
#include "subpage.h"
#include "zoned.h"
#include "file-item.h"
static const char* const btrfs_compress_types[] = { "", "zlib", "lzo", "zstd" };

View file

@ -695,37 +695,6 @@ int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 offset);
/* file-item.c */
int btrfs_del_csums(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 bytenr, u64 len);
blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio, u8 *dst);
int btrfs_insert_hole_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 objectid, u64 pos,
u64 num_bytes);
int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_path *path, u64 objectid,
u64 bytenr, int mod);
int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_ordered_sum *sums);
blk_status_t btrfs_csum_one_bio(struct btrfs_inode *inode, struct bio *bio,
u64 offset, bool one_ordered);
int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
struct list_head *list, int search_commit,
bool nowait);
void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
const struct btrfs_path *path,
struct btrfs_file_extent_item *fi,
const bool new_inline,
struct extent_map *em);
int btrfs_inode_clear_file_extent_range(struct btrfs_inode *inode, u64 start,
u64 len);
int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start,
u64 len);
void btrfs_inode_safe_disk_i_size_write(struct btrfs_inode *inode, u64 new_i_size);
u64 btrfs_file_extent_end(const struct btrfs_path *path);
/* ioctl.c */
long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);

View file

@ -14,6 +14,7 @@
#include "delalloc-space.h"
#include "subpage.h"
#include "defrag.h"
#include "file-item.h"
static struct kmem_cache *btrfs_inode_defrag_cachep;

View file

@ -18,6 +18,7 @@
#include "inode-item.h"
#include "space-info.h"
#include "accessors.h"
#include "file-item.h"
#define BTRFS_DELAYED_WRITEBACK 512
#define BTRFS_DELAYED_BACKGROUND 128

View file

@ -40,6 +40,7 @@
#include "accessors.h"
#include "extent-tree.h"
#include "root-tree.h"
#include "file-item.h"
#undef SCRAMBLE_DELAYED_REFS

View file

@ -32,6 +32,7 @@
#include "compression.h"
#include "fs.h"
#include "accessors.h"
#include "file-item.h"
static struct kmem_cache *extent_buffer_cache;

View file

@ -19,6 +19,7 @@
#include "compression.h"
#include "fs.h"
#include "accessors.h"
#include "file-item.h"
#define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \
sizeof(struct btrfs_item) * 2) / \

35
fs/btrfs/file-item.h Normal file
View file

@ -0,0 +1,35 @@
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BTRFS_FILE_ITEM_H
#define BTRFS_FILE_ITEM_H
int btrfs_del_csums(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 bytenr, u64 len);
blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio, u8 *dst);
int btrfs_insert_hole_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root, u64 objectid, u64 pos,
u64 num_bytes);
int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_path *path, u64 objectid,
u64 bytenr, int mod);
int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
struct btrfs_ordered_sum *sums);
blk_status_t btrfs_csum_one_bio(struct btrfs_inode *inode, struct bio *bio,
u64 offset, bool one_ordered);
int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
struct list_head *list, int search_commit,
bool nowait);
void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
const struct btrfs_path *path,
struct btrfs_file_extent_item *fi,
const bool new_inline,
struct extent_map *em);
int btrfs_inode_clear_file_extent_range(struct btrfs_inode *inode, u64 start,
u64 len);
int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start, u64 len);
void btrfs_inode_safe_disk_i_size_write(struct btrfs_inode *inode, u64 new_i_size);
u64 btrfs_file_extent_end(const struct btrfs_path *path);
#endif

View file

@ -33,6 +33,7 @@
#include "fs.h"
#include "accessors.h"
#include "extent-tree.h"
#include "file-item.h"
/* simple helper to fault in pages and copy. This should go away
* and be replaced with calls into generic code.

View file

@ -27,6 +27,7 @@
#include "subpage.h"
#include "inode-item.h"
#include "accessors.h"
#include "file-item.h"
#define BITS_PER_BITMAP (PAGE_SIZE * 8UL)
#define MAX_CACHE_BYTES_PER_GIG SZ_64K

View file

@ -13,6 +13,7 @@
#include "space-info.h"
#include "accessors.h"
#include "extent-tree.h"
#include "file-item.h"
struct btrfs_inode_ref *btrfs_find_name_in_backref(struct extent_buffer *leaf,
int slot,

View file

@ -61,6 +61,7 @@
#include "root-tree.h"
#include "defrag.h"
#include "dir-item.h"
#include "file-item.h"
struct btrfs_iget_args {
u64 ino;

View file

@ -12,6 +12,7 @@
#include "transaction.h"
#include "subpage.h"
#include "accessors.h"
#include "file-item.h"
#define BTRFS_MAX_DEDUPE_LEN SZ_16M

View file

@ -32,6 +32,7 @@
#include "accessors.h"
#include "extent-tree.h"
#include "root-tree.h"
#include "file-item.h"
/*
* Relocation overview

View file

@ -23,6 +23,7 @@
#include "zoned.h"
#include "fs.h"
#include "accessors.h"
#include "file-item.h"
/*
* This is only the first step towards a full-features scrub. It reads all

View file

@ -29,6 +29,7 @@
#include "print-tree.h"
#include "accessors.h"
#include "dir-item.h"
#include "file-item.h"
/*
* Maximum number of references an extent can have in order for us to attempt to

View file

@ -26,6 +26,7 @@
#include "extent-tree.h"
#include "root-tree.h"
#include "dir-item.h"
#include "file-item.h"
#define MAX_CONFLICT_INODES 10