add config option to disable logging output
This commit is contained in:
parent
7dbbc7f54a
commit
566dcc18bd
2
Makefile
2
Makefile
|
@ -10,7 +10,7 @@ main.o: src/main.c config.h
|
||||||
kernel.o: src/kernel.c config.h
|
kernel.o: src/kernel.c config.h
|
||||||
gcc $(CCFLAGS) -c -o kernel.o src/kernel.c
|
gcc $(CCFLAGS) -c -o kernel.o src/kernel.c
|
||||||
|
|
||||||
mmu.o: src/mmu.c
|
mmu.o: src/mmu.c config.h
|
||||||
gcc $(CCFLAGS) -c -o mmu.o src/mmu.c
|
gcc $(CCFLAGS) -c -o mmu.o src/mmu.c
|
||||||
|
|
||||||
process.o: src/process.c config.h
|
process.o: src/process.c config.h
|
||||||
|
|
4
config.h
4
config.h
|
@ -6,3 +6,7 @@
|
||||||
#define VERBOSE_SANITY_CHECK 0
|
#define VERBOSE_SANITY_CHECK 0
|
||||||
|
|
||||||
#define WS_CHANGE_INVERSE_CHANCE 1000
|
#define WS_CHANGE_INVERSE_CHANCE 1000
|
||||||
|
|
||||||
|
/* --- Debug options --- */
|
||||||
|
|
||||||
|
#define DISABLE_LOGGING 0
|
||||||
|
|
32
src/kernel.c
32
src/kernel.c
|
@ -62,7 +62,9 @@ RUNQ_remove_current_process(void)
|
||||||
{
|
{
|
||||||
struct Process *tp = runq->current_proc;
|
struct Process *tp = runq->current_proc;
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:remove_current_process] Cleaning up process id %d\n", tp->id);
|
printf("[kernel:remove_current_process] Cleaning up process id %d\n", tp->id);
|
||||||
|
#endif
|
||||||
|
|
||||||
if (runq->current_proc == runq->current_proc->next) {
|
if (runq->current_proc == runq->current_proc->next) {
|
||||||
runq->current_proc = NULL;
|
runq->current_proc = NULL;
|
||||||
|
@ -80,7 +82,9 @@ RUNQ_remove_current_process(void)
|
||||||
|
|
||||||
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
||||||
if (cp->pt == tp->pt) {
|
if (cp->pt == tp->pt) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:remove_current_process] Found ppn #%d (pte %d#%d), freeing it\n", cp->ppn, tp->id, cp->pt_index);
|
printf("[kernel:remove_current_process] Found ppn #%d (pte %d#%d), freeing it\n", cp->ppn, tp->id, cp->pt_index);
|
||||||
|
#endif
|
||||||
// detach page from the busy list
|
// detach page from the busy list
|
||||||
if (cp == cp->next) {
|
if (cp == cp->next) {
|
||||||
first_busy_page = NULL;
|
first_busy_page = NULL;
|
||||||
|
@ -130,11 +134,15 @@ RUNQ_remove_current_process(void)
|
||||||
void
|
void
|
||||||
KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
||||||
{
|
{
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault] Handling %d started\n", page_no);
|
printf("[kernel:page_fault] Handling %d started\n", page_no);
|
||||||
|
#endif
|
||||||
|
|
||||||
if (first_free_page) {
|
if (first_free_page) {
|
||||||
free_pages_cnt--;
|
free_pages_cnt--;
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault] Found free page #%d, using it\n", first_free_page->ppn);
|
printf("[kernel:page_fault] Found free page #%d, using it\n", first_free_page->ppn);
|
||||||
|
#endif
|
||||||
pt[page_no].ppn = first_free_page->ppn;
|
pt[page_no].ppn = first_free_page->ppn;
|
||||||
pt[page_no].p = 1;
|
pt[page_no].p = 1;
|
||||||
|
|
||||||
|
@ -170,10 +178,14 @@ KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
||||||
|
|
||||||
busy_pages_cnt++;
|
busy_pages_cnt++;
|
||||||
} else {
|
} else {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault] No free pages available, trying to swap...\n");
|
printf("[kernel:page_fault] No free pages available, trying to swap...\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
#if PAGE_REPLACEMENT_ALGORITHM == 1
|
#if PAGE_REPLACEMENT_ALGORITHM == 1
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:random] Selected physical page #%d for replacement\n", first_busy_page->ppn);
|
printf("[kernel:page_fault:random] Selected physical page #%d for replacement\n", first_busy_page->ppn);
|
||||||
|
#endif
|
||||||
|
|
||||||
// clear presence 'bit' from old PTE
|
// clear presence 'bit' from old PTE
|
||||||
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
||||||
|
@ -189,21 +201,27 @@ KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
||||||
// move hand to next physical page
|
// move hand to next physical page
|
||||||
first_busy_page = first_busy_page->next;
|
first_busy_page = first_busy_page->next;
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:random] Auto-advanced the list of busy pages to ppn %d\n", first_busy_page->ppn);
|
printf("[kernel:page_fault:random] Auto-advanced the list of busy pages to ppn %d\n", first_busy_page->ppn);
|
||||||
|
#endif
|
||||||
#elif PAGE_REPLACEMENT_ALGORITHM == 2
|
#elif PAGE_REPLACEMENT_ALGORITHM == 2
|
||||||
|
|
||||||
// first pass (no reference flag + out of time window)
|
// first pass (no reference flag + out of time window)
|
||||||
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
for (size_t i = 0; i < PHYSICAL_PAGE_AMOUNT; i++) {
|
||||||
if (first_busy_page->pt[first_busy_page->pt_index].r) {
|
if (first_busy_page->pt[first_busy_page->pt_index].r) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:wsclock] ppn %d: r = 1, time %d -> %d\n",
|
printf("[kernel:page_fault:wsclock] ppn %d: r = 1, time %d -> %d\n",
|
||||||
first_busy_page->ppn, first_busy_page->last_accessed, system_time);
|
first_busy_page->ppn, first_busy_page->last_accessed, system_time);
|
||||||
|
#endif
|
||||||
first_busy_page->last_accessed = system_time;
|
first_busy_page->last_accessed = system_time;
|
||||||
first_busy_page->pt[first_busy_page->pt_index].r = 0;
|
first_busy_page->pt[first_busy_page->pt_index].r = 0;
|
||||||
|
|
||||||
first_busy_page = first_busy_page->next;
|
first_busy_page = first_busy_page->next;
|
||||||
} else if ((system_time - first_busy_page->last_accessed) > WSCLOCK_TIME_WINDOW) {
|
} else if ((system_time - first_busy_page->last_accessed) > WSCLOCK_TIME_WINDOW) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:wsclock] ppn %d: r = 0, time_window = %d (> %d), using it\n",
|
printf("[kernel:page_fault:wsclock] ppn %d: r = 0, time_window = %d (> %d), using it\n",
|
||||||
first_busy_page->ppn, system_time - first_busy_page->last_accessed, WSCLOCK_TIME_WINDOW);
|
first_busy_page->ppn, system_time - first_busy_page->last_accessed, WSCLOCK_TIME_WINDOW);
|
||||||
|
#endif
|
||||||
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
||||||
first_busy_page->pt = pt;
|
first_busy_page->pt = pt;
|
||||||
first_busy_page->pt_index = page_no;
|
first_busy_page->pt_index = page_no;
|
||||||
|
@ -214,15 +232,19 @@ KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
||||||
|
|
||||||
goto page_replacement_resolved;
|
goto page_replacement_resolved;
|
||||||
} else {
|
} else {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:wsclock] ppn %d: r = 0, time_window = %d (<= %d), still active\n",
|
printf("[kernel:page_fault:wsclock] ppn %d: r = 0, time_window = %d (<= %d), still active\n",
|
||||||
first_busy_page->ppn, system_time - first_busy_page->last_accessed, WSCLOCK_TIME_WINDOW);
|
first_busy_page->ppn, system_time - first_busy_page->last_accessed, WSCLOCK_TIME_WINDOW);
|
||||||
|
#endif
|
||||||
|
|
||||||
first_busy_page = first_busy_page->next;
|
first_busy_page = first_busy_page->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// fallback to random
|
// fallback to random
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:wsclock] Failed to find non-active page, randomly selecting ppn %d\n", first_busy_page->ppn);
|
printf("[kernel:page_fault:wsclock] Failed to find non-active page, randomly selecting ppn %d\n", first_busy_page->ppn);
|
||||||
|
#endif
|
||||||
|
|
||||||
// clear presence 'bit' from old PTE
|
// clear presence 'bit' from old PTE
|
||||||
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
first_busy_page->pt[first_busy_page->pt_index].p = 0;
|
||||||
|
@ -238,7 +260,9 @@ KERNEL_page_fault(struct PageTableEntry *pt, size_t page_no)
|
||||||
// move hand to next physical page
|
// move hand to next physical page
|
||||||
first_busy_page = first_busy_page->next;
|
first_busy_page = first_busy_page->next;
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:page_fault:wsclock] Auto-advanced the list of busy pages to ppn %d\n", first_busy_page->ppn);
|
printf("[kernel:page_fault:wsclock] Auto-advanced the list of busy pages to ppn %d\n", first_busy_page->ppn);
|
||||||
|
#endif
|
||||||
|
|
||||||
page_replacement_resolved:
|
page_replacement_resolved:
|
||||||
#endif
|
#endif
|
||||||
|
@ -252,7 +276,9 @@ page_replacement_resolved:
|
||||||
void KERNEL_update_job(size_t page_amount)
|
void KERNEL_update_job(size_t page_amount)
|
||||||
{
|
{
|
||||||
if (first_busy_page == NULL) {
|
if (first_busy_page == NULL) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:update_job] No pages to update\n");
|
printf("[kernel:update_job] No pages to update\n");
|
||||||
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -260,17 +286,23 @@ void KERNEL_update_job(size_t page_amount)
|
||||||
|
|
||||||
for (size_t i = 0; i < page_amount; i++) {
|
for (size_t i = 0; i < page_amount; i++) {
|
||||||
if (first_busy_page->pt[first_busy_page->pt_index].r) {
|
if (first_busy_page->pt[first_busy_page->pt_index].r) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:update_job] ppn %d updated time %d -> %d\n", first_busy_page->ppn, first_busy_page->last_accessed, system_time);
|
printf("[kernel:update_job] ppn %d updated time %d -> %d\n", first_busy_page->ppn, first_busy_page->last_accessed, system_time);
|
||||||
|
#endif
|
||||||
first_busy_page->pt[first_busy_page->pt_index].r = 0;
|
first_busy_page->pt[first_busy_page->pt_index].r = 0;
|
||||||
first_busy_page->last_accessed = system_time;
|
first_busy_page->last_accessed = system_time;
|
||||||
} else {
|
} else {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:update_job] ppn %d is up-to-date (time = %d)\n", first_busy_page->ppn, first_busy_page->last_accessed);
|
printf("[kernel:update_job] ppn %d is up-to-date (time = %d)\n", first_busy_page->ppn, first_busy_page->last_accessed);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
first_busy_page = first_busy_page->next;
|
first_busy_page = first_busy_page->next;
|
||||||
|
|
||||||
if (first_busy_page == starting_page) {
|
if (first_busy_page == starting_page) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[kernel:update_job] Looped around the busy page list, exiting after %d iterations\n", i);
|
printf("[kernel:update_job] Looped around the busy page list, exiting after %d iterations\n", i);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,9 @@ main(void)
|
||||||
runq->current_proc = runq->current_proc->next;
|
runq->current_proc = runq->current_proc->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[main:metrics] Memory usage stats: busy %d, free %d, total %d\n", busy_pages_cnt, free_pages_cnt, free_pages_cnt+busy_pages_cnt);
|
printf("[main:metrics] Memory usage stats: busy %d, free %d, total %d\n", busy_pages_cnt, free_pages_cnt, free_pages_cnt+busy_pages_cnt);
|
||||||
|
#endif
|
||||||
|
|
||||||
//KERNEL_update_job(8);
|
//KERNEL_update_job(8);
|
||||||
KERNEL_update_job(16);
|
KERNEL_update_job(16);
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#include "kernel.h"
|
#include "kernel.h"
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
extern size_t system_time;
|
extern size_t system_time;
|
||||||
|
|
||||||
|
@ -11,7 +12,9 @@ void MMU_read(struct PageTableEntry *pt, size_t page_no)
|
||||||
if (!pt[page_no].p)
|
if (!pt[page_no].p)
|
||||||
KERNEL_page_fault(pt, page_no);
|
KERNEL_page_fault(pt, page_no);
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[mmu:read] pt[%d] -> ppn %d\n", page_no, pt[page_no].ppn);
|
printf("[mmu:read] pt[%d] -> ppn %d\n", page_no, pt[page_no].ppn);
|
||||||
|
#endif
|
||||||
pt[page_no].r = 1;
|
pt[page_no].r = 1;
|
||||||
|
|
||||||
system_time++;
|
system_time++;
|
||||||
|
@ -22,7 +25,9 @@ void MMU_write(struct PageTableEntry *pt, size_t page_no)
|
||||||
if (!pt[page_no].p)
|
if (!pt[page_no].p)
|
||||||
KERNEL_page_fault(pt, page_no);
|
KERNEL_page_fault(pt, page_no);
|
||||||
|
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[mmu:write] pt[%d] -> ppn %d\n", page_no, pt[page_no].ppn);
|
printf("[mmu:write] pt[%d] -> ppn %d\n", page_no, pt[page_no].ppn);
|
||||||
|
#endif
|
||||||
pt[page_no].r = 1;
|
pt[page_no].r = 1;
|
||||||
pt[page_no].m = 1;
|
pt[page_no].m = 1;
|
||||||
|
|
||||||
|
|
|
@ -54,10 +54,14 @@ PROCESS_run_for(struct Process *p, size_t time_bits)
|
||||||
: p->ws[randint(p->ws_size)];
|
: p->ws[randint(p->ws_size)];
|
||||||
|
|
||||||
if (randint(10) > 7) {
|
if (randint(10) > 7) {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[process %d] Writing to page #%d\n", p->id, accessed_page_no);
|
printf("[process %d] Writing to page #%d\n", p->id, accessed_page_no);
|
||||||
|
#endif
|
||||||
MMU_write(p->pt, accessed_page_no);
|
MMU_write(p->pt, accessed_page_no);
|
||||||
} else {
|
} else {
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[process %d] Reading from page #%d\n", p->id, accessed_page_no);
|
printf("[process %d] Reading from page #%d\n", p->id, accessed_page_no);
|
||||||
|
#endif
|
||||||
MMU_read(p->pt, accessed_page_no);
|
MMU_read(p->pt, accessed_page_no);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +75,9 @@ PROCESS_run_for(struct Process *p, size_t time_bits)
|
||||||
void
|
void
|
||||||
PROCESS_change_working_set(struct Process *p)
|
PROCESS_change_working_set(struct Process *p)
|
||||||
{
|
{
|
||||||
|
#if DISABLE_LOGGING != 1
|
||||||
printf("[process %d] Changing working set after %d accesses\n", p->id, p->pages_accessed);
|
printf("[process %d] Changing working set after %d accesses\n", p->id, p->pages_accessed);
|
||||||
|
#endif
|
||||||
|
|
||||||
for (size_t i = 0; i < p->ws_size; i++)
|
for (size_t i = 0; i < p->ws_size; i++)
|
||||||
p->ws[i] = randint(p->total_pages_owned);
|
p->ws[i] = randint(p->total_pages_owned);
|
||||||
|
|
Loading…
Reference in New Issue