diff options
| author | Wu Fengguang <fengguang.wu@intel.com> | 2009-07-22 13:56:10 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rjw@sisk.pl> | 2009-09-14 14:26:59 -0400 |
| commit | 8de0307326be94148436082a9abf365da8e3c66d (patch) | |
| tree | 816cffb8eedac9adea9876ded5e587ee15205c9c | |
| parent | 98e73dc5d2dadfcb95305ad71ac9239f4e361870 (diff) | |
PM: Trivial fixes
Fix the definition of BM_BITS_PER_BLOCK and kerneldoc
description of create_bm_block_list().
[rjw: Added changelog.]
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
| -rw-r--r-- | kernel/power/snapshot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/power/snapshot.c b/kernel/power/snapshot.c index bf06658f2052..97955b0e44f4 100644 --- a/kernel/power/snapshot.c +++ b/kernel/power/snapshot.c | |||
| @@ -233,7 +233,7 @@ static void *chain_alloc(struct chain_allocator *ca, unsigned int size) | |||
| 233 | 233 | ||
| 234 | #define BM_END_OF_MAP (~0UL) | 234 | #define BM_END_OF_MAP (~0UL) |
| 235 | 235 | ||
| 236 | #define BM_BITS_PER_BLOCK (PAGE_SIZE << 3) | 236 | #define BM_BITS_PER_BLOCK (PAGE_SIZE * BITS_PER_BYTE) |
| 237 | 237 | ||
| 238 | struct bm_block { | 238 | struct bm_block { |
| 239 | struct list_head hook; /* hook into a list of bitmap blocks */ | 239 | struct list_head hook; /* hook into a list of bitmap blocks */ |
| @@ -275,7 +275,7 @@ static void memory_bm_free(struct memory_bitmap *bm, int clear_nosave_free); | |||
| 275 | 275 | ||
| 276 | /** | 276 | /** |
| 277 | * create_bm_block_list - create a list of block bitmap objects | 277 | * create_bm_block_list - create a list of block bitmap objects |
| 278 | * @nr_blocks - number of blocks to allocate | 278 | * @pages - number of pages to track |
| 279 | * @list - list to put the allocated blocks into | 279 | * @list - list to put the allocated blocks into |
| 280 | * @ca - chain allocator to be used for allocating memory | 280 | * @ca - chain allocator to be used for allocating memory |
| 281 | */ | 281 | */ |
