1. NAME

try_to_release_page - release old fs-specific metadata on a page

2. SYNOPSIS

int try_to_release_page(struct page *  page , gfp_t  gfp_mask );

3. ARGUMENTS

page
    the page which the kernel is trying to free

gfp_mask
    memory allocation flags (and I/O mode)

4. DESCRIPTION

The address_space is to try to release any data against the page (presumably at page->private). If the release was successful, return `1Aq. Otherwise return zero.

This may also be called if PG_fscache is set on a page, indicating that the page is known to the local caching routines.

The gfp_mask argument specifies whether I/O may be performed to release this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).

5. COPYRIGHT