| /linux/include/trace/events/ |
| H A D | erofs.h | 94 __field(int, uptodate) 103 __entry->uptodate = folio_test_uptodate(folio); 112 __entry->uptodate,
|
| H A D | btrfs.h | 650 bool uptodate), 652 TP_ARGS(inode, start, len, uptodate), 658 __field( bool, uptodate ) 666 __entry->uptodate = uptodate; 673 __entry->len, !!__entry->uptodate) 732 int uptodate), 734 TP_ARGS(inode, start, end, uptodate), 740 __field( int, uptodate ) 748 __entry->uptodate = uptodate; 755 __entry->end, __entry->uptodate)
|
| H A D | mmflags.h | 146 DEF_PAGEFLAG_NAME(uptodate), \
|
| H A D | f2fs.h | 1362 __field(int, uptodate) 1372 __entry->uptodate = folio_test_uptodate(folio); 1382 __entry->uptodate)
|
| /linux/fs/btrfs/ |
| H A D | ordered-data.h | 168 bool uptodate); 171 u64 num_bytes, bool uptodate);
|
| H A D | extent_io.c | 490 static void end_folio_read(struct folio *folio, bool uptodate, u64 start, u32 len) in end_folio_read() argument 497 if (uptodate && btrfs_verify_folio(folio, start, len)) in end_folio_read() 582 bool uptodate = !bio->bi_status; in end_bbio_data_read() local 593 if (likely(uptodate)) { in end_bbio_data_read() 619 end_folio_read(folio, uptodate, start, fi.length); in end_bbio_data_read() 3383 int uptodate = 1; in alloc_extent_buffer() local 3493 uptodate = 0; in alloc_extent_buffer() 3502 if (uptodate) in alloc_extent_buffer() 3811 bool uptodate = !bbio->bio.bi_status; in end_bbio_meta_read() local 3822 if (uptodate && in end_bbio_meta_read() [all …]
|
| /linux/fs/ |
| H A D | buffer.c | 143 static void __end_buffer_read_notouch(struct buffer_head *bh, int uptodate) in __end_buffer_read_notouch() argument 145 if (uptodate) { in __end_buffer_read_notouch() 158 void end_buffer_read_sync(struct buffer_head *bh, int uptodate) in end_buffer_read_sync() argument 161 __end_buffer_read_notouch(bh, uptodate); in end_buffer_read_sync() 165 void end_buffer_write_sync(struct buffer_head *bh, int uptodate) in end_buffer_write_sync() argument 167 if (uptodate) { in end_buffer_write_sync() 256 static void end_buffer_async_read(struct buffer_head *bh, int uptodate) in end_buffer_async_read() argument 267 if (uptodate) { in end_buffer_async_read() 356 static void end_buffer_async_read_io(struct buffer_head *bh, int uptodate) in end_buffer_async_read_io() argument 363 if (uptodate && (decrypt || verify)) { in end_buffer_async_read_io() [all …]
|
| /linux/fs/iomap/ |
| H A D | buffered-io.c | 82 bool uptodate = true; in iomap_set_range_uptodate() local 89 uptodate = ifs_set_range_uptodate(folio, ifs, off, len); in iomap_set_range_uptodate() 93 if (uptodate) in iomap_set_range_uptodate() 388 bool uptodate = !error; in iomap_finish_folio_read() local 396 uptodate = ifs_set_range_uptodate(folio, ifs, off, len); in iomap_finish_folio_read() 403 folio_end_read(folio, uptodate); in iomap_finish_folio_read() 456 bool end_read, uptodate; in iomap_read_end() local 482 uptodate = ifs_is_fully_uptodate(folio, ifs); in iomap_read_end() 485 folio_end_read(folio, uptodate); in iomap_read_end()
|
| /linux/include/linux/ |
| H A D | buffer_head.h | 49 typedef void (bh_end_io_t)(struct buffer_head *bh, int uptodate); 205 void end_buffer_read_sync(struct buffer_head *bh, int uptodate); 206 void end_buffer_write_sync(struct buffer_head *bh, int uptodate);
|
| H A D | page-flags.h | 834 CLEARPAGEFLAG(Uptodate, uptodate, PF_NO_TAIL)
|
| /linux/fs/ocfs2/ |
| H A D | Makefile | 39 uptodate.o \
|
| /linux/Documentation/filesystems/iomap/ |
| H A D | operations.rst | 32 mapping, managing uptodate and dirty state, or writeback of pagecache 164 The uptodate (memory contents are at least as new as what's on disk) and 169 tracks the per-fsblock uptodate and dirty state itself. 176 * ``uptodate``: iomap will try to keep folios fully up to date. 178 uptodate. 179 The folio itself will be marked uptodate when all fsblocks within the 180 folio are uptodate. 726 Regions of the pagecache with a folio mapped and uptodate fsblocks 741 Regions of the pagecache with no folio mapped, or a !uptodate fsblock
|
| /linux/fs/f2fs/ |
| H A D | compress.c | 845 int index, int nr_pages, bool uptodate) in f2fs_all_cluster_page_ready() argument 848 int i = uptodate ? 0 : 1; in f2fs_all_cluster_page_ready() 854 if (uptodate && (pgidx % cc->cluster_size)) in f2fs_all_cluster_page_ready() 865 if (uptodate && !folio_test_uptodate(folio)) in f2fs_all_cluster_page_ready()
|
| H A D | f2fs.h | 4546 int index, int nr_pages, bool uptodate);
|
| /linux/Documentation/translations/zh_CN/core-api/ |
| H A D | printk-formats.rst | 551 %pGp 0x17ffffc0002036(referenced|uptodate|lru|active|private|node=0|zone=2|lastcpupid=0x1fffff)
|
| /linux/drivers/md/ |
| H A D | raid5.c | 3878 if ((s->uptodate == disks - 1) && in fetch_block() 3899 s->uptodate++; in fetch_block() 3901 } else if (s->uptodate == disks-2 && s->failed >= 2) { in fetch_block() 3923 s->uptodate += 2; in fetch_block() 4277 BUG_ON(s->uptodate != disks); in handle_parity_checks5() 4281 s->uptodate--; in handle_parity_checks5() 4297 BUG_ON(s->uptodate != disks); in handle_parity_checks5() 4343 s->uptodate++; in handle_parity_checks5() 4402 s->uptodate--; in handle_parity_checks6() 4512 s->uptodate++; in handle_parity_checks6() [all …]
|
| /linux/Documentation/filesystems/nfs/ |
| H A D | rpc-cache.rst | 126 done when the found cache item is not uptodate, but the is reason to
|
| /linux/fs/ext4/ |
| H A D | fast_commit.c | 186 static void ext4_end_buffer_io_sync(struct buffer_head *bh, int uptodate) in ext4_end_buffer_io_sync() argument 189 if (uptodate) { in ext4_end_buffer_io_sync()
|
| /linux/Documentation/core-api/ |
| H A D | printk-formats.rst | 608 %pGp 0x17ffffc0002036(referenced|uptodate|lru|active|private|node=0|zone=2|lastcpupid=0x1fffff)
|
| /linux/fs/ceph/ |
| H A D | caps.c | 3143 bool uptodate = PageUptodate(page); in __ceph_get_caps() local 3146 if (uptodate) in __ceph_get_caps()
|
| /linux/Documentation/filesystems/ |
| H A D | vfs.rst | 838 be marked uptodate. The filesystem should unlock the folio 968 clear the uptodate flag if it cannot free private data yet.
|