PERFORCE change 136929 for review

Randall R. Stewart rrs at FreeBSD.org
Wed Mar 5 18:05:29 UTC 2008


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

Change 136929 by rrs at rrs-mips2-jnpr on 2008/03/05 18:05:19

	Fix bug in timing setup. They had the structures in
	       the wrong place, resulting in an interrupt every 255*15 
	       instructions. 

Affected files ...

.. //depot/projects/mips2-jnpr/src/sys/dev/rgmii/octeon_rgmx.c#7 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/sys/dev/rgmii/octeon_rgmx.c#7 (text+ko) ====

@@ -1458,10 +1458,10 @@
 	uint64_t word64;
 	struct {
 		uint64_t rsvd3:4;
-		uint64_t thr_freq:28;
+		uint64_t thr_period:28;
 		/* R / O */
 		uint64_t rsvd2:4;
-		uint64_t thr_period:20;
+		uint64_t thr_freq:20;
 		uint64_t rsvd:8;
 	}      bits;
 }     octeon_rgmx_pow_int_pc_t;


More information about the p4-projects mailing list