mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
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>
This commit is contained in:
parent
98e73dc5d2
commit
8de0307326
1 changed files with 2 additions and 2 deletions
|
@ -233,7 +233,7 @@ static void *chain_alloc(struct chain_allocator *ca, unsigned int size)
|
||||||
|
|
||||||
#define BM_END_OF_MAP (~0UL)
|
#define BM_END_OF_MAP (~0UL)
|
||||||
|
|
||||||
#define BM_BITS_PER_BLOCK (PAGE_SIZE << 3)
|
#define BM_BITS_PER_BLOCK (PAGE_SIZE * BITS_PER_BYTE)
|
||||||
|
|
||||||
struct bm_block {
|
struct bm_block {
|
||||||
struct list_head hook; /* hook into a list of bitmap blocks */
|
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);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* create_bm_block_list - create a list of block bitmap objects
|
* create_bm_block_list - create a list of block bitmap objects
|
||||||
* @nr_blocks - number of blocks to allocate
|
* @pages - number of pages to track
|
||||||
* @list - list to put the allocated blocks into
|
* @list - list to put the allocated blocks into
|
||||||
* @ca - chain allocator to be used for allocating memory
|
* @ca - chain allocator to be used for allocating memory
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue