Skip to content
  • Avi Kivity's avatar
    memory: support stateless memory listeners · 50c1e149
    Avi Kivity authored
    
    
    Current memory listeners are incremental; that is, they are expected to
    maintain their own state, and receive callbacks for changes to that state.
    
    This patch adds support for stateless listeners; these work by receiving
    a ->begin() callback (which tells them that new state is coming), a
    sequence of ->region_add() and ->region_nop() callbacks, and then a
    ->commit() callback which signifies the end of the new state.  They should
    ignore ->region_del() callbacks.
    
    Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
    50c1e149