1751971 Members
4725 Online
108783 Solutions
New Discussion юеВ

Re: Mapping

 
Ismail Azad
Esteemed Contributor

Mapping

How is the mapping between physical to virtual address space done in hpux?
Read, read and read... Then read again until you read "between the lines".....
4 REPLIES 4
Ismail Azad
Esteemed Contributor

Re: Mapping

Let me make my question clear. HPUX operating systems have a kernel which has it's own view of the operating system which in turn is related to the virtual address space. The virtual address space has to be mapped to the physical address space. Right?. Probably a buffer.
Read, read and read... Then read again until you read "between the lines".....
Bill Hassell
Honored Contributor

Re: Mapping

The attached document has a good overview of memory management in HP-UX. It is not simple...


Bill Hassell, sysadmin
Ismail Azad
Esteemed Contributor

Re: Mapping

Thanks Mr. Hassell,

Just wanted to know what is the concept of TLB in HPUX and what a TLB cache miss/hit was. Is the TLB a finite registry? Can someone briefly throw some light on to this!
Read, read and read... Then read again until you read "between the lines".....
Dennis Handly
Acclaimed Contributor

Re: Mapping

>Just wanted to know what is the concept of TLB in HP-UX and what a TLB cache miss/hit was. Is the TLB a finite registry?

The TLB is a hardware thingy. A web search should tell you about those. Yes, the TLB is very limited and the OS has to constantly refill it. Large pages help here.
There are both a hardware and software walkers to handle misses.

>TLB cache miss/hit

As in any cache, if you get a hit, it's fast, if you get a miss, something has to flush a cache entry and refill it with the new info.