GithubHelp home page GithubHelp logo

dont flush tlb on every map about nanos HOT 5 CLOSED

nanovms avatar nanovms commented on May 22, 2024
dont flush tlb on every map

from nanos.

Comments (5)

convolvatron avatar convolvatron commented on May 22, 2024

looks like this was removed (?) should still flush on unmap

from nanos.

wjhun avatar wjhun commented on May 22, 2024

Eric,

Looking in AMD64 Architecture Programmer’s Manual, Volume 2: System Programming, I came across this paragraph (p144):

"Under certain circumstances, an upper-level table entry that cannot ultimately lead to a valid translation (because there are no valid entries in the lower level table to which it points) may also be cached. This can happen while executing down a false path, when an in-progress table walk gets cancelled by the branch mispredict before the low level table entry that would cause a fault is encountered. Said another way, the fact that a page table has no valid entries does not guarantee that upper level table entries won't be accessed and cached in the processor, as long as those upper level entries are marked as present. For this reason, it is not safe to modify an upper level entry, even if no valid lower-level entries exist, without first clearing its present bit, followed by an INVLPG instruction."

Do you take this to mean that we should not be setting the present bit on upper level ptes until the terminal page entry is installed?

from nanos.

wjhun avatar wjhun commented on May 22, 2024

Also relevant from same page:

"InvalidationofCachedUpper-levelEntriesbyINVLPG. TheeffectofINVLPGonTLBcaching of upper-level page table entries is controlled by EFER[TCE] on processors that support the translation cache extension feature. If EFER[TCE] is 0, or if the processor does not support the translation cache extension feature, an INVLPG will flush all upper-level page table entries in the TLB as well as the target PTE. If EFER[TCE] is 1, INVLPG will flush only those upper-level entries that lead to the target PTE, along with the target PTE itself. INVLPGA may flush all upper-level entries regardless of the state of TCE. For further details, see Section 3.1.7 “Extended Feature Enable Register (EFER)” on page 55."

from nanos.

wjhun avatar wjhun commented on May 22, 2024

My hunch is that the entries should be written from the page level up, with the present bit set, such that the table is always in a coherent state. Then, at the end, an INVLPG is issued for the page address.

Since we don't touch any upper-level entries that aren't associated with this page, I don't see why the state of EFER[TCE] would matter.

from nanos.

wjhun avatar wjhun commented on May 22, 2024

Resolved in #62

from nanos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.