Symbol: uvm_physseg_plug
sys/arch/xen/xen/balloon.c
506
if (uvm_physseg_plug(atop(pa), 1, NULL) == false) {
sys/uvm/uvm_physseg.c
1257
if (uvm_physseg_plug(start, end - start, &upm) == false) {
sys/uvm/uvm_physseg.h
134
bool uvm_physseg_plug(paddr_t, size_t, uvm_physseg_t *);
tests/sys/uvm/t_uvm_physseg.c
2338
ATF_TP_ADD_TC(tp, uvm_physseg_plug);
tests/sys/uvm/t_uvm_physseg.c
456
ATF_TC(uvm_physseg_plug);
tests/sys/uvm/t_uvm_physseg.c
457
ATF_TC_HEAD(uvm_physseg_plug, tc)
tests/sys/uvm/t_uvm_physseg.c
463
ATF_TC_BODY(uvm_physseg_plug, tc)
tests/sys/uvm/t_uvm_physseg.c
490
ATF_REQUIRE_EQ(uvm_physseg_plug(VALID_START_PFN_1, npages1, &upm1), true);
tests/sys/uvm/t_uvm_physseg.c
495
ATF_REQUIRE_EQ(uvm_physseg_plug(VALID_START_PFN_2, npages2, &upm2), true);
tests/sys/uvm/t_uvm_physseg.c
509
ATF_REQUIRE_EQ(uvm_physseg_plug(VALID_START_PFN_3, npages3, &upm3), true);
tests/sys/uvm/t_uvm_physseg.c
522
ATF_REQUIRE_EQ(uvm_physseg_plug(VALID_START_PFN_4, npages4, &upm4), true);
tests/sys/uvm/t_uvm_physseg.c
554
ATF_REQUIRE_EQ(true, uvm_physseg_plug(atop(0), atop(ONE_MEGABYTE), NULL));
tests/sys/uvm/t_uvm_physseg_load.c
549
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_1, npages1, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
555
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_2, npages2, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
598
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_1, npages1, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
604
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_3, npages2, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
647
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_1, npages1, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
653
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_2, npages2, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
695
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_1, npages1, NULL));
tests/sys/uvm/t_uvm_physseg_load.c
701
ATF_REQUIRE_EQ(true, uvm_physseg_plug(VALID_START_PFN_2, npages2, NULL));