PERFORCE change 100809 for review

John Birrell jb at FreeBSD.org
Thu Jul 6 22:17:37 UTC 2006


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

Change 100809 by jb at jb_freebsd2 on 2006/07/06 22:17:00

	Remove the percpu ktrace #ifdef that is not used anywhere in
	the tree.
	
	Move a pointer so that a couple of ints are next to each other.

Affected files ...

.. //depot/projects/dtrace/src/sys/sys/pcpu.h#9 edit

Differences ...

==== //depot/projects/dtrace/src/sys/sys/pcpu.h#9 (text+ko) ====

@@ -68,15 +68,11 @@
 	cpumask_t	pc_other_cpus;		/* Mask of all other cpus */
 	SLIST_ENTRY(pcpu) pc_allcpu;
 	struct lock_list_entry *pc_spinlocks;
-#ifdef KTR_PERCPU
-	int		pc_ktr_idx;		/* Index into trace table */
-	char		*pc_ktr_buf;
-#endif
 	PCPU_MD_FIELDS;
 	struct vmmeter	pc_cnt;			/* VM stats counters */
 	struct device	*pc_device;
+	struct cyc_cpu	*pc_cyclic;		/* Cyclic subsystem data */
 	int		pc_ncyclic;		/* Number of cyclic timers enabled. */
-	struct cyc_cpu	*pc_cyclic;		/* Cyclic subsystem data */
 	u_int		pc_intr_actv;		/* Used by DTrace. */
 	uintptr_t	pc_dtrace_caller;	/* Used by DTrace. */
 	uint64_t	cpu_dtrace_chillmark;	/* DTrace chill mark time */


More information about the p4-projects mailing list