search for: pg_u

Displaying 3 results from an estimated 3 matches for "pg_u".

Did you mean: pg_
2005 May 24
2
PostgreSQL/SELinux Error - relation "pg_catalog.pg_u ser" does not exist
> > The best thing to do is add this to /etc/selinux/config > > SELINUX=disabled > > And then get on with the real jobs.... > Listening to all the pros and cons of SELinux. I'd like to improve the security of our regional web server using SELinux. We have a main regional web site and several virtual domains, kept up by private users, all on the same server. Some of
2003 Aug 22
3
PAE removal patch for testing
...PG_V; } @@ -1498,7 +1491,7 @@ * if basemem != 640, map pages r/w into vm86 page table so * that the bios can scribble on it. */ - pte = (pt_entry_t *)vm86paddr; + pte = (pt_entry_t)vm86paddr; for (i = basemem / 4; i < 160; i++) pte[i] = (i << PAGE_SHIFT) | PG_V | PG_RW | PG_U; @@ -1507,7 +1500,7 @@ * map page 1 R/W into the kernel page table so we can use it * as a buffer. The kernel will unmap this page later. */ - pte = vtopte(KERNBASE + (1 << PAGE_SHIFT)); + pte = (pt_entry_t)vtopte(KERNBASE + (1 << PAGE_SHIFT)); *pte = (1 << PAGE_SHIF...
2013 Oct 28
5
FreeBSD PVH guest support
...us to build the page tables + * as native FreeBSD expects to find them (created + * by the boot trampoline). + */ + for (i = 0; i < 512; i++) { + /* Each slot of the level 4 pages points to the same level 3 page */ + PT4[i] = ((u_int64_t)&PT3[0]) - KERNBASE; + PT4[i] |= PG_V | PG_RW | PG_U; + + /* Each slot of the level 3 pages points to the same level 2 page */ + PT3[i] = ((u_int64_t)&PT2[0]) - KERNBASE; + PT3[i] |= PG_V | PG_RW | PG_U; + + /* The level 2 page slots are mapped with 2MB pages for 1GB. */ + PT2[i] = i * (2 * 1024 * 1024); + PT2[i] |= PG_V | PG_RW | PG_PS | P...