PERFORCE change 94519 for review

Kip Macy kmacy at FreeBSD.org
Mon Apr 3 07:28:30 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=94519

Change 94519 by kmacy at kmacy_storage:sun4v_work on 2006/04/03 07:27:28

	add new fields needed for SMP and OFW trap handling

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sparc64/sparc64/genassym.c#17 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sparc64/sparc64/genassym.c#17 (text+ko) ====

@@ -123,12 +123,13 @@
 ASSYM(CPU_CLKSYNC, CPU_CLKSYNC);
 ASSYM(CPU_INIT, CPU_INIT);
 
-ASSYM(CSA_MID, offsetof(struct cpu_start_args, csa_mid));
 ASSYM(CSA_PCPU, offsetof(struct cpu_start_args, csa_pcpu));
 ASSYM(CSA_STATE, offsetof(struct cpu_start_args, csa_state));
+ASSYM(CSA_CPUID, offsetof(struct cpu_start_args, csa_cpuid));
+#ifndef SUN4V
 ASSYM(CSA_TICK, offsetof(struct cpu_start_args, csa_tick));
 ASSYM(CSA_VER, offsetof(struct cpu_start_args, csa_ver));
-#ifndef SUN4V
+ASSYM(CSA_MID, offsetof(struct cpu_start_args, csa_mid));
 ASSYM(CSA_TTES, offsetof(struct cpu_start_args, csa_ttes));
 #endif
 ASSYM(DC_TAG_SHIFT, DC_TAG_SHIFT);
@@ -189,6 +190,7 @@
 ASSYM(PM_HASHSCRATCH, offsetof(struct pmap, pm_hashscratch));
 ASSYM(PM_TSBSCRATCH, offsetof(struct pmap, pm_tsbscratch));
 ASSYM(PM_TSB_RA, offsetof(struct pmap, pm_tsb_ra));
+ASSYM(PM_TLBACTIVE, offsetof(struct pmap, pm_tlbactive));
 #endif
 
 ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
@@ -214,6 +216,8 @@
 ASSYM(PC_RQ_SIZE, offsetof(struct pcpu, pc_rq_size));
 ASSYM(PC_NRQ_BASE, offsetof(struct pcpu, pc_nrq_ra));
 ASSYM(PC_NRQ_SIZE, offsetof(struct pcpu, pc_nrq_size));
+ASSYM(PC_MONDO_DATA, offsetof(struct pcpu, pc_mondo_data));
+ASSYM(PC_MONDO_DATA_RA, offsetof(struct pcpu, pc_mondo_data_ra));
 
 ASSYM(PC_KWBUF_FULL, offsetof(struct pcpu, pc_kwbuf_full));
 ASSYM(PC_KWBUF_SP, offsetof(struct pcpu, pc_kwbuf_sp));
@@ -346,3 +350,5 @@
 
 ASSYM(UT_MAX, UT_MAX);
 ASSYM(VM_MIN_DIRECT_ADDRESS, VM_MIN_DIRECT_ADDRESS);
+ASSYM(VM_MIN_PROM_ADDRESS, VM_MIN_PROM_ADDRESS);
+ASSYM(VM_MAX_PROM_ADDRESS, VM_MAX_PROM_ADDRESS);


More information about the p4-projects mailing list