fix 'kfree' comment in kalloc.c

'kfree' has a parameter named 'pa' but referenced in the comment as 'v'.
This commit is contained in:
WaheedHafez 2021-11-19 18:45:49 +02:00 committed by Frans Kaashoek
parent c1c16269b1
commit 9f3673c4da

View file

@ -39,7 +39,7 @@ freerange(void *pa_start, void *pa_end)
kfree(p);
}
// Free the page of physical memory pointed at by v,
// Free the page of physical memory pointed at by pa,
// which normally should have been returned by a
// call to kalloc(). (The exception is when
// initializing the allocator; see kinit above.)