Changeset 21894 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 30, 2009 2:58:16 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50543
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SSM-new.cpp
r21892 r21894 1704 1704 1705 1705 /** 1706 * Flush anybuffered data.1706 * Flush buffered data. 1707 1707 * 1708 1708 * @returns VBox status code. … … 1711 1711 * @thread The producer thread. 1712 1712 */ 1713 static int ssmR3StrmFlush(PSSMSTRM pStrm) 1714 { 1715 /* 1716 * Read streams have nothing that needs to be flushed. 1717 */ 1718 if (!pStrm->fWrite) 1719 return VINF_SUCCESS; 1713 static int ssmR3StrmWriteBuffers(PSSMSTRM pStrm) 1714 { 1715 Assert(!pStrm->pCur); 1716 Assert(pStrm->fWrite); 1717 1718 /* 1719 * Just return if the stream has a pending error condition. 1720 */ 1720 1721 int rc = pStrm->rc; 1721 1722 if (RT_FAILURE(rc)) 1722 1723 return rc; 1723 1724 /*1725 * Complete the current buffer and queue it.1726 */1727 ssmR3StrmFlushCurBuf(pStrm);1728 1729 /** @todo This is what the I/O thread will be doing when we finally get one. */1730 1724 1731 1725 /* … … 1747 1741 if ( RT_FAILURE(rc) 1748 1742 && ssmR3StrmSetError(pStrm, rc)) 1749 LogRel(("ssmR3Strm Flush: RTFileWriteAt failed with rc=%Rrc at offStream=%#llx\n", rc, pCur->offStream));1743 LogRel(("ssmR3StrmWriteBuffers: RTFileWriteAt failed with rc=%Rrc at offStream=%#llx\n", rc, pCur->offStream)); 1750 1744 1751 1745 /* free it */ … … 1768 1762 * Flush and close the stream. 1769 1763 */ 1770 ssmR3StrmFlush(pStrm); 1764 if (pStrm->fWrite) 1765 { 1766 ssmR3StrmFlushCurBuf(pStrm); 1767 ssmR3StrmWriteBuffers(pStrm); 1768 } 1771 1769 int rc = RTFileClose(pStrm->hFile); 1772 1770 if (RT_FAILURE(rc)) … … 1827 1825 /* 1828 1826 * Flush the current buffer and replace it with a new one. 1827 * Write the bits to the disk if we haven't got any helper yet. 1829 1828 */ 1830 int rc = ssmR3StrmFlush(pStrm); 1831 if (RT_FAILURE(rc)) 1832 return rc; 1829 ssmR3StrmFlushCurBuf(pStrm); 1830 if (pStrm->hIoThread == NIL_RTTHREAD) 1831 { 1832 int rc = ssmR3StrmWriteBuffers(pStrm); 1833 if (RT_FAILURE(rc)) 1834 return rc; 1835 } 1833 1836 pBuf = ssmR3StrmGetFreeBuf(pStrm); 1834 1837 if (!pBuf) … … 1972 1975 */ 1973 1976 ssmR3StrmFlushCurBuf(pStrm); 1974 rc = ssmR3StrmReadMore(pStrm); /** @todo Remove this when adding the I/O thread! */ 1975 if (RT_FAILURE(rc)) 1976 break; 1977 if (pStrm->hIoThread == NIL_RTTHREAD) 1978 { 1979 rc = ssmR3StrmReadMore(pStrm); 1980 if (RT_FAILURE(rc)) 1981 break; 1982 } 1977 1983 PSSMSTRMBUF pBuf = ssmR3StrmGetBuf(pStrm); 1978 1984 if (!pBuf) … … 3785 3791 * @returns VBox status code. 3786 3792 * @param pSSM The SSM handle. 3793 * @param pDir The directory buffer. 3794 * @param cbDir The size of the directory. 3795 * @param cDirEntries The number of directory entries. 3796 * @param offDir The directory offset in the file. 3787 3797 * @param pszUnit The unit to seek to. 3788 3798 * @param iInstance The particulart insance we seek. 3789 3799 * @param piVersion Where to store the unit version number. 3790 3800 */ 3791 static int ssmR3FileSeekSubV2(PSSMHANDLE pSSM, PSSMFILEDIR pDir, size_t cbDir, uint32_t cDirEntries, 3801 static int ssmR3FileSeekSubV2(PSSMHANDLE pSSM, PSSMFILEDIR pDir, size_t cbDir, uint32_t cDirEntries, uint64_t offDir, 3792 3802 const char *pszUnit, uint32_t iInstance, uint32_t *piVersion) 3793 3803 { … … 3795 3805 * Read it. 3796 3806 */ 3797 uint64_t const offDir = pSSM->u.Read.cbLoadFile - sizeof(SSMFILEFTR) - cbDir;3798 3807 int rc = ssmR3StrmPeekAt(&pSSM->Strm, offDir, pDir, cbDir, NULL); 3799 3808 AssertLogRelRCReturn(rc, rc); … … 3887 3896 * pass it down to a worker to simplify cleanup. 3888 3897 */ 3898 uint64_t offFooter; 3889 3899 SSMFILEFTR Footer; 3890 /** @todo this doesn't work when we get an I/O thread... */ 3891 int rc = RTFileReadAt(pSSM->Strm.hFile, pSSM->u.Read.cbLoadFile - sizeof(Footer), &Footer, sizeof(Footer), NULL); 3900 int rc = ssmR3StrmPeekAt(&pSSM->Strm, -(RTFOFF)sizeof(Footer), &Footer, sizeof(Footer), &offFooter); 3892 3901 AssertLogRelRCReturn(rc, rc); 3893 3902 AssertLogRelReturn(!memcmp(Footer.szMagic, SSMFILEFTR_MAGIC, sizeof(Footer.szMagic)), VERR_SSM_INTEGRITY); … … 3898 3907 if (RT_UNLIKELY(!pDir)) 3899 3908 return VERR_NO_TMP_MEMORY; 3900 rc = ssmR3FileSeekSubV2(pSSM, pDir, cbDir, Footer.cDirEntries, pszUnit, iInstance, piVersion); 3909 rc = ssmR3FileSeekSubV2(pSSM, pDir, cbDir, Footer.cDirEntries, offFooter - cbDir, 3910 pszUnit, iInstance, piVersion); 3901 3911 RTMemTmpFree(pDir); 3902 3912 … … 3967 3977 static int ssmR3DataWriteFinish(PSSMHANDLE pSSM) 3968 3978 { 3969 //Log2(("ssmR3DataWriteFinish: %#010llx start\n", RTFileTell(pSSM->File)));3979 //Log2(("ssmR3DataWriteFinish: %#010llx start\n", ssmR3StrmTell(&pSSM->Strm))); 3970 3980 int rc = ssmR3DataFlushBuffer(pSSM); 3971 3981 if (RT_SUCCESS(rc)) … … 4790 4800 if (cbRead) 4791 4801 { 4792 //Log2(("ssmR3ReadInV1: %#010llx cbBug=%#x cbRead=%#x\n", RTFileTell(pSSM->File), cbBuf, cbRead));4802 //Log2(("ssmR3ReadInV1: %#010llx cbBug=%#x cbRead=%#x\n", ssmR3StrmTell(&pSSM->Strm), cbBuf, cbRead)); 4793 4803 int rc = ssmR3StrmRead(&pSSM->Strm, pvBuf, cbRead); 4794 4804 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.