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
nexedi
linux
Commits
9dd6358a
Commit
9dd6358a
authored
Dec 17, 2013
by
Kent Overstreet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcache: Fix auxiliary search trees for key size > cacheline size
Signed-off-by:
Kent Overstreet
<
kmo@daterainc.com
>
parent
3b3e9e50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
drivers/md/bcache/bset.c
drivers/md/bcache/bset.c
+14
-14
No files found.
drivers/md/bcache/bset.c
View file @
9dd6358a
...
...
@@ -511,9 +511,11 @@ static unsigned bkey_to_cacheline(struct bset_tree *t, struct bkey *k)
return
((
void
*
)
k
-
(
void
*
)
t
->
data
)
/
BSET_CACHELINE
;
}
static
unsigned
bkey_to_cacheline_offset
(
struct
bkey
*
k
)
static
unsigned
bkey_to_cacheline_offset
(
struct
bset_tree
*
t
,
unsigned
cacheline
,
struct
bkey
*
k
)
{
return
(
(
size_t
)
k
&
(
BSET_CACHELINE
-
1
))
/
sizeof
(
uint64_t
);
return
(
u64
*
)
k
-
(
u64
*
)
cacheline_to_bkey
(
t
,
cacheline
,
0
);
}
static
struct
bkey
*
tree_to_bkey
(
struct
bset_tree
*
t
,
unsigned
j
)
...
...
@@ -608,7 +610,7 @@ static void bch_bset_build_unwritten_tree(struct btree_keys *b)
bset_alloc_tree
(
b
,
t
);
if
(
t
->
tree
!=
b
->
set
->
tree
+
btree_keys_cachelines
(
b
))
{
t
->
prev
[
0
]
=
bkey_to_cacheline_offset
(
t
->
data
->
start
);
t
->
prev
[
0
]
=
bkey_to_cacheline_offset
(
t
,
0
,
t
->
data
->
start
);
t
->
size
=
1
;
}
}
...
...
@@ -632,7 +634,7 @@ EXPORT_SYMBOL(bch_bset_init_next);
void
bch_bset_build_written_tree
(
struct
btree_keys
*
b
)
{
struct
bset_tree
*
t
=
bset_tree_last
(
b
);
struct
bkey
*
k
=
t
->
data
->
start
;
struct
bkey
*
prev
=
NULL
,
*
k
=
t
->
data
->
start
;
unsigned
j
,
cacheline
=
1
;
b
->
last_set_unwritten
=
0
;
...
...
@@ -654,13 +656,11 @@ void bch_bset_build_written_tree(struct btree_keys *b)
for
(
j
=
inorder_next
(
0
,
t
->
size
);
j
;
j
=
inorder_next
(
j
,
t
->
size
))
{
while
(
bkey_to_cacheline
(
t
,
k
)
!=
cacheline
)
k
=
bkey_next
(
k
);
while
(
bkey_to_cacheline
(
t
,
k
)
<
cacheline
)
prev
=
k
,
k
=
bkey_next
(
k
);
t
->
prev
[
j
]
=
bkey_u64s
(
k
);
k
=
bkey_next
(
k
);
cacheline
++
;
t
->
tree
[
j
].
m
=
bkey_to_cacheline_offset
(
k
);
t
->
prev
[
j
]
=
bkey_u64s
(
prev
);
t
->
tree
[
j
].
m
=
bkey_to_cacheline_offset
(
t
,
cacheline
++
,
k
);
}
while
(
bkey_next
(
k
)
!=
bset_bkey_last
(
t
->
data
))
...
...
@@ -739,8 +739,8 @@ static void bch_bset_fix_lookup_table(struct btree_keys *b,
* lookup table for the first key that is strictly greater than k:
* it's either k's cacheline or the next one
*/
if
(
j
<
t
->
size
&&
table_to_bkey
(
t
,
j
)
<=
k
)
while
(
j
<
t
->
size
&&
table_to_bkey
(
t
,
j
)
<=
k
)
j
++
;
/* Adjust all the lookup table entries, and find a new key for any that
...
...
@@ -755,7 +755,7 @@ static void bch_bset_fix_lookup_table(struct btree_keys *b,
while
(
k
<
cacheline_to_bkey
(
t
,
j
,
0
))
k
=
bkey_next
(
k
);
t
->
prev
[
j
]
=
bkey_to_cacheline_offset
(
k
);
t
->
prev
[
j
]
=
bkey_to_cacheline_offset
(
t
,
j
,
k
);
}
}
...
...
@@ -768,7 +768,7 @@ static void bch_bset_fix_lookup_table(struct btree_keys *b,
k
!=
bset_bkey_last
(
t
->
data
);
k
=
bkey_next
(
k
))
if
(
t
->
size
==
bkey_to_cacheline
(
t
,
k
))
{
t
->
prev
[
t
->
size
]
=
bkey_to_cacheline_offset
(
k
);
t
->
prev
[
t
->
size
]
=
bkey_to_cacheline_offset
(
t
,
t
->
size
,
k
);
t
->
size
++
;
}
}
...
...
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