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
96d2e8b5
Commit
96d2e8b5
authored
Jan 30, 2014
by
Jens Axboe
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bcache-for-3.14' of
git://evilpiepirate.org/~kent/linux-bcache
into for-linus
parents
556ee818
e3b4825b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
10 deletions
+15
-10
drivers/md/bcache/bcache.h
drivers/md/bcache/bcache.h
+3
-1
drivers/md/bcache/bset.c
drivers/md/bcache/bset.c
+5
-2
drivers/md/bcache/btree.c
drivers/md/bcache/btree.c
+2
-2
drivers/md/bcache/extents.c
drivers/md/bcache/extents.c
+1
-1
drivers/md/bcache/request.c
drivers/md/bcache/request.c
+3
-3
drivers/md/bcache/sysfs.c
drivers/md/bcache/sysfs.c
+1
-1
No files found.
drivers/md/bcache/bcache.h
View file @
96d2e8b5
...
...
@@ -210,7 +210,9 @@ BITMASK(GC_MARK, struct bucket, gc_mark, 0, 2);
#define GC_MARK_RECLAIMABLE 0
#define GC_MARK_DIRTY 1
#define GC_MARK_METADATA 2
BITMASK
(
GC_SECTORS_USED
,
struct
bucket
,
gc_mark
,
2
,
13
);
#define GC_SECTORS_USED_SIZE 13
#define MAX_GC_SECTORS_USED (~(~0ULL << GC_SECTORS_USED_SIZE))
BITMASK
(
GC_SECTORS_USED
,
struct
bucket
,
gc_mark
,
2
,
GC_SECTORS_USED_SIZE
);
BITMASK
(
GC_MOVE
,
struct
bucket
,
gc_mark
,
15
,
1
);
#include "journal.h"
...
...
drivers/md/bcache/bset.c
View file @
96d2e8b5
...
...
@@ -23,7 +23,7 @@ void bch_dump_bset(struct btree_keys *b, struct bset *i, unsigned set)
for
(
k
=
i
->
start
;
k
<
bset_bkey_last
(
i
);
k
=
next
)
{
next
=
bkey_next
(
k
);
printk
(
KERN_ERR
"block %u key %
z
i/%u: "
,
set
,
printk
(
KERN_ERR
"block %u key %
l
i/%u: "
,
set
,
(
uint64_t
*
)
k
-
i
->
d
,
i
->
keys
);
if
(
b
->
ops
->
key_dump
)
...
...
@@ -1185,9 +1185,12 @@ static void __btree_sort(struct btree_keys *b, struct btree_iter *iter,
struct
bset
*
out
=
(
void
*
)
__get_free_pages
(
__GFP_NOWARN
|
GFP_NOIO
,
order
);
if
(
!
out
)
{
struct
page
*
outp
;
BUG_ON
(
order
>
state
->
page_order
);
out
=
page_address
(
mempool_alloc
(
state
->
pool
,
GFP_NOIO
));
outp
=
mempool_alloc
(
state
->
pool
,
GFP_NOIO
);
out
=
page_address
(
outp
);
used_mempool
=
true
;
order
=
state
->
page_order
;
}
...
...
drivers/md/bcache/btree.c
View file @
96d2e8b5
...
...
@@ -1167,7 +1167,7 @@ uint8_t __bch_btree_mark_key(struct cache_set *c, int level, struct bkey *k)
/* guard against overflow */
SET_GC_SECTORS_USED
(
g
,
min_t
(
unsigned
,
GC_SECTORS_USED
(
g
)
+
KEY_SIZE
(
k
),
(
1
<<
14
)
-
1
));
MAX_GC_SECTORS_USED
));
BUG_ON
(
!
GC_SECTORS_USED
(
g
));
}
...
...
@@ -1805,7 +1805,7 @@ static bool btree_insert_key(struct btree *b, struct bkey *k,
static
size_t
insert_u64s_remaining
(
struct
btree
*
b
)
{
ssize_t
ret
=
bch_btree_keys_u64s_remaining
(
&
b
->
keys
);
long
ret
=
bch_btree_keys_u64s_remaining
(
&
b
->
keys
);
/*
* Might land in the middle of an existing extent and have to split it
...
...
drivers/md/bcache/extents.c
View file @
96d2e8b5
...
...
@@ -194,7 +194,7 @@ static bool btree_ptr_bad_expensive(struct btree *b, const struct bkey *k)
mutex_unlock
(
&
b
->
c
->
bucket_lock
);
bch_extent_to_text
(
buf
,
sizeof
(
buf
),
k
);
btree_bug
(
b
,
"inconsistent btree pointer %s: bucket %
l
i pin %i prio %i gen %i last_gc %i mark %llu gc_gen %i"
,
"inconsistent btree pointer %s: bucket %
z
i pin %i prio %i gen %i last_gc %i mark %llu gc_gen %i"
,
buf
,
PTR_BUCKET_NR
(
b
->
c
,
k
,
i
),
atomic_read
(
&
g
->
pin
),
g
->
prio
,
g
->
gen
,
g
->
last_gc
,
GC_MARK
(
g
),
g
->
gc_gen
);
return
true
;
...
...
drivers/md/bcache/request.c
View file @
96d2e8b5
...
...
@@ -353,14 +353,14 @@ static void bch_data_insert_start(struct closure *cl)
struct
data_insert_op
*
op
=
container_of
(
cl
,
struct
data_insert_op
,
cl
);
struct
bio
*
bio
=
op
->
bio
,
*
n
;
if
(
op
->
bypass
)
return
bch_data_invalidate
(
cl
);
if
(
atomic_sub_return
(
bio_sectors
(
bio
),
&
op
->
c
->
sectors_to_gc
)
<
0
)
{
set_gc_sectors
(
op
->
c
);
wake_up_gc
(
op
->
c
);
}
if
(
op
->
bypass
)
return
bch_data_invalidate
(
cl
);
/*
* Journal writes are marked REQ_FLUSH; if the original write was a
* flush, it'll wait on the journal write.
...
...
drivers/md/bcache/sysfs.c
View file @
96d2e8b5
...
...
@@ -416,7 +416,7 @@ static int btree_bset_stats(struct btree_op *b_op, struct btree *b)
return
MAP_CONTINUE
;
}
int
bch_bset_print_stats
(
struct
cache_set
*
c
,
char
*
buf
)
static
int
bch_bset_print_stats
(
struct
cache_set
*
c
,
char
*
buf
)
{
struct
bset_stats_op
op
;
int
ret
;
...
...
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