Lines Matching refs:npages
332 vtballoon_inflate(struct vtballoon_softc *sc, int npages) in vtballoon_inflate() argument
340 if (npages > VTBALLOON_PAGES_PER_REQUEST) in vtballoon_inflate()
341 npages = VTBALLOON_PAGES_PER_REQUEST; in vtballoon_inflate()
343 for (i = 0; i < npages; i++) { in vtballoon_inflate()
362 vtballoon_deflate(struct vtballoon_softc *sc, int npages) in vtballoon_deflate() argument
372 if (npages > VTBALLOON_PAGES_PER_REQUEST) in vtballoon_deflate()
373 npages = VTBALLOON_PAGES_PER_REQUEST; in vtballoon_deflate()
375 for (i = 0; i < npages; i++) { in vtballoon_deflate()
406 int npages) in vtballoon_send_page_frames() argument
416 npages * sizeof(uint32_t)); in vtballoon_send_page_frames()
490 uint32_t npages; in vtballoon_update_size() local
492 npages = sc->vtballoon_current_npages; in vtballoon_update_size()
494 npages = htole32(npages); in vtballoon_update_size()
497 offsetof(struct virtio_balloon_config, actual), npages); in vtballoon_update_size()