Subversion Repositories HelenOS-historic

Rev

Rev 1297 | Rev 1757 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1297 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup genericmm
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    tlb.c
34
 * @file
31
 * @brief   Generic TLB shootdown algorithm.
35
 * @brief   Generic TLB shootdown algorithm.
32
 *
36
 *
33
 * The algorithm implemented here is based on the CMU TLB shootdown
37
 * The algorithm implemented here is based on the CMU TLB shootdown
34
 * algorithm and is further simplified (e.g. all CPUs receive all TLB
38
 * algorithm and is further simplified (e.g. all CPUs receive all TLB
35
 * shootdown messages).
39
 * shootdown messages).
Line 178... Line 182...
178
    spinlock_unlock(&CPU->lock);
182
    spinlock_unlock(&CPU->lock);
179
    CPU->tlb_active = 1;
183
    CPU->tlb_active = 1;
180
}
184
}
181
 
185
 
182
#endif /* CONFIG_SMP */
186
#endif /* CONFIG_SMP */
-
 
187
 
-
 
188
 /** @}
-
 
189
 */
-
 
190