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
2a039f1e
Commit
2a039f1e
authored
5 years ago
by
Kent Overstreet
Committed by
Kent Overstreet
1 year ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcachefs: free trans->mem on commit
Signed-off-by:
Kent Overstreet
<
kent.overstreet@linux.dev
>
parent
a1d58243
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
fs/bcachefs/btree_update_leaf.c
fs/bcachefs/btree_update_leaf.c
+6
-3
No files found.
fs/bcachefs/btree_update_leaf.c
View file @
2a039f1e
...
...
@@ -861,12 +861,15 @@ int bch2_trans_commit(struct btree_trans *trans,
BUG_ON
(
!
(
trans
->
flags
&
BTREE_INSERT_ATOMIC
)
&&
ret
==
-
EINTR
);
bch2_trans_unlink_iters
(
trans
,
trans
->
iters_unlink_on_commit
);
if
(
!
ret
)
{
bch2_trans_unlink_iters
(
trans
,
~
trans
->
iters_touched
);
bch2_trans_unlink_iters
(
trans
,
~
trans
->
iters_touched
|
trans
->
iters_unlink_on_commit
);
trans
->
iters_touched
=
0
;
}
else
{
bch2_trans_unlink_iters
(
trans
,
trans
->
iters_unlink_on_commit
);
}
trans
->
nr_updates
=
0
;
trans
->
nr_updates
=
0
;
trans
->
mem_top
=
0
;
return
ret
;
err:
...
...
This diff is collapsed.
Click to expand it.
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