Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cee36a03
Commit
cee36a03
authored
Jan 15, 2008
by
Chris Mason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rework btrfs_drop_inode to avoid scheduling
Signed-off-by:
Chris Mason
<
chris.mason@oracle.com
>
parent
61295eb8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
10 deletions
+44
-10
fs/btrfs/ctree.h
fs/btrfs/ctree.h
+1
-0
fs/btrfs/disk-io.c
fs/btrfs/disk-io.c
+1
-0
fs/btrfs/inode.c
fs/btrfs/inode.c
+3
-10
fs/btrfs/ordered-data.c
fs/btrfs/ordered-data.c
+36
-0
fs/btrfs/ordered-data.h
fs/btrfs/ordered-data.h
+1
-0
fs/btrfs/transaction.c
fs/btrfs/transaction.c
+2
-0
No files found.
fs/btrfs/ctree.h
View file @
cee36a03
...
@@ -349,6 +349,7 @@ struct btrfs_fs_info {
...
@@ -349,6 +349,7 @@ struct btrfs_fs_info {
u64
total_pinned
;
u64
total_pinned
;
spinlock_t
delalloc_lock
;
spinlock_t
delalloc_lock
;
spinlock_t
new_trans_lock
;
u64
delalloc_bytes
;
u64
delalloc_bytes
;
};
};
/*
/*
...
...
fs/btrfs/disk-io.c
View file @
cee36a03
...
@@ -639,6 +639,7 @@ struct btrfs_root *open_ctree(struct super_block *sb)
...
@@ -639,6 +639,7 @@ struct btrfs_root *open_ctree(struct super_block *sb)
INIT_LIST_HEAD
(
&
fs_info
->
hashers
);
INIT_LIST_HEAD
(
&
fs_info
->
hashers
);
spin_lock_init
(
&
fs_info
->
hash_lock
);
spin_lock_init
(
&
fs_info
->
hash_lock
);
spin_lock_init
(
&
fs_info
->
delalloc_lock
);
spin_lock_init
(
&
fs_info
->
delalloc_lock
);
spin_lock_init
(
&
fs_info
->
new_trans_lock
);
memset
(
&
fs_info
->
super_kobj
,
0
,
sizeof
(
fs_info
->
super_kobj
));
memset
(
&
fs_info
->
super_kobj
,
0
,
sizeof
(
fs_info
->
super_kobj
));
init_completion
(
&
fs_info
->
kobj_unregister
);
init_completion
(
&
fs_info
->
kobj_unregister
);
...
...
fs/btrfs/inode.c
View file @
cee36a03
...
@@ -993,20 +993,13 @@ static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
...
@@ -993,20 +993,13 @@ static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
void
btrfs_drop_inode
(
struct
inode
*
inode
)
void
btrfs_drop_inode
(
struct
inode
*
inode
)
{
{
struct
btrfs_trans_handle
*
trans
;
if
(
!
BTRFS_I
(
inode
)
->
ordered_trans
||
inode
->
i_nlink
)
{
struct
btrfs_root
*
root
=
BTRFS_I
(
inode
)
->
root
;
if
(
!
BTRFS_I
(
inode
)
->
ordered_trans
)
{
generic_drop_inode
(
inode
);
generic_drop_inode
(
inode
);
return
;
return
;
}
}
/* nasty, but it prevents a deadlock with data=ordered by preventing
/* FIXME, make sure this delete actually ends up in the transaction */
* a commit until after this inode is done
btrfs_del_ordered_inode
(
inode
);
*/
trans
=
btrfs_start_transaction
(
root
,
1
);
generic_drop_inode
(
inode
);
generic_drop_inode
(
inode
);
/* note, the inode is now untouchable */
btrfs_end_transaction
(
trans
,
root
);
}
}
void
btrfs_delete_inode
(
struct
inode
*
inode
)
void
btrfs_delete_inode
(
struct
inode
*
inode
)
...
...
fs/btrfs/ordered-data.c
View file @
cee36a03
...
@@ -219,3 +219,39 @@ int btrfs_find_del_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
...
@@ -219,3 +219,39 @@ int btrfs_find_del_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
kfree
(
entry
);
kfree
(
entry
);
return
1
;
return
1
;
}
}
static
int
__btrfs_del_ordered_inode
(
struct
btrfs_ordered_inode_tree
*
tree
,
u64
root_objectid
,
u64
objectid
)
{
struct
tree_entry
*
entry
;
struct
rb_node
*
node
;
struct
rb_node
*
prev
;
write_lock
(
&
tree
->
lock
);
node
=
__tree_search
(
&
tree
->
tree
,
root_objectid
,
objectid
,
&
prev
);
if
(
!
node
)
{
write_unlock
(
&
tree
->
lock
);
return
0
;
}
rb_erase
(
node
,
&
tree
->
tree
);
write_unlock
(
&
tree
->
lock
);
entry
=
rb_entry
(
node
,
struct
tree_entry
,
rb_node
);
kfree
(
entry
);
return
1
;
}
int
btrfs_del_ordered_inode
(
struct
inode
*
inode
)
{
struct
btrfs_root
*
root
=
BTRFS_I
(
inode
)
->
root
;
u64
root_objectid
=
root
->
root_key
.
objectid
;
spin_lock
(
&
root
->
fs_info
->
new_trans_lock
);
if
(
root
->
fs_info
->
running_transaction
)
{
struct
btrfs_ordered_inode_tree
*
tree
;
tree
=
&
root
->
fs_info
->
running_transaction
->
ordered_inode_tree
;
__btrfs_del_ordered_inode
(
tree
,
root_objectid
,
inode
->
i_ino
);
}
spin_unlock
(
&
root
->
fs_info
->
new_trans_lock
);
return
0
;
}
fs/btrfs/ordered-data.h
View file @
cee36a03
...
@@ -36,4 +36,5 @@ int btrfs_find_del_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
...
@@ -36,4 +36,5 @@ int btrfs_find_del_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
u64
*
root_objectid
,
u64
*
objectid
);
u64
*
root_objectid
,
u64
*
objectid
);
int
btrfs_find_first_ordered_inode
(
struct
btrfs_ordered_inode_tree
*
tree
,
int
btrfs_find_first_ordered_inode
(
struct
btrfs_ordered_inode_tree
*
tree
,
u64
*
root_objectid
,
u64
*
objectid
);
u64
*
root_objectid
,
u64
*
objectid
);
int
btrfs_del_ordered_inode
(
struct
inode
*
inode
);
#endif
#endif
fs/btrfs/transaction.c
View file @
cee36a03
...
@@ -699,7 +699,9 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
...
@@ -699,7 +699,9 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
BUG_ON
(
ret
);
BUG_ON
(
ret
);
cur_trans
=
root
->
fs_info
->
running_transaction
;
cur_trans
=
root
->
fs_info
->
running_transaction
;
spin_lock
(
&
root
->
fs_info
->
new_trans_lock
);
root
->
fs_info
->
running_transaction
=
NULL
;
root
->
fs_info
->
running_transaction
=
NULL
;
spin_unlock
(
&
root
->
fs_info
->
new_trans_lock
);
btrfs_set_super_generation
(
&
root
->
fs_info
->
super_copy
,
btrfs_set_super_generation
(
&
root
->
fs_info
->
super_copy
,
cur_trans
->
transid
);
cur_trans
->
transid
);
btrfs_set_super_root
(
&
root
->
fs_info
->
super_copy
,
btrfs_set_super_root
(
&
root
->
fs_info
->
super_copy
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment