1607ca46eSDavid Howells #ifndef _LINUX_VIRTIO_BALLOON_H 2607ca46eSDavid Howells #define _LINUX_VIRTIO_BALLOON_H 3607ca46eSDavid Howells /* This header is BSD licensed so anyone can use the definitions to implement 4607ca46eSDavid Howells * compatible drivers/servers. 5607ca46eSDavid Howells * 6607ca46eSDavid Howells * Redistribution and use in source and binary forms, with or without 7607ca46eSDavid Howells * modification, are permitted provided that the following conditions 8607ca46eSDavid Howells * are met: 9607ca46eSDavid Howells * 1. Redistributions of source code must retain the above copyright 10607ca46eSDavid Howells * notice, this list of conditions and the following disclaimer. 11607ca46eSDavid Howells * 2. Redistributions in binary form must reproduce the above copyright 12607ca46eSDavid Howells * notice, this list of conditions and the following disclaimer in the 13607ca46eSDavid Howells * documentation and/or other materials provided with the distribution. 14607ca46eSDavid Howells * 3. Neither the name of IBM nor the names of its contributors 15607ca46eSDavid Howells * may be used to endorse or promote products derived from this software 16607ca46eSDavid Howells * without specific prior written permission. 17607ca46eSDavid Howells * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND 18607ca46eSDavid Howells * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19607ca46eSDavid Howells * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20607ca46eSDavid Howells * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE 21607ca46eSDavid Howells * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22607ca46eSDavid Howells * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23607ca46eSDavid Howells * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24607ca46eSDavid Howells * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25607ca46eSDavid Howells * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26607ca46eSDavid Howells * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27607ca46eSDavid Howells * SUCH DAMAGE. */ 28df81b29cSMichael S. Tsirkin #include <linux/types.h> 298a7b19d8SMikko Rapeli #include <linux/virtio_types.h> 30607ca46eSDavid Howells #include <linux/virtio_ids.h> 31607ca46eSDavid Howells #include <linux/virtio_config.h> 32607ca46eSDavid Howells 33607ca46eSDavid Howells /* The feature bitmap for virtio balloon */ 34607ca46eSDavid Howells #define VIRTIO_BALLOON_F_MUST_TELL_HOST 0 /* Tell before reclaiming pages */ 35607ca46eSDavid Howells #define VIRTIO_BALLOON_F_STATS_VQ 1 /* Memory Stats virtqueue */ 365a10b7dbSRaushaniya Maksudova #define VIRTIO_BALLOON_F_DEFLATE_ON_OOM 2 /* Deflate balloon on OOM */ 3786a55978SWei Wang #define VIRTIO_BALLOON_F_FREE_PAGE_HINT 3 /* VQ to report free pages */ 382e991629SWei Wang #define VIRTIO_BALLOON_F_PAGE_POISON 4 /* Guest is using page poisoning */ 39b0c504f1SAlexander Duyck #define VIRTIO_BALLOON_F_REPORTING 5 /* Page reporting virtqueue */ 40607ca46eSDavid Howells 41607ca46eSDavid Howells /* Size of a PFN in the balloon interface. */ 42607ca46eSDavid Howells #define VIRTIO_BALLOON_PFN_SHIFT 12 43607ca46eSDavid Howells 4486a55978SWei Wang #define VIRTIO_BALLOON_CMD_ID_STOP 0 4586a55978SWei Wang #define VIRTIO_BALLOON_CMD_ID_DONE 1 4625e65e4eSMichael S. Tsirkin struct virtio_balloon_config { 47607ca46eSDavid Howells /* Number of pages host wants Guest to give up. */ 48c73cb10cSMichael S. Tsirkin __le32 num_pages; 49607ca46eSDavid Howells /* Number of pages we've actually got in balloon. */ 50c73cb10cSMichael S. Tsirkin __le32 actual; 5131ba514bSAlexander Duyck /* 5231ba514bSAlexander Duyck * Free page hint command id, readonly by guest. 5331ba514bSAlexander Duyck * Was previously named free_page_report_cmd_id so we 5431ba514bSAlexander Duyck * need to carry that name for legacy support. 5531ba514bSAlexander Duyck */ 5631ba514bSAlexander Duyck union { 57c73cb10cSMichael S. Tsirkin __le32 free_page_hint_cmd_id; 58c73cb10cSMichael S. Tsirkin __le32 free_page_report_cmd_id; /* deprecated */ 5931ba514bSAlexander Duyck }; 602e991629SWei Wang /* Stores PAGE_POISON if page poisoning is in use */ 61c73cb10cSMichael S. Tsirkin __le32 poison_val; 62607ca46eSDavid Howells }; 63607ca46eSDavid Howells 64607ca46eSDavid Howells #define VIRTIO_BALLOON_S_SWAP_IN 0 /* Amount of memory swapped in */ 65607ca46eSDavid Howells #define VIRTIO_BALLOON_S_SWAP_OUT 1 /* Amount of memory swapped out */ 66607ca46eSDavid Howells #define VIRTIO_BALLOON_S_MAJFLT 2 /* Number of major faults */ 67607ca46eSDavid Howells #define VIRTIO_BALLOON_S_MINFLT 3 /* Number of minor faults */ 68607ca46eSDavid Howells #define VIRTIO_BALLOON_S_MEMFREE 4 /* Total amount of free memory */ 69607ca46eSDavid Howells #define VIRTIO_BALLOON_S_MEMTOT 5 /* Total amount of memory */ 705057dcd0SIgor Redko #define VIRTIO_BALLOON_S_AVAIL 6 /* Available memory as in /proc */ 714d32029bSTomáš Golembiovský #define VIRTIO_BALLOON_S_CACHES 7 /* Disk caches */ 726c64fe7fSJonathan Helman #define VIRTIO_BALLOON_S_HTLB_PGALLOC 8 /* Hugetlb page allocations */ 736c64fe7fSJonathan Helman #define VIRTIO_BALLOON_S_HTLB_PGFAIL 9 /* Hugetlb page allocation failures */ 746cf1c97dSzhenwei pi #define VIRTIO_BALLOON_S_OOM_KILL 10 /* OOM killer invocations */ 75c5b70a26Szhenwei pi #define VIRTIO_BALLOON_S_ALLOC_STALL 11 /* Stall count of memory allocatoin */ 76*74c025c5Szhenwei pi #define VIRTIO_BALLOON_S_ASYNC_SCAN 12 /* Amount of memory scanned asynchronously */ 77*74c025c5Szhenwei pi #define VIRTIO_BALLOON_S_DIRECT_SCAN 13 /* Amount of memory scanned directly */ 78*74c025c5Szhenwei pi #define VIRTIO_BALLOON_S_ASYNC_RECLAIM 14 /* Amount of memory reclaimed asynchronously */ 79*74c025c5Szhenwei pi #define VIRTIO_BALLOON_S_DIRECT_RECLAIM 15 /* Amount of memory reclaimed directly */ 80*74c025c5Szhenwei pi #define VIRTIO_BALLOON_S_NR 16 81607ca46eSDavid Howells 82b4000032SMichael S. Tsirkin #define VIRTIO_BALLOON_S_NAMES_WITH_PREFIX(VIRTIO_BALLOON_S_NAMES_prefix) { \ 83b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "swap-in", \ 84b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "swap-out", \ 85b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "major-faults", \ 86b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "minor-faults", \ 87b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "free-memory", \ 88b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "total-memory", \ 89b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "available-memory", \ 90b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "disk-caches", \ 91b4000032SMichael S. Tsirkin VIRTIO_BALLOON_S_NAMES_prefix "hugetlb-allocations", \ 926cf1c97dSzhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "hugetlb-failures", \ 93c5b70a26Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "oom-kills", \ 94*74c025c5Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "alloc-stalls", \ 95*74c025c5Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "async-scans", \ 96*74c025c5Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "direct-scans", \ 97*74c025c5Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "async-reclaims", \ 98*74c025c5Szhenwei pi VIRTIO_BALLOON_S_NAMES_prefix "direct-reclaims" \ 99b4000032SMichael S. Tsirkin } 100b4000032SMichael S. Tsirkin 101b4000032SMichael S. Tsirkin #define VIRTIO_BALLOON_S_NAMES VIRTIO_BALLOON_S_NAMES_WITH_PREFIX("") 102b4000032SMichael S. Tsirkin 103df81b29cSMichael S. Tsirkin /* 104df81b29cSMichael S. Tsirkin * Memory statistics structure. 105df81b29cSMichael S. Tsirkin * Driver fills an array of these structures and passes to device. 106df81b29cSMichael S. Tsirkin * 107df81b29cSMichael S. Tsirkin * NOTE: fields are laid out in a way that would make compiler add padding 108df81b29cSMichael S. Tsirkin * between and after fields, so we have to use compiler-specific attributes to 109df81b29cSMichael S. Tsirkin * pack it, to disable this padding. This also often causes compiler to 110df81b29cSMichael S. Tsirkin * generate suboptimal code. 111df81b29cSMichael S. Tsirkin * 112df81b29cSMichael S. Tsirkin * We maintain this statistics structure format for backwards compatibility, 113df81b29cSMichael S. Tsirkin * but don't follow this example. 114df81b29cSMichael S. Tsirkin * 115df81b29cSMichael S. Tsirkin * If implementing a similar structure, do something like the below instead: 116df81b29cSMichael S. Tsirkin * struct virtio_balloon_stat { 117df81b29cSMichael S. Tsirkin * __virtio16 tag; 118df81b29cSMichael S. Tsirkin * __u8 reserved[6]; 119df81b29cSMichael S. Tsirkin * __virtio64 val; 120df81b29cSMichael S. Tsirkin * }; 121df81b29cSMichael S. Tsirkin * 122df81b29cSMichael S. Tsirkin * In other words, add explicit reserved fields to align field and 123df81b29cSMichael S. Tsirkin * structure boundaries at field size, avoiding compiler padding 124df81b29cSMichael S. Tsirkin * without the packed attribute. 125df81b29cSMichael S. Tsirkin */ 126607ca46eSDavid Howells struct virtio_balloon_stat { 127df81b29cSMichael S. Tsirkin __virtio16 tag; 128df81b29cSMichael S. Tsirkin __virtio64 val; 129607ca46eSDavid Howells } __attribute__((packed)); 130607ca46eSDavid Howells 131607ca46eSDavid Howells #endif /* _LINUX_VIRTIO_BALLOON_H */ 132