patch-2.4.23 linux-2.4.23/arch/ppc/kernel/ppc_htab.c
Next file: linux-2.4.23/arch/ppc/kernel/ppc_ksyms.c
Previous file: linux-2.4.23/arch/ppc/kernel/ppc4xx_sgdma.c
Back to the patch index
Back to the overall index
- Lines: 52
- Date:
2003-11-28 10:26:19.000000000 -0800
- Orig file:
linux-2.4.22/arch/ppc/kernel/ppc_htab.c
- Orig date:
2003-08-25 04:44:40.000000000 -0700
diff -urN linux-2.4.22/arch/ppc/kernel/ppc_htab.c linux-2.4.23/arch/ppc/kernel/ppc_htab.c
@@ -113,7 +113,7 @@
{
unsigned long mmcr0 = 0, pmc1 = 0, pmc2 = 0;
int n = 0;
-#ifdef CONFIG_PPC_STD_MMU
+#if defined(CONFIG_PPC_STD_MMU) && !defined(CONFIG_PPC64BRIDGE)
int valid;
unsigned int kptes = 0, uptes = 0, zombie_ptes = 0;
PTE *ptr;
@@ -150,6 +150,7 @@
goto return_string;
}
+#ifndef CONFIG_PPC64BRIDGE
for ( ptr = Hash ; ptr < Hash_end ; ptr++)
{
unsigned int ctx, mctx, vsid;
@@ -177,6 +178,7 @@
if (!valid)
zombie_ptes++;
}
+#endif
n += sprintf( buffer + n,
"PTE Hash Table Information\n"
@@ -184,18 +186,22 @@
"Buckets\t\t: %lu\n"
"Address\t\t: %08lx\n"
"Entries\t\t: %lu\n"
+#ifndef CONFIG_PPC64BRIDGE
"User ptes\t: %u\n"
"Kernel ptes\t: %u\n"
"Zombies\t\t: %u\n"
- "Percent full\t: %lu%%\n",
- (unsigned long)(Hash_size>>10),
+ "Percent full\t: %lu%%\n"
+#endif
+ , (unsigned long)(Hash_size>>10),
(Hash_size/(sizeof(PTE)*8)),
(unsigned long)Hash,
- Hash_size/sizeof(PTE),
- uptes,
+ Hash_size/sizeof(PTE)
+#ifndef CONFIG_PPC64BRIDGE
+ , uptes,
kptes,
zombie_ptes,
((kptes+uptes)*100) / (Hash_size/sizeof(PTE))
+#endif
);
n += sprintf( buffer + n,
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)