Home
last modified time | relevance | path

Searched refs:PAGE_CACHE_BITS (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/fs/hfsplus/
Dbitmap.c16 #define PAGE_CACHE_BITS (PAGE_CACHE_SIZE * 8) macro
36 page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS, NULL); in hfsplus_block_allocate()
42 curr = pptr + (offset & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
44 offset &= ~(PAGE_CACHE_BITS - 1); in hfsplus_block_allocate()
45 if ((size ^ offset) / PAGE_CACHE_BITS) in hfsplus_block_allocate()
46 end = pptr + PAGE_CACHE_BITS / 32; in hfsplus_block_allocate()
48 end = pptr + ((size + 31) & (PAGE_CACHE_BITS - 1)) / 32; in hfsplus_block_allocate()
77 offset += PAGE_CACHE_BITS; in hfsplus_block_allocate()
80 page = read_mapping_page(mapping, offset / PAGE_CACHE_BITS, in hfsplus_block_allocate()
87 if ((size ^ offset) / PAGE_CACHE_BITS) in hfsplus_block_allocate()
[all …]