Lines Matching refs:dst
197 static void nilfs_copy_page(struct page *dst, struct page *src, int copy_dirty) in nilfs_copy_page() argument
202 BUG_ON(PageWriteback(dst)); in nilfs_copy_page()
205 if (!page_has_buffers(dst)) in nilfs_copy_page()
206 create_empty_buffers(dst, sbh->b_size, 0); in nilfs_copy_page()
211 dbh = dbufs = page_buffers(dst); in nilfs_copy_page()
222 copy_highpage(dst, src); in nilfs_copy_page()
224 if (PageUptodate(src) && !PageUptodate(dst)) in nilfs_copy_page()
225 SetPageUptodate(dst); in nilfs_copy_page()
226 else if (!PageUptodate(src) && PageUptodate(dst)) in nilfs_copy_page()
227 ClearPageUptodate(dst); in nilfs_copy_page()
228 if (PageMappedToDisk(src) && !PageMappedToDisk(dst)) in nilfs_copy_page()
229 SetPageMappedToDisk(dst); in nilfs_copy_page()
230 else if (!PageMappedToDisk(src) && PageMappedToDisk(dst)) in nilfs_copy_page()
231 ClearPageMappedToDisk(dst); in nilfs_copy_page()