All of lore.kernel.org
 help / color / mirror / Atom feed
* Page Cache Monitoring ( Hit/Miss )
@ 2015-12-10  9:42 Allan McAleavy
  2015-12-11 15:22 ` Allan McAleavy
  0 siblings, 1 reply; 2+ messages in thread
From: Allan McAleavy @ 2015-12-10  9:42 UTC (permalink / raw)
  To: linux-mm

[-- Attachment #1: Type: text/plain, Size: 524 bytes --]

Hi Folks,

I am working on a rewrite of Brendan Greggs original cachestat (ftrace)
script into bcc. What I was looking for was a steer in the right direction
for what functions to trace. At present I trace the following.

add_to_page_cache_lru
account_page_dirtied
mark_page_accessed
mark_buffer_dirty

Where total = (mark_page_accessed - mark_buffer_dirty) & misses =
(add_to_page_cache_lru - account_page_dirtied), from this I then work out
the hit ratio etc. Is there any other key functions I should be tracing?

Thanks

[-- Attachment #2: Type: text/html, Size: 1361 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Page Cache Monitoring ( Hit/Miss )
  2015-12-10  9:42 Page Cache Monitoring ( Hit/Miss ) Allan McAleavy
@ 2015-12-11 15:22 ` Allan McAleavy
  0 siblings, 0 replies; 2+ messages in thread
From: Allan McAleavy @ 2015-12-11 15:22 UTC (permalink / raw)
  To: linux-mm

[-- Attachment #1: Type: text/plain, Size: 2077 bytes --]

We add a page to the page cache using add_to_page_cache_lru based on the
following assumptions

READ MISS - So add an entry
no_cached_page - so we need to create one from
do_generic_file_read - during a file read operation
page_cache_read - calls add_to_page_cache_lru

CREATE A PAGE
struct page *__page_cache_alloc(gfp_t gfp)

page has flags which identify if dirty or free

Writes
add_to_page_cache
writepage / writepages
set_page_dirty_buffers
do_generic_mapping_read  - ASYNC read of pages in readahed?
__block_write_full_page

READ
find_get_pages


mark_page_accessed() for measuring cache accesses
mark_buffer_dirty() for measuring cache writes
add_to_page_cache_lru() for measuring page additions
account_page_dirtied() for measuring page dirties


 (mark_page_accessed - mark_buffer_dirty) & misses = (add_to_page_cache_lru
- account_page_dirtied),
 from this I then work out the hit ratio etc. Is there any other key
functions I should be tracing?

add_to_page_cache_lru
lru_cache_add
swap.c
filemap.c
vmscan.c

Functions used
lru_cache_add_active_or_unevictable
add_to_page_cache_lru
putback_lru_page

So best use lru_cache_add for additions.

account_page_dirtied() for measuring page dirties
set_page_dirty - calls above
__set_page_dirty_nobuffers - calls above also

mark_buffer_dirty() for measuring cache writes - this calls
__set_page_dirty ( are we getting twice the calls here? )
mark_page_accessed - calls SetPageActive

On Thu, Dec 10, 2015 at 9:42 AM, Allan McAleavy <allan.mcaleavy@gmail.com>
wrote:

> Hi Folks,
>
> I am working on a rewrite of Brendan Greggs original cachestat (ftrace)
> script into bcc. What I was looking for was a steer in the right direction
> for what functions to trace. At present I trace the following.
>
> add_to_page_cache_lru
> account_page_dirtied
> mark_page_accessed
> mark_buffer_dirty
>
> Where total = (mark_page_accessed - mark_buffer_dirty) & misses =
> (add_to_page_cache_lru - account_page_dirtied), from this I then work out
> the hit ratio etc. Is there any other key functions I should be tracing?
>
> Thanks
>

[-- Attachment #2: Type: text/html, Size: 3778 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-11 15:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-10  9:42 Page Cache Monitoring ( Hit/Miss ) Allan McAleavy
2015-12-11 15:22 ` Allan McAleavy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.