Home
last modified time | relevance | path

Searched refs:hpage (Results 1 – 6 of 6) sorted by relevance

/linux/fs/verity/
H A Dverify.c86 static bool is_hash_block_verified(struct fsverity_info *vi, struct page *hpage, in is_hash_block_verified() argument
102 return PageChecked(hpage); in is_hash_block_verified()
127 if (PageChecked(hpage)) { in is_hash_block_verified()
144 SetPageChecked(hpage); in is_hash_block_verified()
224 struct page *hpage; in verify_data_block() local
247 hpage = inode->i_sb->s_vop->read_merkle_tree_page(inode, in verify_data_block()
249 if (IS_ERR(hpage)) { in verify_data_block()
252 PTR_ERR(hpage), hpage_idx); in verify_data_block()
255 haddr = kmap_local_page(hpage) + hblock_offset_in_page; in verify_data_block()
256 if (is_hash_block_verified(vi, hpage, hblock_idx)) { in verify_data_block()
[all …]
/linux/io_uring/
H A Drsrc.c614 int nr_pages, struct page *hpage) in headpage_already_acct() argument
622 if (compound_head(pages[i]) == hpage) in headpage_already_acct()
637 if (compound_head(imu->bvec[j].bv_page) == hpage) in headpage_already_acct()
656 struct page *hpage; in io_buffer_account_pin() local
658 hpage = compound_head(pages[i]); in io_buffer_account_pin()
659 if (hpage == *last_hpage) in io_buffer_account_pin()
661 *last_hpage = hpage; in io_buffer_account_pin()
662 if (headpage_already_acct(ctx, pages, i, hpage)) in io_buffer_account_pin()
664 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT; in io_buffer_account_pin()
/linux/tools/testing/selftests/drivers/dma-buf/
H A Dudmabuf.c28 static int create_memfd_with_seals(off64_t size, bool hpage) in create_memfd_with_seals() argument
33 if (hpage) in create_memfd_with_seals()
/linux/Documentation/virt/kvm/x86/
H A Drunning-nested-guests.rst171 .. note:: On s390x, the kernel parameter ``hpage`` is mutually exclusive
173 ``nested``, the ``hpage`` parameter *must* be disabled.
/linux/arch/s390/kvm/
H A Dkvm-s390.c208 static int hpage; variable
209 module_param(hpage, int, 0444);
210 MODULE_PARM_DESC(hpage, "1m huge page backing support");
640 if (hpage && !(kvm && kvm_is_ucontrol(kvm))) in kvm_vm_ioctl_check_extension()
882 else if (!hpage || kvm->arch.use_cmma || kvm_is_ucontrol(kvm)) in kvm_vm_ioctl_enable_cap()
/linux/kernel/trace/
H A Dring_buffer.c2860 struct buffer_page *hpage = rb_set_head_page(cpu_buffer); in rb_insert_pages() local
2862 if (!hpage) in rb_insert_pages()
2864 head_page = &hpage->list; in rb_insert_pages()