Searched refs:page_ofs (Results 1 – 5 of 5) sorted by relevance
/linux-3.4.99/drivers/base/ |
D | firmware_class.c | 316 int page_ofs = offset & (PAGE_SIZE-1); in firmware_data_read() local 317 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count); in firmware_data_read() 321 memcpy(buffer, page_data + page_ofs, page_cnt); in firmware_data_read() 410 int page_ofs = offset & (PAGE_SIZE - 1); in firmware_data_write() local 411 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count); in firmware_data_write() 415 memcpy(page_data + page_ofs, buffer, page_cnt); in firmware_data_write()
|
/linux-3.4.99/fs/ntfs/ |
D | mft.c | 90 ni->page_ofs = ofs; in map_mft_record_page() 101 ni->page_ofs = 0; in map_mft_record_page() 198 ni->page_ofs = 0; in unmap_mft_record_page() 401 mark_ntfs_record_dirty(ni->page, ni->page_ofs); in __mark_mft_record_dirty() 475 unsigned int block_start, block_end, m_start, m_end, page_ofs; in ntfs_sync_mft_mirror() local 500 page_ofs = (mft_no << vol->mft_record_size_bits) & ~PAGE_CACHE_MASK; in ntfs_sync_mft_mirror() 502 kmirr = page_address(page) + page_ofs; in ntfs_sync_mft_mirror() 699 m_start = ni->page_ofs; in write_mft_record_nolock() 1139 unsigned int page_ofs, size; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() local 1181 page_ofs = ofs & ~PAGE_CACHE_MASK; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() [all …]
|
D | inode.h | 90 int page_ofs; /* Offset into the page at which the mft record member
|
D | inode.c | 404 ni->page_ofs = 0; in __ntfs_init_inode() 3050 ctx->ntfs_ino->page_ofs); in __ntfs_write_inode()
|
/linux-3.4.99/fs/logfs/ |
D | journal.c | 560 int page_ofs; in write_wbuf() local 566 page_ofs = ofs & (PAGE_SIZE - 1); in write_wbuf() 570 memcpy(wbuf, page_address(page) + page_ofs, super->s_writesize); in write_wbuf()
|