mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 09:02:06 +00:00
btrfs: Make btrfs_del_dir_entries_in_log take btrfs_inode
Signed-off-by: Nikolay Borisov <n.borisov.lkml@gmail.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
9ca5fbfbb9
commit
49f34d1f96
3 changed files with 7 additions and 7 deletions
|
@ -4060,7 +4060,7 @@ skip_backref:
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
|
ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
|
||||||
dir, index);
|
BTRFS_I(dir), index);
|
||||||
if (ret == -ENOENT)
|
if (ret == -ENOENT)
|
||||||
ret = 0;
|
ret = 0;
|
||||||
else if (ret)
|
else if (ret)
|
||||||
|
|
|
@ -3084,7 +3084,7 @@ int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
|
||||||
int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root,
|
struct btrfs_root *root,
|
||||||
const char *name, int name_len,
|
const char *name, int name_len,
|
||||||
struct inode *dir, u64 index)
|
struct btrfs_inode *dir, u64 index)
|
||||||
{
|
{
|
||||||
struct btrfs_root *log;
|
struct btrfs_root *log;
|
||||||
struct btrfs_dir_item *di;
|
struct btrfs_dir_item *di;
|
||||||
|
@ -3092,16 +3092,16 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
||||||
int ret;
|
int ret;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
int bytes_del = 0;
|
int bytes_del = 0;
|
||||||
u64 dir_ino = btrfs_ino(BTRFS_I(dir));
|
u64 dir_ino = btrfs_ino(dir);
|
||||||
|
|
||||||
if (BTRFS_I(dir)->logged_trans < trans->transid)
|
if (dir->logged_trans < trans->transid)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
ret = join_running_log_trans(root);
|
ret = join_running_log_trans(root);
|
||||||
if (ret)
|
if (ret)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
mutex_lock(&BTRFS_I(dir)->log_mutex);
|
mutex_lock(&dir->log_mutex);
|
||||||
|
|
||||||
log = root->log_root;
|
log = root->log_root;
|
||||||
path = btrfs_alloc_path();
|
path = btrfs_alloc_path();
|
||||||
|
@ -3176,7 +3176,7 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
||||||
fail:
|
fail:
|
||||||
btrfs_free_path(path);
|
btrfs_free_path(path);
|
||||||
out_unlock:
|
out_unlock:
|
||||||
mutex_unlock(&BTRFS_I(dir)->log_mutex);
|
mutex_unlock(&dir->log_mutex);
|
||||||
if (ret == -ENOSPC) {
|
if (ret == -ENOSPC) {
|
||||||
btrfs_set_log_full_commit(root->fs_info, trans);
|
btrfs_set_log_full_commit(root->fs_info, trans);
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|
|
@ -72,7 +72,7 @@ int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
|
||||||
int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root,
|
struct btrfs_root *root,
|
||||||
const char *name, int name_len,
|
const char *name, int name_len,
|
||||||
struct inode *dir, u64 index);
|
struct btrfs_inode *dir, u64 index);
|
||||||
int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
|
int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root,
|
struct btrfs_root *root,
|
||||||
const char *name, int name_len,
|
const char *name, int name_len,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue