Changeset 5086 in vbox for trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
- Timestamp:
- Sep 27, 2007 10:12:53 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24920
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r5064 r5086 68 68 * 69 69 * 70 * @section sec_gmm_ costsPage Allocation Strategy70 * @section sec_gmm_alloc_strat Page Allocation Strategy 71 71 * 72 72 * The strategy for allocating pages has to take fragmentation and shared … … 423 423 GMMCHUNKFREESET Shared; 424 424 425 /** The number of allocated pages. */ 426 uint64_t cPages; 425 /** The maximum number of pages we're allowed to allocate. 426 * @gcfgm 64-bit GMM/MaxPages Direct. 427 * @gcfgm 32-bit GMM/PctPages Relative to the number of host pages. */ 428 uint64_t cMaxPages; 429 /** The number of pages that has been reserved. 430 * The deal is that cReservedPages - cOverCommittedPages <= cMaxPages. */ 431 uint64_t cReservedPages; 432 /** The number of pages that we have over-committed in reservations. */ 433 uint64_t cOverCommittedPages; 434 /** The number of actually allocated (committed if you like) pages. */ 435 uint64_t cAllocatedPages; 436 /** The number of pages that are shared. A subset of cAllocatedPages. */ 437 uint64_t cSharedPages; 438 /** The number of allocation chunks. 439 * (The number of pages we've allocated from the host can be derived from this.) */ 440 uint32_t cChunks; 441 427 442 /** The legacy mode indicator. 428 443 * This is determined at initialization time. */ 429 444 bool fLegacyMode; 430 /** The number of activeVMs. */431 uint16_t c ActiveVMs;445 /** The number of registered VMs. */ 446 uint16_t cRegisteredVMs; 432 447 } GMM; 433 448 /** Pointer to the GMM instance. */ … … 615 630 AssertRelease(RT_SIZEOFMEMB(GVM,gmm.s) <= RT_SIZEOFMEMB(GVM,gmm.padding)); 616 631 617 //pGVM->gmm.s.cBasePages = 0;618 //pGVM->gmm.s.cPrivatePages = 0;619 //pGVM->gmm.s.cSharedPages = 0;620 632 pGVM->gmm.s.enmPolicy = GMMOCPOLICY_INVALID; 621 633 pGVM->gmm.s.enmPriority = GMMPRIORITY_INVALID; … … 656 668 * references behind (shouldn't happen of course, but you never know). 657 669 */ 658 pGMM->c ActiveVMs--;659 if (!pGMM->c ActiveVMs)670 pGMM->cRegisteredVMs--; 671 if (!pGMM->cRegisteredVMs) 660 672 { 661 673 … … 764 776 * future allocations requests will fail as well. 765 777 * 778 * These are just the initial reservations made very very early during the VM creation 779 * process and will be adjusted later in the GMMR0UpdateReservation call after the 780 * ring-3 init has completed. 781 * 766 782 * @returns VBox status code. 767 783 * @retval VERR_GMM_NOT_SUFFICENT_MEMORY … … 769 785 * 770 786 * @param pVM Pointer to the shared VM structure. 771 * @param cBasePages The number of pages of RAM. This is *only* the RAM, it does772 * not take additional pages for the ROMs and MMIO2 into account.773 * These allocations will have to be reported when the initialization774 * process has completed.775 * @param cShadowPages The max number of pages that will be allocated for shadow pageing structures.787 * @param cBasePages The number of pages that may be allocated for the base RAM and ROMs. 788 * This does not include MMIO2 and similar. 789 * @param cShadowPages The number of pages that may be allocated for shadow pageing structures. 790 * @param cFixedPages The number of pages that may be allocated for fixed objects like the 791 * hyper heap, MMIO2 and similar. 776 792 * @param enmPolicy The OC policy to use on this VM. 777 793 * @param enmPriority The priority in an out-of-memory situation. 778 794 */ 779 GMMR0DECL(int) GMMR0InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, GMMOCPOLICY enmPolicy, GMMPRIORITY enmPriority) 780 { 781 LogFlow(("GMMR0InitialReservation: pVM=%p cBasePages=%#llx cShadowPages=%#x enmPolicy=%d enmPriority=%d\n", 782 pVM, cBasePages, cShadowPages, enmPolicy, enmPriority)); 795 GMMR0DECL(int) GMMR0InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages, 796 GMMOCPOLICY enmPolicy, GMMPRIORITY enmPriority) 797 { 798 LogFlow(("GMMR0InitialReservation: pVM=%p cBasePages=%#llx cShadowPages=%#x cFixedPages=%#x enmPolicy=%d enmPriority=%d\n", 799 pVM, cBasePages, cShadowPages, cFixedPages, enmPolicy, enmPriority)); 783 800 784 801 /* … … 788 805 GMM_GET_VALID_INSTANCE(pGMM, VERR_INTERNAL_ERROR); 789 806 PGVM pGVM = GVMMR0ByVM(pVM); 790 if (!p VM)807 if (!pGVM) 791 808 return VERR_INVALID_PARAMETER; 809 810 AssertReturn(cBasePages, VERR_INVALID_PARAMETER); 811 AssertReturn(cShadowPages, VERR_INVALID_PARAMETER); 812 AssertReturn(cFixedPages, VERR_INVALID_PARAMETER); 813 AssertReturn(enmPolicy > GMMOCPOLICY_INVALID && enmPolicy < GMMOCPOLICY_END, VERR_INVALID_PARAMETER); 814 AssertReturn(enmPriority > GMMPRIORITY_INVALID && enmPriority < GMMPRIORITY_END, VERR_INVALID_PARAMETER); 792 815 793 816 int rc = RTSemFastMutexRequest(pGMM->Mtx); 794 817 AssertRC(rc); 795 818 796 797 pGMM->cActiveVMs++; 798 799 819 if ( !pGVM->gmm.s.Reserved.cBasePages 820 && !pGVM->gmm.s.Reserved.cFixedPages 821 && !pGVM->gmm.s.Reserved.cShadowPages) 822 { 823 /* 824 * Check if we can accomodate this. 825 */ 826 /* ... later ... */ 827 if (RT_SUCCESS(rc)) 828 { 829 /* 830 * Update the records. 831 */ 832 pGVM->gmm.s.Reserved.cBasePages = cBasePages; 833 pGVM->gmm.s.Reserved.cFixedPages = cFixedPages; 834 pGVM->gmm.s.Reserved.cShadowPages = cShadowPages; 835 pGVM->gmm.s.enmPolicy = enmPolicy; 836 pGVM->gmm.s.enmPriority = enmPriority; 837 pGVM->gmm.s.fMayAllocate = true; 838 839 pGMM->cReservedPages += cBasePages + cFixedPages + cShadowPages; 840 pGMM->cRegisteredVMs++; 841 } 842 } 843 else 844 rc = VERR_WRONG_ORDER; 800 845 801 846 RTSemFastMutexRelease(pGMM->Mtx); … … 812 857 * 813 858 * @param pVM Pointer to the shared VM structure. 814 * @param cExtraPages The number of pages that makes up ROM ranges outside the normal 815 * RAM and MMIO2 memory. 816 * @param cMisc Miscellaneous fixed commitments like the heap, VM structure and such. 817 */ 818 GMMR0DECL(int) GMMR0ReservationUpdate(PVM pVM, uint64_t cExtraPages) 819 { 820 LogFlow(("GMMR0ReservationUpdate: pVM=%p cExtraPages=%#llx\n", pVM, cExtraPages)); 859 * @param cBasePages The number of pages that may be allocated for the base RAM and ROMs. 860 * This does not include MMIO2 and similar. 861 * @param cShadowPages The number of pages that may be allocated for shadow pageing structures. 862 * @param cFixedPages The number of pages that may be allocated for fixed objects like the 863 * hyper heap, MMIO2 and similar. 864 * @param enmPolicy The OC policy to use on this VM. 865 * @param enmPriority The priority in an out-of-memory situation. 866 */ 867 GMMR0DECL(int) GMMR0UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages) 868 { 869 LogFlow(("GMMR0UpdateReservation: pVM=%p cBasePages=%#llx cShadowPages=%#x cFixedPages=%#x\n", 870 pVM, cBasePages, cShadowPages, cFixedPages)); 821 871 822 872 /* … … 826 876 GMM_GET_VALID_INSTANCE(pGMM, VERR_INTERNAL_ERROR); 827 877 PGVM pGVM = GVMMR0ByVM(pVM); 828 if (!p VM)878 if (!pGVM) 829 879 return VERR_INVALID_PARAMETER; 880 881 AssertReturn(cBasePages, VERR_INVALID_PARAMETER); 882 AssertReturn(cShadowPages, VERR_INVALID_PARAMETER); 883 AssertReturn(cFixedPages, VERR_INVALID_PARAMETER); 830 884 831 885 int rc = RTSemFastMutexRequest(pGMM->Mtx); 832 886 AssertRC(rc); 833 887 834 888 if ( pGVM->gmm.s.Reserved.cBasePages 889 && pGVM->gmm.s.Reserved.cFixedPages 890 && pGVM->gmm.s.Reserved.cShadowPages) 891 { 892 /* 893 * Check if we can accomodate this. 894 */ 895 /* ... later ... */ 896 if (RT_SUCCESS(rc)) 897 { 898 /* 899 * Update the records. 900 */ 901 pGMM->cReservedPages -= pGVM->gmm.s.Reserved.cBasePages 902 + pGVM->gmm.s.Reserved.cFixedPages 903 + pGVM->gmm.s.Reserved.cShadowPages; 904 pGMM->cReservedPages += cBasePages + cFixedPages + cShadowPages; 905 906 pGVM->gmm.s.Reserved.cBasePages = cBasePages; 907 pGVM->gmm.s.Reserved.cFixedPages = cFixedPages; 908 pGVM->gmm.s.Reserved.cShadowPages = cShadowPages; 909 } 910 } 911 else 912 rc = VERR_WRONG_ORDER; 835 913 836 914 RTSemFastMutexRelease(pGMM->Mtx); 837 LogFlow(("GMMR0 ReservationUpdate: returns %Rrc\n", rc));915 LogFlow(("GMMR0UpdateReservation: returns %Rrc\n", rc)); 838 916 return rc; 839 917 } 840 918 841 919 842 920 /** 921 * Updates the previous allocations and allocates more pages. 922 * 923 * The handy pages are always taken from the 'base' memory account. 924 * 925 * @returns VBox status code: 926 * @retval xxx 927 * 928 * @param pVM Pointer to the shared VM structure. 929 * @param cPagesToUpdate The number of pages to update (starting from the head). 930 * @param cPagesToAlloc The number of pages to allocate (starting from the head). 931 * @param paPages The array of page descriptors. 932 * See GMMPAGEDESC for details on what is expected on input. 933 */ 934 GMMR0DECL(int) GMMR0AllocateHandyPages(PVM pVM, uint32_t cPagesToUpdate, uint32_t cPagesToAlloc, PGMMPAGEDESC paPages) 935 { 936 return VERR_NOT_IMPLEMENTED; 937 } 938 939 940 /** 941 * Allocate one or more pages. 942 * 943 * This is typically used for ROMs and MMIO2 (VRAM) during VM creation. 944 * 945 * @returns VBox status code: 946 * @retval xxx 947 * 948 * @param pVM Pointer to the shared VM structure. 949 * @param cPages The number of pages to allocate. 950 * @param paPages Pointer to the page descriptors. 951 * See GMMPAGEDESC for details on what is expected on input. 952 * @param enmAccount The account to charge. 953 */ 954 GMMR0DECL(int) GMMR0AllocatePages(PVM pVM, uint32_t cPages, PGMMPAGEDESC paPages, GMMACCOUNT enmAccount) 955 { 956 return VERR_NOT_IMPLEMENTED; 957 } 958 959 960 /** 961 * Free one or more pages. 962 * 963 * This is typically used at reset time or power off. 964 * 965 * @returns VBox status code: 966 * @retval xxx 967 * 968 * @param pVM Pointer to the shared VM structure. 969 * @param cPages The number of pages to allocate. 970 * @param paPages Pointer to the page descriptors containing the Page IDs for each page. 971 * @param enmAccount The account this relates to. 972 */ 973 GMMR0DECL(int) GMMR0FreePages(PVM pVM, uint32_t cPages, PGMMFREEPAGEDESC paPages, GMMACCOUNT enmAccount) 974 { 975 return VERR_NOT_IMPLEMENTED; 976 } 977 978 979 /** 980 * Report ballooned pages optionally together with be page to free. 981 * 982 * The pages to be freed are always base (RAM) pages. 983 * 984 * @returns VBox status code: 985 * @retval xxx 986 * 987 * @param pVM Pointer to the shared VM structure. 988 * @param cBalloonedPages The number of pages that was ballooned. 989 * @param cPagesToFree The number of pages to be freed. 990 * @param paPages Pointer to the page descriptors for the pages that's to be freed. 991 */ 992 GMMR0DECL(int) GMMR0BalloonedPages(PVM pVM, uint32_t cBalloonedPages, uint32_t cPagesToFree, PGMMFREEPAGEDESC paPages) 993 { 994 return VERR_NOT_IMPLEMENTED; 995 } 996 997
Note:
See TracChangeset
for help on using the changeset viewer.