#define activate_mm activate_mm staticinlinevoid activate_mm(struct mm_struct *prev, struct mm_struct *next)
{ /* * Activate_mm is our one chance to allocate a space id * for a new mm created in the exec path. There's also * some lazy tlb stuff, which is currently dead code, but * we only allocate a space id if one hasn't been allocated * already, so we should be OK.
*/
BUG_ON(next == &init_mm); /* Should never happen */
if (next->context.space_id == 0)
next->context.space_id = alloc_sid();
switch_mm(prev,next,current);
}
#include <asm-generic/mmu_context.h>
#endif
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.