aboutsummaryrefslogtreecommitdiff
path: root/drivers/md/bitmap.h
diff options
context:
space:
mode:
authorGravatar NeilBrown <neilb@suse.de> 2012-05-22 13:55:11 +1000
committerGravatar NeilBrown <neilb@suse.de> 2012-05-22 13:55:11 +1000
commit9b1215c102d4b12f6c815d7fdd35d0628db35b28 (patch)
tree52f04de53b1b7302535d66820d9f85b0610b0b1f /drivers/md/bitmap.h
parentmd/bitmap: move some fields of 'struct bitmap' into a 'storage' substruct. (diff)
downloadlinux-9b1215c102d4b12f6c815d7fdd35d0628db35b28.tar.gz
linux-9b1215c102d4b12f6c815d7fdd35d0628db35b28.tar.bz2
linux-9b1215c102d4b12f6c815d7fdd35d0628db35b28.zip
md/bitmap: store bytes in file rather than just in last page.
This number is more generally useful, and bytes-in-last-page is easily extracted from it. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/bitmap.h')
-rw-r--r--drivers/md/bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bitmap.h b/drivers/md/bitmap.h
index 162ab095b866..26689260e179 100644
--- a/drivers/md/bitmap.h
+++ b/drivers/md/bitmap.h
@@ -197,7 +197,7 @@ struct bitmap {
unsigned long *filemap_attr; /* attributes associated
* w/ filemap pages */
unsigned long file_pages; /* number of pages in the file*/
- int last_page_size; /* bytes in the last page */
+ unsigned long bytes; /* total bytes in the bitmap */
} storage;
unsigned long flags;