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
ba96d36c
Commit
ba96d36c
authored
Jan 15, 2024
by
Kent Overstreet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcachefs: bkey_and_val_eq()
Signed-off-by:
Kent Overstreet
<
kent.overstreet@linux.dev
>
parent
e6a2566f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
fs/bcachefs/backpointers.c
fs/bcachefs/backpointers.c
+8
-3
No files found.
fs/bcachefs/backpointers.c
View file @
ba96d36c
...
...
@@ -400,6 +400,13 @@ int bch2_check_btree_backpointers(struct bch_fs *c)
return
ret
;
}
static
inline
bool
bkey_and_val_eq
(
struct
bkey_s_c
l
,
struct
bkey_s_c
r
)
{
return
bpos_eq
(
l
.
k
->
p
,
r
.
k
->
p
)
&&
bkey_bytes
(
l
.
k
)
==
bkey_bytes
(
r
.
k
)
&&
!
memcmp
(
l
.
v
,
r
.
v
,
bkey_val_bytes
(
l
.
k
));
}
static
int
check_bp_exists
(
struct
btree_trans
*
trans
,
struct
bpos
bucket
,
struct
bch_backpointer
bp
,
...
...
@@ -433,9 +440,7 @@ static int check_bp_exists(struct btree_trans *trans,
if
(
bp_k
.
k
->
type
!=
KEY_TYPE_backpointer
||
memcmp
(
bkey_s_c_to_backpointer
(
bp_k
).
v
,
&
bp
,
sizeof
(
bp
)))
{
if
(
!
bpos_eq
(
orig_k
.
k
->
p
,
last_flushed
->
k
->
k
.
p
)
||
bkey_bytes
(
orig_k
.
k
)
!=
bkey_bytes
(
&
last_flushed
->
k
->
k
)
||
memcmp
(
orig_k
.
v
,
&
last_flushed
->
k
->
v
,
bkey_val_bytes
(
orig_k
.
k
)))
{
if
(
!
bkey_and_val_eq
(
orig_k
,
bkey_i_to_s_c
(
last_flushed
->
k
)))
{
bch2_bkey_buf_reassemble
(
&
tmp
,
c
,
orig_k
);
if
(
bp
.
level
)
{
...
...
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