Searched refs:tmp_page (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ecryptfs/
H A Dsuper.c151 char *tmp_page; local
155 tmp_page = (char *)__get_free_page(GFP_KERNEL);
156 if (!tmp_page) {
160 path = d_path(lower_root_dentry, lower_mnt, tmp_page, PAGE_SIZE);
166 free_page((unsigned long)tmp_page);
H A Dmmap.c777 struct page *tmp_page; local
779 tmp_page = ecryptfs_get1page(file, index);
780 if (IS_ERR(tmp_page)) {
783 rc = PTR_ERR(tmp_page);
786 if ((rc = ecryptfs_prepare_write_no_truncate(file, tmp_page, start,
791 page_cache_release(tmp_page);
794 zero_user_page(tmp_page, start, num_zeros, KM_USER0);
795 rc = ecryptfs_commit_write(file, tmp_page, start, start + num_zeros);
800 page_cache_release(tmp_page);
804 page_cache_release(tmp_page);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dpipe_fs_i.h22 struct page *tmp_page; member in struct:pipe_inode_info
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/
H A Dpipe.c161 if (page_count(page) == 1 && !pipe->tmp_page)
162 pipe->tmp_page = page;
416 struct page *page = pipe->tmp_page;
426 pipe->tmp_page = page;
464 pipe->tmp_page = NULL;
815 if (pipe->tmp_page)
816 __free_page(pipe->tmp_page);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/cifs/
H A Dfile.c1721 struct page *tmp_page; local
1734 list_for_each_entry_reverse(tmp_page,page_list,lru) {
1735 if (tmp_page->index == expected_index) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/md/
H A Draid5.c1885 static void handle_stripe6(struct stripe_head *sh, struct page *tmp_page) argument
2261 /* If !tmp_page, we cannot do the calculations,
2263 * by stripe_handle with a tmp_page - just wait until then.
2265 if (tmp_page) {
2281 memcpy(page_address(tmp_page),
2285 if (memcmp(page_address(tmp_page),
2505 static void handle_stripe(struct stripe_head *sh, struct page *tmp_page) argument
2508 handle_stripe6(sh, tmp_page);

Completed in 104 milliseconds