zero: finish implementation
This commit is contained in:
parent
2c05661f70
commit
16624a0cfd
@ -1,27 +1,41 @@
|
|||||||
#include "alloc.h"
|
|
||||||
#include "klibc.h"
|
|
||||||
#include "zero.h"
|
#include "zero.h"
|
||||||
|
|
||||||
|
#include "alloc.h"
|
||||||
|
#include "kernel.h"
|
||||||
|
#include "klibc.h"
|
||||||
|
|
||||||
struct zeroMappedEntry {
|
struct zeroMappedEntry {
|
||||||
int refCnt;
|
int refCnt;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int zeroOpen(struct uAddrVirtualReg *vreg)
|
static int zeroOpen(struct uAddrVirtualReg *vreg)
|
||||||
{
|
{
|
||||||
(void)vreg;
|
struct zeroMappedEntry *ent = (struct zeroMappedEntry *)vreg->res->customData;
|
||||||
|
ent->refCnt++;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zeroClose(struct uAddrVirtualReg *vreg)
|
static int zeroClose(struct uAddrVirtualReg *vreg)
|
||||||
{
|
{
|
||||||
(void)vreg;
|
struct zeroMappedEntry *ent = (struct zeroMappedEntry *)vreg->res->customData;
|
||||||
|
ent->refCnt--;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zeroNoPage(struct uAddrVirtualReg *vreg, uaddr_t addr, int right)
|
static int zeroNoPage(struct uAddrVirtualReg *vreg, uaddr_t addr, int right)
|
||||||
{
|
{
|
||||||
(void)vreg;
|
(void)vreg;
|
||||||
(void)addr;
|
|
||||||
(void)right;
|
int ret = 0;
|
||||||
return 0;
|
paddr_t ppage = allocPhyPage(1);
|
||||||
|
ret = pageMap(ALIGN_DOWN(addr, PAGE_SIZE), ppage, right | PAGING_MEM_USER) ;
|
||||||
|
|
||||||
|
unrefPhyPage(ppage);
|
||||||
|
if (ret) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
memset((void *)ALIGN_DOWN(addr, PAGE_SIZE), 0, PAGE_SIZE);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct mappedRessourceOps zeroOps = {
|
static struct mappedRessourceOps zeroOps = {
|
||||||
|
Loading…
Reference in New Issue
Block a user