Lines Matching defs:PageCacheFtraceEvent
188 struct PageCacheFtraceEvent { struct
192 uint32_t cpu; // e.g. 0-7 for the cpu core number.
201 uint64_t timestamp;
203 uint32_t pid;
206 uint64_t timestamp_relative; // timestamp relative to first ftrace within a Trace protobuf.
207 bool add_to_page_cache; // AddToPageCache=true, DeleteFromPageCache=false.
216 uint64_t pfn; // page frame number (physical) - null on some devices, e.g. marlin
217 uint64_t i_ino; // inode number (use in conjunction with s_dev)
218 uint64_t index; // offset into file: this is a multiple of the page size (usually 4096).
219 uint64_t s_dev; // (dev_t) device number
220 uint64_t page; // struct page*. - null on some devices, e.g. blueline.
222 Inode inode() const { in inode()