Commit aeed1420 authored by Joe Thornber's avatar Joe Thornber Committed by Alasdair G Kergon

dm cache: fix typos in comments

Fix up some typos in dm-cache comments.
Signed-off-by: default avatarJoe Thornber <ejt@redhat.com>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
parent e12c1fd9
...@@ -205,7 +205,7 @@ struct per_bio_data { ...@@ -205,7 +205,7 @@ struct per_bio_data {
/* /*
* writethrough fields. These MUST remain at the end of this * writethrough fields. These MUST remain at the end of this
* structure and the 'cache' member must be the first as it * structure and the 'cache' member must be the first as it
* is used to determine the offsetof the writethrough fields. * is used to determine the offset of the writethrough fields.
*/ */
struct cache *cache; struct cache *cache;
dm_cblock_t cblock; dm_cblock_t cblock;
...@@ -393,7 +393,7 @@ static int get_cell(struct cache *cache, ...@@ -393,7 +393,7 @@ static int get_cell(struct cache *cache,
return r; return r;
} }
/*----------------------------------------------------------------*/ /*----------------------------------------------------------------*/
static bool is_dirty(struct cache *cache, dm_cblock_t b) static bool is_dirty(struct cache *cache, dm_cblock_t b)
{ {
...@@ -419,6 +419,7 @@ static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cbl ...@@ -419,6 +419,7 @@ static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cbl
} }
/*----------------------------------------------------------------*/ /*----------------------------------------------------------------*/
static bool block_size_is_power_of_two(struct cache *cache) static bool block_size_is_power_of_two(struct cache *cache)
{ {
return cache->sectors_per_block_shift >= 0; return cache->sectors_per_block_shift >= 0;
...@@ -667,7 +668,7 @@ static void writethrough_endio(struct bio *bio, int err) ...@@ -667,7 +668,7 @@ static void writethrough_endio(struct bio *bio, int err)
/* /*
* We can't issue this bio directly, since we're in interrupt * We can't issue this bio directly, since we're in interrupt
* context. So it get's put on a bio list for processing by the * context. So it gets put on a bio list for processing by the
* worker thread. * worker thread.
*/ */
defer_writethrough_bio(pb->cache, bio); defer_writethrough_bio(pb->cache, bio);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment