/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | mm.py | 22 class page_ops(): class 294 page = page_ops().ops.pfn_to_page(pfn) 309 pfn = page_ops().ops.page_to_pfn(page) 324 addr = page_ops().ops.page_address(page) 339 phys_addr = page_ops().ops.page_to_phys(page) 353 phys_addr = page_ops().ops.virt_to_phys(linear_addr) 367 page = page_ops().ops.virt_to_page(linear_addr) 381 pfn = page_ops().ops.sym_to_pfn(sym_addr) 395 kaddr = page_ops().ops.pfn_to_kaddr(pfn)
|
H A D | slab.py | 42 p_ops = mm.page_ops().ops 62 p = mm.page_ops().ops.kasan_reset_tag(obj) 86 return reciprocal_divide(int(mm.page_ops().ops.kasan_reset_tag(obj)) - addr, cache['reciprocal_size']) 106 obj = mm.page_ops().ops.kasan_reset_tag(obj) 182 if mm.page_ops().ops.MAX_NUMNODES > 1: 294 if mm.page_ops().ops.MAX_NUMNODES > 1:
|
H A D | vmalloc.py | 18 pg_ops = mm.page_ops().ops
|
H A D | page_owner.py | 49 self.p_ops = mm.page_ops().ops
|
/kernel/linux/linux-5.10/fs/iomap/ |
H A D | buffered-io.c | 595 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_begin() local 606 if (page_ops && page_ops->page_prepare) { in iomap_write_begin() 607 status = page_ops->page_prepare(inode, pos, len, iomap); in iomap_write_begin() 639 if (page_ops && page_ops->page_done) in iomap_write_begin() 640 page_ops->page_done(inode, pos, 0, NULL, iomap); in iomap_write_begin() 714 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_end() local [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | iomap.h | 90 const struct iomap_page_ops *page_ops; member 100 * When a filesystem sets page_ops in an iomap mapping it returns, page_prepare
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | extent_io.h | 291 u32 bits_to_clear, unsigned long page_ops);
|
H A D | extent_io.c | 186 unsigned long page_ops, u64 start, u64 end) in process_one_page() 193 if (page_ops & PAGE_SET_ORDERED) in process_one_page() 195 if (page_ops & PAGE_START_WRITEBACK) { in process_one_page() 199 if (page_ops & PAGE_END_WRITEBACK) in process_one_page() 202 if (page != locked_page && (page_ops & PAGE_UNLOCK)) in process_one_page() 208 unsigned long page_ops) in __process_pages_contig() 227 page_ops, start, end); in __process_pages_contig() 416 u32 clear_bits, unsigned long page_ops) in extent_clear_unlock_delalloc() 421 start, end, page_ops); in extent_clear_unlock_delalloc() 184 process_one_page(struct btrfs_fs_info *fs_info, struct page *page, struct page *locked_page, unsigned long page_ops, u64 start, u64 end) process_one_page() argument 206 __process_pages_contig(struct address_space *mapping, struct page *locked_page, u64 start, u64 end, unsigned long page_ops) __process_pages_contig() argument 414 extent_clear_unlock_delalloc(struct btrfs_inode *inode, u64 start, u64 end, struct page *locked_page, u32 clear_bits, unsigned long page_ops) extent_clear_unlock_delalloc() argument
|
H A D | inode.c | 1290 unsigned long page_ops; in cow_file_range() local 1465 page_ops = (keep_locked ? 0 : PAGE_UNLOCK); in cow_file_range() 1466 page_ops |= PAGE_SET_ORDERED; in cow_file_range() 1471 page_ops); in cow_file_range() 1510 page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK | PAGE_END_WRITEBACK; in cow_file_range() 1528 locked_page, 0, page_ops); in cow_file_range() 1546 page_ops); in cow_file_range() 1559 clear_bits, page_ops); in cow_file_range()
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | extent_io.c | 1813 unsigned long page_ops, pgoff_t *index_ret); 1944 unsigned long page_ops, pgoff_t *index_ret) in __process_pages_contig() 1954 if (page_ops & PAGE_LOCK) { in __process_pages_contig() 1955 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig() 1959 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0) in __process_pages_contig() 1971 ASSERT(page_ops & PAGE_LOCK); in __process_pages_contig() 1977 if (page_ops & PAGE_SET_PRIVATE2) in __process_pages_contig() 1985 if (page_ops & PAGE_CLEAR_DIRTY) in __process_pages_contig() 1987 if (page_ops & PAGE_SET_WRITEBACK) in __process_pages_contig() 1989 if (page_ops in __process_pages_contig() 1941 __process_pages_contig(struct address_space *mapping, struct page *locked_page, pgoff_t start_index, pgoff_t end_index, unsigned long page_ops, pgoff_t *index_ret) __process_pages_contig() argument 2019 extent_clear_unlock_delalloc(struct btrfs_inode *inode, u64 start, u64 end, struct page *locked_page, unsigned clear_bits, unsigned long page_ops) extent_clear_unlock_delalloc() argument [all...] |
H A D | extent_io.h | 274 unsigned long page_ops);
|
H A D | inode.c | 993 unsigned long page_ops; in cow_file_range() local 1112 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range() 1113 page_ops |= PAGE_SET_PRIVATE2; in cow_file_range() 1118 page_ops); in cow_file_range() 1146 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | in cow_file_range() 1163 page_ops); in cow_file_range() 1170 page_ops); in cow_file_range() 1272 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | in cow_file_range_async() local 1277 clear_bits, page_ops); in cow_file_range_async()
|
/kernel/linux/linux-5.10/fs/gfs2/ |
H A D | bmap.c | 1133 iomap->page_ops = &gfs2_iomap_page_ops; in gfs2_iomap_begin_write()
|